diff --git a/DB_restructuring_queries.sql b/DB_restructuring_queries.sql deleted file mode 100644 index d9c0ed3..0000000 --- a/DB_restructuring_queries.sql +++ /dev/null @@ -1,34 +0,0 @@ ----- Add cube extension to DB ---- -CREATE EXTENSION IF NOT EXISTS cube; - ----- CREATE INDICES ON MOLECULE_ID ---- -CREATE INDEX IF NOT EXISTS idx_molecule_molecule_id ON molecule (molecule_id); -CREATE INDEX IF NOT EXISTS idx_molecule_smiles ON molecule (smiles); -CREATE INDEX IF NOT EXISTS idx_molecule_umap_knn ON molecule USING gist (umap); -CREATE INDEX IF NOT EXISTS idx_pca_smiles ON pca (smiles); - ----- Set column pca in table molecule to a cube of all 4 pca component columns ---- -ALTER TABLE molecule ADD COLUMN pca cube; -UPDATE molecule -SET pca = cube(ARRAY[pca.pca1, pca.pca2, pca.pca3, pca.pca4]) -FROM pca -WHERE molecule.smiles = pca.smiles; - ---- Create indices on PCA --- -CREATE INDEX IF NOT EXISTS idx_molecule_pca ON molecule (pca); -CREATE INDEX IF NOT EXISTS idx_molecule_pca_knn ON molecule USING gist (pca); - ----- Query to make umap into cube data type on molecule table ---- -ALTER TABLE molecule RENAME umap TO umap_point; -ALTER TABLE molecule ADD COLUMN umap cube; -UPDATE molecule -SET umap = cube(ARRAY[umap_point[0], umap_point[1]]) -WHERE umap_point IS NOT NULL; - ---- Drop umap_point --- -ALTER TABLE molecule DROP COLUMN umap_point; - ----- Drop unneccessary tables ---- -DROP TABLE new_data; -DROP TABLE pca; -DROP TABLE temporary; \ No newline at end of file diff --git a/add_data_tables.sql b/add_data_tables.sql deleted file mode 100644 index 0e8ea7b..0000000 --- a/add_data_tables.sql +++ /dev/null @@ -1,68 +0,0 @@ -CREATE TABLE ml_data ( - molecule_id INTEGER, - property TEXT, - max DOUBLE PRECISION, - min DOUBLE PRECISION, - delta DOUBLE PRECISION, - vburminconf DOUBLE PRECISION, - boltzmann_average DOUBLE PRECISION -); - -ALTER TABLE ml_data -ADD CONSTRAINT fk_molecule_id -FOREIGN KEY (molecule_id) REFERENCES molecule(molecule_id); - -CREATE INDEX idx_ml_data_molecule_id ON ml_data(molecule_id); - -\COPY ml_data FROM 'ml_data_json_table.csv' DELIMITER ',' CSV HEADER; - -CREATE TABLE dft_data ( - molecule_id INTEGER, - property TEXT, - max DOUBLE PRECISION, - min DOUBLE PRECISION, - delta DOUBLE PRECISION, - vburminconf DOUBLE PRECISION, - boltzmann_average DOUBLE PRECISION -); - -ALTER TABLE dft_data -ADD CONSTRAINT fk_molecule_id -FOREIGN KEY (molecule_id) REFERENCES molecule(molecule_id); - -CREATE INDEX idx_dft_data_molecule_id ON dft_data(molecule_id); - -\COPY dft_data FROM 'dft_data_json_table.csv' DELIMITER ',' CSV HEADER; - -CREATE TABLE xtb_data ( - molecule_id INTEGER, - property TEXT, - max DOUBLE PRECISION, - min DOUBLE PRECISION, - boltzmann_average DOUBLE PRECISION -); - -ALTER TABLE xtb_data -ADD CONSTRAINT fk_molecule_id -FOREIGN KEY (molecule_id) REFERENCES molecule(molecule_id); - -CREATE INDEX idx_xtb_data_molecule_id ON xtb_data(molecule_id); - -\COPY xtb_data FROM 'xtb_data_json_table.csv' DELIMITER ',' CSV HEADER; - - -CREATE TABLE xtb_ni_data ( - molecule_id INTEGER, - property TEXT, - boltzmann_average DOUBLE PRECISION, - max DOUBLE PRECISION, - min DOUBLE PRECISION -); - -ALTER TABLE xtb_ni_data -ADD CONSTRAINT fk_molecule_id -FOREIGN KEY (molecule_id) REFERENCES molecule(molecule_id); - -CREATE INDEX idx_xtb_ni_data_molecule_id ON xtb_ni_data(molecule_id); - -\COPY xtb_ni_data FROM 'xtb_ni_data_json_table.csv' DELIMITER ',' CSV HEADER; diff --git a/backend/app/app/api/v2/endpoints/conformer.py b/backend/app/app/api/v2/endpoints/conformer.py index 4c64b3e..5734428 100644 --- a/backend/app/app/api/v2/endpoints/conformer.py +++ b/backend/app/app/api/v2/endpoints/conformer.py @@ -1,6 +1,6 @@ from fastapi import APIRouter, Depends from fastapi.responses import PlainTextResponse -from typing import List +from typing import List, Any from sqlalchemy import text from sqlalchemy.orm import Session @@ -18,11 +18,19 @@ def get_conformer_and_format(conformer_id, format, db): return "Not implemented yet" try: - coords, elements = ( - db.query(models.conformer.coords, models.conformer.elements) - .filter(models.conformer.conformer_id == conformer_id) - .one() - ) + query = text(""" + SELECT coords, elements + FROM conformer + WHERE conformer_id = :conformer_id + """) + + stmt = query.bindparams(conformer_id=conformer_id) + + result = db.execute(stmt).fetchone() + + coords = result.coords + elements = result.elements + except: return None @@ -38,7 +46,7 @@ def get_conformer_and_format(conformer_id, format, db): @router.get("/export/{format}/{conformer_id}", response_class=PlainTextResponse) def export_conformer( - conformer_id: int = 0, + conformer_id: int | str, format: str = "xyz", db: Session = Depends(deps.get_db), ): @@ -51,11 +59,29 @@ def format_for_ngl( db: Session = Depends(deps.get_db), ): conformer_id, format = filename.split(".") - return get_conformer_and_format(int(conformer_id), format, db) + return get_conformer_and_format(conformer_id, format, db) + +@router.get("/data/{conformer_id}", response_model=Any) +def get_conformer_data(conformer_id: int | str, db: Session = Depends(deps.get_db)): + + query = text(f""" + SELECT * + FROM conformer + WHERE conformer_id = :conformer_id + """) + + stmt = query.bindparams(conformer_id=conformer_id) + + result = db.execute(stmt).fetchone() + + # Hacky way to get each row as a dictionary. + # do this to generalize for different data sets - column names may vary. + data = { k:v for k, v in result._asdict().items() if k != "coords" and k != "elements" } + return data @router.get("/others_id/{conformer_id}") -def get_other_conformers_id(conformer_id: int = 0, db: Session = Depends(deps.get_db)): +def get_other_conformers_id(conformer_id: int | str, db: Session = Depends(deps.get_db)): sql = text( ( "select conformer_id from conformer " diff --git a/backend/app/app/api/v2/endpoints/molecule.py b/backend/app/app/api/v2/endpoints/molecule.py index 14b7cb6..f7e658e 100644 --- a/backend/app/app/api/v2/endpoints/molecule.py +++ b/backend/app/app/api/v2/endpoints/molecule.py @@ -50,22 +50,6 @@ def _pandas_to_buffer(df): return buffer -def _valid_molecule_id(molecule_id, db): - - # Generalized - get max molecule id. - query = text(f"SELECT MAX(molecule_id) FROM molecule;") - max_molecule_id = db.execute(query).fetchall()[0][0] - - # Check to see if the molecule_id is within range. - if molecule_id > max_molecule_id: - raise HTTPException(status_code=404, detail=f"Molecule with ID supplied not found, the maximum ID is {max_molecule_id}") - - # Check to see if the molecule_id is within range. - if molecule_id <= 0: - raise HTTPException(status_code=500) - - return - def valid_smiles(smiles): """Check to see if a smile string is valid to represent a molecule. @@ -100,8 +84,41 @@ def valid_smiles(smiles): return smiles -@router.get("/data/{molecule_id}", response_model=List[schemas.MoleculeData]) -async def get_molecule_data(molecule_id: int, +@router.get("/first_id", response_model=Any) +async def get_first_molecule_id(db: Session = Depends(deps.get_db)): + query = text("SELECT molecule_id FROM molecule ORDER BY molecule_id LIMIT 1;") + result = db.execute(query).fetchone() + return {"first_molecule_id": result[0]} + +@router.get("/data_types", response_model=Any) +async def get_data_types(db: Session = Depends(deps.get_db)): + query = text("SELECT table_name FROM information_schema.tables WHERE table_schema = 'public';") + results = db.execute(query).fetchall() + return {"available_types": [x[0] for x in results if "data" in x[0]] } + + +@router.get("/{molecule_id}/data_types", response_model=Any) +async def get_molecule_data_types(molecule_id: int | str, db: Session = Depends(deps.get_db)): + # First, fetch all table names that have 'data' in their name + query_tables = text("SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' AND table_name LIKE '%data%';") + tables = db.execute(query_tables).fetchall() + + # Prepare a dictionary to store the results + results = {} + + # Loop through each table to check for the molecule_id + for table in tables: + table_name = table[0] + # Assuming the column storing molecule IDs is named 'molecule_id' in all tables. + # You might need to adjust this according to your database schema. + query_check = text(f"SELECT EXISTS(SELECT 1 FROM {table_name} WHERE molecule_id = :molecule_id) AS exists;") + exists = db.execute(query_check, {"molecule_id": molecule_id}).fetchone()[0] + results[table_name] = exists + + return results + +@router.get("/data/{molecule_id}", response_model=Any) +async def get_molecule_data(molecule_id: int | str, data_type: str="ml", db: Session = Depends(deps.get_db)): @@ -120,8 +137,12 @@ async def get_molecule_data(molecule_id: int, stmt = query.bindparams(molecule_id=molecule_id) results = db.execute(stmt).fetchall() + + # Hacky way to get each row as a dictionary. + # do this to generalize for different data sets - column names may vary. + list_of_dicts = [row._asdict() for row in results] - return results + return list_of_dicts @router.get("/data/export/batch") async def get_molecules_data(molecule_ids: str, @@ -130,14 +151,8 @@ async def get_molecules_data(molecule_ids: str, context: Optional[str]=None, db: Session = Depends(deps.get_db)): - - # Sanitize molecule ids - int_check = [x.strip().isdigit() for x in molecule_ids.split(",")] - if not all(int_check): - raise HTTPException(status_code=400, detail="Invalid molecule ids.") - - molecule_ids_list = [int(x) for x in molecule_ids.split(",")] + molecule_ids_list = [ x.strip() for x in molecule_ids.split(",")] first_molecule_id = molecule_ids_list[0] num_molecules = len(molecule_ids_list) @@ -145,9 +160,6 @@ async def get_molecules_data(molecule_ids: str, if context.lower() not in ["substructure", "pca_neighbors", "umap_neighbors"]: raise HTTPException(status_code=400, detail="Invalid context.") - # Check to see if all molecule ids are valid. - [ _valid_molecule_id(int(x), db) for x in molecule_ids.split(",") ] - # Check for valid data type. if data_type.lower() not in ["ml", "dft", "xtb", "xtb_ni"]: raise HTTPException(status_code=400, detail="Invalid data type.") @@ -158,14 +170,18 @@ async def get_molecules_data(molecule_ids: str, # Use pandas.read_sql_query to get the data. table_name = f"{data_type}_data" + # Generating a safe query with placeholders + placeholders = ', '.join([':id' + str(i) for i in range(len(molecule_ids_list))]) + query_parameters = {'id' + str(i): mid for i, mid in enumerate(molecule_ids_list)} + query = text(f""" SELECT t.*, m.SMILES FROM {table_name} t JOIN molecule m ON t.molecule_id = m.molecule_id - WHERE t.molecule_id IN ({molecule_ids}) + WHERE t.molecule_id IN ({placeholders}) """) - df = pd.read_sql_query(query, db.bind) + df = pd.read_sql_query(query, db.bind, params=query_parameters) df_wide = _pandas_long_to_wide(df) @@ -186,12 +202,10 @@ async def get_molecules_data(molecule_ids: str, return response @router.get("/data/export/{molecule_id}") -async def export_molecule_data(molecule_id: int, +async def export_molecule_data(molecule_id: int | str, data_type: str="ml", db: Session = Depends(deps.get_db)): - # Check to see if the molecule_id is valid. - _valid_molecule_id(molecule_id, db) # Check for valid data type. if data_type.lower() not in ["ml", "dft", "xtb", "xtb_ni"]: @@ -274,9 +288,8 @@ def get_molecule_umap( @router.get("/{molecule_id}", response_model=schemas.Molecule) -def get_a_single_molecule(molecule_id: int, db: Session = Depends(deps.get_db)): +def get_a_single_molecule(molecule_id: int | str, db: Session = Depends(deps.get_db)): - _valid_molecule_id(molecule_id, db) molecule = ( db.query(models.molecule) @@ -284,15 +297,29 @@ def get_a_single_molecule(molecule_id: int, db: Session = Depends(deps.get_db)): .one() ) + if not molecule: + raise HTTPException(status_code=404, detail="Molecule not found") + + # Attempt to fetch conformers associated with this molecule from the conformer view + try: + conformers = molecule.conformer_collection + except: + sql = text("SELECT * FROM conformer WHERE molecule_id = :molecule_id") + stmt = sql.bindparams(molecule_id=molecule_id) + conformers = db.execute(stmt).fetchall() + + # for databases where there are no compound names, set the compound name to None + try: + molecule.compound_name + except AttributeError: + molecule.compound_name = None + response = schemas.Molecule( molecule_id=molecule.molecule_id, smiles=molecule.smiles, molecular_weight=molecule.molecular_weight, - conformers_id=[c.conformer_id for c in molecule.conformer_collection], - dft_data=molecule.dft_data, - xtb_data=molecule.xtb_data, - xtb_ni_data=molecule.xtb_ni_data, - ml_data=molecule.ml_data, + compound_name=molecule.compound_name, + conformers_id=[c.conformer_id for c in conformers], ) return response @@ -335,7 +362,7 @@ def search_molecules( @router.get("/{molecule_id}/neighbors/", response_model=List[schemas.MoleculeNeighbors]) def search_neighbors( - molecule_id: int, + molecule_id: int | str, type: str = "pca", components: Optional[str] = None, skip: int = 1, @@ -344,8 +371,6 @@ def search_neighbors( ): type = type.lower() - - _valid_molecule_id(molecule_id, db) # Check for valid neighbor type. if type not in ["pca", "umap"]: @@ -353,7 +378,7 @@ def search_neighbors( # Set defaults for components if type == "pca" and components is None: - components = "1,2,3,4" + components = "1,2,3" # Set defaults for components if type == "umap" and components is None: @@ -462,7 +487,7 @@ def get_molecule_dimensions( # Set defaults for components if type == "pca" and components is None: - components = "1,2,3,4" + components = "1,2,3" # Set defaults for components if type == "umap" and components is None: diff --git a/backend/app/app/core/config.py b/backend/app/app/core/config.py index bd43801..c65ffab 100644 --- a/backend/app/app/core/config.py +++ b/backend/app/app/core/config.py @@ -5,7 +5,7 @@ from urllib.parse import quote class Settings(BaseSettings): - PROJECT_NAME: str = 'Phosphines' + PROJECT_NAME: str = 'Descriptor Libraries API' POSTGRES_SERVER: str POSTGRES_USER: str diff --git a/backend/app/app/main.py b/backend/app/app/main.py index 51bddeb..efb4c04 100644 --- a/backend/app/app/main.py +++ b/backend/app/app/main.py @@ -1,3 +1,6 @@ + +import os + from fastapi import FastAPI import api.v1.api @@ -5,19 +8,21 @@ import core.config +name = os.getenv("API_PREFIX") + app = FastAPI( - title=core.config.settings.PROJECT_NAME, - openapi_url="/api/openapi.json", - docs_url="/api/docs", + title=core.config.settings.PROJECT_NAME + " " + name, + openapi_url=f"/api/{name}/openapi.json", + docs_url=f"/api/{name}/docs", redoc=None ) # default API endpoints -app.include_router(api.v2.api.router, prefix="/api", tags=["current"]) +app.include_router(api.v2.api.router, prefix=f"/api/{name}", tags=["current"]) # versioned API endpoints -app.include_router(api.v2.api.router, prefix="/api/v2", tags=["v2"]) -app.include_router(api.v1.api.router, prefix="/api/v1", tags=["v1"]) +app.include_router(api.v2.api.router, prefix=f"/api/{name}/v2", tags=["v2"]) +app.include_router(api.v1.api.router, prefix=f"/api/{name}/v1", tags=["v1"]) diff --git a/backend/app/app/schemas/conformer.py b/backend/app/app/schemas/conformer.py index fc248d8..2921b09 100644 --- a/backend/app/app/schemas/conformer.py +++ b/backend/app/app/schemas/conformer.py @@ -11,6 +11,6 @@ class Atom(BaseModel): class Conformer(BaseModel): - id: int + id: int | str coords: List[Atom] property: float diff --git a/backend/app/app/schemas/molecule.py b/backend/app/app/schemas/molecule.py index 6a62426..c855920 100644 --- a/backend/app/app/schemas/molecule.py +++ b/backend/app/app/schemas/molecule.py @@ -1,17 +1,14 @@ -from typing import Dict, List, Optional +from typing import Dict, List, Optional, Any from pydantic import BaseModel class Molecule(BaseModel): - molecule_id: int + molecule_id: int | str smiles: str molecular_weight: Optional[float] = None - conformers_id: List[Optional[int]] - dft_data: Optional[Dict] = None - xtb_data: Optional[Dict] = None - xtb_ni_data: Optional[Dict] = None - ml_data: Optional[Dict] = None + conformers_id: List[Optional[int | str]] + compound_name: Optional[str] = None class MoleculeData(BaseModel): property: str @@ -23,7 +20,7 @@ class MoleculeData(BaseModel): vburminconf: Optional[float] = None class MoleculeSimple(BaseModel): - molecule_id: int + molecule_id: int | str umap1: Optional[float] = None umap2: Optional[float] = None pat: Optional[str] = None @@ -31,7 +28,7 @@ class MoleculeSimple(BaseModel): class MoleculeComponents(BaseModel): type: Optional[str] = None - molecule_id: int + molecule_id: int | str pat: Optional[str] = None smiles: str components: Optional[list[float]] = None diff --git a/backend/backend.dockerfile b/backend/backend.dockerfile deleted file mode 100644 index 972ca94..0000000 --- a/backend/backend.dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM mambaorg/micromamba - -COPY environment.yaml* /tmp/conda-tmp/ - -ARG MAMBA_DOCKERFILE_ACTIVATE=1 - -RUN micromamba install -f /tmp/conda-tmp/environment.yaml && \ - micromamba clean --all --yes - -WORKDIR /app/ -ADD ./app /app/ -RUN pip install -e . \ No newline at end of file diff --git a/docker-compose.local.yml b/docker-compose.local.yml deleted file mode 100644 index 5b51c42..0000000 --- a/docker-compose.local.yml +++ /dev/null @@ -1,132 +0,0 @@ -version: '3' - -services: - local_reverse-proxy: - # The official v2 Traefik docker image - image: traefik:v2.8 - # Enables the web UI and tells Traefik to listen to docker - container_name: local_reverse_proxy - command: - - --api.insecure=true - - --api.dashboard=true - - --api.debug=true - - --providers.docker - - --entrypoints.web.address=:80 - ports: - # The HTTP port - - "80:80" - # The Web UI (enabled by --api.insecure=true) - - "8080:8080" - # - volumes: - # So that Traefik can listen to the Docker events - - /var/run/docker.sock:/var/run/docker.sock - networks: - - local-web - - local-db - labels: - - "traefik.enable=true" - - "traefik.http.routers.api.service=api@internal" - - local_database: - image: 'mcs07/postgres-rdkit' - container_name: local_database - shm_size: '4gb' - environment: - POSTGRES_SERVER: database - POSTGRES_USER: postgres - POSTGRES_PASSWD: "$postgresPWD" - POSTGRES_DB: postgres - ports: - - "5432:5432" - volumes: - - "kraken-postgres:/var/lib/postgresql/data" - - "pr3:/home/db" - healthcheck: - test: ["CMD-SHELL", "psql -U postgres -d postgres -c 'SELECT molecule_id FROM molecule LIMIT 1;' || exit 1"] - interval: 5s - timeout: 2s - retries: 5 - environment: - POSTGRES_HOST_AUTH_METHOD: trust - POSTGRES_DB: postgres - networks: - - local-db - - local_backend: - image: 'phosphines-backend:latest' - container_name: local_backend - build: - context: ./backend - dockerfile: backend.dockerfile - volumes: - - "./backend/app:/app" - environment: - POSTGRES_SERVER: local_database - POSTGRES_USER: postgres - POSTGRES_PASSWD: testing-password - POSTGRES_DB: postgres - entrypoint: bash prestart.sh - depends_on: - local_database: - condition: service_healthy - networks: - - local-web - - local-db - labels: - - "traefik.enable=true" - - "traefik.http.routers.backend.rule=Host(`localhost`) && PathPrefix(`/api`)" - - "traefik.http.services.backend.loadbalancer.server.port=8080" - - local_cdk-depict: - image: 'simolecule/cdkdepict:latest' - container_name: local_cdk-depcit - networks: - - local-web - labels: - - "traefik.enable=true" - - "traefik.http.routers.cdk-depict.rule=Host(`localhost`) && PathPrefix(`/depict`)" - - local_frontend: - image: 'phosphines-frontend:latest' - container_name: local_frontend - volumes: - - "./frontend/src:/app/src" - build: - context: . - dockerfile: frontend.development.dockerfile - networks: - - local-web - entrypoint: npm start - labels: - - "traefik.enable=true" - - "traefik.http.routers.frontend.rule=Host(`localhost`)" - - "traefik.http.services.frontend.loadbalancer.server.port=3000" - - local_documentation: - image: "phosphines-docs:latest" - container_name: local_documentation - build: - context: ./docs - dockerfile: docs.dockerfile - entrypoint: bash start.sh - volumes: - - "./docs:/docs" - networks: - - local-web - labels: - - "traefik.enable=true" - - "traefik.http.routers.documentation.rule=Host(`localhost`) && PathPrefix(`/docs`)" - - "traefik.http.services.documentation.loadbalancer.server.port=5000" - - -networks: - local-web: - local-db: - -volumes: - kraken-postgres: - external: true - pr3: - external: true - diff --git a/docker-compose.yml b/docker-compose.yml index b077256..6476c7f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,110 +1,107 @@ version: '3' services: - reverse-proxy: - image: traefik:v2.9 - container_name: reverse_proxy - command: - - --api.insecure=false + local_reverse-proxy: + # The official v2 Traefik docker image + image: traefik:v2.8 + # Enables the web UI and tells Traefik to listen to docker + container_name: local_reverse_proxy + command: + - --api.insecure=true + - --api.dashboard=true + - --api.debug=true - --providers.docker - - --providers.docker.exposedByDefault=false - --entrypoints.web.address=:80 - - # Uncomment below for SSL - - --entrypoints.web.http.redirections.entrypoint.to=websecure - - --entrypoints.web.http.redirections.entrypoint.scheme=https - - --entrypoints.websecure.address=:443 - - --entrypoints.websecure.http.tls=true - - --certificatesresolvers.le.acme.email=janash@vt.edu - - --certificatesresolvers.le.acme.httpchallenge.entrypoint=web - - --certificatesResolvers.le.acme.storage=/acme/acme.json ports: + # The HTTP port - "80:80" - - "443:443" + # The Web UI (enabled by --api.insecure=true) + - "8080:8080" volumes: + # So that Traefik can listen to the Docker events - /var/run/docker.sock:/var/run/docker.sock - - ./acme:/acme networks: - - web - - db + - local-web + - local-db labels: - "traefik.enable=true" - "traefik.http.routers.api.service=api@internal" - - database: - image: 'mcs07/postgres-rdkit' - container_name: database + descriptor_database: + image: 'rdkit-postgres:latest' + container_name: descriptor_database shm_size: '4gb' + environment: + POSTGRES_SERVER: database + POSTGRES_USER: postgres ports: - - "127.0.0.1:5432:5432" + - "5432:5432" volumes: - - "kraken-postgres:/var/lib/postgresql/data" - - "pr3:/home/db" - environment: - POSTGRES_HOST_AUTH_METHOD: trust - POSTGRES_DB: postgres + - "postgres16:/var/lib/postgresql/data" + healthcheck: + test: ["CMD-SHELL", "psql -U postgres -d kraken_data -c 'SELECT molecule_id FROM molecule LIMIT 1;' || exit 1"] + interval: 5s + timeout: 2s + retries: 5 networks: - - db + - local-db - backend: - image: 'phosphines-backend:latest' - container_name: backend - depends_on: - - database + descriptor_backend: + image: 'descriptor-backend:latest' + container_name: kraken_backend build: context: ./backend dockerfile: backend.dockerfile volumes: - "./backend/app:/app" environment: - POSTGRES_SERVER: database + POSTGRES_SERVER: descriptor_database POSTGRES_USER: postgres - POSTGRES_PASSWD: $postgresPWD - POSTGRES_DB: postgres + POSTGRES_DB: kraken_data + API_PREFIX: kraken entrypoint: bash prestart.sh + depends_on: + descriptor_database: + condition: service_healthy networks: - - web - - db + - local-web + - local-db labels: - "traefik.enable=true" - - "traefik.http.routers.backend.rule=Host(`kraken.molssi.org`) && PathPrefix(`/api`)" - - "traefik.http.services.backend.loadbalancer.server.port=8080" - - "traefik.http.routers.backend.tls=true" - - "traefik.http.routers.backend.tls.certresolver=le" + - "traefik.http.routers.kraken_backend.rule=Host(`localhost`) && PathPrefix(`/api/kraken`)" + - "traefik.http.services.kraken_backend.loadbalancer.server.port=8080" - cdk-depict: + local_cdk-depict: image: 'simolecule/cdkdepict:latest' - container_name: cdk_depict + container_name: local_cdk-depcit networks: - - web + - local-web labels: - "traefik.enable=true" - - "traefik.http.routers.cdk-depict.rule=Host(`kraken.molssi.org`) && PathPrefix(`/depict`)" - - "traefik.http.routers.cdk-depict.tls=true" - - "traefik.http.routers.cdk-depict.tls.certresolver=le" + - "traefik.http.routers.cdk-depict.rule=Host(`localhost`) && PathPrefix(`/depict`)" - frontend: - image: 'phosphines-frontend:latest' - container_name: frontend + descriptor_frontend: + image: 'descriptor-frontend:latest' + container_name: kraken_frontend volumes: - "./frontend/src:/app/src" + - "./frontend/public:/app/public" + environment: + - VITE_BASE_URL=/descriptor build: context: . - dockerfile: frontend.production.dockerfile + dockerfile: frontend.development.dockerfile networks: - - web - entrypoint: npm run serve + - local-web + entrypoint: npm run start labels: - "traefik.enable=true" - - "traefik.http.routers.frontend.rule=Host(`kraken.molssi.org`)" + - "traefik.http.routers.frontend.rule=Host(`localhost`) && PathPrefix(`/descriptor`)" - "traefik.http.services.frontend.loadbalancer.server.port=3000" - - "traefik.http.routers.frontend.tls=true" - - "traefik.http.routers.frontend.tls.certresolver=le" - documentation: + local_documentation: image: "phosphines-docs:latest" - container_name: documentation + container_name: local_documentation build: context: ./docs dockerfile: docs.dockerfile @@ -112,20 +109,18 @@ services: volumes: - "./docs:/docs" networks: - - web + - local-web labels: - "traefik.enable=true" - - "traefik.http.routers.documentation.rule=Host(`kraken.molssi.org`) && PathPrefix(`/docs`)" + - "traefik.http.routers.documentation.rule=Host(`localhost`) && PathPrefix(`/docs`)" - "traefik.http.services.documentation.loadbalancer.server.port=5000" - - "traefik.http.routers.documentation.tls=true" - - "traefik.http.routers.documentation.tls.certresolver=le" + networks: - web: - db: + local-web: + local-db: volumes: - kraken-postgres: - external: true - pr3: + postgres16: external: true + diff --git a/docker.compose.local.yml b/docker.compose.local.yml deleted file mode 100644 index fcea449..0000000 --- a/docker.compose.local.yml +++ /dev/null @@ -1,132 +0,0 @@ -version: '3' - -services: - local_reverse-proxy: - # The official v2 Traefik docker image - image: traefik:v2.8 - # Enables the web UI and tells Traefik to listen to docker - container_name: local_reverse_proxy - command: - - --api.insecure=true - - --api.dashboard=true - - --api.debug=true - - --providers.docker - - --entrypoints.web.address=:80 - ports: - # The HTTP port - - "80:80" - # The Web UI (enabled by --api.insecure=true) - - "8080:8080" - # - volumes: - # So that Traefik can listen to the Docker events - - /var/run/docker.sock:/var/run/docker.sock - networks: - - local-web - - local-db - labels: - - "traefik.enable=true" - - "traefik.http.routers.api.service=api@internal" - - local_database: - image: 'mcs07/postgres-rdkit' - container_name: local_database - shm_size: '4gb' - environment: - POSTGRES_SERVER: database - POSTGRES_USER: postgres - POSTGRES_PASSWD: $postgresPWD - POSTGRES_DB: postgres - ports: - - "5432:5432" - volumes: - - "kraken-postgres:/var/lib/postgresql/data" - - "pr3:/home/db" - healthcheck: - test: ["CMD-SHELL", "psql -U postgres -d postgres -c 'SELECT molecule_id FROM molecule LIMIT 1;' || exit 1"] - interval: 5s - timeout: 2s - retries: 5 - environment: - POSTGRES_HOST_AUTH_METHOD: trust - POSTGRES_DB: postgres - networks: - - local-db - - local_backend: - image: 'phosphines-backend:latest' - container_name: local_backend - build: - context: ./backend - dockerfile: backend.dockerfile - volumes: - - "./backend/app:/app" - environment: - POSTGRES_SERVER: local_database - POSTGRES_USER: postgres - POSTGRES_PASSWD: testing-password - POSTGRES_DB: postgres - entrypoint: bash prestart.sh - depends_on: - local_database: - condition: service_healthy - networks: - - local-web - - local-db - labels: - - "traefik.enable=true" - - "traefik.http.routers.backend.rule=Host(`localhost`) && PathPrefix(`/api`)" - - "traefik.http.services.backend.loadbalancer.server.port=8080" - - local_cdk-depict: - image: 'simolecule/cdkdepict:latest' - container_name: local_cdk-depcit - networks: - - local-web - labels: - - "traefik.enable=true" - - "traefik.http.routers.cdk-depict.rule=Host(`localhost`) && PathPrefix(`/depict`)" - - local_frontend: - image: 'phosphines-frontend:latest' - container_name: local_frontend - volumes: - - "./frontend/src:/app/src" - build: - context: . - dockerfile: frontend.development.dockerfile - networks: - - local-web - entrypoint: npm start - labels: - - "traefik.enable=true" - - "traefik.http.routers.frontend.rule=Host(`localhost`)" - - "traefik.http.services.frontend.loadbalancer.server.port=3000" - - local_documentation: - image: "phosphines-docs:latest" - container_name: local_documentation - build: - context: ./docs - dockerfile: docs.dockerfile - entrypoint: bash start.sh - volumes: - - "./docs:/docs" - networks: - - local-web - labels: - - "traefik.enable=true" - - "traefik.http.routers.documentation.rule=Host(`localhost`) && PathPrefix(`/docs`)" - - "traefik.http.services.documentation.loadbalancer.server.port=5000" - - -networks: - local-web: - local-db: - -volumes: - kraken-postgres: - external: true - pr3: - external: true - diff --git a/frontend.production.dockerfile b/frontend.production.dockerfile deleted file mode 100644 index bed53ec..0000000 --- a/frontend.production.dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM node:latest as react-build - -WORKDIR /app/ -ADD ./frontend /app/ -EXPOSE 3000 -RUN yarn install -RUN npm run build \ No newline at end of file diff --git a/frontend/index.html b/frontend/index.html index 4944a69..021e419 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -2,14 +2,12 @@ - + - Kraken v2 + Molecular Descriptors Library diff --git a/frontend/package.json b/frontend/package.json index efe835a..874b57e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -12,6 +12,7 @@ "@testing-library/react": "^13.0.0", "@testing-library/user-event": "^13.2.1", "cors": "^2.8.5", + "dompurify": "^3.0.8", "ketcher-core": "^2.8.0", "ketcher-react": "^2.10.0", "ketcher-standalone": "^2.8.0", @@ -20,9 +21,12 @@ "plotly.js": "^2.14.0", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-markdown": "^9.0.1", "react-plotly.js": "^2.6.0", "react-router-dom": "^6.4.1", "react-scripts": "^5.0.1", + "rehype-raw": "^7.0.0", + "remark-gfm": "^4.0.0", "serve": "^14.2.0", "web-vitals": "^2.1.0" }, diff --git a/frontend/public/favicon.ico b/frontend/public/brand/favicon.ico similarity index 100% rename from frontend/public/favicon.ico rename to frontend/public/brand/favicon.ico diff --git a/frontend/public/brand/logo.svg b/frontend/public/brand/logo.svg new file mode 100644 index 0000000..a6c9e7f --- /dev/null +++ b/frontend/public/brand/logo.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + diff --git a/frontend/public/brand/names.json b/frontend/public/brand/names.json new file mode 100644 index 0000000..7e209dc --- /dev/null +++ b/frontend/public/brand/names.json @@ -0,0 +1,8 @@ +[ + { + "name": "KRAKEN", + "tagline": "Kolossal viRtual dAtabase for moleKular dEscriptors of orgaNophosphorus ligands.", + "title": "KRAKEN v2", + "prefix": "" + } +] \ No newline at end of file diff --git a/frontend/src/images/kraken-workflow.png b/frontend/public/content/kraken-workflow.png similarity index 100% rename from frontend/src/images/kraken-workflow.png rename to frontend/public/content/kraken-workflow.png diff --git a/frontend/public/content/library_details.md b/frontend/public/content/library_details.md new file mode 100644 index 0000000..aac8320 --- /dev/null +++ b/frontend/public/content/library_details.md @@ -0,0 +1,70 @@ +# Library Details + +
+ Kraken Workflow +
+ +## Conformational Searching + + Initial ligand geometries were generated using SMILES strings and converted to free ligands and [LNi(CO)3] complexes using RDKit, OpenBabel or Molconvert. +These guess geometries were optimized at the GFN2-xTB level of theory (xTB v6.2.2). +Optimized geometries were subjected to a conformational search using CREST (v2.8) at the GFN2-xTB level with toluene solvation (GBSA model). +For ligands containing ferrocene, conformational searches were performed at the GFN-FF level to avoid structural changes. + +## xTB Descriptors + + Molecular descriptors at the xTB level for the full conformational ensembles from CREST of the free ligands and the [NiCO3]-bound complexes were collected using MORFEUS. + +## Selection of conformers for DFT computations + + Conformers from both sets (free ligand and Ni complex) were selected based on the following two criteria: + +* Conformers that minimize or maximize any of the following xTB-level steric properties in any of the two conformer sets: +B1, B5, lval, far_vbur, far_vtot, max_delta_qvbur, max_delta_qvtot, near_vbur, near_vtot, ovbur_max, ovbur_min, ovtot_max, +ovtot_min, pyr_val, qvbur_max, qvbur_min, qvtot_max, qvtot_min, vbur. + +* Up to 20 conformers within 3 kcal/mol relative energy in the free ligand conformer set. If more than 20 conformers are in that range, the selection was made by RMSD pruning (using PyDP4). This enables structurally diverse selection of conformers in the relevant energy window. + +## DFT computations + +Prior to DFT computations, the [Ni(CO)3]-fragment was removed from the Ni complex conformer set to obtain free-ligand initial geometries. +All DFT optimizations (Gaussian 16, rev C.01) were performed at the PBE-D3(BJ)/6-31+G(d,p) level of theory. +The corresponding geometries were used for a series of single-point energy calculations at the PBE0-D3(BJ)/def2-TZVP and PBE0-D3(BJ)/def2-TZVP/SMD(CHCl3) levels of theory. +Additional single-points were also run for the radical cations and radical anions from the optimized geometry of the neutral free ligand. + +From the DFT calculations, steric, electronic, or full molecule/interaction-type descriptors were collected for each conformer. +The range of properties across the conformers of a single ligand was treated by using up to five condensed measures for each of the properties. + +| Condensed Properties | Description | For xTB | For DFT | For ML | +| ----------------------- | --------------------------------------------------------------------- | ---------| --------- | ---------| +| boltzmann | Boltzmann-weighted average of all conformers' properties (T=298.15 K) | ✔️ | ✔️ | ✔️ | +| max | highest value of a property of any conformer | ✔️ | ✔️ | ✔️ | +| min | lowest value of a property of any conformer | ✔️ | ✔️ | ✔️ | +| std | standard deviation of the value across all conformers | ✔️ | | | +| vburminconf | property value of the conformer with the smallest buried volume | | ✔️ | ✔️ | +| delta | difference between the maximum and minimum property values | | ✔️ | ✔️ | + + +## ML Descriptor Prediction + +The machine learning portion of the workflow aims to expand the total number of monophosphine ligands in the library from ~1500 (which is a fraction of the total possible space) to > 300,000 ligands. +The computational workflow used to calculate the set of ~1500 is too intensive to calculate all possible monophosphines, so descriptors were predicted using machine learning methods. + +New descriptors were predicted using the sum of contributions of each phosphorus substituent using the "Bag of Substituents" approach. +These contributions are made up of 576 unique substituents from the ~1500 set of ligands. + +For more details on the machine learning models used to predict descriptors, see the original publication supporting information. + +## Video Tutorial + +A video tutorial of Kraken which explains relevant background information and the computational workflow, and provides a walkthrough of this website: + +
+ +
+ +An extended explanation of the computational workflow used to build the monophosphine library, +as well as details on the collected and predicted descriptors can be found in the original publication supporting information. + +## Citation +Gensch, T.; dos Passos Gomes, G.; Friederich, P.; Peters, E.; Gaudin, T.; Pollice, R.; Jorner, K.; Nigam, A.; Lindner-D'Addario, M.; Sigman, M. S.; Aspuru-Guzik, A. A Comprehensive Discovery Platform for Organophosphorus Ligands for Catalysis. J. Am. Chem. Soc. 2022, 144, 3, 1205–1217. DOI: 10.1021/jacs.1c09718 diff --git a/frontend/public/content/stats.json b/frontend/public/content/stats.json new file mode 100644 index 0000000..69ecd9c --- /dev/null +++ b/frontend/public/content/stats.json @@ -0,0 +1,30 @@ +[{ + "number": "1,558", + "description": "DFT Calculated Ligands" + }, + + { + "number": "300,000+", + "description": "ML calculated Ligands" + }, + + { + "number": "576", + "description": "unique substituents" + }, + + { + "number": "190", + "description": "DFT-level descriptors" + }, + + { + "number": "21,437", + "description": "unique conformers" + }, + + { + "number": "13.8", + "description": "average conformers per ligand" + } +] \ No newline at end of file diff --git a/frontend/public/logo192.png b/frontend/public/logo192.png deleted file mode 100644 index fc44b0a..0000000 Binary files a/frontend/public/logo192.png and /dev/null differ diff --git a/frontend/public/logo512.png b/frontend/public/logo512.png deleted file mode 100644 index a4e47a6..0000000 Binary files a/frontend/public/logo512.png and /dev/null differ diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json index b62564f..5041499 100644 --- a/frontend/public/manifest.json +++ b/frontend/public/manifest.json @@ -3,19 +3,9 @@ "name": "Kolossal viRtual dAtabase for moleKular dEscriptors of orgaNophosphorus ligands (kraken)", "icons": [ { - "src": "favicon.ico", + "src": "brand/favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" - }, - { - "src": "logo192.png", - "type": "image/png", - "sizes": "192x192" - }, - { - "src": "logo512.png", - "type": "image/png", - "sizes": "512x512" } ], "start_url": ".", diff --git a/frontend/renameBase.sh b/frontend/renameBase.sh new file mode 100644 index 0000000..705a636 --- /dev/null +++ b/frontend/renameBase.sh @@ -0,0 +1,5 @@ +#/bin/bash + +find ./dist -type f -exec sed -i 's|/base_url|'"$VITE_BASE_URL"'|g' {} + + +node server.js diff --git a/frontend/server.js b/frontend/server.js new file mode 100644 index 0000000..4f8ac6a --- /dev/null +++ b/frontend/server.js @@ -0,0 +1,42 @@ +const express = require('express'); +const path = require('path'); +const fs = require('fs'); // File System module to check if file exists +const app = express(); + +const PORT = process.env.PORT || 3000; +const BASE_URL = process.env.VITE_BASE_URL || '/'; + +// Serve files from the public directory (with precedence) +app.use(BASE_URL, express.static(path.join(__dirname, 'public'), {fallthrough: true})); + +// Serve files from the pre-built dist directory only if not found in public +app.use(BASE_URL, express.static(path.join(__dirname, 'dist'))); + +// Handle fallback for SPA (Single Page Application) and return 404 for missing files +app.use((req, res, next) => { + // Try to find the file in the 'public' directory first + const publicFilePath = path.join(__dirname, 'public', req.path); + if (fs.existsSync(publicFilePath)) { + // If the file exists in the public folder, serve it + return res.sendFile(publicFilePath); + } + + // If not found in 'public', check the 'dist' directory + const distFilePath = path.join(__dirname, 'dist', req.path); + if (fs.existsSync(distFilePath)) { + // If the file exists in the dist folder, serve it + return res.sendFile(distFilePath); + } + + // For SPA: If it's a navigation request (no file extension), serve index.html from 'dist' + if (!path.extname(req.path)) { + return res.sendFile(path.join(__dirname, 'dist', 'index.html')); + } + + // If it's a file request but the file doesn't exist in both directories, return 404 + res.status(404).send('Not found'); +}); + +app.listen(PORT, () => { + console.log(`Server running on http://localhost:${PORT}${BASE_URL}`); +}); diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 11d1739..7c21ea8 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -55,7 +55,7 @@ function App() { <> - + diff --git a/frontend/src/common/MoleculeUtils.jsx b/frontend/src/common/MoleculeUtils.jsx index c7d8080..777494e 100644 --- a/frontend/src/common/MoleculeUtils.jsx +++ b/frontend/src/common/MoleculeUtils.jsx @@ -17,7 +17,7 @@ const Item = styled(Paper)(({ theme }) => ({ async function substructureSearch(substructure, limit=48, skip=0, signal) { let encoded = encodeURIComponent(substructure); - const response = await fetch(`/api/molecules/search/?substructure=${encoded}&skip=${skip}&limit=${limit}`, {signal: signal}) + const response = await fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/search/?substructure=${encoded}&skip=${skip}&limit=${limit}`, {signal: signal}) if (!response.ok) { throw new Error('Invalid SMILES') @@ -37,7 +37,7 @@ function moleculePage(molecule_id) { // website name. Need the first and third elements (0, 2) to redirect to the molecule endpoint below. This is so that regardless of which page we are on, we can redirect to the // molecule page. let og_url = window.location.href.split("/"); - let url = og_url[0] + "//" + og_url[2] + "/molecule/" + molecule_id; + let url = og_url[0] + "//" + og_url[2] + `/${document.location.pathname.split('/')[1]}/molecule/` + molecule_id; window.open(url, "_blank", "noreferrer"); } @@ -49,7 +49,7 @@ function neighborPage(molecule_id) { // Gets the original url for the window and splits it into its components. The first element will always be http(s):, second will always be empty, third will always be // website name. Need the first and third elements (0, 2) to redirect to the neighboar endpoint below. let og_url = window.location.href.split("/"); - let url = og_url[0] + "//" + og_url[2] + "/neighbors/" + molecule_id; + let url = og_url[0] + "//" + og_url[2] + `/${document.location.pathname.split('/')[1]}/neighbors/` + molecule_id; window.open(url, "_blank", "noreferrer"); } @@ -154,9 +154,9 @@ async function retrieveSVG(smiles, molecule_id, substructure = undefined, distan } -const downloadMoleculeData = (moleculeIDs, context=null) => { +const downloadMoleculeData = (moleculeIDs, data_type="ml", context=null) => { const a = document.createElement('a'); - let search_string = `/api/molecules/data/export/batch?molecule_ids=${moleculeIDs}`; + let search_string = `/api/${document.location.pathname.split('/')[1]}/molecules/data/export/batch?molecule_ids=${moleculeIDs}&data_type=${data_type}`; if (context) { search_string += `&context=${context}`; diff --git a/frontend/src/common/Navbar.jsx b/frontend/src/common/Navbar.jsx index 1f9f0f3..883ce2a 100644 --- a/frontend/src/common/Navbar.jsx +++ b/frontend/src/common/Navbar.jsx @@ -1,4 +1,4 @@ -import * as React from 'react'; +import React, { useEffect, useState } from 'react'; import PropTypes from 'prop-types'; import AppBar from '@mui/material/AppBar'; import Box from '@mui/material/Box'; @@ -18,13 +18,42 @@ import { NavLink, useLocation } from 'react-router-dom'; import { Link } from 'react-router-dom'; -import OriginalKraken from './OriginalKraken.js' - const drawerWidth = 240; +const Badge = ({display}) => { + const displayStyle = { + display: display, + mr: 1, + fontSize: '60px', + maxHeight: '70px', + }; + return ( + + ); +}; + +// Adapted from MUI documentation +// Responsive App Bbar with Drawer - https://mui.com/material-ui/react-app-bar/#responsive-app-bar-with-drawer function DrawerAppBar(props) { - const { window, pages } = props; + const { navwindow, pages } = props; const [mobileOpen, setMobileOpen] = React.useState(false); + const [name, setName] = useState(""); + + useEffect(() => { + fetch(`/${document.location.pathname.split('/')[1]}/brand/names.json`) + .then(response => { + if (!response.ok) { + throw new Error('Network response was not ok'); + } + return response.json(); + }) + .then(data => { + setName(data[0].name); + }) + .catch(error => { + console.error('Error fetching stats:', error); + }); +}, []); const handleDrawerToggle = () => { setMobileOpen(prevState => !prevState); @@ -41,7 +70,7 @@ function DrawerAppBar(props) { const drawer = ( - kraken + { name } @@ -60,25 +89,28 @@ function DrawerAppBar(props) { ); })} + {/*} - + + + */} ); - const container = window !== undefined ? () => window().document.body : undefined; + const container = navwindow !== undefined ? () => navwindow().document.body : undefined; return ( - + - kraken + { name } {Object.keys(pages).map(item => { @@ -110,11 +142,13 @@ function DrawerAppBar(props) { ); })} - + {/* + + */} @@ -141,7 +175,7 @@ function DrawerAppBar(props) { } DrawerAppBar.propTypes = { - window: PropTypes.func, // Injected by the documentation to work in an iframe. You won't need it on your project. + window: PropTypes.func, }; export default DrawerAppBar; \ No newline at end of file diff --git a/frontend/src/common/OriginalKraken.js b/frontend/src/common/OriginalKraken.js deleted file mode 100644 index 92b7452..0000000 --- a/frontend/src/common/OriginalKraken.js +++ /dev/null @@ -1,9 +0,0 @@ -import { jsx as _jsx } from "react/jsx-runtime"; -import createSvgIcon from "@mui/icons-material/utils/createSvgIcon.js"; - - -const OriginalKraken = createSvgIcon(_jsx("path", { - d:"M 12.214478,0 1.1895664,5.843998 1,17.843999 11.835433,24 22.860432,18.15609 23.049912,6.1560897 Z m 1.595477,3.2252694 c 0.01986,0.02621 0.168044,0.048257 0.431354,0.06413 0.255609,0.015409 0.302768,0.022588 0.403299,0.061748 0.06262,0.024389 0.155862,0.050997 0.207209,0.059101 l 0.09341,0.014732 v -0.044458 c 0,-0.042735 0.0031,-0.044546 0.07375,-0.044546 h 0.07383 l 0.0043,0.059543 c 0.0043,0.0557 0.009,0.060862 0.07189,0.079832 0.03695,0.011155 0.08739,0.028055 0.112029,0.037578 0.02466,0.00953 0.09183,0.026731 0.149343,0.038196 0.0575,0.011464 0.128086,0.028095 0.156839,0.036961 0.255304,0.07872 0.327202,0.1033433 0.365986,0.1253481 0.02466,0.013983 0.07836,0.042775 0.119439,0.064041 0.04108,0.021267 0.145297,0.07538 0.231554,0.1201439 0.213739,0.1109203 0.303361,0.2090198 0.470961,0.5156832 0.139621,0.2554591 0.164483,0.4066982 0.119175,0.7250966 -0.04181,0.2938581 -0.07612,0.4190776 -0.152167,0.5558193 -0.09076,0.1632085 -0.107533,0.1984763 -0.09429,0.1984758 0.0081,-2.2e-5 0.01482,0.010716 0.01482,0.023817 1.2e-5,0.013102 -0.0093,0.023817 -0.02066,0.023818 -0.02202,-1.7e-6 -0.06899,0.065831 -0.06899,0.096681 6e-6,0.010129 -0.0436,0.06437 -0.09703,0.1205846 -0.05338,0.056215 -0.09712,0.1125095 -0.09712,0.1250837 -1.9e-5,0.012573 -0.01095,0.022934 -0.02423,0.022934 -0.01328,-1.94e-5 -0.103041,0.080786 -0.199442,0.1795987 -0.09641,0.098812 -0.218271,0.2104656 -0.270812,0.2480499 -0.05252,0.037585 -0.13247,0.1087175 -0.177655,0.1580749 -0.04519,0.049355 -0.115762,0.11254 -0.15684,0.1404322 -0.04108,0.027893 -0.09674,0.067074 -0.123668,0.087065 -0.0813,0.060351 -0.293276,0.287297 -0.31368,0.3358204 -0.01403,0.033385 -0.0268,0.043254 -0.04815,0.037314 -0.06512,-0.018104 -0.176869,0.1807113 -0.1818,0.3234706 -0.0025,0.072838 0.01236,0.1190553 0.06784,0.2110017 0.05153,0.085449 0.158032,0.152958 0.241166,0.152958 0.05952,1.8e-6 0.235532,-0.06332 0.330263,-0.1188204 0.07606,-0.044558 0.199798,-0.1684667 0.199798,-0.2000633 7e-6,-0.01038 0.01273,-0.014765 0.02939,-0.010148 0.01611,0.00449 0.03752,-0.00233 0.04748,-0.015084 0.0099,-0.012779 0.0372,-0.033724 0.06057,-0.046576 0.02337,-0.012852 0.106482,-0.083051 0.184714,-0.1560456 0.252627,-0.2357172 0.408164,-0.2892192 0.972706,-0.3343211 0.282723,-0.022587 0.447002,-0.014659 0.686994,0.033078 0.03234,0.00644 0.06252,1.36e-4 0.09456,-0.01985 0.04618,-0.028797 0.04748,-0.028754 0.07199,0.00277 0.03112,0.040044 0.162602,0.08133 0.407887,0.128171 0.362684,0.06926 0.457808,0.1318288 0.868173,0.5713446 0.09649,0.1033381 0.175453,0.1932474 0.175453,0.1997989 7e-6,0.00656 0.02521,0.024456 0.05603,0.039694 0.07053,0.034898 0.07789,0.046569 0.07832,0.1246427 2.28e-4,0.034935 0.02718,0.1442923 0.06003,0.2430222 0.05295,0.1594989 0.05952,0.195747 0.05952,0.3254997 0,0.2148384 -0.06692,0.533981 -0.132222,0.6303575 -0.03303,0.048697 -0.04858,0.1079466 -0.03008,0.1144986 0.0076,0.00265 0.0093,0.028047 0.0037,0.056366 -0.0076,0.040112 -0.01722,0.051514 -0.04391,0.051514 -0.0278,1.9e-6 -0.03849,0.014229 -0.05652,0.075421 -0.03832,0.1297352 -0.04568,0.1690542 -0.04157,0.2225582 0.0025,0.02909 -0.01026,0.08347 -0.02859,0.123672 -0.02694,0.05921 -0.03174,0.09265 -0.02706,0.191066 0.0037,0.07813 0.01267,0.123994 0.02602,0.132758 0.01322,0.0087 0.0171,0.0275 0.01082,0.05389 -0.01254,0.05323 0.03579,0.189596 0.102771,0.289775 0.02865,0.04285 0.05215,0.08431 0.05215,0.0921 -6e-6,0.0248 0.123772,0.159624 0.171039,0.186301 0.177998,0.100471 0.276941,0.128703 0.47872,0.136552 0.07394,0.0029 0.206791,0.0091 0.295244,0.01384 0.13879,0.0075 0.175146,0.0038 0.265167,-0.02637 0.05738,-0.01925 0.104261,-0.0439 0.104261,-0.05478 0,-0.0309 0.07238,-0.07406 0.105504,-0.0629 0.05867,0.0198 0.346585,-0.257378 0.364929,-0.351345 0.0049,-0.02528 0.01556,-0.07265 0.02374,-0.105324 0.02214,-0.08886 0.042,-0.415339 0.02583,-0.426414 -0.01538,-0.01055 0.01089,-0.141355 0.04125,-0.205972 0.01052,-0.02239 0.02614,-0.101059 0.03457,-0.1747482 0.01365,-0.1184766 0.03154,-0.2195437 0.07304,-0.4118582 0.01869,-0.086703 0.05824,-0.073356 0.117496,0.039694 0.02749,0.052405 0.0613,0.1275045 0.07525,0.1668076 0.01389,0.039307 0.03689,0.087725 0.0511,0.1076181 0.04223,0.059138 0.102502,0.3089097 0.125434,0.5196537 0.0055,0.0524 0.02042,0.120271 0.03265,0.150842 0.02939,0.07343 0.04428,0.419153 0.02275,0.528826 -0.04999,0.254788 -0.05669,0.317042 -0.04022,0.372075 0.0086,0.02871 0.0031,0.03848 -0.02841,0.05126 -0.02145,0.0087 -0.03905,0.02664 -0.03905,0.03996 6e-6,0.01332 -0.01016,0.03668 -0.02269,0.05195 -0.01248,0.0153 -0.06795,0.08943 -0.123234,0.164689 -0.05529,0.07527 -0.147578,0.181758 -0.205086,0.236672 -0.05749,0.05491 -0.141559,0.135427 -0.186743,0.178893 -0.05178,0.0498 -0.137347,0.106649 -0.231469,0.153752 -0.274299,0.137268 -0.245998,0.129699 -0.469111,0.125965 -0.119039,-0.0019 -0.22851,0.0041 -0.264545,0.015 -0.09188,0.02752 -0.60043,-0.0026 -0.775022,-0.04587 -0.07394,-0.01833 -0.152388,-0.03913 -0.174304,-0.04622 -0.02478,-0.008 -0.04593,-0.0063 -0.05602,0.0043 -0.01162,0.01235 -0.03019,0.01183 -0.06581,-0.0018 -0.02731,-0.01049 -0.0613,-0.01915 -0.07569,-0.01915 -0.01857,-1e-6 -0.02472,-0.01037 -0.02134,-0.03573 0.0049,-0.03791 -0.03775,-0.08117 -0.193887,-0.196007 -0.09593,-0.07054 -0.301769,-0.286434 -0.301769,-0.316502 0,-0.0119 -0.01291,-0.03126 -0.02878,-0.04305 -0.01581,-0.01179 -0.03751,-0.04255 -0.04827,-0.06836 -0.0107,-0.02582 -0.04446,-0.08119 -0.07506,-0.122966 -0.04033,-0.05508 -0.07064,-0.127042 -0.110179,-0.261988 -0.03001,-0.102346 -0.06457,-0.218274 -0.07684,-0.257576 -0.06874,-0.220291 -0.08918,-1.0118196 -0.03406,-1.317966 0.05123,-0.2844963 0.02479,-0.5143029 -0.07084,-0.6159789 -0.02804,-0.029825 -0.04748,-0.063872 -0.04323,-0.075596 0.0095,-0.026375 -0.169089,-0.196956 -0.252198,-0.2409049 -0.03284,-0.017377 -0.122187,-0.051777 -0.198562,-0.07639 -0.149546,-0.048193 -0.137844,-0.048371 -0.428795,0.0075 -0.07055,0.013547 -0.336112,0.1453063 -0.363434,0.1803042 -0.01047,0.013368 -0.08412,0.054298 -0.163807,0.091035 -0.162995,0.075137 -0.405857,0.2095843 -0.473518,0.2621633 -0.118628,0.092186 -0.46025,0.2493743 -0.634854,0.2920675 -0.115805,0.028318 -0.227865,0.086576 -0.312007,0.1622209 -0.0976,0.087754 -0.1145,0.1212173 -0.128435,0.2541367 -0.0084,0.080111 -0.0061,0.092366 0.02275,0.1137922 0.02484,0.0185 0.03025,0.03436 0.02349,0.06907 -0.0063,0.03239 0.0031,0.06617 0.03222,0.120321 0.0225,0.04141 0.07613,0.139619 0.11926,0.218235 0.0431,0.07861 0.07841,0.151041 0.07841,0.160985 1.2e-5,0.0099 0.02355,0.05288 0.05233,0.09544 0.02878,0.04255 0.05245,0.08275 0.05264,0.08928 2.22e-4,0.0065 0.02398,0.05112 0.05276,0.09916 0.02878,0.04803 0.05934,0.115065 0.06792,0.148987 0.0086,0.03393 0.03192,0.09959 0.0519,0.145902 0.01992,0.04633 0.03616,0.09304 0.03616,0.103824 -1.2e-5,0.01079 0.02859,0.04912 0.06351,0.08512 0.03493,0.036 0.08276,0.107986 0.106292,0.160016 0.03616,0.0799 0.17105,0.375244 0.264458,0.578932 0.01402,0.03056 0.03013,0.112724 0.03579,0.182597 0.0055,0.06987 0.01974,0.162833 0.03142,0.206502 0.01782,0.0669 0.038,0.361534 0.04262,0.623302 6.15e-4,0.03712 0.0062,0.06748 0.01236,0.06748 0.0061,1.9e-5 0.01119,0.01435 0.01119,0.03193 0,0.01759 0.0084,0.04616 0.01852,0.06352 0.0147,0.02503 0.0147,0.03807 1.78e-4,0.06299 -0.01482,0.02521 -0.01401,0.04927 0.0037,0.122437 0.01223,0.05007 0.02232,0.107293 0.02232,0.1272 0,0.09057 0.14232,0.411146 0.225029,0.506863 0.124709,0.144321 0.339261,0.264476 0.620125,0.347199 0.09477,0.02792 0.405103,0.03533 0.428704,0.01026 0.02307,-0.02448 0.0484,-0.02232 0.07048,0.006 0.02651,0.03393 0.15877,0.03198 0.191503,-0.0028 0.02301,-0.02444 0.02552,-0.02455 0.02982,-8e-4 0.0062,0.0343 0.02577,0.03951 0.221228,0.05885 0.154841,0.01531 0.203144,0.02367 0.379047,0.06545 0.03695,0.0088 0.128941,0.02603 0.204387,0.03838 0.07545,0.01235 0.175274,0.03613 0.22185,0.05283 0.04655,0.01671 0.09827,0.0266 0.114938,0.02196 0.01925,-0.0054 0.03917,0.003 0.05455,0.02286 0.02441,0.03157 0.172255,0.10188 0.272755,0.129671 0.02996,0.0083 0.09592,0.04089 0.146515,0.07242 0.0506,0.03152 0.101642,0.05733 0.113529,0.05733 0.01187,-1.8e-5 0.02158,0.01099 0.02158,0.02443 0,0.03487 0.115104,0.150223 0.149872,0.150223 0.01604,-3e-6 0.03758,0.01429 0.04784,0.03176 0.01027,0.01747 0.02712,0.03176 0.03752,0.03176 0.02368,-2e-6 0.02398,0.02331 6.14e-4,0.06262 -0.01556,0.0265 -0.0091,0.04056 0.04895,0.107002 0.160141,0.183061 0.219278,0.299737 0.282187,0.556788 0.01187,0.04847 0.01205,0.08532 5.3e-4,0.130818 -0.0088,0.03483 -0.01334,0.125972 -0.0099,0.202533 0.0055,0.125921 0.0025,0.145662 -0.03088,0.206944 -0.02479,0.04537 -0.034,0.08047 -0.02798,0.106206 0.01039,0.04394 -0.03303,0.133296 -0.09951,0.205092 -0.02324,0.02509 -0.05824,0.07867 -0.0778,0.119085 -0.05627,0.11644 -0.326667,0.382022 -0.437707,0.429854 -0.02694,0.01159 -0.06282,0.0417 -0.07974,0.06696 -0.04656,0.06953 -0.304438,0.203832 -0.391924,0.20412 -0.0259,9e-5 -0.08404,0.01858 -0.129229,0.04111 -0.148041,0.07382 -0.229672,0.09867 -0.358496,0.109028 -0.119679,0.0096 -0.332619,0.05291 -0.447403,0.09104 -0.03794,0.01259 -0.05306,0.01242 -0.05725,-8.6e-4 -0.0076,-0.02417 -0.122729,-0.02209 -0.238521,0.0043 -0.05141,0.01172 -0.121954,0.01888 -0.15684,0.01596 -0.335219,-0.02799 -0.471784,-0.04383 -0.499721,-0.05804 -0.01955,-0.0099 -0.08144,-0.01318 -0.152073,-0.008 -0.09393,0.0069 -0.12078,0.0039 -0.127114,-0.01358 -0.0043,-0.01224 -0.02718,-0.02222 -0.05061,-0.02222 -0.02343,-3e-6 -0.07482,-0.01168 -0.114144,-0.02594 -0.07265,-0.02631 -0.08419,-0.02265 -0.102324,0.0322 -0.0025,0.0078 -0.02957,0.0055 -0.05996,-0.0052 -0.03824,-0.01342 -0.05535,-0.02881 -0.05535,-0.04992 -7e-6,-0.01678 -0.0064,-0.03052 -0.0144,-0.03052 -0.008,-1.9e-5 -0.03654,-0.02034 -0.06352,-0.04516 -0.027,-0.02481 -0.0692,-0.0524 -0.09385,-0.0613 -0.02466,-0.0089 -0.071,-0.03508 -0.102937,-0.05813 -0.03198,-0.02305 -0.07228,-0.04187 -0.08962,-0.0419 -0.01734,-3e-5 -0.05504,-0.01542 -0.0838,-0.03413 -0.03192,-0.02075 -0.07416,-0.0332 -0.108327,-0.03185 -0.04649,0.0018 -0.05602,-0.0031 -0.05602,-0.02911 0,-0.03674 -0.02545,-0.04503 -0.171745,-0.05602 -0.0575,-0.0043 -0.114612,-0.0089 -0.126935,-0.01037 -0.05325,-0.0058 -0.304596,0.02074 -0.329378,0.03485 -0.01494,0.0085 -0.04611,0.01557 -0.06924,0.0157 -0.02312,1.36e-4 -0.05885,0.01064 -0.07938,0.02338 -0.08647,0.05365 -0.158978,0.08683 -0.190452,0.08716 -0.02725,3.16e-4 -0.03363,-0.0084 -0.03363,-0.04577 0,-0.08049 0.08088,-0.241858 0.173689,-0.346406 0.04821,-0.05432 0.111234,-0.128643 0.13999,-0.16522 0.05898,-0.07502 0.146945,-0.124214 0.223086,-0.124731 0.02823,-2.27e-4 0.08052,-0.01539 0.116259,-0.03378 0.05713,-0.0294 0.07061,-0.03094 0.111414,-0.01296 0.06492,0.02858 0.307482,0.03146 0.317473,0.0038 0.0043,-0.01152 0.02197,-0.0209 0.0396,-0.0209 0.02429,0 0.03025,0.0075 0.0246,0.03051 -0.0071,0.02839 0.0012,0.03031 0.121468,0.02893 0.08326,-9.22e-4 0.160573,0.0085 0.217964,0.02656 0.157972,0.04966 0.408484,0.0943 0.620569,0.110529 0.02878,0.0021 0.07248,0.01298 0.09712,0.024 0.143711,0.06412 0.236554,0.07061 0.642263,0.04533 0.107891,-0.0068 0.357979,-0.07789 0.428002,-0.121818 0.02773,-0.01739 0.09556,-0.04646 0.150751,-0.06457 0.178886,-0.05874 0.380222,-0.17233 0.445909,-0.251668 0.09288,-0.112179 0.162436,-0.276582 0.172632,-0.407801 0.01242,-0.160064 -0.0094,-0.228166 -0.101271,-0.315972 -0.04182,-0.03997 -0.08542,-0.07269 -0.09686,-0.07269 -0.01144,-1.7e-5 -0.03418,-0.01429 -0.05061,-0.03176 -0.01642,-0.01747 -0.04287,-0.03176 -0.05885,-0.03176 -0.01592,6e-6 -0.0332,-0.0072 -0.03831,-0.01588 -0.0048,-0.0087 -0.02182,-0.01588 -0.03732,-0.01588 -0.0155,1.9e-5 -0.05159,-0.01474 -0.08027,-0.03273 -0.03389,-0.02125 -0.08745,-0.03504 -0.153044,-0.03944 -0.05547,-0.0037 -0.123473,-0.01474 -0.151102,-0.02443 -0.0366,-0.01284 -0.07567,-0.0129 -0.144055,-2.71e-4 -0.115695,0.02141 -0.470623,0.02154 -0.621713,1.8e-4 -0.0616,-0.0087 -0.162435,-0.02173 -0.224052,-0.02893 -0.06161,-0.0072 -0.128803,-0.02104 -0.149343,-0.03079 -0.02053,-0.0097 -0.120522,-0.03964 -0.222208,-0.06642 -0.101682,-0.0268 -0.233872,-0.0734 -0.293649,-0.103559 -0.05977,-0.03017 -0.116285,-0.05478 -0.125614,-0.05478 -0.0093,-9e-6 -0.04329,-0.01429 -0.07553,-0.03176 -0.03222,-0.01746 -0.06944,-0.03176 -0.08275,-0.03176 -0.03424,10e-7 -0.227096,-0.102594 -0.298152,-0.158603 -0.03284,-0.0259 -0.08327,-0.06419 -0.112029,-0.08503 -0.02877,-0.02084 -0.08694,-0.071 -0.129228,-0.111498 -0.0423,-0.04052 -0.08766,-0.07365 -0.100826,-0.07365 -0.01317,-1.6e-5 -0.02399,-0.01276 -0.02399,-0.02832 6e-6,-0.01556 -0.04028,-0.07069 -0.08953,-0.122525 -0.153383,-0.161361 -0.246361,-0.346181 -0.351521,-0.698722 -0.02343,-0.07861 -0.05074,-0.157278 -0.06051,-0.174746 -0.02343,-0.04174 -0.05633,-0.160453 -0.08813,-0.317561 -0.01414,-0.06987 -0.03579,-0.169887 -0.04809,-0.222291 -0.0123,-0.0524 -0.02743,-0.13465 -0.03364,-0.182687 -0.02158,-0.167639 -0.07314,-0.405526 -0.136289,-0.628328 -0.0077,-0.02684 -0.01383,-0.06126 -0.01383,-0.07649 0,-0.05073 -0.07966,-0.201384 -0.154723,-0.292684 -0.09375,-0.114021 -0.167645,-0.14431 -0.228289,-0.09359 -0.07764,0.06493 -0.208139,0.434208 -0.242495,0.686195 -0.0084,0.06114 -0.01938,0.157216 -0.02453,0.213561 -0.0048,0.05634 -0.01525,0.114242 -0.0225,0.128611 -0.0073,0.01437 -0.01999,0.07904 -0.02835,0.143696 -0.0084,0.06466 -0.02301,0.171165 -0.03265,0.236671 -0.0096,0.0655 -0.01636,0.176238 -0.01489,0.24611 0.0018,0.08891 -0.0061,0.153312 -0.02558,0.21444 -0.01544,0.04804 -0.02503,0.0966 -0.02134,0.107972 0.0037,0.01137 -0.01132,0.04821 -0.03326,0.08186 -0.02196,0.03366 -0.04968,0.10116 -0.06165,0.14996 -0.0257,0.10466 -0.232908,0.56373 -0.316059,0.70031 -0.03192,0.0524 -0.123098,0.16388 -0.202621,0.247696 -0.07953,0.08382 -0.144577,0.160616 -0.144577,0.17069 6e-6,0.01002 -0.0061,0.01835 -0.01304,0.01835 -0.0072,0 -0.07272,0.06601 -0.145641,0.146696 -0.07292,0.08068 -0.157535,0.173034 -0.188066,0.205267 -0.03332,0.03522 -0.04821,0.0612 -0.03732,0.0651 0.03173,0.01133 -0.01895,0.09112 -0.05786,0.09112 -0.02282,0 -0.04453,0.0191 -0.06767,0.05955 -0.01869,0.03275 -0.07034,0.102408 -0.114766,0.154811 -0.04488,0.05297 -0.106519,0.151665 -0.138755,0.222292 -0.03192,0.06987 -0.08156,0.157945 -0.110443,0.195741 -0.03966,0.05193 -0.05023,0.07819 -0.04341,0.107265 0.0048,0.02121 0.0025,0.03846 -0.0055,0.03846 -0.02878,-1e-6 -0.0772,0.152397 -0.07621,0.239935 0.0025,0.216315 0.0678,0.586345 0.121728,0.68902 0.04545,0.08644 0.129492,0.130736 0.203685,0.107352 0.101973,-0.03215 0.245716,-0.103165 0.32867,-0.162398 0.0458,-0.03273 0.118652,-0.07953 0.161784,-0.104001 0.0431,-0.02448 0.07841,-0.0497 0.07841,-0.05611 -1.3e-5,-0.0064 0.01753,-0.01634 0.03899,-0.02205 0.0479,-0.01278 0.190126,-0.1531 0.242582,-0.239229 0.05983,-0.09825 0.127457,-0.243697 0.166099,-0.357254 0.01932,-0.05676 0.04016,-0.110351 0.04631,-0.119085 0.0061,-0.0087 0.01986,-0.0624 0.03039,-0.119174 0.0126,-0.06824 0.03585,-0.128127 0.06853,-0.176776 0.02927,-0.04356 0.04937,-0.09282 0.04937,-0.120673 -6e-6,-0.03048 0.0099,-0.05212 0.02823,-0.0614 0.0155,-0.0079 0.06088,-0.05784 0.100825,-0.111057 0.03991,-0.05322 0.105745,-0.12721 0.146256,-0.164427 0.148145,-0.136106 0.189998,-0.127005 0.156397,0.03405 -0.0305,0.146088 -0.02447,0.696032 0.0095,0.872586 0.02005,0.104187 0.02374,0.180406 0.01722,0.354962 -0.0076,0.203611 -0.01267,0.234987 -0.06069,0.371987 -0.03511,0.100169 -0.04956,0.164412 -0.04391,0.194507 0.0055,0.02892 0.0025,0.0449 -0.0091,0.0449 -0.0096,-1.7e-5 -0.05688,0.04108 -0.104971,0.0913 -0.04809,0.05024 -0.120011,0.118555 -0.15984,0.151813 -0.09851,0.08226 -0.386388,0.253383 -0.688402,0.409212 -0.137722,0.07106 -0.2693,0.139869 -0.292421,0.15287 -0.05583,0.0314 -0.2513,0.06754 -0.353815,0.06545 -0.04519,-9.24e-4 -0.184081,-0.0145 -0.308649,-0.03017 -0.245349,-0.03089 -0.30346,-0.05236 -0.418742,-0.15481 -0.05707,-0.05074 -0.149958,-0.189963 -0.173068,-0.25943 -0.0048,-0.01451 -0.03862,-0.07175 -0.07508,-0.127202 -0.07542,-0.114724 -0.234463,-0.431275 -0.234463,-0.466725 0,-0.0328 -0.05879,-0.258009 -0.0838,-0.321089 -0.02614,-0.06587 -0.05694,-0.330053 -0.05344,-0.458787 0.0012,-0.05389 0.01353,-0.143198 0.02682,-0.198475 0.01328,-0.05528 0.02761,-0.129137 0.03186,-0.164074 0.0043,-0.03494 0.0169,-0.0776 0.02823,-0.09483 0.01133,-0.01723 0.02053,-0.05692 0.02053,-0.08822 6e-6,-0.06021 0.02564,-0.105033 0.125526,-0.218852 0.05952,-0.06781 0.144658,-0.201443 0.173862,-0.273015 0.0089,-0.02183 0.04131,-0.07184 0.07199,-0.111146 0.03068,-0.0393 0.0751,-0.10717 0.0987,-0.150841 0.02361,-0.04368 0.05523,-0.08879 0.07022,-0.100209 0.015,-0.01142 0.02725,-0.03284 0.02725,-0.04764 -1.9e-5,-0.01479 0.02674,-0.07307 0.05946,-0.129581 0.03881,-0.06712 0.05436,-0.108128 0.04482,-0.118293 -0.01907,-0.02028 -0.01882,-0.084 3.63e-4,-0.09659 0.0082,-0.0054 0.01489,-0.02324 0.01489,-0.03961 0,-0.02305 0.01052,-0.02941 0.04667,-0.02832 0.02576,8e-4 0.05196,-0.0086 0.05847,-0.0209 0.0246,-0.04664 0.212886,-0.284394 0.225203,-0.284394 0.0171,2.4e-5 0.192482,-0.235133 0.192482,-0.258018 -1.3e-5,-0.0097 0.01236,-0.03251 0.02743,-0.05054 0.01507,-0.01803 0.04262,-0.07845 0.06118,-0.134169 0.02712,-0.08126 0.03056,-0.108856 0.0174,-0.139639 -0.0249,-0.05806 -0.02024,-0.0714 0.02295,-0.06581 0.03505,0.0045 0.04163,-0.0028 0.05952,-0.06643 0.02608,-0.09248 0.02595,-0.09376 -0.0093,-0.08398 -0.02367,0.0067 -0.02989,5.42e-4 -0.02989,-0.02937 7e-6,-0.02075 0.01371,-0.04686 0.03043,-0.05796 0.02804,-0.0186 0.02865,-0.02288 0.0075,-0.05496 -0.03148,-0.04781 -0.02878,-0.08596 0.0069,-0.09589 0.02749,-0.0077 0.02982,-0.02153 0.02963,-0.172541 -1.42e-4,-0.09034 -0.01003,-0.209072 -0.02221,-0.263839 -0.01218,-0.05477 -0.0209,-0.104863 -0.01943,-0.111235 0.0055,-0.0245 -0.02349,-0.125951 -0.0696,-0.240992 -0.02645,-0.06595 -0.0527,-0.139751 -0.0583,-0.163986 -0.01193,-0.05142 -0.09667,-0.149797 -0.179598,-0.208531 -0.102741,-0.07276 -0.185545,-0.05205 -0.33591,0.08424 -0.06177,0.05598 -0.09254,0.100927 -0.131963,0.192214 -0.06124,0.141852 -0.133313,0.260159 -0.19812,0.325498 -0.02601,0.02621 -0.06131,0.07264 -0.07841,0.103207 -0.04096,0.0731 -0.117859,0.160032 -0.228111,0.257841 -0.04932,0.04373 -0.14376,0.134905 -0.209946,0.202533 -0.143704,0.14683 -0.202056,0.187126 -0.3502,0.241876 -0.06161,0.02277 -0.150837,0.05641 -0.198299,0.0748 -0.04748,0.0184 -0.128115,0.03736 -0.179247,0.04217 -0.101434,0.0095 -0.218905,0.04251 -0.456491,0.128435 -0.132606,0.04796 -0.240501,0.101599 -0.4923065,0.24452 -0.058244,0.03305 -0.1430145,0.10039 -0.2032419,0.161428 -0.023799,0.02413 -0.079778,0.07777 -0.1244636,0.119262 -0.2713277,0.252003 -0.2779872,0.263109 -0.4490814,0.750414 -0.073542,0.209438 -0.087888,0.260292 -0.098454,0.349316 -0.01199,0.101069 0.023989,0.346279 0.061833,0.421298 0.017463,0.03468 0.046114,0.09523 0.063518,0.134521 0.017403,0.0393 0.044089,0.09646 0.059287,0.127024 0.033082,0.06661 0.043227,0.140604 0.051598,0.377192 0.00491,0.139577 0.0019,0.178629 -0.013153,0.178629 -0.029944,10e-7 -0.082835,0.168563 -0.082835,0.264016 0,0.06207 -0.018997,0.100642 -0.1279934,0.260047 -0.058475,0.08549 -0.1571706,0.189619 -0.221057,0.23323 -0.1153621,0.07874 -0.3782659,0.208588 -0.4949563,0.244435 -0.1105039,0.03394 -0.1447248,0.03646 -0.4555197,0.03413 -0.18485,-0.0014 -0.3664213,-0.0066 -0.4033915,-0.01182 -0.036956,-0.0052 -0.099112,-0.0095 -0.1381397,-0.0097 -0.03905,-1.36e-4 -0.070916,-0.0069 -0.070916,-0.015 -1.13e-5,-0.0081 -0.024164,-0.01483 -0.053749,-0.01483 -0.040221,2e-6 -0.055471,-0.0076 -0.061067,-0.03017 -0.00435,-0.0166 -0.021955,-0.03402 -0.039661,-0.03873 -0.1256369,-0.03331 -0.3268014,-0.09499 -0.3808974,-0.116792 -0.055591,-0.02239 -0.066917,-0.02286 -0.079831,-0.0035 -0.012483,0.01865 -0.013774,0.01817 -0.00757,-0.0027 0.00554,-0.01965 -0.027241,-0.03827 -0.151637,-0.08531 -0.087536,-0.03308 -0.2331038,-0.08824 -0.3234687,-0.122614 -0.090371,-0.03438 -0.1960908,-0.07213 -0.2349117,-0.08389 -0.038801,-0.01176 -0.093409,-0.03637 -0.1212901,-0.0547 -0.033391,-0.02196 -0.075501,-0.0333 -0.1235837,-0.03325 -0.040094,3.2e-5 -0.1031981,-0.01016 -0.1401685,-0.02277 -0.1320943,-0.04498 -0.2877409,-0.07391 -0.4895691,-0.09085 -0.1886439,-0.01584 -0.216513,-0.01447 -0.3500217,0.01641 -0.2105787,0.04868 -0.3038767,0.09635 -0.3359088,0.171659 -0.014143,0.03327 -0.033575,0.07123 -0.043108,0.08434 -0.01771,0.0243 -0.035544,0.102056 -0.065626,0.285804 -0.032775,0.200035 -0.042122,0.221224 -0.1459059,0.328852 -0.054053,0.05611 -0.122446,0.115042 -0.1518953,0.131083 -0.029455,0.01604 -0.079654,0.05135 -0.1115926,0.07841 -0.06137,0.05203 -0.1137016,0.06435 -0.1137016,0.02672 0,-0.02077 0.060263,-0.34577 0.091564,-0.493631 0.00739,-0.03494 0.01771,-0.184958 0.022753,-0.333437 0.00713,-0.207978 0.01562,-0.287403 0.037082,-0.345965 0.015312,-0.04181 0.027856,-0.09309 0.027856,-0.113882 0,-0.184359 0.2786337,-0.434489 0.5768101,-0.517888 0.1410295,-0.03944 0.5420108,-0.06132 0.6167747,-0.0336 0.032284,0.01195 0.046243,0.01209 0.046243,4.52e-4 0,-0.01743 0.075176,-0.0042 0.089442,0.0157 0.0043,0.0058 0.047779,0.0133 0.096858,0.01649 0.049072,0.0032 0.1398243,0.02295 0.2016498,0.04393 0.061825,0.02098 0.1829681,0.05637 0.2692191,0.07859 0.086256,0.02222 0.1870819,0.05495 0.2240581,0.07277 0.074351,0.03584 0.1405251,0.04082 0.1721021,0.01296 0.030933,-0.0273 0.1266707,0.01284 0.1266707,0.0531 0,0.02583 -0.00725,0.02895 -0.047228,0.02046 -0.046489,-0.0098 -0.046796,-0.0095 -0.020109,0.02187 0.014943,0.01753 0.03788,0.03217 0.050977,0.03255 0.013097,4.06e-4 0.05067,0.01153 0.08354,0.0247 0.085076,0.0341 0.2543499,0.08639 0.3545168,0.109558 0.064366,0.01489 0.089154,0.01531 0.099859,0.0015 0.00781,-0.01002 0.037819,-0.02737 0.066684,-0.03845 0.046554,-0.01788 0.059522,-0.01632 0.1145015,0.01349 0.048514,0.02632 0.060259,0.04052 0.054174,0.06527 -0.00684,0.02799 -0.0025,0.03041 0.037755,0.02099 0.027553,-0.0064 0.049499,-0.0038 0.055656,0.0068 0.00664,0.01144 0.1287303,0.02077 0.3529296,0.027 0.327891,0.0091 0.3463201,0.0081 0.424915,-0.02496 0.1148398,-0.04821 0.1642313,-0.09272 0.2395801,-0.215677 0.055899,-0.09118 0.066164,-0.120871 0.070575,-0.203679 0.00491,-0.09241 0.0019,-0.103185 -0.069773,-0.22935 -0.041192,-0.07281 -0.079357,-0.147823 -0.08476,-0.16672 -0.014325,-0.05017 -0.051588,-0.08997 -0.084239,-0.08997 -0.018386,-2e-6 -0.027368,-0.0098 -0.025333,-0.0278 0.0019,-0.01529 -0.01199,-0.0635 -0.030686,-0.107176 -0.079261,-0.185252 -0.090062,-0.213974 -0.090062,-0.240023 -6.3e-6,-0.01508 -0.00954,-0.0387 -0.021157,-0.05248 -0.018265,-0.02162 -0.018265,-0.048 3.628e-4,-0.19186 0.01187,-0.09171 0.024661,-0.195295 0.028476,-0.230231 0.00373,-0.03494 0.033027,-0.174243 0.064924,-0.309622 0.04587,-0.194612 0.06934,-0.264404 0.1122077,-0.333175 0.029824,-0.04784 0.054174,-0.09427 0.054234,-0.103206 8.62e-5,-0.0199 0.1697278,-0.298272 0.2314619,-0.379839 0.024661,-0.03256 0.070014,-0.08498 0.100832,-0.116438 0.030806,-0.03146 0.056019,-0.06343 0.056019,-0.07111 -6e-6,-0.01332 0.02011,-0.04316 0.05233,-0.0778 0.00822,-0.0088 0.037453,-0.03033 0.065011,-0.04773 0.027618,-0.01739 0.053252,-0.04431 0.057061,-0.05981 0.00371,-0.0155 0.030496,-0.03721 0.059157,-0.04826 0.028711,-0.01104 0.055768,-0.0301 0.060269,-0.04243 0.00431,-0.01233 0.019127,-0.02249 0.032651,-0.0225 0.013524,-2.4e-5 0.04452,-0.01821 0.068891,-0.04049 0.02435,-0.02228 0.067999,-0.05561 0.097031,-0.07401 0.029022,-0.0184 0.069613,-0.04902 0.090154,-0.0681 0.060881,-0.05655 0.5070882,-0.302454 0.6154519,-0.339173 0.055037,-0.01866 0.123,-0.05043 0.1509312,-0.07056 0.027919,-0.02015 0.090384,-0.04666 0.1388446,-0.05893 0.05627,-0.01424 0.097903,-0.03543 0.1152864,-0.05867 0.03094,-0.04134 0.0586,-0.04624 0.08318,-0.01473 0.01415,0.01812 0.03217,0.01591 0.110091,-0.01332 0.05129,-0.01923 0.116795,-0.05043 0.14555,-0.06942 0.02877,-0.01901 0.07776,-0.042 0.108936,-0.05107 0.07724,-0.02248 0.18916,-0.100199 0.212153,-0.147312 0.01039,-0.02129 0.01544,-0.05832 0.01113,-0.0823 -0.0074,-0.04078 -0.0048,-0.04315 0.03689,-0.03661 0.03807,0.006 0.04367,0.0025 0.03739,-0.02311 -0.0065,-0.02651 9.2e-5,-0.02946 0.05639,-0.02514 l 0.06378,0.0048 0.05744,-0.102773 c 0.0316,-0.05653 0.07073,-0.124286 0.08698,-0.150488 0.04753,-0.07657 0.10679,-0.259516 0.09722,-0.300093 -0.0055,-0.02282 3.63e-4,-0.04627 0.01506,-0.06193 0.01303,-0.01386 0.02933,-0.05955 0.03628,-0.101526 0.01397,-0.08475 0.01064,-0.362378 -0.0055,-0.468492 -0.0155,-0.101371 -0.08545,-0.220027 -0.19239,-0.326381 -0.08583,-0.08536 -0.102948,-0.0954 -0.17739,-0.104708 -0.09421,-0.01177 -0.224138,0.01003 -0.27637,0.04641 -0.01955,0.01364 -0.09725,0.08257 -0.17254,0.153136 -0.07529,0.07056 -0.184019,0.160505 -0.241608,0.199887 -0.05761,0.03938 -0.121591,0.08378 -0.142284,0.09862 -0.02072,0.01484 -0.054365,0.03258 -0.074725,0.03943 -0.02036,0.0069 -0.065232,0.03691 -0.099667,0.06687 -0.034435,0.02995 -0.1184858,0.07822 -0.186743,0.107263 -0.068259,0.02904 -0.1644468,0.07393 -0.21374,0.09976 -0.049322,0.02582 -0.1251332,0.05591 -0.1685669,0.06687 -0.043418,0.01095 -0.088329,0.02983 -0.099767,0.04198 -0.011428,0.01215 -0.031117,0.02215 -0.043789,0.02215 -0.012671,-2e-6 -0.062736,0.02142 -0.1112348,0.04764 -0.085021,0.04593 -0.095376,0.04766 -0.2880121,0.04746 -0.1595636,-1.81e-4 -0.2193779,-0.0069 -0.2969161,-0.03281 -0.053372,-0.01791 -0.130673,-0.04242 -0.1717509,-0.05443 -0.1287389,-0.03766 -0.543833,-0.224766 -0.6247156,-0.28157 -0.042491,-0.02986 -0.117686,-0.07391 -0.1669797,-0.09791 -0.1092438,-0.05319 -0.3785301,-0.152179 -0.414504,-0.15234 -0.014389,-9.1e-5 -0.026133,-0.01026 -0.026133,-0.02277 0,-0.03852 -0.1847765,-0.08369 -0.4572909,-0.111851 -0.083976,-0.0087 -0.094128,-0.0062 -0.1269352,0.03052 -0.040032,0.04485 -0.084578,0.05249 -0.097475,0.01676 -0.010272,-0.02842 -0.068423,-0.0173 -0.1249058,0.02382 -0.020539,0.01495 -0.081036,0.04678 -0.1344374,0.07076 -0.053375,0.02397 -0.1105039,0.05009 -0.126935,0.05813 -0.04692,0.02294 -0.1908701,0.113314 -0.2474318,0.155339 -0.074937,0.05568 -0.2081807,0.195688 -0.2081807,0.218764 0,0.02614 -0.045751,0.133181 -0.070921,0.165837 -0.046858,0.06083 -0.1055229,0.293593 -0.1157308,0.459405 -0.00554,0.09127 -0.015989,0.187358 -0.023121,0.21356 -0.00707,0.02621 -0.024105,0.126216 -0.037758,0.222292 -0.040278,0.283771 -0.1947748,0.705568 -0.3091838,0.844094 -0.023982,0.02905 -0.069874,0.06851 -0.1019686,0.08768 -0.0321,0.01918 -0.058296,0.03904 -0.058296,0.04419 0,0.0052 -0.04034,0.04062 -0.08962,0.07878 -0.049317,0.03815 -0.089626,0.07554 -0.089626,0.083 0,0.0075 -0.0107,0.01358 -0.023797,0.01358 -0.013097,-1.4e-5 -0.040831,0.0143 -0.061746,0.03176 -0.020908,0.01746 -0.046366,0.03176 -0.056512,0.03176 -0.010211,1.5e-5 -0.022506,0.02142 -0.027426,0.04764 -0.010028,0.05328 -0.031792,0.06006 -0.071192,0.02215 -0.02306,-0.02217 -0.036895,-0.02299 -0.1057628,-0.006 -0.0436,0.01074 -0.096077,0.02548 -0.1166165,0.03273 -0.020539,0.0073 -0.074708,0.0177 -0.1204044,0.02329 -0.069912,0.0085 -0.098335,0.0034 -0.1792477,-0.03245 -0.052884,-0.02343 -0.1187873,-0.06512 -0.1464286,-0.0927 -0.048887,-0.04878 -0.1273779,-0.207301 -0.1664571,-0.335996 -0.010577,-0.03494 -0.028164,-0.07801 -0.038988,-0.09571 -0.047964,-0.07848 -0.1065561,-0.474319 -0.08151,-0.550704 0.020232,-0.06165 0.020784,-0.134765 0.00123,-0.147665 -0.00929,-0.0061 -0.011437,-0.05926 -0.00554,-0.139903 0.013834,-0.190822 -0.032593,-0.367845 -0.1270777,-0.484996 -0.037818,-0.04692 -0.09103,-0.114873 -0.1182032,-0.15093 -0.047105,-0.06249 -0.1769662,-0.154574 -0.3389958,-0.240376 -0.041078,-0.02174 -0.1015686,-0.06131 -0.1344311,-0.08795 -0.032837,-0.02664 -0.081535,-0.05894 -0.108235,-0.07172 -0.026688,-0.01278 -0.048642,-0.03208 -0.04858,-0.04287 2.45e-5,-0.02817 0.1633516,-0.07525 0.2610157,-0.07525 0.045628,0 0.095352,-0.0082 0.1105287,-0.01826 0.02183,-0.01449 0.035052,-0.01281 0.062897,0.008 0.020723,0.01543 0.064372,0.02629 0.1057627,0.02629 0.038741,-2e-6 0.074665,0.0072 0.079745,0.01588 0.00492,0.0087 0.022261,0.01588 0.038188,0.01588 0.015927,-6e-6 0.029025,0.0072 0.029025,0.01588 0,0.0087 0.026258,0.01588 0.05848,0.01588 0.067576,0 0.229039,0.04102 0.2880114,0.07321 0.022199,0.0121 0.060017,0.02205 0.084068,0.02205 0.024044,-1e-6 0.052146,0.01072 0.06236,0.02381 0.010211,0.01311 0.026258,0.02383 0.035666,0.02383 0.00935,9e-6 0.023613,0.01603 0.031732,0.03565 0.00811,0.0196 0.027919,0.03822 0.04403,0.04145 0.055775,0.0112 0.097651,0.05225 0.097651,0.09571 0,0.02317 0.017279,0.06922 0.038434,0.102326 0.073836,0.115513 0.081393,0.154519 0.088384,0.455876 0.00369,0.157036 0.01359,0.299307 0.022077,0.316148 0.00849,0.01684 0.015435,0.0653 0.015435,0.107707 0,0.04835 0.012544,0.103475 0.033575,0.14793 0.028104,0.05929 0.041508,0.07161 0.082125,0.07578 0.047964,0.0048 0.049379,0.0031 0.1230548,-0.161691 0.076743,-0.171697 0.08828,-0.235278 0.066511,-0.365548 -0.00805,-0.0484 -0.00492,-0.06489 0.013959,-0.07621 0.013344,-0.008 0.024351,-0.03197 0.024351,-0.05336 0,-0.03243 0.00725,-0.03891 0.043783,-0.03891 0.041323,0 0.044644,-0.0051 0.060695,-0.0913 0.00935,-0.05023 0.023184,-0.112819 0.030808,-0.139022 0.00757,-0.02621 0.020969,-0.122645 0.029702,-0.214352 0.019431,-0.202934 0.032838,-0.269318 0.082482,-0.40842 0.027734,-0.07765 0.036035,-0.124338 0.029702,-0.167512 -0.00774,-0.05302 -0.0043,-0.06151 0.027856,-0.07464 0.024966,-0.01003 0.051163,-0.04831 0.082389,-0.119967 0.02515,-0.05781 0.045689,-0.108933 0.045689,-0.113617 0,-0.0046 0.02017,-0.03555 0.044828,-0.06862 0.024659,-0.03308 0.044829,-0.07468 0.044829,-0.09245 0,-0.03973 0.037942,-0.08229 0.073307,-0.08229 0.01445,3e-6 0.077593,-0.05334 0.1403408,-0.118556 0.082211,-0.08544 0.1424498,-0.132178 0.215412,-0.167337 0.1808159,-0.08713 0.2908341,-0.16925 0.3244404,-0.242139 0.011315,-0.02457 0.025889,-0.0292 0.074714,-0.02373 0.038802,0.0043 0.079432,-0.003 0.1129147,-0.02064 0.030378,-0.01596 0.1399471,-0.03848 0.2613662,-0.05363 0.2582056,-0.03222 0.375271,-0.05032 0.5004228,-0.07745 0.1003014,-0.02174 0.6016841,-0.02385 0.813929,-0.0034 0.1808953,0.0174 0.3420212,0.04089 0.3890083,0.05672 0.0249,0.0084 0.09879,0.02159 0.1642504,0.02937 0.065462,0.0078 0.1560278,0.0262 0.2012069,0.04092 0.1600368,0.05218 0.2478064,0.07081 0.4195342,0.08909 0.2082724,0.02217 0.3318929,0.0047 0.4620506,-0.0651 0.047287,-0.02536 0.1169058,-0.05443 0.1548098,-0.06457 0.057803,-0.01547 0.068991,-0.02458 0.068991,-0.05628 0,-0.02303 0.00882,-0.03784 0.022386,-0.03784 0.012291,-6e-6 0.022376,-0.0072 0.022376,-0.01588 0,-0.02508 0.055528,-0.01844 0.065011,0.0078 0.00682,0.01907 0.02804,0.01201 0.1099136,-0.03652 0.18555,-0.110001 0.2019146,-0.121506 0.3013311,-0.2130287 0.054365,-0.050048 0.1417545,-0.1144255 0.1942385,-0.142991 0.08042,-0.043772 0.103882,-0.066755 0.1493454,-0.146166 0.02969,-0.051827 0.07825,-0.123267 0.107969,-0.1587802 0.02969,-0.035513 0.06507,-0.086001 0.07859,-0.1122049 0.01353,-0.026203 0.03125,-0.058352 0.03936,-0.071451 0.0081,-0.013098 0.02176,-0.041674 0.03043,-0.063512 0.0086,-0.021836 0.03192,-0.068271 0.05178,-0.1032074 0.01986,-0.034935 0.06266,-0.1175751 0.0951,-0.1835676 0.0324,-0.065991 0.06961,-0.1293734 0.08266,-0.1408739 0.01303,-0.011499 0.02361,-0.038729 0.02361,-0.060516 0,-0.031805 0.0061,-0.037991 0.02988,-0.031313 0.01673,0.00468 0.03482,-9.839e-4 0.04108,-0.012877 0.01439,-0.02734 0.09881,-0.091134 0.176512,-0.1333754 0.07164,-0.038957 0.255566,-0.2207687 0.285625,-0.2823644 0.01156,-0.023651 0.02502,-0.098323 0.02989,-0.1659251 0.01311,-0.1809919 -0.01095,-0.2251547 -0.148549,-0.273279 -0.02969,-0.010393 -0.03462,-0.058295 -0.0088,-0.085742 0.02582,-0.027487 -0.0037,-0.056077 -0.0831,-0.081066 -0.0508,-0.015945 -0.143016,-0.019573 -0.363341,-0.014291 -0.331155,0.00794 -0.370019,0.016621 -0.5940174,0.131964 -0.1760301,0.0905 -0.2750536,0.1306331 -0.3948737,0.1599791 -0.053984,0.013222 -0.1283362,0.043888 -0.1653069,0.068187 -0.1195003,0.078546 -0.4227321,0.2343164 -0.5378235,0.2762773 -0.106907,0.038975 -0.1774509,0.068057 -0.276278,0.1140578 -0.024661,0.011474 -0.085151,0.034842 -0.1344383,0.05187 -0.049322,0.017022 -0.136731,0.047135 -0.1942396,0.066952 C 7.8891806,8.5960896 7.818589,8.6216476 7.7898347,8.6330846 7.6778675,8.6776235 6.8950536,8.692714 6.6994548,8.6540782 6.5561697,8.6256893 6.2692524,8.5819943 6.1018545,8.5630187 6.048478,8.5569922 5.9845677,8.5408258 5.9599211,8.5271188 5.9352622,8.5134118 5.8513788,8.4676544 5.7735278,8.4254993 5.6956769,8.3833454 5.5984863,8.3232655 5.5575007,8.2919474 5.5164845,8.2606288 5.451246,8.2135309 5.4124804,8.187329 5.3355581,8.1353423 5.0614073,7.889687 4.9472566,7.7704424 4.9037806,7.7250046 4.8503734,7.6425743 4.8112327,7.5604114 4.7758123,7.4860146 4.7321027,7.3976434 4.7142019,7.3640525 4.6578738,7.2583991 4.5932932,7.0239743 4.5751773,6.8598373 L 4.5577133,6.7018505 4.6575661,6.4912019 C 4.7367825,6.3241333 4.7768639,6.2593835 4.851548,6.1779634 4.9751686,6.0431827 5.0431743,5.983112 5.1608117,5.9046849 c 0.053376,-0.0356 0.1158784,-0.081226 0.1388463,-0.101443 0.022998,-0.020217 0.069993,-0.044326 0.104533,-0.053545 0.03456,-0.00921 0.1065253,-0.032115 0.1599264,-0.050898 0.076548,-0.026926 0.134954,-0.034405 0.2762786,-0.035284 0.098586,-6.097e-4 0.2061881,0.00728 0.2390503,0.017554 0.032837,0.010263 0.097688,0.027352 0.1441409,0.03793 0.1100859,0.025071 0.2280429,0.092743 0.2334915,0.1339931 0.00373,0.027387 -0.015923,0.038043 -0.1419335,0.077714 C 6.2206418,5.9604636 6.1136797,6.0104836 6.0122276,6.0721969 5.9259697,6.124671 5.82747,6.1845692 5.793378,6.2053085 5.6443973,6.2959352 5.5234025,6.5017864 5.5106611,6.6864132 c -0.00701,0.1017821 -0.0043,0.1162235 0.0412,0.2018268 0.026811,0.050721 0.069052,0.113968 0.093945,0.1405209 0.024905,0.026554 0.093218,0.1024571 0.1519015,0.1686607 0.1165304,0.1314659 0.1175821,0.1319186 0.4459948,0.2242328 0.1472341,0.041386 0.1063531,0.040813 0.9336259,0.013848 0.2987369,-0.00973 0.3753016,-0.016837 0.4167985,-0.0389 0.027979,-0.014864 0.070244,-0.027082 0.093953,-0.027082 0.023739,-6e-7 0.069412,-0.014285 0.10162,-0.031755 0.03222,-0.01747 0.079026,-0.031755 0.1039989,-0.031755 0.024962,0 0.045443,-0.00714 0.045443,-0.015878 6e-6,-0.00873 0.018015,-0.015878 0.040029,-0.015878 0.028591,0 0.060941,-0.022986 0.1126503,-0.080007 0.039849,-0.04398 0.08063,-0.078086 0.090595,-0.075861 0.03628,0.00809 0.4871829,-0.2987854 0.6305303,-0.429148 0.049322,-0.044822 0.1265659,-0.1026115 0.1717509,-0.1284359 0.045202,-0.025824 0.1350408,-0.090265 0.1997071,-0.1431668 0.06468,-0.052903 0.1259824,-0.09615 0.1362028,-0.09615 0.010155,-1.48e-5 0.035608,-0.014317 0.05645,-0.031756 C 9.4243541,6.2501937 9.600186,6.1701272 9.809031,6.0930184 l 0.159662,-0.058925 0.213033,0.017026 c 0.261002,0.020879 0.33573,0.040715 0.541968,0.144137 0.08888,0.044574 0.167281,0.075116 0.174131,0.067834 0.0069,-0.00727 -0.02042,-0.064409 -0.06051,-0.1269361 -0.0401,-0.062528 -0.08378,-0.1359469 -0.09703,-0.1631908 -0.01403,-0.028837 -0.03112,-0.04499 -0.04077,-0.038637 -0.0098,0.00649 -0.01236,0.00374 -0.0063,-0.00679 0.01089,-0.018743 -0.03228,-0.118116 -0.125527,-0.2888916 -0.031,-0.056772 -0.06432,-0.1425871 -0.07409,-0.1906251 -0.0097,-0.048037 -0.02694,-0.1301933 -0.03801,-0.1825973 -0.03775,-0.1782265 -0.05577,-0.3573743 -0.04551,-0.4535826 0.01396,-0.1309476 0.07602,-0.3257515 0.1257,-0.3945687 0.06641,-0.091977 0.09389,-0.1442393 0.08442,-0.1605447 -0.0048,-0.00839 5.66e-4,-0.011322 0.01211,-0.00662 0.01205,0.00492 0.03148,-0.00849 0.04568,-0.031579 0.04864,-0.078966 0.445527,-0.3647907 0.552907,-0.3981858 0.103568,-0.032207 0.307795,-0.1387212 0.307948,-0.1606328 1.34e-4,-0.019436 0.0974,-0.060971 0.178983,-0.07639 0.02853,-0.0054 0.07897,-0.023185 0.112029,-0.039607 0.107029,-0.053173 0.336677,-0.1103823 0.499979,-0.1245543 0.04471,-0.00389 0.09605,-0.017383 0.114145,-0.029991 0.01993,-0.013884 0.105696,-0.029288 0.217442,-0.039078 0.101486,-0.00889 0.218172,-0.023253 0.259251,-0.031844 0.04108,-0.00859 0.111654,-0.022416 0.156839,-0.030785 0.04519,-0.00837 0.099,-0.023508 0.119525,-0.033608 0.03967,-0.0195 0.599446,-0.045624 0.612367,-0.028581 z m 1.911979,8.0189366 c 0.02386,-2e-6 0.07665,0.06319 0.06688,0.08001 -0.01107,0.01908 -0.02251,0.01869 -0.05565,-0.0018 -0.02773,-0.01717 -0.03646,-0.07814 -0.0112,-0.07814 z m 2.3451,5.613679 c 0.0082,-0.0054 0.01501,0.0012 0.01501,0.01491 0,0.01361 -0.0068,0.02478 -0.01501,0.02478 -0.0082,1.9e-5 -0.01488,-0.0068 -0.01488,-0.01491 -6e-6,-0.0082 0.0068,-0.01939 0.01488,-0.02478 z" -}), 'OriginalKraken'); - -export default OriginalKraken; \ No newline at end of file diff --git a/frontend/src/common/Routes.jsx b/frontend/src/common/Routes.jsx index 43d028c..1e5b686 100644 --- a/frontend/src/common/Routes.jsx +++ b/frontend/src/common/Routes.jsx @@ -10,7 +10,8 @@ export const AppRoutes = ({ pages }) => ( {Object.keys(pages).map((page, index) => ( ))} - } /> - } /> + } /> + } /> + ); \ No newline at end of file diff --git a/frontend/src/components/DFTTable.jsx b/frontend/src/components/DFTTable.jsx deleted file mode 100644 index f7ac33b..0000000 --- a/frontend/src/components/DFTTable.jsx +++ /dev/null @@ -1,63 +0,0 @@ -import { - Container, - Table, - TableHead, - TableContainer, - TableRow, - TableBody, - TableCell, - Paper, -} from '@mui/material'; - -function createData( - name, - description, - forXTB, - forDFT, - forML, -) { - return { name, description, forXTB, forDFT, forML } -}; - -const rows = [ - createData("boltz", "Boltzmann-weighted average of all conformers' properties (T=298.15 K)", true, true, true), - createData("max", "highest value of a property of any conformer", true, true, true), - createData("min", "lowest value of a property of any conformer", true, true,true), - createData("std", "standard deviation of the value across all conformers", true, false, false), - createData("vburminconf", "property value of the conformer with the smallest buried volume", false, true, true), - createData("delta", "difference between the maximum and minimum property values", false, true, true), -]; - -function DataTable() { - return ( - - - - - - Condensed Properties - Description - For xTB - For DFT - For ML - - - - {rows.map((row) => ( - - {row.name} - {row.description} - {row.forXTB ? '✔️' : ''} - {row.forDFT ? '✔️' : ''} - {row.forML ? '✔️' : ''} - - ))} - -
-
-
- ); -}; - -export default DataTable; - diff --git a/frontend/src/components/DataDownloadButton.jsx b/frontend/src/components/DataDownloadButton.jsx new file mode 100644 index 0000000..d867602 --- /dev/null +++ b/frontend/src/components/DataDownloadButton.jsx @@ -0,0 +1,97 @@ +import React from 'react'; +import { styled } from '@mui/material/styles'; +import Button from '@mui/material/Button'; +import Menu from '@mui/material/Menu'; +import MenuItem from '@mui/material/MenuItem'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; + +import { downloadMoleculeData } from '../common/MoleculeUtils'; + +const StyledMenu = styled((props) => ( + +))(({ theme }) => ({ + '& .MuiPaper-root': { + borderRadius: 6, + marginTop: theme.spacing(1), + minWidth: 180, + color: + theme.palette.mode === 'light' ? 'rgb(55, 65, 81)' : theme.palette.grey[300], + boxShadow: + 'rgb(255, 255, 255) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px', + '& .MuiMenu-list': { + padding: '4px 0', + }, + }, +})); + +export default function DropDownButton({ molecule_ids, dataTypes }) { + const [anchorEl, setAnchorEl] = React.useState(null); + const open = Boolean(anchorEl); + + const dataTypeMapping = { + "ML Data": "ml", + "DFT Data": "dft", + "xTB Data": "xtb", + "xTB_Ni Data": "xtb_ni" +}; + + const handleClick = (event) => { + setAnchorEl(event.currentTarget); + }; + + const handleClose = () => { + setAnchorEl(null); + }; + + const handleMenuItemClick = (dataType) => { + console.log(`${dataTypeMapping[dataType]} data requested`); + downloadMoleculeData(molecule_ids, dataTypeMapping[dataType]) + handleClose(); // Close the menu + }; + + return ( +
+ + + + {dataTypes.map((dataType, index) => ( + handleMenuItemClick(dataType)} disableRipple> + {dataType} + + ))} + +
+ ); +} diff --git a/frontend/src/components/FileDownload.jsx b/frontend/src/components/FileDownload.jsx new file mode 100644 index 0000000..4da07bd --- /dev/null +++ b/frontend/src/components/FileDownload.jsx @@ -0,0 +1,36 @@ +import React, { useState, useEffect } from 'react'; +import Grid from '@mui/material/Grid'; +import DownloadIcon from '@mui/icons-material/Download'; +import IconLink from './IconLink'; + +const CheckFileAndDownloadIcon = () => { + const [isSpreadsheet, setIsSpreadsheet] = useState(false); + + useEffect(() => { + + async function isSpreadsheetEndpoint() { + const url = `/${document.location.pathname.split('/')[1]}/content/${document.location.pathname.split('/')[1]}_library.xlsx`; + const response = await fetch(url); + // Check if the request was successful + if (!response.ok) { + console.error('HTTP Error:', response.status); + return false; + } + else { + return true; + }; + + }; + + isSpreadsheetEndpoint().then(result => setIsSpreadsheet(result)); + }, []); + + return ( + + {isSpreadsheet && + } + + ); +}; + +export default CheckFileAndDownloadIcon; diff --git a/frontend/src/components/Graph.jsx b/frontend/src/components/Graph.jsx index 96d302b..768341b 100644 --- a/frontend/src/components/Graph.jsx +++ b/frontend/src/components/Graph.jsx @@ -87,7 +87,7 @@ export default function Graph({ molData, componentArray, type, neighborSearch, c // molecule page. let og_url = window.location.href.split("/"); let molecule_id = event.points[0].text.split(",")[1]; - let url = og_url[0] + "//" + og_url[2] + "/molecule/" + molecule_id; + let url = og_url[0] + "//" + og_url[2] + `/${document.location.pathname.split('/')[1]}/molecule/` + molecule_id; if (molecule_id !== undefined) { window.open(url, "_blank", "noreferrer"); } diff --git a/frontend/src/components/Graphv2.jsx b/frontend/src/components/Graphv2.jsx new file mode 100644 index 0000000..64ca373 --- /dev/null +++ b/frontend/src/components/Graphv2.jsx @@ -0,0 +1,184 @@ +import React, { useEffect, useState } from 'react'; +import Plot from 'react-plotly.js'; + +import { Container } from "@mui/material"; +import { TextField } from '@mui/material'; +import MenuItem from '@mui/material/MenuItem'; + + + +const Graphv2 = ({ molData, componentArray, type, neighborSearch, containerStyle=null }) => { + // Set the x and y indices to the first 2 values in the component array. + const [ xIndex, setXIndex ] = useState(0); + const [ yIndex, setYIndex ] = useState(1); + const [ patterns, setPatterns ] = useState({}); + const [ plotData, setPlotData ] = useState([]) + const [showLegend, setShowLegend] = useState(false); + + const symbols = [0, 1, 2, 13, 14, 15, 16, 17, 18]; + // Still need to be genericized + const axis_dict = {"pca1": "pc1", "pca2": "pc2", "pca3": "pc3", "pca4": "pc4", "umap1": "umap1", "umap2": "umap2"}; + + + useEffect(() => { + fetch(`/${document.location.pathname.split('/')[1]}/brand/patterns.json`) + .then(response => { + if (!response.ok) { + throw new Error('Network response was not ok'); + } + return response.json(); + }) + .then(data => { + const patterns_data = data[0]; + if (!patterns_data.hasOwnProperty('default')) { + patterns_data['default'] = { color: '#ADD8E6', name: 'default' }; + } + setPatterns(patterns_data); + }) + .catch(error => { + console.error('Error fetching patterns:', error); + }); + }, []); + + useEffect(() => { + // Group data by 'pat' + const groupedByPat = molData.reduce((acc, mol) => { + const pat = mol.pat || 'default'; // Use 'default' as a fallback + if (!acc[pat]) { + acc[pat] = []; + } + acc[pat].push(mol); + return acc; + }, {}); + + // Create a trace for each 'pat' + const newPlotData = Object.entries(groupedByPat).map(([pat, molArray], index) => { + return { + x: molArray.map(mol => mol.components[xIndex]), + y: molArray.map(mol => mol.components[yIndex]), + text: molArray.map(mol => encodeURIComponent(mol.smiles) + "," + mol.molecule_id), + hovertemplate: "( %{x}, %{y})", + hovermode: "closest", + mode: 'markers', + type: 'scatter', + marker: { + size: 10, + opacity: 0.75, + color: patterns[pat]?.color || patterns['default']?.color, + }, + name: patterns[pat]?.name || pat, + }; + }); + + setPlotData(newPlotData); + setShowLegend(newPlotData.length > 1); + }, [molData, patterns, xIndex, yIndex]); + + // Plotting functions to show molecules on hover + function showSVGWindow(svg, event) { + /** + * Creates SVG window on the molecule element when hovering of a point on the plotly graph. + * @param {string} svg Svg of the molecule. + * @param {event} event Hover event when hovering over a point on the plotly graph. + */ + + // remove in case existing + if (document.getElementById("molecule")) { + document.getElementById("molecule").remove() + } + + let mol = document.createElement("g") + mol.setAttribute("id", "molecule") + + let plotly_container = document.getElementsByClassName("plotly") + mol.innerHTML = svg; + + let xpos = event.event.clientX - 160; + let ypos = event.event.clientY - 160; + + plotly_container[0].appendChild(mol); + mol.style.position = "fixed"; + mol.style.left = `${xpos}px`; + mol.style.top = `${ypos}px`; + mol.style.border = "ridge #393536"; + mol.style.borderRadius = "5px"; + mol.style.height = "40mm"; + mol.style.width = "40mm"; + } + + function showSVG(event) { + /** + * Requests svg data for the molecule you are hovering on. + * @param {event} event Hover even when hovering over a point on the plotly graph. + */ + let smiles = event.points[0].text.split(",")[0]; + fetch(`/depict/cow/svg?smi=${smiles}&w=40&h=40`).then(response => + response.text() ).then( body => showSVGWindow(body, event) ); + } + + function hideSVG() { + /** + * Removes molecule element which holds its SVG, when you are no longer hovering. + */ + if (document.getElementById("molecule")) { + document.getElementById("molecule").remove() + } + } + + function moleculePage(event) { + /** + * Redirects to the molecule page for the molecule when clicking on a point on the graph. + * @param {event} event event when hovering over a point on the plotly graph. + */ + // Gets the original url for the window and splits it into its components. The first element will always be http(s):, second will always be empty, third will always be + // website name. Need the first and third elements (0, 2) to redirect to the molecule endpoint below. This is so that regardless of which page we are on, we can redirect to the + // molecule page. + + let og_url = window.location.href.split("/"); + let molecule_id = event.points[0].text.split(",")[1]; + let url = og_url[0] + "//" + og_url[2] + `/${document.location.pathname.split('/')[1]}/molecule/` + molecule_id; + if (molecule_id !== undefined) { + window.open(url, "_blank", "noreferrer"); + } + } + + return ( + + moleculePage(event)} + onHover={ (event) => showSVG(event) } + onUnhover={ (event)=> hideSVG(event) } + style={{'width': '100%', 'height': '100%' }} + useResizeHandler={true} + data={plotData} + layout={ { + autosize: true, + useResizeHandler: true, + showlegend: showLegend, + style: {width: '100%', height: '100%'}, + xaxis: { + title: { + text: 'umap1', + font: { + size: 18, + color: '#7f7f7f' + } + } + }, + + yaxis: { + title: { + text: 'umap2', + font: { + size: 18, + color: '#7f7f7f' + } + } + } + } } + /> + + ); + }; + +export default Graphv2; \ No newline at end of file diff --git a/frontend/src/components/IconLink.jsx b/frontend/src/components/IconLink.jsx index 0852a22..0d364fd 100644 --- a/frontend/src/components/IconLink.jsx +++ b/frontend/src/components/IconLink.jsx @@ -3,21 +3,29 @@ import { Link } from 'react-router-dom'; import { Typography, Box, IconButton } from "@mui/material"; import SearchIcon from '@mui/icons-material/Search'; -function IconLink({ IconElement, text, link, reloadDocument = false }) { - const linkProps = reloadDocument ? { to: link, reloadDocument } : { to: link }; +function IconLink({ IconElement, text, link, isDownload = false }) { + // Conditionally set props based on whether this is a download link + const linkAttributes = isDownload ? { + href: link, + download: true + } : { + to: link + }; + + const LinkComponent = isDownload ? 'a' : Link; return ( - + - {IconElement ? : } + {IconElement ? : } {text} - - ) + + ); } export default IconLink; diff --git a/frontend/src/components/KetcherPopup.jsx b/frontend/src/components/KetcherPopup.jsx index 104e74c..a574e21 100644 --- a/frontend/src/components/KetcherPopup.jsx +++ b/frontend/src/components/KetcherPopup.jsx @@ -3,6 +3,11 @@ import React, { useState } from 'react'; import Button from '@mui/material/Button'; import Dialog from '@mui/material/Dialog'; import Slide from '@mui/material/Slide'; +import CloseIcon from '@mui/icons-material/Close'; +import IconButton from '@mui/material/IconButton'; +import AppBar from '@mui/material/AppBar'; +import Toolbar from '@mui/material/Toolbar'; +import Typography from '@mui/material/Typography'; //import { convertStructToString } from 'ketcher-core' import { ChemicalMimeType } from 'ketcher-core'; @@ -41,13 +46,26 @@ export default function FullScreenDialog({ ketcherCallBack }) { + + + + + + + { - setSelectedDataType(event.target.value); + setSelectedDataType(event.target.value); }; - + return ( - - + + CSV} disabled={!download} @@ -96,104 +117,91 @@ function CustomFooter({ selectedDataType, setSelectedDataType, moleculeID, downl ); } +// Dynamically generate columns based on the keys of the first data item +const generateColumns = (data) => { + if (!data || data.length === 0) return []; + + return Object.keys(data[0]) + .filter(key => !key.toLowerCase().includes("id") && key.toLowerCase() !== "smiles") // Exclude columns with "id" or named "smiles" + .map(key => ({ + field: key, + headerName: key.charAt(0).toUpperCase() + key.slice(1).replace(/_/g, ' '), // Capitalize the first letter and replace underscores with spaces + flex: true, + filterable: true, + headerAlign: 'right', + align: 'right', + })); +}; + + export default function MoleculeDataTable({ molecule_id, initial_data_type }) { const [moleculeData, setMoleculeData] = useState(null); const [data_type, setDataType] = useState(initial_data_type); - const [selectedDataType, setSelectedDataType] = useState("ML Data"); // Set the default value to "ML Data" + const [selectedDataType, setSelectedDataType] = useState("DFT Data"); // Set the default value to "ML Data" const [moleculeID, setMoleculeID] = useState(molecule_id); const [download, setDownload] = useState(true); // Allow CSV download + const [availableDataTypes, setAvailableDataTypes] = useState([]); useEffect(() => { async function fetchData() { - let data = await retrieveData(moleculeID, dataTypeMapping["DFT Data"]); - - // If DFT data is empty, default to ML Data + let data = await retrieveData(moleculeID, dataTypeMapping[selectedDataType]); + if (!data || Object.keys(data).length === 0) { - setSelectedDataType("ML Data"); - data = await retrieveData(moleculeID, dataTypeMapping["ML Data"]); - } else { - setSelectedDataType("DFT Data"); + const fallbackDataType = selectedDataType === "ML Data" ? "DFT Data" : "ML Data"; + data = await retrieveData(moleculeID, dataTypeMapping[fallbackDataType]); + if (data && Object.keys(data).length !== 0) { + setSelectedDataType(fallbackDataType); + } else { + console.log(`No data available for ${selectedDataType} or ${fallbackDataType}`); + } } + setMoleculeData(data); + setDownload(data != null && Object.keys(data).length !== 0); } - + fetchData(); - }, [moleculeID]); + }, [moleculeID, selectedDataType]); useEffect(() => { async function fetchData() { - const data = await retrieveData(moleculeID, data_type); - // Check to see if the data is empty, set download to false. - if (data.length==0) { - setDownload(false); - } - else { - setDownload(true); - } - setMoleculeData(data); + const dataTypes = await retrieveMoleculeDataTypes(moleculeID); + console.log(dataTypes); + setAvailableDataTypes(dataTypes); } fetchData(); - - }, [data_type]); - - useEffect(() => { - setDataType(dataTypeMapping[selectedDataType]); - }, [selectedDataType]); - - const columns = [ - { field: 'property', headerName: 'Property', filterable: true, flex: true }, - { field: 'min', headerName: 'Min', filterable: true, headerAlign: 'right', align: 'right', flex: true }, - { field: 'max', headerName: 'Max', filterable: true, headerAlign: 'right', align: 'right', flex: true }, - { field: 'delta', headerName: 'Delta', filterable: true, headerAlign: 'right', align: 'right', flex: true }, - { field: 'vburminconf', headerName: 'vbur min conf', filterable: true, headerAlign: 'right', align: 'right', flex: true }, - { field: 'boltzmann_average', headerName: 'Boltz', filterable: true, headerAlign: 'right', align: 'right', flex: true }, - { field: 'std', headerName: 'std', filterable: true, headerAlign: 'right', align: 'right', flex: true} - ]; - - // Filter out delta and vburminconf columns for xTB data. - let displayColumns = columns; - if (selectedDataType === "xTB Data" || selectedDataType === "xTB_Ni Data") { - displayColumns = columns.filter(column => column.field !== 'delta' && column.field !== 'vburminconf'); + } + , [moleculeID]); - else { - displayColumns = columns.filter(column => column.field !== 'std'); - } + const columns = generateColumns(moleculeData); const rows = moleculeData ? moleculeData - .map(item => ({ - id: item.property, - property: item.property, - max: item.max, - min: item.min, - delta: item.delta, - boltzmann_average: item.boltzmann_average, - vburminconf: item.vburminconf, - std: item.std, + .map((item, index) => ({ + id: index, // Ensure each row has a unique id + ...item, })) : []; return ( ); -} \ No newline at end of file +} diff --git a/frontend/src/components/StatsGrid.jsx b/frontend/src/components/StatsGrid.jsx new file mode 100644 index 0000000..c43b98e --- /dev/null +++ b/frontend/src/components/StatsGrid.jsx @@ -0,0 +1,74 @@ +import { useState, useEffect } from 'react'; +import { Typography, Grid, Card, CardContent, Container, CircularProgress } from "@mui/material"; + + +function StatCard({number, caption, size}) { + /** + * Creates a card with a number and caption. + * + * + * @param {string} number Number to display in the card. + * @param {string} caption Caption to display in the card. + * @param {number} size Size of the card. + * + * @return {StatCard} Card with the number and caption. + **/ + + const cardStyle = { + height: size, + display: "flex", + justifyContent: "center", + alignItems: "center", + }; + + + return ( + + + + { number } + { caption } + + + + ) +} + +const StatsGrid = () => { + const [stats, setStats] = useState(null); + + useEffect(() => { + fetch(`/${document.location.pathname.split('/')[1]}/content/stats.json`) + .then(response => { + if (!response.ok) { + throw new Error('Network response was not ok'); + } + return response.json(); + }) + .then(data => { + setStats(data); + }) + .catch(error => { + console.error('Error fetching stats:', error); + }); + }, []); + + return ( + + {stats ? ( + + {stats.map((stat, index) => ( + + ))} + + ) : ( + <> + + + )} + + ); +}; + + +export default StatsGrid; \ No newline at end of file diff --git a/frontend/src/components/SummaryCard.jsx b/frontend/src/components/SummaryCard.jsx deleted file mode 100644 index 1a0122d..0000000 --- a/frontend/src/components/SummaryCard.jsx +++ /dev/null @@ -1,33 +0,0 @@ -import { Typography, Grid, Card, CardContent } from "@mui/material"; - -export default function StatCard({number, caption, size}) { - /** - * Creates a card with a number and caption. - * - * - * @param {string} number Number to display in the card. - * @param {string} caption Caption to display in the card. - * @param {number} size Size of the card. - * - * @return {StatCard} Card with the number and caption. - **/ - - const cardStyle = { - height: size, - display: "flex", - justifyContent: "center", - alignItems: "center", - }; - - - return ( - - - - { number } - { caption } - - - - ) -} \ No newline at end of file diff --git a/frontend/src/components/YouTube.jsx b/frontend/src/components/YouTube.jsx deleted file mode 100644 index a69e1fa..0000000 --- a/frontend/src/components/YouTube.jsx +++ /dev/null @@ -1,42 +0,0 @@ -import React, { useState, useEffect } from 'react'; - -const ResponsiveYouTube = ({ videoId }) => { - const [windowWidth, setWindowWidth] = useState(window.innerWidth); - - useEffect(() => { - const handleResize = () => { - setWindowWidth(window.innerWidth); - }; - - window.addEventListener('resize', handleResize); - - return () => { - window.removeEventListener('resize', handleResize); - }; - }, []); - - // Determine the size of the iframe based on the window width - const getIframeSize = () => { - if (windowWidth > 1024) { // Large screens - return { width: '800px', height: '450px' }; // 16:9 aspect ratio - } else if (windowWidth > 600) { // Medium screens - return { width: '600px', height: '338px' }; // 16:9 aspect ratio - } else { // Small screens - return { width: '100%', height: 'auto' }; // Full width, auto height - } - }; - - const iframeSize = getIframeSize(); - - return ( - - ); -}; - -export default ResponsiveYouTube; diff --git a/frontend/src/index.css b/frontend/src/index.css index 3948c87..5150e82 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -28,3 +28,13 @@ code { width: 100%; } +.centered-container { + text-align: center; +} + +.responsive-image { + width: 80%; + max-width: 100%; + height: auto; +} + diff --git a/frontend/src/index.jsx b/frontend/src/index.jsx index a488b59..b64b772 100644 --- a/frontend/src/index.jsx +++ b/frontend/src/index.jsx @@ -5,10 +5,43 @@ import "./index.css"; import App from "./App"; import reportWebVitals from "./reportWebVitals"; +function setLinkIcon() { + const link = document.createElement('link'); + link.rel = 'icon'; + link.href = `/${document.location.pathname.split('/')[1]}/brand/favicon.ico`; + document.head.appendChild(link); + +} + +function setSiteManifest() { + const link = document.createElement('link'); + link.rel = 'manifest'; + link.href = `/${document.location.pathname.split('/')[1]}/manifest.json`; +} + +function setAppBrand() { + fetch(`/${document.location.pathname.split('/')[1]}/brand/names.json`) + .then(response => response.json()) + .then(data => { + // Update the site title + document.title = data[0].title; + + // Update the site favicon + setLinkIcon(); + + // Update the site manifest + setSiteManifest(); + }) + .catch(error => console.error('Error loading site configuration:', error)); +} + + const container = document.getElementById('root'); const root = createRoot(container) +setAppBrand(); + root.render( diff --git a/frontend/src/pages/Home.jsx b/frontend/src/pages/Home.jsx index c1b5915..9427dd4 100644 --- a/frontend/src/pages/Home.jsx +++ b/frontend/src/pages/Home.jsx @@ -1,60 +1,59 @@ import React, { useEffect, useState } from 'react'; -import { Link } from "react-router-dom"; -import { Container, Typography, Box, Grid } from "@mui/material"; +import { Typography, Box, Grid } from "@mui/material"; import { useTheme } from '@mui/material/styles'; -import OriginalKraken from '../common/OriginalKraken'; import Graph from "../components/Graph"; +import Graphv2 from '../components/Graphv2'; import SearchIcon from '@mui/icons-material/Search'; import BubbleChartIcon from '@mui/icons-material/BubbleChart'; -//import DownloadIcon from '@mui/icons-material/Download'; -import AutoStoriesIcon from '@mui/icons-material/AutoStories'; +import DownloadIcon from '@mui/icons-material/Download'; +//import AutoStoriesIcon from '@mui/icons-material/AutoStories'; import InfoIcon from '@mui/icons-material/Info'; -import StatCard from '../components/SummaryCard'; +import StatsGrid from '../components/StatsGrid'; import IconLink from '../components/IconLink'; -const stats = [ - { - "number": "1,558", - "description": "DFT Calculated Ligands" - }, - - { - "number": "300,000+", - "description": "ML calculated Ligands" - }, - - { - "number": "576", - "description": "unique substituents" - }, - - { - "number": "190", - "description": "DFT-level descriptors" - }, - - { - "number": "21,437", - "description": "unique conformers" - }, - - { - "number": "13.8", - "description": "average conformers per ligand" - }, - -] +import CheckFileAndDownloadIcon from '../components/FileDownload'; + +import purify from 'dompurify'; + +const Badge = ({ isMobile }) => { + const displayStyle = { + maxWidth: isMobile ? '120px' : '240px', // This sets the maximum width of the image + height: '15vh' // Set the height of the image to 20% of the viewport height (box is 35% of vh) + }; + + return ( + logo + ); +}; + function Home() { const [ molData, setMolData ] = useState([]); - const [ components, setComponents ] = useState(["1", "2"]); - const [ type, setType ] = useState("umap"); const [isMobile, setIsMobile] = useState(window.innerWidth < 768); + const [name, setName] = useState(""); + const [tagline, setTagline] = useState(""); const theme = useTheme(); + useEffect(() => { + fetch(`/${document.location.pathname.split('/')[1]}/brand/names.json`) + .then(response => { + if (!response.ok) { + throw new Error('Network response was not ok'); + } + return response.json(); + }) + .then(data => { + setName(data[0].name); + setTagline(data[0].tagline); + }) + .catch(error => { + console.error('Error fetching stats:', error); + }); +}, []); + useEffect(() => { function checkMobile() { setIsMobile(window.innerWidth < 768); @@ -70,17 +69,14 @@ function Home() { }, []); // Empty array means this effect runs once on mount and cleanup on unmount - async function umap(type, components, limit=1000) { + async function umap() { /** * Requests general umap data from the backend. - * @param {string} type Type of dimensionality reduction. Can be one of PCA or UMAP. - * @param {string} components String of comma separated integers. - * @param {number} limit Limit of the search. * @return {json} The response json. */ - let encoded = encodeURIComponent(components); + let encoded = encodeURIComponent("1,2"); - const response = await fetch(`/api/molecules/dimensions/?type=${type}&components=${encoded}&limit=${limit}`) + const response = await fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/dimensions/?type=umap&components=${encoded}&limit=10000`) if (!response.ok) { throw new Error('Invalid Molecule Id') @@ -97,7 +93,7 @@ function Home() { * */ const fetchData = async () => { - const molecule_data = await umap(type, components); + const molecule_data = await umap(); return molecule_data } @@ -111,7 +107,7 @@ function Home() { } useEffect(() => { loadData() - }, [type]); + }, []); return ( <> @@ -129,16 +125,13 @@ function Home() { flexDirection: isMobile ? 'column' : 'row', }} > - + - KRAKEN + { name } { - - Kolossal viRtual dAtabase - for moleKular dEscriptors of orgaNophosphorus - ligands. + } @@ -151,24 +144,15 @@ function Home() { - {/* Hide until we're ready to add - - - - */} + + {/* Hide until we're ready to add + */} - - - - {stats.map((stat, index) => ( - - ))} - - + - {!isMobile && } + {!isMobile && } ); diff --git a/frontend/src/pages/Library_Details.jsx b/frontend/src/pages/Library_Details.jsx index 904e97f..c657a52 100644 --- a/frontend/src/pages/Library_Details.jsx +++ b/frontend/src/pages/Library_Details.jsx @@ -1,112 +1,62 @@ +import { useEffect, useState, useContext } from 'react'; + import { Container, - Typography, - List, - ListItem, - Link, - Box, + Table, + TableBody, + TableCell, + TableHead, + TableRow, + Typography } from '@mui/material'; -import DataTable from '../components/DFTTable'; -import ResponsiveYouTube from '../components/YouTube'; - -import KrakenWorkflow from '../images/kraken-workflow.png'; - -function Library_Details() { +import ReactMarkdown from 'react-markdown'; + +// use rehype-raw to render HTML inside markdown +// https://stackoverflow.com/questions/70548725/any-way-to-render-html-in-react-markdown +// use remarkGfm to render markdown tables (gfm = GitHub Flavored Markdown) +import rehypeRaw from 'rehype-raw'; +import remarkGfm from 'remark-gfm'; + + +const MarkdownPage =({ markdown_file }) => { + const [content, setContent] = useState(""); + + useEffect(() => { + fetch(markdown_file) + .then((response) => response.text()) + .then((text) => { + setContent(text); + }); + }, [markdown_file]); + + const renderers = { + h1: ({ children }) => {children}, + h2: ({ children }) => {children}, + table: ({ children }) => {children}
, + thead: ({ children }) => {children}, + tbody: ({ children }) => {children}, + tr: ({ children }) => {children}, + th: ({ children, align }) => {children}, + td: ({ children, align }) => {children} + }; + return ( - - Library Details - - - Kraken Workflow - - - Conformational Searching - - Initial ligand geometries were generated using SMILES strings and converted to free ligands and [LNi(CO)3] complexes using RDKit, OpenBabel or Molconvert. - These guess geometries were optimized at the GFN2-xTB level of theory (xTB v6.2.2). - Optimized geometries were subjected to a conformational search using CREST (v2.8) at the GFN2-xTB level with toluene solvation (GBSA model). - For ligands containing ferrocene, conformational searches were performed at the GFN-FF level to avoid structural changes. - - - xTB Descriptors - - Molecular descriptors at the xTB level for the full conformational ensembles from CREST of the free ligands and the [NiCO3]-bound complexes were collected using MORFEUS. - - - Selection of conformers for DFT computations - - Conformers from both sets (free ligand and Ni complex) were selected based on the following two criteria: - - - - - Conformers that minimize or maximize any of the following xTB-level steric properties in any of the two conformer sets: - B1, B5, lval, far_vbur, far_vtot, max_delta_qvbur, max_delta_qvtot, near_vbur, near_vtot, ovbur_max, ovbur_min, ovtot_max, - ovtot_min, pyr_val, qvbur_max, qvbur_min, qvtot_max, qvtot_min, vbur. - - - - Up to 20 conformers within 3 kcal/mol relative energy in the free ligand conformer set. If more than 20 conformers are in that range, the selection was made by RMSD pruning (using PyDP4). - This enables structurally diverse selection of conformers in the relevant energy window. - - - - - DFT computations - - - Prior to DFT computations, the [Ni(CO)3]-fragment was removed from the Ni complex conformer set to obtain free-ligand initial geometries. - All DFT optimizations (Gaussian 16, rev C.01) were performed at the PBE-D3(BJ)/6-31+G(d,p) level of theory. - The corresponding geometries were used for a series of single-point energy calculations at the PBE0-D3(BJ)/def2-TZVP and PBE0-D3(BJ)/def2-TZVP/SMD(CHCl3) levels of theory. - Additional single-points were also run for the radical cations and radical anions from the optimized geometry of the neutral free ligand. - - - - From the DFT calculations, steric, electronic, or full molecule/interaction-type descriptors were collected for each conformer. - The range of properties across the conformers of a single ligand was treated by using up to five condensed measures for each of the properties. - - - - - - ML Descriptor Prediction - - - The machine learning portion of the workflow aims to expand the total number of monophosphine ligands in the library from ~1500 (which is a fraction of the total possible space) to {">"} 300,000 ligands. - The computational workflow used to calculate the set of ~1500 is too intensive to calculate all possible monophosphines, so descriptors were predicted using machine learning methods. - - - - New descriptors were predicted using the sum of contributions of each phosphorus substituent using the “Bag of Substituents” approach. - These contributions are made up of 576 unique substituents from the ~1500 set of ligands. - - - - For more details on the machine learning models used to predict descriptors, see the original publication supporting information. - - - Video Tutorial - A video tutorial of Kraken which explains relevant background information and the computational workflow, and provides a walkthrough of this website: - - - - - - An extended explanation of the computational workflow used to build the monophosphine library, - as well as details on the collected and predicted descriptors can be found in original publication supporting information. - - - Citation - - Gensch, T.; dos Passos Gomes, G.; Friederich, P.; Peters, E.; Gaudin, T.; Pollice, R.; Jorner, K.; Nigam, A.; Lindner-D’Addario, M.; Sigman, M. S.; Aspuru-Guzik, A. A Comprehensive Discovery Platform for Organophosphorus Ligands for Catalysis. J. Am. Chem. Soc. 2022, 144, 3, 1205–1217. DOI: 10.1021/jacs.1c09718 - - + + {content} + ) } +const Library_Details = () => { + return ( + + ); +}; + + export default Library_Details; \ No newline at end of file diff --git a/frontend/src/pages/Molecule.jsx b/frontend/src/pages/Molecule.jsx index 69a0219..d408a7e 100644 --- a/frontend/src/pages/Molecule.jsx +++ b/frontend/src/pages/Molecule.jsx @@ -12,13 +12,49 @@ import MoleculeDataTable from "../components/MoleculeDataTable"; import { neighborPage } from "../common/MoleculeUtils"; +const MoleculeCard = ({ molData, identifierData }) => { + // Merging molData and identifierData objects and removing 'conformers_id' + const combinedData = { + ...molData, + ...identifierData, + }; + delete combinedData.conformers_id; // Removing the 'conformers_id' key + + // Function to format keys to title case + const toTitleCase = (str) => { + return str.replace(/_/g, ' ').replace(/\w\S*/g, (txt) => { + return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); + }); + }; + + // Conditionally formatting values (e.g., for molecular_weight) + const formattedValue = (key, value) => { + if (key === 'molecular_weight') { + return value.toFixed(2); + } + return value; + }; + + return ( +
+ {Object.entries(combinedData) + .filter(([key, value]) => value != null && value !== '') // Filtering out null or empty values + .map(([key, value]) => ( + + {toTitleCase(key)}: {formattedValue(key, value)} + + ))} +
+ ); +}; + async function molecule(molecule_id, signal) { /** * Requests general umap or pca data from the backend. * @param {number} molecule_id Id of the molecule to search on. * @param {AbortSignal} signal Abortsignal object. */ - const response = await fetch(`/api/molecules/${molecule_id}`, {signal: signal}) + const response = await fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/${molecule_id}`, {signal: signal}) if (!response.ok) { throw new Error('Invalid Molecule Id') @@ -41,7 +77,7 @@ async function dimensionality(molecule_id, type, components, signal, limit=10) { */ let encoded = encodeURIComponent(components); - const response = await fetch(`/api/molecules/${molecule_id}/neighbors/?type=${type}&components=${encoded}&skip=0&limit=${limit}`, {signal: signal}) + const response = await fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/${molecule_id}/neighbors/?type=${type}&components=${encoded}&skip=0&limit=${limit}`, {signal: signal}) if (!response.ok) { throw new Error('Invalid Molecule Id') @@ -61,7 +97,7 @@ async function identifiers(smiles, signal) { */ let encoded = encodeURIComponent(smiles); - const response = await fetch(`/api/molecules/identifiers/?smiles=${encoded}`, {signal: signal}) + const response = await fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/identifiers/?smiles=${encoded}`, {signal: signal}) if (!response.ok) { throw new Error('Invalid Molecule Smiles') @@ -84,6 +120,7 @@ export default function MoleculeInfo() { const [ svg, setSvg ] = useState({}); const [ allConformers, setAllConformers ] = useState([]); const [ conformer, setConformer ] = useState(""); + const [ conformerCluster, setConformerCluster ] = useState([]); const [ width, setWidth ] = useState(window.innerWidth); useEffect(() => { @@ -121,7 +158,7 @@ export default function MoleculeInfo() { const fetchData = async () => { const molecule_data = await molecule(molid, signal); const umap_neighbor_data = await dimensionality(molid, "umap", ["1", "2"], signal); - const pca_neighbor_data = await dimensionality(molid, "pca", ["1", "2", "3", "4"], signal); + const pca_neighbor_data = await dimensionality(molid, "pca", ["1", "2", "3"], signal); const svg_data = await retrieveSVG(molecule_data.smiles, signal); const identifier_data = await identifiers(molecule_data.smiles, signal); return [ molecule_data, umap_neighbor_data, pca_neighbor_data, svg_data, identifier_data ] @@ -167,6 +204,22 @@ export default function MoleculeInfo() { [ params ] ); + useEffect(() => { + const controller = new AbortController(); + const signal = controller.signal; + fetch(`/api/${document.location.pathname.split('/')[1]}/conformers/data/` + conformer, {signal: signal}) + .then(response => response.json()) + .then(data => { + if (data.cluster) { + setConformerCluster(data.cluster); + } else { + setConformerCluster(false); + } + }) + + }, [conformer]); + + return ( @@ -182,11 +235,7 @@ export default function MoleculeInfo() { {Object.keys(molData).length > 0 && - SMILES: {molData.smiles} - kraken Ligand ID: {molData.molecule_id} - InChI: {identifierData.InChI} - InChIKey: {identifierData.InChIKey} - Molecular Weight: {molData.molecular_weight.toFixed(2)} + @@ -213,9 +262,12 @@ export default function MoleculeInfo() { ))} + + This conformer ensemble was clustered. + - + diff --git a/frontend/src/pages/Neighbors.jsx b/frontend/src/pages/Neighbors.jsx index ecf2c42..9f30318 100644 --- a/frontend/src/pages/Neighbors.jsx +++ b/frontend/src/pages/Neighbors.jsx @@ -7,11 +7,21 @@ import { useParams } from "react-router-dom"; import Button from '@mui/material/Button'; -import Graph from '../components/Graph' +import DropDownButton from '../components/DataDownloadButton'; -import { retrieveAllSVGs, dynamicGrid, extractIdsFromResults, downloadMoleculeData } from '../common/MoleculeUtils'; +import Graph from '../components/Graph' +import { retrieveAllSVGs, dynamicGrid, extractIdsFromResults } from '../common/MoleculeUtils'; +async function fetchInitialMoleculeId() { + const response = await fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/first_id`); + if (!response.ok) { + throw new Error('Network response was not ok'); + } + const result = await response.json(); + const initial_id = result["first_molecule_id"]; + return initial_id; +} async function NeighborSearch(molecule_id, type="pca", components="1,2,3,4", limit=48, skip=0, signal) { @@ -27,7 +37,7 @@ async function NeighborSearch(molecule_id, type="pca", components="1,2,3,4", lim */ let encoded = encodeURIComponent(components); - const response = await fetch(`/api/molecules/${molecule_id}/neighbors/?type=${type}&components=${encoded}&skip=${skip}&limit=${limit}`, {signal: signal}) + const response = await fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/${molecule_id}/neighbors/?type=${type}&components=${encoded}&skip=${skip}&limit=${limit}`, {signal: signal}) if (!response.ok) { throw new Error('Invalid Molecule Id') @@ -48,7 +58,7 @@ export default function NeighborSearchHook () { const params = useParams(); const interval = 15; - const [ moleculeid, setMoleculeID ] = useState(params.molid || 1); + const [ moleculeid, setMoleculeID ] = useState(); const [ skip, setSkip ] = useState(0); const [ validMolecule, setValidMolecule ] = useState(true); const [ svg_results, setSVGResults ] = useState([]) @@ -60,6 +70,43 @@ export default function NeighborSearchHook () { const [ searchToggle, setSearchToggle ] = useState(true); const [ isMobile, setIsMobile ] = useState(window.innerWidth < 768); const [ moleculeIDs, setMoleculeIDs ] = useState(""); + const [ availableDataTypes, setAvailableDataTypes ] = useState([]); + + const reverseMapping = { + "ml_data": "ML Data", + "dft_data": "DFT Data", + "xtb_data": "xTB Data", + "xtb_ni_data": "xTB_Ni Data" + }; + + useEffect(() => { + const init = async () => { + try { + // Check if there's a molid in the URL params + if (params.molid) { + setMoleculeID(params.molid); + } else { + // Fetch the initial molecule ID from the endpoint + const initialId = await fetchInitialMoleculeId(); + setMoleculeID(initialId); + } + } catch (error) { + console.error('Failed to initialize molecule ID:', error); + // Handle error (e.g., set state to show an error message) + } + }; + + init(); + }, [params.molid]); // Depend on params.molid so this effect re-runs if the URL parameter changes + + useEffect(() => { + fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/data_types`) + .then(response => response.json()) + .then(data => { + const translatedDataTypes = data["available_types"].map(key => reverseMapping[key] || key); + setAvailableDataTypes(translatedDataTypes); + }); + }, []); // Extract the molecule ids from the results useEffect(() => { @@ -111,7 +158,7 @@ export default function NeighborSearchHook () { * @param {AbortSignal} signal Abortsignal object. */ const fetchData = async () => { - const molecule_data = await NeighborSearch(moleculeid, "pca", "1,2,3,4", interval, skip, signal); + const molecule_data = await NeighborSearch(moleculeid, "pca", "1,2,3", interval, skip, signal); const svg_data = await retrieveAllSVGs(molecule_data, signal); return [ molecule_data, svg_data ] @@ -170,14 +217,14 @@ export default function NeighborSearchHook () { } }, // eslint-disable-next-line react-hooks/exhaustive-deps - [ searchToggle ] + [ searchToggle, moleculeid ] ); return ( Neighbor Search - Neighbors are identified by Euclidian distance in 4 principal component space. + Neighbors are identified by Euclidian distance in 3 principal component space. @@ -185,7 +232,8 @@ export default function NeighborSearchHook () { style = {{width: 350}} sx={{ m: 0.5}} id="search-outline" - label="Enter a Molecule ID to Search" + label="" + helperText="Enter a molecule ID to search for neighbors." variant="outlined" value= {moleculeid} onKeyDown = { (e) => _handleKeyDown(e) } @@ -215,12 +263,7 @@ export default function NeighborSearchHook () { Load More - - + } diff --git a/frontend/src/pages/SearchHook.jsx b/frontend/src/pages/SearchHook.jsx index e69e629..6b05a63 100644 --- a/frontend/src/pages/SearchHook.jsx +++ b/frontend/src/pages/SearchHook.jsx @@ -12,11 +12,13 @@ import FullScreenDialog from '../components/KetcherPopup'; import { substructureSearch, retrieveAllSVGs, dynamicGrid, extractIdsFromResults, downloadMoleculeData } from '../common/MoleculeUtils'; +import DropDownButton from '../components/DataDownloadButton'; + export default function SearchHook () { const interval = 15; - const [ searchString, setSearch ] = useState('PC=C'); + const [ searchString, setSearch ] = useState('C=C'); const [ skip, setSkip ] = useState(0); const [ results, setResults ] = useState([]); const [ validSmiles, setValidSmiles ] = useState(true); @@ -33,6 +35,24 @@ export default function SearchHook () { const [ fromKetcher, setFromKetcher ] = useState(false); const [ updatedParameters, setUpdatedParameters ] = useState(false); const [ moleculeIDs, setMoleculeIDs ] = useState(""); + const [ availableDataTypes, setAvailableDataTypes ] = useState([]); + + const reverseMapping = { + "ml_data": "ML Data", + "dft_data": "DFT Data", + "xtb_data": "xTB Data", + "xtb_ni_data": "xTB_Ni Data" + }; + + + useEffect(() => { + fetch(`/api/${document.location.pathname.split('/')[1]}/molecules/data_types`) + .then(response => response.json()) + .then(data => { + const translatedDataTypes = data["available_types"].map(key => reverseMapping[key] || key); + setAvailableDataTypes(translatedDataTypes); + }); + }, []); // Extract the molecule ids from the results useEffect(() => { @@ -220,11 +240,7 @@ export default function SearchHook () { Load More - + } @@ -247,11 +263,7 @@ export default function SearchHook () { Load More - + } diff --git a/frontend/vite.config.js b/frontend/vite.config.js index efb817d..ab67461 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -5,6 +5,7 @@ import { nodePolyfills } from 'vite-plugin-node-polyfills'; // have to do this f // https://vitejs.dev/config/ export default defineConfig(({ mode }) => { return { + base: process.env.VITE_BASE_URL || '/base_url', plugins: [react(), nodePolyfills()], server: { host: '0.0.0.0', @@ -13,5 +14,6 @@ export default defineConfig(({ mode }) => { define: { 'process.env': process.env // have to do this for ketcher } - }; + } }); + diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 3205580..04563a7 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -1,13406 +1,19955 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@aashutoshrathi/word-wrap@^1.2.3": - version "1.2.6" - resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" - integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== - -"@adobe/css-tools@^4.0.1": - version "4.2.0" - resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.2.0.tgz#e1a84fca468f4b337816fcb7f0964beb620ba855" - integrity sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA== - -"@alloc/quick-lru@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" - integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== - -"@ampproject/remapping@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" - integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@apideck/better-ajv-errors@^0.3.1": - version "0.3.6" - resolved "https://registry.yarnpkg.com/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz#957d4c28e886a64a8141f7522783be65733ff097" - integrity sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA== - dependencies: - json-schema "^0.4.0" - jsonpointer "^5.0.0" - leven "^3.1.0" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.5", "@babel/code-frame@^7.8.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" - integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== - dependencies: - "@babel/highlight" "^7.22.5" - -"@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.6.tgz#15606a20341de59ba02cd2fcc5086fcbe73bf544" - integrity sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg== - -"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.21.3", "@babel/core@^7.22.5", "@babel/core@^7.7.2", "@babel/core@^7.8.0": - version "7.22.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.8.tgz#386470abe884302db9c82e8e5e87be9e46c86785" - integrity sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.7" - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helpers" "^7.22.6" - "@babel/parser" "^7.22.7" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.8" - "@babel/types" "^7.22.5" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.2" - -"@babel/eslint-parser@^7.16.3": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.7.tgz#d2807fbd1fa4376162716da63dfd3c69a2249fed" - integrity sha512-LH6HJqjOyu/Qtp7LuSycZXK/CYXQ4ohdkliEaL1QTdtOXVdOVpTBKVxAo/+eeyt+x/2SRzB+zUPduVl+xiEvdg== - dependencies: - "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - eslint-visitor-keys "^2.1.0" - -"@babel/generator@^7.22.7", "@babel/generator@^7.7.2": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.7.tgz#a6b8152d5a621893f2c9dacf9a4e286d520633d5" - integrity sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ== - dependencies: - "@babel/types" "^7.22.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" - integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878" - integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz#e30d61abe9480aa5a83232eb31c111be922d2e52" - integrity sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA== - dependencies: - "@babel/compat-data" "^7.22.6" - "@babel/helper-validator-option" "^7.22.5" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - browserslist "^4.21.9" - lru-cache "^5.1.1" - -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.5", "@babel/helper-create-class-features-plugin@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz#58564873c889a6fea05a538e23f9f6d201f10950" - integrity sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.6.tgz#87afd63012688ad792de430ceb3b6dc28e4e7a40" - integrity sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - regexpu-core "^5.3.1" - -"@babel/helper-define-polyfill-provider@^0.4.1": - version "0.4.1" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.1.tgz#af1429c4a83ac316a6a8c2cc8ff45cb5d2998d3a" - integrity sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A== - dependencies: - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-plugin-utils" "^7.22.5" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - -"@babel/helper-environment-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" - integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== - -"@babel/helper-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" - integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== - dependencies: - "@babel/template" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-member-expression-to-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2" - integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" - integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-module-transforms@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" - integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-optimise-call-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" - integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" - integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== - -"@babel/helper-remap-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2" - integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-wrap-function" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-replace-supers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc" - integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-simple-access@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" - integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" - integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-split-export-declaration@^7.22.5", "@babel/helper-split-export-declaration@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" - integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== - -"@babel/helper-validator-identifier@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" - integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== - -"@babel/helper-validator-option@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" - integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== - -"@babel/helper-wrap-function@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06" - integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw== - dependencies: - "@babel/helper-function-name" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helpers@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd" - integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA== - dependencies: - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.6" - "@babel/types" "^7.22.5" - -"@babel/highlight@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" - integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== - dependencies: - "@babel/helper-validator-identifier" "^7.22.5" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae" - integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q== - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e" - integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca" - integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.5" - -"@babel/plugin-proposal-class-properties@^7.16.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" - integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-decorators@^7.16.4": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.7.tgz#9b5b73c2e404f0869ef8a8a53765f8203c5467a7" - integrity sha512-omXqPF7Onq4Bb7wHxXjM3jSMSJvUUbvDvmmds7KI5n9Cq6Ln5I05I1W2nRlRof1rGdiUxJrxwe285WF96XlBXQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.6" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/plugin-syntax-decorators" "^7.22.5" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" - integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-proposal-numeric-separator@^7.16.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" - integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-optional-chaining@^7.16.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" - integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-proposal-private-methods@^7.16.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" - integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": - version "7.21.0-placeholder-for-preset-env.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" - integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== - -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" - integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-decorators@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz#329fe2907c73de184033775637dbbc507f09116a" - integrity sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-flow@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859" - integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-assertions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" - integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" - integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.22.5", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" - integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" - integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-arrow-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" - integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-async-generator-functions@^7.22.7": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b" - integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-transform-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" - integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== - dependencies: - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" - -"@babel/plugin-transform-block-scoped-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" - integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-block-scoping@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b" - integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-class-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" - integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-class-static-block@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba" - integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-transform-classes@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363" - integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" - integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.5" - -"@babel/plugin-transform-destructuring@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc" - integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" - integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-duplicate-keys@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" - integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dynamic-import@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e" - integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-transform-exponentiation-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" - integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-export-namespace-from@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b" - integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-transform-flow-strip-types@^7.16.0": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz#0bb17110c7bf5b35a60754b2f00c58302381dee2" - integrity sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-flow" "^7.22.5" - -"@babel/plugin-transform-for-of@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f" - integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" - integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== - dependencies: - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-json-strings@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0" - integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-transform-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" - integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-logical-assignment-operators@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c" - integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-transform-member-expression-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" - integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-amd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" - integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-commonjs@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" - integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - -"@babel/plugin-transform-modules-systemjs@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496" - integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== - dependencies: - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - -"@babel/plugin-transform-modules-umd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" - integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" - integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-new-target@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" - integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381" - integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-transform-numeric-separator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58" - integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-transform-object-rest-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1" - integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== - dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.22.5" - -"@babel/plugin-transform-object-super@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" - integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - -"@babel/plugin-transform-optional-catch-binding@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333" - integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564" - integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-transform-parameters@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18" - integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-private-methods@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" - integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-private-property-in-object@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32" - integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-transform-property-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" - integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-constant-elements@^7.12.1": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.22.5.tgz#6dfa7c1c37f7d7279e417ceddf5a04abb8bb9c29" - integrity sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b" - integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-jsx-development@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" - integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== - dependencies: - "@babel/plugin-transform-react-jsx" "^7.22.5" - -"@babel/plugin-transform-react-jsx-self@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.22.5.tgz#ca2fdc11bc20d4d46de01137318b13d04e481d8e" - integrity sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-jsx-source@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.22.5.tgz#49af1615bfdf6ed9d3e9e43e425e0b2b65d15b6c" - integrity sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-jsx@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.5.tgz#932c291eb6dd1153359e2a90cb5e557dcf068416" - integrity sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/plugin-transform-react-pure-annotations@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0" - integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-regenerator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa" - integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - regenerator-transform "^0.15.1" - -"@babel/plugin-transform-reserved-words@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" - integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-runtime@^7.16.4": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.7.tgz#eb9094b5fb756cc2d98d398b2c88aeefa9205de9" - integrity sha512-o02xM7iY7mSPI+TvaYDH0aYl+lg3+KT7qrD705JlsB/GrZSNaYO/4i+aDFKPiJ7ubq3hgv8NNLCdyB5MFxT8mg== - dependencies: - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - babel-plugin-polyfill-corejs2 "^0.4.4" - babel-plugin-polyfill-corejs3 "^0.8.2" - babel-plugin-polyfill-regenerator "^0.5.1" - -"@babel/plugin-transform-shorthand-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" - integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" - integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - -"@babel/plugin-transform-sticky-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" - integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-template-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" - integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-typeof-symbol@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" - integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-typescript@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz#5c0f7adfc1b5f38c4dbc8f79b1f0f8074134bd7d" - integrity sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-typescript" "^7.22.5" - -"@babel/plugin-transform-unicode-escapes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c" - integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-property-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" - integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" - integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-sets-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" - integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.7.tgz#a1ef34b64a80653c22ce4d9c25603cfa76fc168a" - integrity sha512-1whfDtW+CzhETuzYXfcgZAh8/GFMeEbz0V5dVgya8YeJyCU6Y/P2Gnx4Qb3MylK68Zu9UiwUvbPMPTpFAOJ+sQ== - dependencies: - "@babel/compat-data" "^7.22.6" - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5" - "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.22.5" - "@babel/plugin-syntax-import-attributes" "^7.22.5" - "@babel/plugin-syntax-import-meta" "^7.10.4" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.7" - "@babel/plugin-transform-async-to-generator" "^7.22.5" - "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.5" - "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.5" - "@babel/plugin-transform-classes" "^7.22.6" - "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.5" - "@babel/plugin-transform-dotall-regex" "^7.22.5" - "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.5" - "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.5" - "@babel/plugin-transform-for-of" "^7.22.5" - "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.5" - "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" - "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.5" - "@babel/plugin-transform-modules-systemjs" "^7.22.5" - "@babel/plugin-transform-modules-umd" "^7.22.5" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" - "@babel/plugin-transform-numeric-separator" "^7.22.5" - "@babel/plugin-transform-object-rest-spread" "^7.22.5" - "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.6" - "@babel/plugin-transform-parameters" "^7.22.5" - "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.5" - "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.5" - "@babel/plugin-transform-reserved-words" "^7.22.5" - "@babel/plugin-transform-shorthand-properties" "^7.22.5" - "@babel/plugin-transform-spread" "^7.22.5" - "@babel/plugin-transform-sticky-regex" "^7.22.5" - "@babel/plugin-transform-template-literals" "^7.22.5" - "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.5" - "@babel/plugin-transform-unicode-property-regex" "^7.22.5" - "@babel/plugin-transform-unicode-regex" "^7.22.5" - "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.22.5" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - babel-plugin-polyfill-corejs2 "^0.4.4" - babel-plugin-polyfill-corejs3 "^0.8.2" - babel-plugin-polyfill-regenerator "^0.5.1" - core-js-compat "^3.31.0" - -"@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/preset-react@^7.12.5", "@babel/preset-react@^7.16.0": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.5.tgz#c4d6058fbf80bccad02dd8c313a9aaa67e3c3dd6" - integrity sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - "@babel/plugin-transform-react-display-name" "^7.22.5" - "@babel/plugin-transform-react-jsx" "^7.22.5" - "@babel/plugin-transform-react-jsx-development" "^7.22.5" - "@babel/plugin-transform-react-pure-annotations" "^7.22.5" - -"@babel/preset-typescript@^7.16.0": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8" - integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.5" - "@babel/plugin-transform-typescript" "^7.22.5" - -"@babel/regjsgen@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" - integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== - -"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.16.3", "@babel/runtime@^7.17.9", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438" - integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ== - dependencies: - regenerator-runtime "^0.13.11" - -"@babel/template@^7.22.5", "@babel/template@^7.3.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" - integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/traverse@^7.22.5", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8", "@babel/traverse@^7.7.2": - version "7.22.8" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e" - integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.7" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.22.7" - "@babel/types" "^7.22.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.22.5", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" - integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== - dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@choojs/findup@^0.2.0": - version "0.2.1" - resolved "https://registry.yarnpkg.com/@choojs/findup/-/findup-0.2.1.tgz#ac13c59ae7be6e1da64de0779a0a7f03d75615a3" - integrity sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw== - dependencies: - commander "^2.15.1" - -"@csstools/normalize.css@*": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-12.0.0.tgz#a9583a75c3f150667771f30b60d9f059473e62c4" - integrity sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg== - -"@csstools/postcss-cascade-layers@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz#8a997edf97d34071dd2e37ea6022447dd9e795ad" - integrity sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA== - dependencies: - "@csstools/selector-specificity" "^2.0.2" - postcss-selector-parser "^6.0.10" - -"@csstools/postcss-color-function@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz#2bd36ab34f82d0497cfacdc9b18d34b5e6f64b6b" - integrity sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw== - dependencies: - "@csstools/postcss-progressive-custom-properties" "^1.1.0" - postcss-value-parser "^4.2.0" - -"@csstools/postcss-font-format-keywords@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz#677b34e9e88ae997a67283311657973150e8b16a" - integrity sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg== - dependencies: - postcss-value-parser "^4.2.0" - -"@csstools/postcss-hwb-function@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz#ab54a9fce0ac102c754854769962f2422ae8aa8b" - integrity sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w== - dependencies: - postcss-value-parser "^4.2.0" - -"@csstools/postcss-ic-unit@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz#28237d812a124d1a16a5acc5c3832b040b303e58" - integrity sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw== - dependencies: - "@csstools/postcss-progressive-custom-properties" "^1.1.0" - postcss-value-parser "^4.2.0" - -"@csstools/postcss-is-pseudo-class@^2.0.7": - version "2.0.7" - resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz#846ae6c0d5a1eaa878fce352c544f9c295509cd1" - integrity sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA== - dependencies: - "@csstools/selector-specificity" "^2.0.0" - postcss-selector-parser "^6.0.10" - -"@csstools/postcss-nested-calc@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz#d7e9d1d0d3d15cf5ac891b16028af2a1044d0c26" - integrity sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ== - dependencies: - postcss-value-parser "^4.2.0" - -"@csstools/postcss-normalize-display-values@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz#15da54a36e867b3ac5163ee12c1d7f82d4d612c3" - integrity sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw== - dependencies: - postcss-value-parser "^4.2.0" - -"@csstools/postcss-oklab-function@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz#88cee0fbc8d6df27079ebd2fa016ee261eecf844" - integrity sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA== - dependencies: - "@csstools/postcss-progressive-custom-properties" "^1.1.0" - postcss-value-parser "^4.2.0" - -"@csstools/postcss-progressive-custom-properties@^1.1.0", "@csstools/postcss-progressive-custom-properties@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz#542292558384361776b45c85226b9a3a34f276fa" - integrity sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA== - dependencies: - postcss-value-parser "^4.2.0" - -"@csstools/postcss-stepped-value-functions@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz#f8772c3681cc2befed695e2b0b1d68e22f08c4f4" - integrity sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ== - dependencies: - postcss-value-parser "^4.2.0" - -"@csstools/postcss-text-decoration-shorthand@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz#ea96cfbc87d921eca914d3ad29340d9bcc4c953f" - integrity sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw== - dependencies: - postcss-value-parser "^4.2.0" - -"@csstools/postcss-trigonometric-functions@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz#94d3e4774c36d35dcdc88ce091336cb770d32756" - integrity sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og== - dependencies: - postcss-value-parser "^4.2.0" - -"@csstools/postcss-unset-value@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz#c99bb70e2cdc7312948d1eb41df2412330b81f77" - integrity sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g== - -"@csstools/selector-specificity@^2.0.0", "@csstools/selector-specificity@^2.0.2": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz#2cbcf822bf3764c9658c4d2e568bd0c0cb748016" - integrity sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw== - -"@emotion/babel-plugin@^11.11.0": - version "11.11.0" - resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c" - integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ== - dependencies: - "@babel/helper-module-imports" "^7.16.7" - "@babel/runtime" "^7.18.3" - "@emotion/hash" "^0.9.1" - "@emotion/memoize" "^0.8.1" - "@emotion/serialize" "^1.1.2" - babel-plugin-macros "^3.1.0" - convert-source-map "^1.5.0" - escape-string-regexp "^4.0.0" - find-root "^1.1.0" - source-map "^0.5.7" - stylis "4.2.0" - -"@emotion/cache@^11.11.0": - version "11.11.0" - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff" - integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ== - dependencies: - "@emotion/memoize" "^0.8.1" - "@emotion/sheet" "^1.2.2" - "@emotion/utils" "^1.2.1" - "@emotion/weak-memoize" "^0.3.1" - stylis "4.2.0" - -"@emotion/hash@^0.9.1": - version "0.9.1" - resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43" - integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== - -"@emotion/is-prop-valid@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz#23116cf1ed18bfeac910ec6436561ecb1a3885cc" - integrity sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw== - dependencies: - "@emotion/memoize" "^0.8.1" - -"@emotion/memoize@^0.8.1": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" - integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== - -"@emotion/react@^11.10.4", "@emotion/react@^11.7.1": - version "11.11.1" - resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.1.tgz#b2c36afac95b184f73b08da8c214fdf861fa4157" - integrity sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA== - dependencies: - "@babel/runtime" "^7.18.3" - "@emotion/babel-plugin" "^11.11.0" - "@emotion/cache" "^11.11.0" - "@emotion/serialize" "^1.1.2" - "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1" - "@emotion/utils" "^1.2.1" - "@emotion/weak-memoize" "^0.3.1" - hoist-non-react-statics "^3.3.1" - -"@emotion/serialize@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.2.tgz#017a6e4c9b8a803bd576ff3d52a0ea6fa5a62b51" - integrity sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA== - dependencies: - "@emotion/hash" "^0.9.1" - "@emotion/memoize" "^0.8.1" - "@emotion/unitless" "^0.8.1" - "@emotion/utils" "^1.2.1" - csstype "^3.0.2" - -"@emotion/sheet@^1.2.2": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec" - integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== - -"@emotion/styled@^11.10.4", "@emotion/styled@^11.6.0": - version "11.11.0" - resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.11.0.tgz#26b75e1b5a1b7a629d7c0a8b708fbf5a9cdce346" - integrity sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng== - dependencies: - "@babel/runtime" "^7.18.3" - "@emotion/babel-plugin" "^11.11.0" - "@emotion/is-prop-valid" "^1.2.1" - "@emotion/serialize" "^1.1.2" - "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1" - "@emotion/utils" "^1.2.1" - -"@emotion/unitless@^0.8.1": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3" - integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ== - -"@emotion/use-insertion-effect-with-fallbacks@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" - integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== - -"@emotion/utils@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4" - integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg== - -"@emotion/weak-memoize@^0.3.1": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6" - integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww== - -"@esbuild/android-arm64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.11.tgz#fa6f0cc7105367cb79cc0a8bf32bf50cb1673e45" - integrity sha512-snieiq75Z1z5LJX9cduSAjUr7vEI1OdlzFPMw0HH5YI7qQHDd3qs+WZoMrWYDsfRJSq36lIA6mfZBkvL46KoIw== - -"@esbuild/android-arm@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.11.tgz#ae84a410696c9f549a15be94eaececb860bacacb" - integrity sha512-q4qlUf5ucwbUJZXF5tEQ8LF7y0Nk4P58hOsGk3ucY0oCwgQqAnqXVbUuahCddVHfrxmpyewRpiTHwVHIETYu7Q== - -"@esbuild/android-x64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.11.tgz#0e58360bbc789ad0d68174d32ba20e678c2a16b6" - integrity sha512-iPuoxQEV34+hTF6FT7om+Qwziv1U519lEOvekXO9zaMMlT9+XneAhKL32DW3H7okrCOBQ44BMihE8dclbZtTuw== - -"@esbuild/darwin-arm64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.11.tgz#fcdcd2ef76ca656540208afdd84f284072f0d1f9" - integrity sha512-Gm0QkI3k402OpfMKyQEEMG0RuW2LQsSmI6OeO4El2ojJMoF5NLYb3qMIjvbG/lbMeLOGiW6ooU8xqc+S0fgz2w== - -"@esbuild/darwin-x64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.11.tgz#c5ac602ec0504a8ff81e876bc8a9811e94d69d37" - integrity sha512-N15Vzy0YNHu6cfyDOjiyfJlRJCB/ngKOAvoBf1qybG3eOq0SL2Lutzz9N7DYUbb7Q23XtHPn6lMDF6uWbGv9Fw== - -"@esbuild/freebsd-arm64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.11.tgz#7012fb06ee3e6e0d5560664a65f3fefbcc46db2e" - integrity sha512-atEyuq6a3omEY5qAh5jIORWk8MzFnCpSTUruBgeyN9jZq1K/QI9uke0ATi3MHu4L8c59CnIi4+1jDKMuqmR71A== - -"@esbuild/freebsd-x64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.11.tgz#c5de1199f70e1f97d5c8fca51afa9bf9a2af5969" - integrity sha512-XtuPrEfBj/YYYnAAB7KcorzzpGTvOr/dTtXPGesRfmflqhA4LMF0Gh/n5+a9JBzPuJ+CGk17CA++Hmr1F/gI0Q== - -"@esbuild/linux-arm64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.11.tgz#2a6d3a74e0b8b5f294e22b4515b29f76ebd42660" - integrity sha512-c6Vh2WS9VFKxKZ2TvJdA7gdy0n6eSy+yunBvv4aqNCEhSWVor1TU43wNRp2YLO9Vng2G+W94aRz+ILDSwAiYog== - -"@esbuild/linux-arm@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.11.tgz#5175bd61b793b436e4aece6328aa0d9be07751e1" - integrity sha512-Idipz+Taso/toi2ETugShXjQ3S59b6m62KmLHkJlSq/cBejixmIydqrtM2XTvNCywFl3VC7SreSf6NV0i6sRyg== - -"@esbuild/linux-ia32@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.11.tgz#20ee6cfd65a398875f321a485e7b2278e5f6f67b" - integrity sha512-S3hkIF6KUqRh9n1Q0dSyYcWmcVa9Cg+mSoZEfFuzoYXXsk6196qndrM+ZiHNwpZKi3XOXpShZZ+9dfN5ykqjjw== - -"@esbuild/linux-loong64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.11.tgz#8e7b251dede75083bf44508dab5edce3f49d052b" - integrity sha512-MRESANOoObQINBA+RMZW+Z0TJWpibtE7cPFnahzyQHDCA9X9LOmGh68MVimZlM9J8n5Ia8lU773te6O3ILW8kw== - -"@esbuild/linux-mips64el@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.11.tgz#a3125eb48538ac4932a9d05089b157f94e443165" - integrity sha512-qVyPIZrXNMOLYegtD1u8EBccCrBVshxMrn5MkuFc3mEVsw7CCQHaqZ4jm9hbn4gWY95XFnb7i4SsT3eflxZsUg== - -"@esbuild/linux-ppc64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.11.tgz#842abadb7a0995bd539adee2be4d681b68279499" - integrity sha512-T3yd8vJXfPirZaUOoA9D2ZjxZX4Gr3QuC3GztBJA6PklLotc/7sXTOuuRkhE9W/5JvJP/K9b99ayPNAD+R+4qQ== - -"@esbuild/linux-riscv64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.11.tgz#7ce6e6cee1c72d5b4d2f4f8b6fcccf4a9bea0e28" - integrity sha512-evUoRPWiwuFk++snjH9e2cAjF5VVSTj+Dnf+rkO/Q20tRqv+644279TZlPK8nUGunjPAtQRCj1jQkDAvL6rm2w== - -"@esbuild/linux-s390x@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.11.tgz#98fbc794363d02ded07d300df2e535650b297b96" - integrity sha512-/SlRJ15XR6i93gRWquRxYCfhTeC5PdqEapKoLbX63PLCmAkXZHY2uQm2l9bN0oPHBsOw2IswRZctMYS0MijFcg== - -"@esbuild/linux-x64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.11.tgz#f8458ec8cf74c8274e4cacd00744d8446cac52eb" - integrity sha512-xcncej+wF16WEmIwPtCHi0qmx1FweBqgsRtEL1mSHLFR6/mb3GEZfLQnx+pUDfRDEM4DQF8dpXIW7eDOZl1IbA== - -"@esbuild/netbsd-x64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.11.tgz#a7b2f991b8293748a7be42eac1c4325faf0c7cca" - integrity sha512-aSjMHj/F7BuS1CptSXNg6S3M4F3bLp5wfFPIJM+Km2NfIVfFKhdmfHF9frhiCLIGVzDziggqWll0B+9AUbud/Q== - -"@esbuild/openbsd-x64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.11.tgz#3e50923de84c54008f834221130fd23646072b2f" - integrity sha512-tNBq+6XIBZtht0xJGv7IBB5XaSyvYPCm1PxJ33zLQONdZoLVM0bgGqUrXnJyiEguD9LU4AHiu+GCXy/Hm9LsdQ== - -"@esbuild/sunos-x64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.11.tgz#ae47a550b0cd395de03606ecfba03cc96c7c19e2" - integrity sha512-kxfbDOrH4dHuAAOhr7D7EqaYf+W45LsAOOhAet99EyuxxQmjbk8M9N4ezHcEiCYPaiW8Dj3K26Z2V17Gt6p3ng== - -"@esbuild/win32-arm64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.11.tgz#05d364582b7862d7fbf4698ef43644f7346dcfcc" - integrity sha512-Sh0dDRyk1Xi348idbal7lZyfSkjhJsdFeuC13zqdipsvMetlGiFQNdO+Yfp6f6B4FbyQm7qsk16yaZk25LChzg== - -"@esbuild/win32-ia32@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.11.tgz#a3372095a4a1939da672156a3c104f8ce85ee616" - integrity sha512-o9JUIKF1j0rqJTFbIoF4bXj6rvrTZYOrfRcGyL0Vm5uJ/j5CkBD/51tpdxe9lXEDouhRgdr/BYzUrDOvrWwJpg== - -"@esbuild/win32-x64@0.18.11": - version "0.18.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.11.tgz#6526c7e1b40d5b9f0a222c6b767c22f6fb97aa57" - integrity sha512-rQI4cjLHd2hGsM1LqgDI7oOCYbQ6IBOVsX9ejuRMSze0GqXUG2ekwiKkiBU1pRGSeCqFFHxTrcEydB2Hyoz9CA== - -"@eslint-community/eslint-utils@^4.2.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" - integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== - dependencies: - eslint-visitor-keys "^3.3.0" - -"@eslint-community/regexpp@^4.4.0": - version "4.5.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" - integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== - -"@eslint/eslintrc@^2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d" - integrity sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A== - dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.6.0" - globals "^13.19.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" - -"@eslint/js@8.44.0": - version "8.44.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.44.0.tgz#961a5903c74139390478bdc808bcde3fc45ab7af" - integrity sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw== - -"@humanwhocodes/config-array@^0.11.10": - version "0.11.10" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" - integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== - dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.5" - -"@humanwhocodes/module-importer@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" - integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== - -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.5.1.tgz#260fe7239602fe5130a94f1aa386eff54b014bba" - integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg== - dependencies: - "@jest/types" "^27.5.1" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^27.5.1" - jest-util "^27.5.1" - slash "^3.0.0" - -"@jest/console@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.3.tgz#2030606ec03a18c31803b8a36382762e447655df" - integrity sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw== - dependencies: - "@jest/types" "^28.1.3" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^28.1.3" - jest-util "^28.1.3" - slash "^3.0.0" - -"@jest/core@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.5.1.tgz#267ac5f704e09dc52de2922cbf3af9edcd64b626" - integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ== - dependencies: - "@jest/console" "^27.5.1" - "@jest/reporters" "^27.5.1" - "@jest/test-result" "^27.5.1" - "@jest/transform" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - emittery "^0.8.1" - exit "^0.1.2" - graceful-fs "^4.2.9" - jest-changed-files "^27.5.1" - jest-config "^27.5.1" - jest-haste-map "^27.5.1" - jest-message-util "^27.5.1" - jest-regex-util "^27.5.1" - jest-resolve "^27.5.1" - jest-resolve-dependencies "^27.5.1" - jest-runner "^27.5.1" - jest-runtime "^27.5.1" - jest-snapshot "^27.5.1" - jest-util "^27.5.1" - jest-validate "^27.5.1" - jest-watcher "^27.5.1" - micromatch "^4.0.4" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.5.1.tgz#d7425820511fe7158abbecc010140c3fd3be9c74" - integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA== - dependencies: - "@jest/fake-timers" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - jest-mock "^27.5.1" - -"@jest/expect-utils@^29.6.1": - version "29.6.1" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.6.1.tgz#ab83b27a15cdd203fe5f68230ea22767d5c3acc5" - integrity sha512-o319vIf5pEMx0LmzSxxkYYxo4wrRLKHq9dP1yJU7FoPTB0LfAKSz8SWD6D/6U3v/O52t9cF5t+MeJiRsfk7zMw== - dependencies: - jest-get-type "^29.4.3" - -"@jest/fake-timers@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz#76979745ce0579c8a94a4678af7a748eda8ada74" - integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ== - dependencies: - "@jest/types" "^27.5.1" - "@sinonjs/fake-timers" "^8.0.1" - "@types/node" "*" - jest-message-util "^27.5.1" - jest-mock "^27.5.1" - jest-util "^27.5.1" - -"@jest/globals@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.5.1.tgz#7ac06ce57ab966566c7963431cef458434601b2b" - integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q== - dependencies: - "@jest/environment" "^27.5.1" - "@jest/types" "^27.5.1" - expect "^27.5.1" - -"@jest/reporters@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.5.1.tgz#ceda7be96170b03c923c37987b64015812ffec04" - integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^27.5.1" - "@jest/test-result" "^27.5.1" - "@jest/transform" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - chalk "^4.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.2" - graceful-fs "^4.2.9" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^5.1.0" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.1.3" - jest-haste-map "^27.5.1" - jest-resolve "^27.5.1" - jest-util "^27.5.1" - jest-worker "^27.5.1" - slash "^3.0.0" - source-map "^0.6.0" - string-length "^4.0.1" - terminal-link "^2.0.0" - v8-to-istanbul "^8.1.0" - -"@jest/schemas@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.1.3.tgz#ad8b86a66f11f33619e3d7e1dcddd7f2d40ff905" - integrity sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg== - dependencies: - "@sinclair/typebox" "^0.24.1" - -"@jest/schemas@^29.6.0": - version "29.6.0" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.0.tgz#0f4cb2c8e3dca80c135507ba5635a4fd755b0040" - integrity sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ== - dependencies: - "@sinclair/typebox" "^0.27.8" - -"@jest/source-map@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.5.1.tgz#6608391e465add4205eae073b55e7f279e04e8cf" - integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg== - dependencies: - callsites "^3.0.0" - graceful-fs "^4.2.9" - source-map "^0.6.0" - -"@jest/test-result@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.5.1.tgz#56a6585fa80f7cdab72b8c5fc2e871d03832f5bb" - integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag== - dependencies: - "@jest/console" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-result@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.3.tgz#5eae945fd9f4b8fcfce74d239e6f725b6bf076c5" - integrity sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg== - dependencies: - "@jest/console" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz#4057e0e9cea4439e544c6353c6affe58d095745b" - integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ== - dependencies: - "@jest/test-result" "^27.5.1" - graceful-fs "^4.2.9" - jest-haste-map "^27.5.1" - jest-runtime "^27.5.1" - -"@jest/transform@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.5.1.tgz#6c3501dcc00c4c08915f292a600ece5ecfe1f409" - integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw== - dependencies: - "@babel/core" "^7.1.0" - "@jest/types" "^27.5.1" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^27.5.1" - jest-regex-util "^27.5.1" - jest-util "^27.5.1" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - source-map "^0.6.1" - write-file-atomic "^3.0.0" - -"@jest/types@^27.5.1": - version "27.5.1" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80" - integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^16.0.0" - chalk "^4.0.0" - -"@jest/types@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.3.tgz#b05de80996ff12512bc5ceb1d208285a7d11748b" - integrity sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ== - dependencies: - "@jest/schemas" "^28.1.3" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jest/types@^29.6.1": - version "29.6.1" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.1.tgz#ae79080278acff0a6af5eb49d063385aaa897bf2" - integrity sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw== - dependencies: - "@jest/schemas" "^29.6.0" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/source-map@^0.3.3": - version "0.3.5" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" - integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.18" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" - -"@juggle/resize-observer@^3.3.1": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60" - integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA== - -"@leichtgewicht/ip-codec@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" - integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== - -"@mapbox/geojson-rewind@^0.5.0": - version "0.5.2" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz#591a5d71a9cd1da1a0bf3420b3bea31b0fc7946a" - integrity sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA== - dependencies: - get-stream "^6.0.1" - minimist "^1.2.6" - -"@mapbox/geojson-types@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz#9aecf642cb00eab1080a57c4f949a65b4a5846d6" - integrity sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw== - -"@mapbox/jsonlint-lines-primitives@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234" - integrity sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ== - -"@mapbox/mapbox-gl-supported@^1.5.0": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz#f60b6a55a5d8e5ee908347d2ce4250b15103dc8e" - integrity sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg== - -"@mapbox/point-geometry@0.1.0", "@mapbox/point-geometry@^0.1.0", "@mapbox/point-geometry@~0.1.0": - version "0.1.0" - resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz#8a83f9335c7860effa2eeeca254332aa0aeed8f2" - integrity sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ== - -"@mapbox/tiny-sdf@^1.1.1": - version "1.2.5" - resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz#424c620a96442b20402552be70a7f62a8407cc59" - integrity sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw== - -"@mapbox/unitbezier@^0.0.0": - version "0.0.0" - resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e" - integrity sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA== - -"@mapbox/vector-tile@^1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz#d3a74c90402d06e89ec66de49ec817ff53409666" - integrity sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw== - dependencies: - "@mapbox/point-geometry" "~0.1.0" - -"@mapbox/whoots-js@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe" - integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q== - -"@mui/base@5.0.0-beta.6": - version "5.0.0-beta.6" - resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-beta.6.tgz#c4537231619f4642ebda714c2cfd0e598aa9f511" - integrity sha512-jcHy6HwOX7KzRhRtL8nvIvUlxvLx2Fl6NMRCyUSQSvMTyfou9kndekz0H4HJaXvG1Y4WEifk23RYedOlrD1kEQ== - dependencies: - "@babel/runtime" "^7.22.5" - "@emotion/is-prop-valid" "^1.2.1" - "@mui/types" "^7.2.4" - "@mui/utils" "^5.13.7" - "@popperjs/core" "^2.11.8" - clsx "^1.2.1" - prop-types "^15.8.1" - react-is "^18.2.0" - -"@mui/core-downloads-tracker@^5.13.7": - version "5.13.7" - resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.13.7.tgz#f4d9af5fe113b80b98b2cb158263d7b8f77e61c7" - integrity sha512-/suIo4WoeL/OyO3KUsFVpdOmKiSAr6NpWXmQ4WLSxwKrTiha1FJxM6vwAki5W/5kR9WnVLw5E8JC4oHHsutT8w== - -"@mui/icons-material@^5.10.3": - version "5.13.7" - resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.13.7.tgz#d83532363196b49d8716987e9a2c12f55b233cc1" - integrity sha512-zoVtkb9jYVUGfI7CobOdDBEAlpg3XESiO6cWqSDGwEma69+CBDIAwGpnO5truvQDJHBGSAfzFj3nObwxjkyA7Q== - dependencies: - "@babel/runtime" "^7.22.5" - -"@mui/material@^5.10.5", "@mui/material@^5.2.4", "@mui/material@^5.2.5": - version "5.13.7" - resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.13.7.tgz#0a4cef14d2a647eb6b049557a795744ff35df755" - integrity sha512-+n453jDDm88zZM3b5YK29nZ7gXY+s+rryH9ovDbhmfSkOlFtp+KSqbXy5cTaC/UlDqDM7sYYJGq8BmJov3v9Tg== - dependencies: - "@babel/runtime" "^7.22.5" - "@mui/base" "5.0.0-beta.6" - "@mui/core-downloads-tracker" "^5.13.7" - "@mui/system" "^5.13.7" - "@mui/types" "^7.2.4" - "@mui/utils" "^5.13.7" - "@types/react-transition-group" "^4.4.6" - clsx "^1.2.1" - csstype "^3.1.2" - prop-types "^15.8.1" - react-is "^18.2.0" - react-transition-group "^4.4.5" - -"@mui/private-theming@^5.13.7": - version "5.13.7" - resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.13.7.tgz#2f8ef5da066f3c6c6423bd4260d003a28d10b099" - integrity sha512-qbSr+udcij5F9dKhGX7fEdx2drXchq7htLNr2Qg2Ma+WJ6q0ERlEqGSBiPiVDJkptcjeVL4DGmcf1wl5+vD4EA== - dependencies: - "@babel/runtime" "^7.22.5" - "@mui/utils" "^5.13.7" - prop-types "^15.8.1" - -"@mui/styled-engine@^5.13.2": - version "5.13.2" - resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.13.2.tgz#c87bd61c0ab8086d34828b6defe97c02bcd642ef" - integrity sha512-VCYCU6xVtXOrIN8lcbuPmoG+u7FYuOERG++fpY74hPpEWkyFQG97F+/XfTQVYzlR2m7nPjnwVUgATcTCMEaMvw== - dependencies: - "@babel/runtime" "^7.21.0" - "@emotion/cache" "^11.11.0" - csstype "^3.1.2" - prop-types "^15.8.1" - -"@mui/system@^5.13.7": - version "5.13.7" - resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.13.7.tgz#b02e6284bbaab4201b142546ebbb2012ec0fa63d" - integrity sha512-7R2KdI6vr8KtnauEfg9e9xQmPk6Gg/1vGNiALYyhSI+cYztxN6WmlSqGX4bjWn/Sygp1TUE1jhFEgs7MWruhkQ== - dependencies: - "@babel/runtime" "^7.22.5" - "@mui/private-theming" "^5.13.7" - "@mui/styled-engine" "^5.13.2" - "@mui/types" "^7.2.4" - "@mui/utils" "^5.13.7" - clsx "^1.2.1" - csstype "^3.1.2" - prop-types "^15.8.1" - -"@mui/types@^7.2.4": - version "7.2.4" - resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.2.4.tgz#b6fade19323b754c5c6de679a38f068fd50b9328" - integrity sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA== - -"@mui/utils@^5.13.6", "@mui/utils@^5.13.7": - version "5.13.7" - resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.13.7.tgz#7e6a8336e05eb2642667a5c02eb605351e27ec20" - integrity sha512-/3BLptG/q0u36eYED7Nhf4fKXmcKb6LjjT7ZMwhZIZSdSxVqDqSTmATW3a56n3KEPQUXCU9TpxAfCBQhs6brVA== - dependencies: - "@babel/runtime" "^7.22.5" - "@types/prop-types" "^15.7.5" - "@types/react-is" "^18.2.1" - prop-types "^15.8.1" - react-is "^18.2.0" - -"@mui/x-data-grid@^6.5.0": - version "6.9.2" - resolved "https://registry.yarnpkg.com/@mui/x-data-grid/-/x-data-grid-6.9.2.tgz#530497b7592bc8242d591fbdedea771eb130d1c3" - integrity sha512-hrjVq3FrbUpioi2GYSWJtU4NR3V4bPwLbXngw07+I21TGOWV1TKeTslkPI+FGVYU3gMjGSSJRFN8gehPlh5Evw== - dependencies: - "@babel/runtime" "^7.22.5" - "@mui/utils" "^5.13.6" - clsx "^1.2.1" - prop-types "^15.8.1" - reselect "^4.1.8" - -"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": - version "5.1.1-v1" - resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129" - integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg== - dependencies: - eslint-scope "5.1.1" - -"@nicolo-ribaudo/semver-v6@^6.3.3": - version "6.3.3" - resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/semver-v6/-/semver-v6-6.3.3.tgz#ea6d23ade78a325f7a52750aab1526b02b628c29" - integrity sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg== - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@plotly/d3-sankey-circular@0.33.1": - version "0.33.1" - resolved "https://registry.yarnpkg.com/@plotly/d3-sankey-circular/-/d3-sankey-circular-0.33.1.tgz#15d1e0337e0e4b1135bdf0e2195c88adacace1a7" - integrity sha512-FgBV1HEvCr3DV7RHhDsPXyryknucxtfnLwPtCKKxdolKyTFYoLX/ibEfX39iFYIL7DYbVeRtP43dbFcrHNE+KQ== - dependencies: - d3-array "^1.2.1" - d3-collection "^1.0.4" - d3-shape "^1.2.0" - elementary-circuits-directed-graph "^1.0.4" - -"@plotly/d3-sankey@0.7.2": - version "0.7.2" - resolved "https://registry.yarnpkg.com/@plotly/d3-sankey/-/d3-sankey-0.7.2.tgz#ddd5290d3b02c60037ced018a162644a2ccef33b" - integrity sha512-2jdVos1N3mMp3QW0k2q1ph7Gd6j5PY1YihBrwpkFnKqO+cqtZq3AdEYUeSGXMeLsBDQYiqTVcihYfk8vr5tqhw== - dependencies: - d3-array "1" - d3-collection "1" - d3-shape "^1.2.0" - -"@plotly/d3@3.8.1": - version "3.8.1" - resolved "https://registry.yarnpkg.com/@plotly/d3/-/d3-3.8.1.tgz#674bf19809ffcc359e0ab388a1051f2dac5e6877" - integrity sha512-x49ThEu1FRA00kTso4Jdfyf2byaCPLBGmLjAYQz5OzaPyLUhHesX3/Nfv2OHEhynhdy2UB39DLXq6thYe2L2kg== - -"@plotly/point-cluster@^3.1.9": - version "3.1.9" - resolved "https://registry.yarnpkg.com/@plotly/point-cluster/-/point-cluster-3.1.9.tgz#8ffec77fbf5041bf15401079e4fdf298220291c1" - integrity sha512-MwaI6g9scKf68Orpr1pHZ597pYx9uP8UEFXLPbsCmuw3a84obwz6pnMXGc90VhgDNeNiLEdlmuK7CPo+5PIxXw== - dependencies: - array-bounds "^1.0.1" - binary-search-bounds "^2.0.4" - clamp "^1.0.1" - defined "^1.0.0" - dtype "^2.0.0" - flatten-vertex-data "^1.0.2" - is-obj "^1.0.1" - math-log2 "^1.0.1" - parse-rect "^1.2.0" - pick-by-alias "^1.2.0" - -"@pmmmwh/react-refresh-webpack-plugin@^0.5.3": - version "0.5.10" - resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz#2eba163b8e7dbabb4ce3609ab5e32ab63dda3ef8" - integrity sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA== - dependencies: - ansi-html-community "^0.0.8" - common-path-prefix "^3.0.0" - core-js-pure "^3.23.3" - error-stack-parser "^2.0.6" - find-up "^5.0.0" - html-entities "^2.1.0" - loader-utils "^2.0.4" - schema-utils "^3.0.0" - source-map "^0.7.3" - -"@popperjs/core@^2.11.8": - version "2.11.8" - resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" - integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== - -"@redux-saga/core@^1.2.3": - version "1.2.3" - resolved "https://registry.yarnpkg.com/@redux-saga/core/-/core-1.2.3.tgz#882ed9ac58b5f42c6abb23349542315b871de305" - integrity sha512-U1JO6ncFBAklFTwoQ3mjAeQZ6QGutsJzwNBjgVLSWDpZTRhobUzuVDS1qH3SKGJD8fvqoaYOjp6XJ3gCmeZWgA== - dependencies: - "@babel/runtime" "^7.6.3" - "@redux-saga/deferred" "^1.2.1" - "@redux-saga/delay-p" "^1.2.1" - "@redux-saga/is" "^1.1.3" - "@redux-saga/symbols" "^1.1.3" - "@redux-saga/types" "^1.2.1" - redux "^4.0.4" - typescript-tuple "^2.2.1" - -"@redux-saga/deferred@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@redux-saga/deferred/-/deferred-1.2.1.tgz#aca373a08ccafd6f3481037f2f7ee97f2c87c3ec" - integrity sha512-cmin3IuuzMdfQjA0lG4B+jX+9HdTgHZZ+6u3jRAOwGUxy77GSlTi4Qp2d6PM1PUoTmQUR5aijlA39scWWPF31g== - -"@redux-saga/delay-p@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@redux-saga/delay-p/-/delay-p-1.2.1.tgz#e72ac4731c5080a21f75b61bedc31cb639d9e446" - integrity sha512-MdiDxZdvb1m+Y0s4/hgdcAXntpUytr9g0hpcOO1XFVyyzkrDu3SKPgBFOtHn7lhu7n24ZKIAT1qtKyQjHqRd+w== - dependencies: - "@redux-saga/symbols" "^1.1.3" - -"@redux-saga/is@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@redux-saga/is/-/is-1.1.3.tgz#b333f31967e87e32b4e6b02c75b78d609dd4ad73" - integrity sha512-naXrkETG1jLRfVfhOx/ZdLj0EyAzHYbgJWkXbB3qFliPcHKiWbv/ULQryOAEKyjrhiclmr6AMdgsXFyx7/yE6Q== - dependencies: - "@redux-saga/symbols" "^1.1.3" - "@redux-saga/types" "^1.2.1" - -"@redux-saga/symbols@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@redux-saga/symbols/-/symbols-1.1.3.tgz#b731d56201719e96dc887dc3ae9016e761654367" - integrity sha512-hCx6ZvU4QAEUojETnX8EVg4ubNLBFl1Lps4j2tX7o45x/2qg37m3c6v+kSp8xjDJY+2tJw4QB3j8o8dsl1FDXg== - -"@redux-saga/types@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@redux-saga/types/-/types-1.2.1.tgz#9403f51c17cae37edf870c6bc0c81c1ece5ccef8" - integrity sha512-1dgmkh+3so0+LlBWRhGA33ua4MYr7tUOj+a9Si28vUi0IUFNbff1T3sgpeDJI/LaC75bBYnQ0A3wXjn0OrRNBA== - -"@reduxjs/toolkit@^1.7.1": - version "1.9.5" - resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.9.5.tgz#d3987849c24189ca483baa7aa59386c8e52077c4" - integrity sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ== - dependencies: - immer "^9.0.21" - redux "^4.2.1" - redux-thunk "^2.4.2" - reselect "^4.1.8" - -"@remix-run/router@1.7.1": - version "1.7.1" - resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.7.1.tgz#fea7ac35ae4014637c130011f59428f618730498" - integrity sha512-bgVQM4ZJ2u2CM8k1ey70o1ePFXsEzYVZoWghh6WjM8p59jQ7HxzbHW4SbnWFG7V9ig9chLawQxDTZ3xzOF8MkQ== - -"@rollup/plugin-babel@^5.2.0": - version "5.3.1" - resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283" - integrity sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q== - dependencies: - "@babel/helper-module-imports" "^7.10.4" - "@rollup/pluginutils" "^3.1.0" - -"@rollup/plugin-inject@^5.0.3": - version "5.0.3" - resolved "https://registry.yarnpkg.com/@rollup/plugin-inject/-/plugin-inject-5.0.3.tgz#0783711efd93a9547d52971db73b2fb6140a67b1" - integrity sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA== - dependencies: - "@rollup/pluginutils" "^5.0.1" - estree-walker "^2.0.2" - magic-string "^0.27.0" - -"@rollup/plugin-node-resolve@^11.2.1": - version "11.2.1" - resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz#82aa59397a29cd4e13248b106e6a4a1880362a60" - integrity sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg== - dependencies: - "@rollup/pluginutils" "^3.1.0" - "@types/resolve" "1.17.1" - builtin-modules "^3.1.0" - deepmerge "^4.2.2" - is-module "^1.0.0" - resolve "^1.19.0" - -"@rollup/plugin-replace@^2.4.1": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz#a2d539314fbc77c244858faa523012825068510a" - integrity sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg== - dependencies: - "@rollup/pluginutils" "^3.1.0" - magic-string "^0.25.7" - -"@rollup/pluginutils@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" - integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - dependencies: - "@types/estree" "0.0.39" - estree-walker "^1.0.1" - picomatch "^2.2.2" - -"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.2": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.2.tgz#012b8f53c71e4f6f9cb317e311df1404f56e7a33" - integrity sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA== - dependencies: - "@types/estree" "^1.0.0" - estree-walker "^2.0.2" - picomatch "^2.3.1" - -"@rushstack/eslint-patch@^1.1.0": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz#31b9c510d8cada9683549e1dbb4284cca5001faf" - integrity sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw== - -"@sinclair/typebox@^0.24.1": - version "0.24.51" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" - integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== - -"@sinclair/typebox@^0.27.8": - version "0.27.8" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" - integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== - -"@sinonjs/commons@^1.7.0": - version "1.8.6" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" - integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^8.0.1": - version "8.1.0" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz#3fdc2b6cb58935b21bfb8d1625eb1300484316e7" - integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg== - dependencies: - "@sinonjs/commons" "^1.7.0" - -"@surma/rollup-plugin-off-main-thread@^2.2.3": - version "2.2.3" - resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz#ee34985952ca21558ab0d952f00298ad2190c053" - integrity sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ== - dependencies: - ejs "^3.1.6" - json5 "^2.2.0" - magic-string "^0.25.0" - string.prototype.matchall "^4.0.6" - -"@svgr/babel-plugin-add-jsx-attribute@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906" - integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg== - -"@svgr/babel-plugin-add-jsx-attribute@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-7.0.0.tgz#80856c1b7a3b7422d232f6e079f0beb90c4a13e9" - integrity sha512-khWbXesWIP9v8HuKCl2NU2HNAyqpSQ/vkIl36Nbn4HIwEYSRWL0H7Gs6idJdha2DkpFDWlsqMELvoCE8lfFY6Q== - -"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef" - integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg== - -"@svgr/babel-plugin-remove-jsx-attribute@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-7.0.0.tgz#91da77a009dc38e8d30da45d9b62ef8736f2d90a" - integrity sha512-iiZaIvb3H/c7d3TH2HBeK91uI2rMhZNwnsIrvd7ZwGLkFw6mmunOCoVnjdYua662MqGFxlN9xTq4fv9hgR4VXQ== - -"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd" - integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA== - -"@svgr/babel-plugin-remove-jsx-empty-expression@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-7.0.0.tgz#5154ff1213509e36ab315974c8c2fd48dafb827b" - integrity sha512-sQQmyo+qegBx8DfFc04PFmIO1FP1MHI1/QEpzcIcclo5OAISsOJPW76ZIs0bDyO/DBSJEa/tDa1W26pVtt0FRw== - -"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897" - integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ== - -"@svgr/babel-plugin-replace-jsx-attribute-value@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-7.0.0.tgz#7e72f44ee57fdbcb02fb0d4a7629466c5242725e" - integrity sha512-i6MaAqIZXDOJeikJuzocByBf8zO+meLwfQ/qMHIjCcvpnfvWf82PFvredEZElErB5glQFJa2KVKk8N2xV6tRRA== - -"@svgr/babel-plugin-svg-dynamic-title@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7" - integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg== - -"@svgr/babel-plugin-svg-dynamic-title@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-7.0.0.tgz#8caf0449c678ea29be756b89960b2b16c9f33f00" - integrity sha512-BoVSh6ge3SLLpKC0pmmN9DFlqgFy4NxNgdZNLPNJWBUU7TQpDWeBuyVuDW88iXydb5Cv0ReC+ffa5h3VrKfk1w== - -"@svgr/babel-plugin-svg-em-dimensions@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0" - integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw== - -"@svgr/babel-plugin-svg-em-dimensions@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-7.0.0.tgz#4db6b5af6d29e93db236b1a013fa953754071d41" - integrity sha512-tNDcBa+hYn0gO+GkP/AuNKdVtMufVhU9fdzu+vUQsR18RIJ9RWe7h/pSBY338RO08wArntwbDk5WhQBmhf2PaA== - -"@svgr/babel-plugin-transform-react-native-svg@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80" - integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q== - -"@svgr/babel-plugin-transform-react-native-svg@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-7.0.0.tgz#236995e58b5e36ff06365d5310509ce5391aeec9" - integrity sha512-qw54u8ljCJYL2KtBOjI5z7Nzg8LnSvQOP5hPKj77H4VQL4+HdKbAT5pnkkZLmHKYwzsIHSYKXxHouD8zZamCFQ== - -"@svgr/babel-plugin-transform-svg-component@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz#583a5e2a193e214da2f3afeb0b9e8d3250126b4a" - integrity sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ== - -"@svgr/babel-plugin-transform-svg-component@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-7.0.0.tgz#a9b62730acf10d22a2aa57e0f701c0ecbc270430" - integrity sha512-CcFECkDj98daOg9jE3Bh3uyD9kzevCAnZ+UtzG6+BQG/jOQ2OA3jHnX6iG4G1MCJkUQFnUvEv33NvQfqrb/F3A== - -"@svgr/babel-preset@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.5.0.tgz#8af54f3e0a8add7b1e2b0fcd5a882c55393df327" - integrity sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig== - dependencies: - "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0" - "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0" - "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1" - "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1" - "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0" - "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0" - "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0" - "@svgr/babel-plugin-transform-svg-component" "^5.5.0" - -"@svgr/babel-preset@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-7.0.0.tgz#55aaca4cec2ff6515a571715b6b6fa98675b66d9" - integrity sha512-EX/NHeFa30j5UjldQGVQikuuQNHUdGmbh9kEpBKofGUtF0GUPJ4T4rhoYiqDAOmBOxojyot36JIFiDUHUK1ilQ== - dependencies: - "@svgr/babel-plugin-add-jsx-attribute" "^7.0.0" - "@svgr/babel-plugin-remove-jsx-attribute" "^7.0.0" - "@svgr/babel-plugin-remove-jsx-empty-expression" "^7.0.0" - "@svgr/babel-plugin-replace-jsx-attribute-value" "^7.0.0" - "@svgr/babel-plugin-svg-dynamic-title" "^7.0.0" - "@svgr/babel-plugin-svg-em-dimensions" "^7.0.0" - "@svgr/babel-plugin-transform-react-native-svg" "^7.0.0" - "@svgr/babel-plugin-transform-svg-component" "^7.0.0" - -"@svgr/core@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579" - integrity sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ== - dependencies: - "@svgr/plugin-jsx" "^5.5.0" - camelcase "^6.2.0" - cosmiconfig "^7.0.0" - -"@svgr/core@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/core/-/core-7.0.0.tgz#def863d2670c682615583c80b408e83c095c2233" - integrity sha512-ztAoxkaKhRVloa3XydohgQQCb0/8x9T63yXovpmHzKMkHO6pkjdsIAWKOS4bE95P/2quVh1NtjSKlMRNzSBffw== - dependencies: - "@babel/core" "^7.21.3" - "@svgr/babel-preset" "^7.0.0" - camelcase "^6.2.0" - cosmiconfig "^8.1.3" - -"@svgr/hast-util-to-babel-ast@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz#5ee52a9c2533f73e63f8f22b779f93cd432a5461" - integrity sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ== - dependencies: - "@babel/types" "^7.12.6" - -"@svgr/hast-util-to-babel-ast@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-7.0.0.tgz#d457dfbe74ebc1e5a6daf97ded49e9576a3a00cf" - integrity sha512-42Ej9sDDEmsJKjrfQ1PHmiDiHagh/u9AHO9QWbeNx4KmD9yS5d1XHmXUNINfUcykAU+4431Cn+k6Vn5mWBYimQ== - dependencies: - "@babel/types" "^7.21.3" - entities "^4.4.0" - -"@svgr/plugin-jsx@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz#1aa8cd798a1db7173ac043466d7b52236b369000" - integrity sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA== - dependencies: - "@babel/core" "^7.12.3" - "@svgr/babel-preset" "^5.5.0" - "@svgr/hast-util-to-babel-ast" "^5.5.0" - svg-parser "^2.0.2" - -"@svgr/plugin-jsx@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-7.0.0.tgz#b9e0c7d05bc890d70163ac0490ba8c41f1afab90" - integrity sha512-SWlTpPQmBUtLKxXWgpv8syzqIU8XgFRvyhfkam2So8b3BE0OS0HPe5UfmlJ2KIC+a7dpuuYovPR2WAQuSyMoPw== - dependencies: - "@babel/core" "^7.21.3" - "@svgr/babel-preset" "^7.0.0" - "@svgr/hast-util-to-babel-ast" "^7.0.0" - svg-parser "^2.0.4" - -"@svgr/plugin-svgo@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz#02da55d85320549324e201c7b2e53bf431fcc246" - integrity sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ== - dependencies: - cosmiconfig "^7.0.0" - deepmerge "^4.2.2" - svgo "^1.2.2" - -"@svgr/webpack@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.5.0.tgz#aae858ee579f5fa8ce6c3166ef56c6a1b381b640" - integrity sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g== - dependencies: - "@babel/core" "^7.12.3" - "@babel/plugin-transform-react-constant-elements" "^7.12.1" - "@babel/preset-env" "^7.12.1" - "@babel/preset-react" "^7.12.5" - "@svgr/core" "^5.5.0" - "@svgr/plugin-jsx" "^5.5.0" - "@svgr/plugin-svgo" "^5.5.0" - loader-utils "^2.0.0" - -"@testing-library/dom@^8.5.0": - version "8.20.1" - resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.1.tgz#2e52a32e46fc88369eef7eef634ac2a192decd9f" - integrity sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/runtime" "^7.12.5" - "@types/aria-query" "^5.0.1" - aria-query "5.1.3" - chalk "^4.1.0" - dom-accessibility-api "^0.5.9" - lz-string "^1.5.0" - pretty-format "^27.0.2" - -"@testing-library/jest-dom@^5.14.1": - version "5.16.5" - resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz#3912846af19a29b2dbf32a6ae9c31ef52580074e" - integrity sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA== - dependencies: - "@adobe/css-tools" "^4.0.1" - "@babel/runtime" "^7.9.2" - "@types/testing-library__jest-dom" "^5.9.1" - aria-query "^5.0.0" - chalk "^3.0.0" - css.escape "^1.5.1" - dom-accessibility-api "^0.5.6" - lodash "^4.17.15" - redent "^3.0.0" - -"@testing-library/react@^13.0.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-13.4.0.tgz#6a31e3bf5951615593ad984e96b9e5e2d9380966" - integrity sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw== - dependencies: - "@babel/runtime" "^7.12.5" - "@testing-library/dom" "^8.5.0" - "@types/react-dom" "^18.0.0" - -"@testing-library/user-event@^13.2.1": - version "13.5.0" - resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-13.5.0.tgz#69d77007f1e124d55314a2b73fd204b333b13295" - integrity sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg== - dependencies: - "@babel/runtime" "^7.12.5" - -"@tootallnate/once@1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== - -"@trysound/sax@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" - integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== - -"@turf/area@^6.4.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/area/-/area-6.5.0.tgz#1d0d7aee01d8a4a3d4c91663ed35cc615f36ad56" - integrity sha512-xCZdiuojokLbQ+29qR6qoMD89hv+JAgWjLrwSEWL+3JV8IXKeNFl6XkEJz9HGkVpnXvQKJoRz4/liT+8ZZ5Jyg== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/bbox@^6.4.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-6.5.0.tgz#bec30a744019eae420dac9ea46fb75caa44d8dc5" - integrity sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/centroid@^6.0.2": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/centroid/-/centroid-6.5.0.tgz#ecaa365412e5a4d595bb448e7dcdacfb49eb0009" - integrity sha512-MwE1oq5E3isewPprEClbfU5pXljIK/GUOMbn22UM3IFPDJX0KeoyLNwghszkdmFp/qMGL/M13MMWvU+GNLXP/A== - dependencies: - "@turf/helpers" "^6.5.0" - "@turf/meta" "^6.5.0" - -"@turf/helpers@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-6.5.0.tgz#f79af094bd6b8ce7ed2bd3e089a8493ee6cae82e" - integrity sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw== - -"@turf/meta@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-6.5.0.tgz#b725c3653c9f432133eaa04d3421f7e51e0418ca" - integrity sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA== - dependencies: - "@turf/helpers" "^6.5.0" - -"@types/aria-query@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc" - integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q== - -"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": - version "7.20.1" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b" - integrity sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw== - dependencies: - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": - version "7.20.1" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz#dd6f1d2411ae677dcb2db008c962598be31d6acf" - integrity sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg== - dependencies: - "@babel/types" "^7.20.7" - -"@types/body-parser@*": - version "1.19.2" - resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" - integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== - dependencies: - "@types/connect" "*" - "@types/node" "*" - -"@types/bonjour@^3.5.9": - version "3.5.10" - resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275" - integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== - dependencies: - "@types/node" "*" - -"@types/connect-history-api-fallback@^1.3.5": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#9fd20b3974bdc2bcd4ac6567e2e0f6885cb2cf41" - integrity sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig== - dependencies: - "@types/express-serve-static-core" "*" - "@types/node" "*" - -"@types/connect@*": - version "3.4.35" - resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" - integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== - dependencies: - "@types/node" "*" - -"@types/eslint-scope@^3.7.3": - version "3.7.4" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" - integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== - dependencies: - "@types/eslint" "*" - "@types/estree" "*" - -"@types/eslint@*", "@types/eslint@^7.29.0 || ^8.4.1": - version "8.44.0" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.0.tgz#55818eabb376e2272f77fbf5c96c43137c3c1e53" - integrity sha512-gsF+c/0XOguWgaOgvFs+xnnRqt9GwgTvIks36WpE6ueeI4KCEHHd8K/CKHqhOqrJKsYH8m27kRzQEvWXAwXUTw== - dependencies: - "@types/estree" "*" - "@types/json-schema" "*" - -"@types/estree@*", "@types/estree@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" - integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== - -"@types/estree@0.0.39": - version "0.0.39" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" - integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== - -"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": - version "4.17.35" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz#c95dd4424f0d32e525d23812aa8ab8e4d3906c4f" - integrity sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg== - dependencies: - "@types/node" "*" - "@types/qs" "*" - "@types/range-parser" "*" - "@types/send" "*" - -"@types/express@*", "@types/express@^4.17.13": - version "4.17.17" - resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4" - integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q== - dependencies: - "@types/body-parser" "*" - "@types/express-serve-static-core" "^4.17.33" - "@types/qs" "*" - "@types/serve-static" "*" - -"@types/graceful-fs@^4.1.2": - version "4.1.6" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" - integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== - dependencies: - "@types/node" "*" - -"@types/hoist-non-react-statics@^3.3.0": - version "3.3.1" - resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f" - integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA== - dependencies: - "@types/react" "*" - hoist-non-react-statics "^3.3.0" - -"@types/html-minifier-terser@^6.0.0": - version "6.1.0" - resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" - integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== - -"@types/http-errors@*": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.1.tgz#20172f9578b225f6c7da63446f56d4ce108d5a65" - integrity sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ== - -"@types/http-proxy@^1.17.8": - version "1.17.11" - resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293" - integrity sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA== - dependencies: - "@types/node" "*" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - -"@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/jest@*": - version "29.5.2" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.2.tgz#86b4afc86e3a8f3005b297ed8a72494f89e6395b" - integrity sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg== - dependencies: - expect "^29.0.0" - pretty-format "^29.0.0" - -"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.12" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" - integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== - -"@types/mdast@^3.0.0": - version "3.0.11" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.11.tgz#dc130f7e7d9306124286f6d6cee40cf4d14a3dc0" - integrity sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw== - dependencies: - "@types/unist" "*" - -"@types/mime@*": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" - integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== - -"@types/mime@^1": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" - integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== - -"@types/node@*": - version "20.4.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.0.tgz#01d637d1891e419bc85763b46f42809cd2d5addb" - integrity sha512-jfT7iTf/4kOQ9S7CHV9BIyRaQqHu67mOjsIQBC3BKZvzvUB6zLxEwJ6sBE3ozcvP8kF6Uk5PXN0Q+c0dfhGX0g== - -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/prettier@^2.1.5": - version "2.7.3" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f" - integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== - -"@types/prop-types@*", "@types/prop-types@^15.7.5": - version "15.7.5" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" - integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== - -"@types/q@^1.5.1": - version "1.5.5" - resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df" - integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ== - -"@types/qs@*": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - -"@types/range-parser@*": - version "1.2.4" - resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" - integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== - -"@types/react-dom@^18.0.0": - version "18.2.6" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.6.tgz#ad621fa71a8db29af7c31b41b2ea3d8a6f4144d1" - integrity sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A== - dependencies: - "@types/react" "*" - -"@types/react-is@^18.2.1": - version "18.2.1" - resolved "https://registry.yarnpkg.com/@types/react-is/-/react-is-18.2.1.tgz#61d01c2a6fc089a53520c0b66996d458fdc46863" - integrity sha512-wyUkmaaSZEzFZivD8F2ftSyAfk6L+DfFliVj/mYdOXbVjRcS87fQJLTnhk6dRZPuJjI+9g6RZJO4PNCngUrmyw== - dependencies: - "@types/react" "*" - -"@types/react-redux@^7.1.20": - version "7.1.25" - resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.25.tgz#de841631205b24f9dfb4967dd4a7901e048f9a88" - integrity sha512-bAGh4e+w5D8dajd6InASVIyCo4pZLJ66oLb80F9OBLO1gKESbZcRCJpTT6uLXX+HAB57zw1WTdwJdAsewuTweg== - dependencies: - "@types/hoist-non-react-statics" "^3.3.0" - "@types/react" "*" - hoist-non-react-statics "^3.3.0" - redux "^4.0.0" - -"@types/react-transition-group@^4.4.6": - version "4.4.6" - resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.6.tgz#18187bcda5281f8e10dfc48f0943e2fdf4f75e2e" - integrity sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew== - dependencies: - "@types/react" "*" - -"@types/react@*": - version "18.2.14" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.14.tgz#fa7a6fecf1ce35ca94e74874f70c56ce88f7a127" - integrity sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - -"@types/resolve@1.17.1": - version "1.17.1" - resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" - integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== - dependencies: - "@types/node" "*" - -"@types/retry@0.12.0": - version "0.12.0" - resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" - integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== - -"@types/scheduler@*": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" - integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== - -"@types/semver@^7.3.12": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" - integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== - -"@types/send@*": - version "0.17.1" - resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301" - integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q== - dependencies: - "@types/mime" "^1" - "@types/node" "*" - -"@types/serve-index@^1.9.1": - version "1.9.1" - resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278" - integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== - dependencies: - "@types/express" "*" - -"@types/serve-static@*", "@types/serve-static@^1.13.10": - version "1.15.2" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.2.tgz#3e5419ecd1e40e7405d34093f10befb43f63381a" - integrity sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw== - dependencies: - "@types/http-errors" "*" - "@types/mime" "*" - "@types/node" "*" - -"@types/sockjs@^0.3.33": - version "0.3.33" - resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f" - integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== - dependencies: - "@types/node" "*" - -"@types/stack-utils@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" - integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== - -"@types/testing-library__jest-dom@^5.9.1": - version "5.14.7" - resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.7.tgz#fff92bed2a32c58a9224a85603e731519c0a9037" - integrity sha512-PFDoAbR9y8pD9+41oM1Yy0nVCkaRPlklmDZoPCXhNpR0ZO13HAYWqdNEjLtvIiveBmfB/+jdvmuOVeOXehKOaA== - dependencies: - "@types/jest" "*" - -"@types/trusted-types@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.3.tgz#a136f83b0758698df454e328759dbd3d44555311" - integrity sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g== - -"@types/unist@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.0.tgz#988ae8af1e5239e89f9fbb1ade4c935f4eeedf9a" - integrity sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w== - -"@types/unist@^2.0.0", "@types/unist@^2.0.2": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== - -"@types/ws@^8.5.5": - version "8.5.5" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.5.tgz#af587964aa06682702ee6dcbc7be41a80e4b28eb" - integrity sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg== - dependencies: - "@types/node" "*" - -"@types/yargs-parser@*": - version "21.0.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== - -"@types/yargs@^16.0.0": - version "16.0.5" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.5.tgz#12cc86393985735a283e387936398c2f9e5f88e3" - integrity sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ== - dependencies: - "@types/yargs-parser" "*" - -"@types/yargs@^17.0.8": - version "17.0.24" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902" - integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw== - dependencies: - "@types/yargs-parser" "*" - -"@typescript-eslint/eslint-plugin@^5.5.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.61.0.tgz#a1a5290cf33863b4db3fb79350b3c5275a7b1223" - integrity sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g== - dependencies: - "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.61.0" - "@typescript-eslint/type-utils" "5.61.0" - "@typescript-eslint/utils" "5.61.0" - debug "^4.3.4" - graphemer "^1.4.0" - ignore "^5.2.0" - natural-compare-lite "^1.4.0" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/experimental-utils@^5.0.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.61.0.tgz#5ab9f8f1f7e7a43c68a48c450d972c7e400a2be4" - integrity sha512-r4RTnwTcaRRVUyKb7JO4DiOGmcMCat+uNs6HqJBfX7K2nlq5TagYZShhbhAw7hFT3bHaYgxMw6pKP0fhu05VMA== - dependencies: - "@typescript-eslint/utils" "5.61.0" - -"@typescript-eslint/parser@^5.5.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.61.0.tgz#7fbe3e2951904bb843f8932ebedd6e0635bffb70" - integrity sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg== - dependencies: - "@typescript-eslint/scope-manager" "5.61.0" - "@typescript-eslint/types" "5.61.0" - "@typescript-eslint/typescript-estree" "5.61.0" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@5.61.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.61.0.tgz#b670006d069c9abe6415c41f754b1b5d949ef2b2" - integrity sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw== - dependencies: - "@typescript-eslint/types" "5.61.0" - "@typescript-eslint/visitor-keys" "5.61.0" - -"@typescript-eslint/type-utils@5.61.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.61.0.tgz#e90799eb2045c4435ea8378cb31cd8a9fddca47a" - integrity sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg== - dependencies: - "@typescript-eslint/typescript-estree" "5.61.0" - "@typescript-eslint/utils" "5.61.0" - debug "^4.3.4" - tsutils "^3.21.0" - -"@typescript-eslint/types@5.61.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.61.0.tgz#e99ff11b5792d791554abab0f0370936d8ca50c0" - integrity sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ== - -"@typescript-eslint/typescript-estree@5.61.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.61.0.tgz#4c7caca84ce95bb41aa585d46a764bcc050b92f3" - integrity sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw== - dependencies: - "@typescript-eslint/types" "5.61.0" - "@typescript-eslint/visitor-keys" "5.61.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/utils@5.61.0", "@typescript-eslint/utils@^5.58.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.61.0.tgz#5064838a53e91c754fffbddd306adcca3fe0af36" - integrity sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.61.0" - "@typescript-eslint/types" "5.61.0" - "@typescript-eslint/typescript-estree" "5.61.0" - eslint-scope "^5.1.1" - semver "^7.3.7" - -"@typescript-eslint/visitor-keys@5.61.0": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.61.0.tgz#c79414fa42158fd23bd2bb70952dc5cdbb298140" - integrity sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg== - dependencies: - "@typescript-eslint/types" "5.61.0" - eslint-visitor-keys "^3.3.0" - -"@vitejs/plugin-react@^4.0.2": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-4.0.2.tgz#cd25adc113c4c6f504b2e32e28230d399bfba334" - integrity sha512-zbnVp3Esfg33zDaoLrjxG+p/dPiOtpvJA+1oOEQwSxMMTRL9zi1eghIcd2WtLjkcKnPsa3S15LzS/OzDn2BOCA== - dependencies: - "@babel/core" "^7.22.5" - "@babel/plugin-transform-react-jsx-self" "^7.22.5" - "@babel/plugin-transform-react-jsx-source" "^7.22.5" - react-refresh "^0.14.0" - -"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" - integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== - dependencies: - "@webassemblyjs/helper-numbers" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - -"@webassemblyjs/floating-point-hex-parser@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" - integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== - -"@webassemblyjs/helper-api-error@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" - integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== - -"@webassemblyjs/helper-buffer@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093" - integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== - -"@webassemblyjs/helper-numbers@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" - integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== - dependencies: - "@webassemblyjs/floating-point-hex-parser" "1.11.6" - "@webassemblyjs/helper-api-error" "1.11.6" - "@xtuc/long" "4.2.2" - -"@webassemblyjs/helper-wasm-bytecode@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" - integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== - -"@webassemblyjs/helper-wasm-section@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577" - integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" - -"@webassemblyjs/ieee754@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" - integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== - dependencies: - "@xtuc/ieee754" "^1.2.0" - -"@webassemblyjs/leb128@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" - integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== - dependencies: - "@xtuc/long" "4.2.2" - -"@webassemblyjs/utf8@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" - integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== - -"@webassemblyjs/wasm-edit@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab" - integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/helper-wasm-section" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" - "@webassemblyjs/wasm-opt" "1.11.6" - "@webassemblyjs/wasm-parser" "1.11.6" - "@webassemblyjs/wast-printer" "1.11.6" - -"@webassemblyjs/wasm-gen@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268" - integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/ieee754" "1.11.6" - "@webassemblyjs/leb128" "1.11.6" - "@webassemblyjs/utf8" "1.11.6" - -"@webassemblyjs/wasm-opt@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2" - integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" - "@webassemblyjs/wasm-parser" "1.11.6" - -"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1" - integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-api-error" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/ieee754" "1.11.6" - "@webassemblyjs/leb128" "1.11.6" - "@webassemblyjs/utf8" "1.11.6" - -"@webassemblyjs/wast-printer@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20" - integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@xtuc/long" "4.2.2" - -"@xtuc/ieee754@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" - integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== - -"@xtuc/long@4.2.2": - version "4.2.2" - resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" - integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== - -"@zeit/schemas@2.29.0": - version "2.29.0" - resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.29.0.tgz#a59ae6ebfdf4ddc66a876872dd736baa58b6696c" - integrity sha512-g5QiLIfbg3pLuYUJPlisNKY+epQJTcMDsOnVNkscrDP1oi7vmJnzOANYJI/1pZcVJ6umUkBv3aFtlg1UvUHGzA== - -abab@^2.0.3, abab@^2.0.5: - version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" - integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== - -abs-svg-path@^0.1.1, abs-svg-path@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/abs-svg-path/-/abs-svg-path-0.1.1.tgz#df601c8e8d2ba10d4a76d625e236a9a39c2723bf" - integrity sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA== - -accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" - -acorn-globals@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" - integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== - dependencies: - acorn "^7.1.1" - acorn-walk "^7.1.1" - -acorn-import-assertions@^1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" - integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== - -acorn-jsx@^5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn-walk@^7.1.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn@^7.1.1: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.2.4, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0: - version "8.10.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" - integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== - -address@^1.0.1, address@^1.1.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" - integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== - -adjust-sourcemap-loader@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz#fc4a0fd080f7d10471f30a7320f25560ade28c99" - integrity sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A== - dependencies: - loader-utils "^2.0.0" - regex-parser "^2.2.11" - -agent-base@6: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -ajv-formats@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" - integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== - dependencies: - ajv "^8.0.0" - -ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== - -ajv-keywords@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" - integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== - dependencies: - fast-deep-equal "^3.1.3" - -ajv@8.11.0: - version "8.11.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" - integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^8.0.0, ajv@^8.10.0, ajv@^8.6.0, ajv@^8.9.0: - version "8.12.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" - integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -almost-equal@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/almost-equal/-/almost-equal-1.1.0.tgz#f851c631138757994276aa2efbe8dfa3066cccdd" - integrity sha512-0V/PkoculFl5+0Lp47JoxUcO0xSxhIBvm+BxHdD/OgXNmdRpRHCFnKVuUoWyS9EzQP+otSGv0m9Lb4yVkQBn2A== - -ansi-align@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" - integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== - dependencies: - string-width "^4.1.0" - -ansi-escapes@^4.2.1, ansi-escapes@^4.3.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-html-community@^0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" - integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -ansi-styles@^6.1.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== - -any-promise@^1.0.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" - integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== - -anymatch@^3.0.3, anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -arch@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" - integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== - -arg@5.0.2, arg@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" - integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -aria-query@5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" - integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== - dependencies: - deep-equal "^2.0.5" - -aria-query@^5.0.0, aria-query@^5.1.3: - version "5.3.0" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" - integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== - dependencies: - dequal "^2.0.3" - -array-bounds@^1.0.0, array-bounds@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/array-bounds/-/array-bounds-1.0.1.tgz#da11356b4e18e075a4f0c86e1f179a67b7d7ea31" - integrity sha512-8wdW3ZGk6UjMPJx/glyEt0sLzzwAE1bhToPsO1W2pbpR2gULyxe3BjSiuJFheP50T/GgODVPz2fuMUmIywt8cQ== - -array-buffer-byte-length@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" - integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== - dependencies: - call-bind "^1.0.2" - is-array-buffer "^3.0.1" - -array-find-index@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" - integrity sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw== - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - -array-flatten@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" - integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== - -array-includes@^3.1.6: - version "3.1.6" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" - integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - get-intrinsic "^1.1.3" - is-string "^1.0.7" - -array-normalize@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/array-normalize/-/array-normalize-1.1.4.tgz#d75cec57383358af38efdf6a78071aa36ae4174c" - integrity sha512-fCp0wKFLjvSPmCn4F5Tiw4M3lpMZoHlCjfcs7nNzuj3vqQQ1/a8cgB9DXcpDSn18c+coLnaW7rqfcYCvKbyJXg== - dependencies: - array-bounds "^1.0.0" - -array-range@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/array-range/-/array-range-1.0.1.tgz#f56e46591843611c6a56f77ef02eda7c50089bfc" - integrity sha512-shdaI1zT3CVNL2hnx9c0JMc0ZogGaxDs5e85akgHWKYa0yVbIyp06Ind3dVkTj/uuFrzaHBOyqFzo+VV6aXgtA== - -array-rearrange@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/array-rearrange/-/array-rearrange-2.2.2.tgz#fa1a2acf8d02e88dd0c9602aa0e06a79158b2283" - integrity sha512-UfobP5N12Qm4Qu4fwLDIi2v6+wZsSf6snYSxAMeKhrh37YGnNWZPRmVEKc/2wfms53TLQnzfpG8wCx2Y/6NG1w== - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array.prototype.flat@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" - integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" - -array.prototype.flatmap@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" - integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" - -array.prototype.reduce@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz#6b20b0daa9d9734dd6bc7ea66b5bbce395471eac" - integrity sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-array-method-boxes-properly "^1.0.0" - is-string "^1.0.7" - -array.prototype.tosorted@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" - integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" - get-intrinsic "^1.1.3" - -asap@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/asap/-/asap-1.0.0.tgz#b2a45da5fdfa20b0496fc3768cc27c12fa916a7d" - integrity sha512-Ej9qjcXY+8Tuy1cNqiwNMwFRXOy9UwgTeMA8LxreodygIPV48lx8PU1ecFxb5ZeU1DpMKxiq6vGLTxcitWZPbA== - -asap@~2.0.3, asap@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== - -asn1.js@^5.2.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" - integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - safer-buffer "^2.1.0" - -assert@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" - integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== - dependencies: - es6-object-assign "^1.1.0" - is-nan "^1.2.1" - object-is "^1.0.1" - util "^0.12.0" - -ast-types-flow@^0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" - integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== - -async@^3.2.3: - version "3.2.4" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" - integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== - -attr-accept@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/attr-accept/-/attr-accept-2.2.2.tgz#646613809660110749e92f2c10833b70968d929b" - integrity sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg== - -autoprefixer@^10.4.13: - version "10.4.14" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d" - integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== - dependencies: - browserslist "^4.21.5" - caniuse-lite "^1.0.30001464" - fraction.js "^4.2.0" - normalize-range "^0.1.2" - picocolors "^1.0.0" - postcss-value-parser "^4.2.0" - -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== - -axe-core@^4.6.2: - version "4.7.2" - resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0" - integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g== - -axobject-query@^3.1.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" - integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== - dependencies: - dequal "^2.0.3" - -babel-jest@^27.4.2, babel-jest@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.5.1.tgz#a1bf8d61928edfefd21da27eb86a695bfd691444" - integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg== - dependencies: - "@jest/transform" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^27.5.1" - chalk "^4.0.0" - graceful-fs "^4.2.9" - slash "^3.0.0" - -babel-loader@^8.2.3: - version "8.3.0" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8" - integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q== - dependencies: - find-cache-dir "^3.3.1" - loader-utils "^2.0.0" - make-dir "^3.1.0" - schema-utils "^2.6.5" - -babel-plugin-istanbul@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" - integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^5.0.4" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz#9be98ecf28c331eb9f5df9c72d6f89deb8181c2e" - integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.0.0" - "@types/babel__traverse" "^7.0.6" - -babel-plugin-macros@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" - integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== - dependencies: - "@babel/runtime" "^7.12.5" - cosmiconfig "^7.0.0" - resolve "^1.19.0" - -babel-plugin-named-asset-import@^0.3.8: - version "0.3.8" - resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz#6b7fa43c59229685368683c28bc9734f24524cc2" - integrity sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q== - -babel-plugin-polyfill-corejs2@^0.4.4: - version "0.4.4" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.4.tgz#9f9a0e1cd9d645cc246a5e094db5c3aa913ccd2b" - integrity sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA== - dependencies: - "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.4.1" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - -babel-plugin-polyfill-corejs3@^0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.2.tgz#d406c5738d298cd9c66f64a94cf8d5904ce4cc5e" - integrity sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.1" - core-js-compat "^3.31.0" - -babel-plugin-polyfill-regenerator@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.1.tgz#ace7a5eced6dff7d5060c335c52064778216afd3" - integrity sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.1" - -babel-plugin-transform-react-remove-prop-types@^0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" - integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA== - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - -babel-preset-jest@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz#91f10f58034cb7989cb4f962b69fa6eef6a6bc81" - integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag== - dependencies: - babel-plugin-jest-hoist "^27.5.1" - babel-preset-current-node-syntax "^1.0.0" - -babel-preset-react-app@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz#ed6005a20a24f2c88521809fa9aea99903751584" - integrity sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg== - dependencies: - "@babel/core" "^7.16.0" - "@babel/plugin-proposal-class-properties" "^7.16.0" - "@babel/plugin-proposal-decorators" "^7.16.4" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.0" - "@babel/plugin-proposal-numeric-separator" "^7.16.0" - "@babel/plugin-proposal-optional-chaining" "^7.16.0" - "@babel/plugin-proposal-private-methods" "^7.16.0" - "@babel/plugin-transform-flow-strip-types" "^7.16.0" - "@babel/plugin-transform-react-display-name" "^7.16.0" - "@babel/plugin-transform-runtime" "^7.16.4" - "@babel/preset-env" "^7.16.4" - "@babel/preset-react" "^7.16.0" - "@babel/preset-typescript" "^7.16.0" - "@babel/runtime" "^7.16.3" - babel-plugin-macros "^3.1.0" - babel-plugin-transform-react-remove-prop-types "^0.4.24" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -batch@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" - integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== - -bfj@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/bfj/-/bfj-7.0.2.tgz#1988ce76f3add9ac2913fd8ba47aad9e651bfbb2" - integrity sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw== - dependencies: - bluebird "^3.5.5" - check-types "^11.1.1" - hoopy "^0.1.4" - tryer "^1.0.1" - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -binary-search-bounds@^2.0.4: - version "2.0.5" - resolved "https://registry.yarnpkg.com/binary-search-bounds/-/binary-search-bounds-2.0.5.tgz#125e5bd399882f71e6660d4bf1186384e989fba7" - integrity sha512-H0ea4Fd3lS1+sTEB2TgcLoK21lLhwEJzlQv3IN47pJS976Gx4zoWe0ak3q+uYh60ppQxg9F16Ri4tS1sfD4+jA== - -bit-twiddle@^1.0.0, bit-twiddle@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/bit-twiddle/-/bit-twiddle-1.0.2.tgz#0c6c1fabe2b23d17173d9a61b7b7093eb9e1769e" - integrity sha512-B9UhK0DKFZhoTFcfvAzhqsjStvGJp9vYWf3+6SNTtdSQnvIgfkHbgHrg/e4+TH71N2GDu8tpmCVoyfrL1d7ntA== - -bitmap-sdf@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/bitmap-sdf/-/bitmap-sdf-1.0.4.tgz#e87b8b1d84ee846567cfbb29d60eedd34bca5b6f" - integrity sha512-1G3U4n5JE6RAiALMxu0p1XmeZkTeCwGKykzsLTCqVzfSDaN6S7fKnkIkfejogz+iwqBWc0UYAIKnKHNN7pSfDg== - -bl@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/bl/-/bl-2.2.1.tgz#8c11a7b730655c5d56898cdc871224f40fd901d5" - integrity sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g== - dependencies: - readable-stream "^2.3.5" - safe-buffer "^5.1.1" - -bl@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -bluebird@^3.5.5: - version "3.7.2" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.0.0, bn.js@^5.1.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" - integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== - -body-parser@1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" - integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== - dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - -bonjour-service@^1.0.11: - version "1.1.1" - resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135" - integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg== - dependencies: - array-flatten "^2.1.2" - dns-equal "^1.0.0" - fast-deep-equal "^3.1.3" - multicast-dns "^7.2.5" - -boolbase@^1.0.0, boolbase@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== - -boxen@7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-7.0.0.tgz#9e5f8c26e716793fc96edcf7cf754cdf5e3fbf32" - integrity sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg== - dependencies: - ansi-align "^3.0.1" - camelcase "^7.0.0" - chalk "^5.0.1" - cli-boxes "^3.0.0" - string-width "^5.1.2" - type-fest "^2.13.0" - widest-line "^4.0.1" - wrap-ansi "^8.0.1" - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== - dependencies: - balanced-match "^1.0.0" - -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -brorand@^1.0.1, brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== - -browser-process-hrtime@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" - integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - -browser-resolve@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-2.0.0.tgz#99b7304cb392f8d73dba741bb2d7da28c6d7842b" - integrity sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ== - dependencies: - resolve "^1.17.0" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" - integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== - dependencies: - bn.js "^5.0.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" - integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== - dependencies: - bn.js "^5.1.1" - browserify-rsa "^4.0.1" - create-hash "^1.2.0" - create-hmac "^1.1.7" - elliptic "^6.5.3" - inherits "^2.0.4" - parse-asn1 "^5.1.5" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - dependencies: - pako "~1.0.5" - -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.21.9: - version "4.21.9" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" - integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== - dependencies: - caniuse-lite "^1.0.30001503" - electron-to-chromium "^1.4.431" - node-releases "^2.0.12" - update-browserslist-db "^1.0.11" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== - -buffer@^5.5.0, buffer@^5.7.1: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -builtin-modules@^3.1.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" - integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== - -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== - -bytes@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camel-case@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" - integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== - dependencies: - pascal-case "^3.1.2" - tslib "^2.0.3" - -camelcase-css@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" - integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== - -camelcase@^5.0.0, camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.2.0, camelcase@^6.2.1: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -camelcase@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-7.0.1.tgz#f02e50af9fd7782bc8b88a3558c32fd3a388f048" - integrity sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw== - -caniuse-api@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" - integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== - dependencies: - browserslist "^4.0.0" - caniuse-lite "^1.0.0" - lodash.memoize "^4.1.2" - lodash.uniq "^4.5.0" - -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001503: - version "1.0.30001513" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001513.tgz#382fe5fbfb0f7abbaf8c55ca3ac71a0307a752e9" - integrity sha512-pnjGJo7SOOjAGytZZ203Em95MRM8Cr6jhCXNF/FAXTpCTRTECnqQWLpiTRqrFtdYcth8hf4WECUpkezuYsMVww== - -canvas-fit@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/canvas-fit/-/canvas-fit-1.5.0.tgz#ae13be66ade42f5be0e487e345fce30a5e5b5e5f" - integrity sha512-onIcjRpz69/Hx5bB5HGbYKUF2uC6QT6Gp+pfpGm3A7mPfcluSLV5v4Zu+oflDUwLdUw0rLIBhUbi0v8hM4FJQQ== - dependencies: - element-size "^1.1.1" - -case-sensitive-paths-webpack-plugin@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4" - integrity sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw== - -ccount@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" - integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== - -chalk-template@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/chalk-template/-/chalk-template-0.4.0.tgz#692c034d0ed62436b9062c1707fadcd0f753204b" - integrity sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg== - dependencies: - chalk "^4.1.2" - -chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.0.1.tgz#ca57d71e82bb534a296df63bbacc4a1c22b2a4b6" - integrity sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w== - -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^5.0.1: - version "5.3.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" - integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -char-regex@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.1.tgz#6dafdb25f9d3349914079f010ba8d0e6ff9cd01e" - integrity sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw== - -character-entities-legacy@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" - integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== - -character-entities@^1.0.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" - integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== - -character-reference-invalid@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" - integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== - -check-types@^11.1.1: - version "11.2.2" - resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.2.tgz#7afc0b6a860d686885062f2dba888ba5710335b4" - integrity sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA== - -chokidar@^3.4.2, chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chroma-js@^1.3.7: - version "1.4.1" - resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-1.4.1.tgz#eb2d9c4d1ff24616be84b35119f4d26f8205f134" - integrity sha512-jTwQiT859RTFN/vIf7s+Vl/Z2LcMrvMv3WUFmd/4u76AdlFC0NTNgqEEFPcRiHmAswPsMiQEDZLM8vX8qXpZNQ== - -chrome-trace-event@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" - integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== - -ci-info@^3.2.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" - integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== - -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -cjs-module-lexer@^1.0.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" - integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== - -clamp@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/clamp/-/clamp-1.0.1.tgz#66a0e64011816e37196828fdc8c8c147312c8634" - integrity sha512-kgMuFyE78OC6Dyu3Dy7vcx4uy97EIbVxJB/B0eJ3bUNAkwdNcxYzgKltnyADiYwsR7SEqkkUPsEUT//OVS6XMA== - -clean-css@^5.2.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224" - integrity sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww== - dependencies: - source-map "~0.6.0" - -cli-boxes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-3.0.0.tgz#71a10c716feeba005e4504f36329ef0b17cf3145" - integrity sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g== - -clipboardy@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-3.0.0.tgz#f3876247404d334c9ed01b6f269c11d09a5e3092" - integrity sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg== - dependencies: - arch "^2.2.0" - execa "^5.1.1" - is-wsl "^2.2.0" - -cliui@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" - integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^6.2.0" - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -clsx@^1.0.4, clsx@^1.1.1, clsx@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" - integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== - -coa@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" - integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== - dependencies: - "@types/q" "^1.5.1" - chalk "^2.4.1" - q "^1.1.2" - -collect-v8-coverage@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" - integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== - -color-alpha@1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/color-alpha/-/color-alpha-1.0.4.tgz#c141dc926e95fc3db647d0e14e5bc3651c29e040" - integrity sha512-lr8/t5NPozTSqli+duAN+x+no/2WaKTeWvxhHGN+aXT6AJ8vPlzLa7UriyjWak0pSC2jHol9JgjBYnnHsGha9A== - dependencies: - color-parse "^1.3.8" - -color-alpha@^1.0.4: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-alpha/-/color-alpha-1.1.3.tgz#71250189e9f02bba8261a94d5e7d5f5606d1749a" - integrity sha512-krPYBO1RSO5LH4AGb/b6z70O1Ip2o0F0+0cVFN5FN99jfQtZFT08rQyg+9oOBNJYAn3SRwJIFC8jUEOKz7PisA== - dependencies: - color-parse "^1.4.1" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-convert@~0.5.0: - version "0.5.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-0.5.3.tgz#bdb6c69ce660fadffe0b0007cc447e1b9f7282bd" - integrity sha512-RwBeO/B/vZR3dfKL1ye/vx8MHZ40ugzpyfeVG5GsiuGnrlMWe2o8wxBbLCpw9CsxV+wHuzYlCiWnybrIA0ling== - -color-diff@^1.1.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/color-diff/-/color-diff-1.4.0.tgz#f63c7020c4819b3f7bc379e61d8d19eabf6e1b8a" - integrity sha512-4oDB/o78lNdppbaqrg0HjOp7pHmUc+dfCxWKWFnQg6AB/1dkjtBDop3RZht5386cq9xBUDRvDvSCA7WUlM9Jqw== - -color-id@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/color-id/-/color-id-1.1.0.tgz#5e9159b99a73ac98f74820cb98a15fde3d7e034c" - integrity sha512-2iRtAn6dC/6/G7bBIo0uupVrIne1NsQJvJxZOBCzQOfk7jRq97feaDZ3RdzuHakRXXnHGNwglto3pqtRx1sX0g== - dependencies: - clamp "^1.0.1" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@^1.0.0, color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-normalize@1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/color-normalize/-/color-normalize-1.5.0.tgz#ee610af9acb15daf73e77a945a847b18e40772da" - integrity sha512-rUT/HDXMr6RFffrR53oX3HGWkDOP9goSAQGBkUaAYKjOE2JxozccdGyufageWDlInRAjm/jYPrf/Y38oa+7obw== - dependencies: - clamp "^1.0.1" - color-rgba "^2.1.1" - dtype "^2.0.0" - -color-normalize@^1.5.0: - version "1.5.2" - resolved "https://registry.yarnpkg.com/color-normalize/-/color-normalize-1.5.2.tgz#d6c8beb02966849548f91a6ac0274c6f19924509" - integrity sha512-yYMIoyFJmUoKbCK6sBShljBWfkt8DXVfaZJn9/zvRJkF9eQJDbZhcYC6LdOVy40p4tfVwYYb9cXl8oqpu7pzBw== - dependencies: - color-rgba "^2.2.0" - dtype "^2.0.0" - -color-parse@1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/color-parse/-/color-parse-1.3.8.tgz#eaf54cd385cb34c0681f18c218aca38478082fa3" - integrity sha512-1Y79qFv0n1xair3lNMTNeoFvmc3nirMVBij24zbs1f13+7fPpQClMg5b4AuKXLt3szj7BRlHMCXHplkce6XlmA== - dependencies: - color-name "^1.0.0" - defined "^1.0.0" - is-plain-obj "^1.1.0" - -color-parse@^1.3.8, color-parse@^1.4.1, color-parse@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/color-parse/-/color-parse-1.4.2.tgz#78651f5d34df1a57f997643d86f7f87268ad4eb5" - integrity sha512-RI7s49/8yqDj3fECFZjUI1Yi0z/Gq1py43oNJivAIIDSyJiOZLfYCRQEgn8HEVAj++PcRe8AnL2XF0fRJ3BTnA== - dependencies: - color-name "^1.0.0" - -color-rgba@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/color-rgba/-/color-rgba-2.1.1.tgz#4633b83817c7406c90b3d7bf4d1acfa48dde5c83" - integrity sha512-VaX97wsqrMwLSOR6H7rU1Doa2zyVdmShabKrPEIFywLlHoibgD3QW9Dw6fSqM4+H/LfjprDNAUUW31qEQcGzNw== - dependencies: - clamp "^1.0.1" - color-parse "^1.3.8" - color-space "^1.14.6" - -color-rgba@^2.1.1, color-rgba@^2.2.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/color-rgba/-/color-rgba-2.4.0.tgz#ae85819c530262c29fc2da129fc7c8f9efc57015" - integrity sha512-Nti4qbzr/z2LbUWySr7H9dk3Rl7gZt7ihHAxlgT4Ho90EXWkjtkL1avTleu9yeGuqrt/chxTB6GKK8nZZ6V0+Q== - dependencies: - color-parse "^1.4.2" - color-space "^2.0.0" - -color-space@^1.14.6: - version "1.16.0" - resolved "https://registry.yarnpkg.com/color-space/-/color-space-1.16.0.tgz#611781bca41cd8582a1466fd9e28a7d3d89772a2" - integrity sha512-A6WMiFzunQ8KEPFmj02OnnoUnqhmSaHaZ/0LVFcPTdlvm8+3aMJ5x1HRHy3bDHPkovkf4sS0f4wsVvwk71fKkg== - dependencies: - hsluv "^0.0.3" - mumath "^3.3.4" - -color-space@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-space/-/color-space-2.0.1.tgz#da39871175baf4a5785ba519397df04b8d67e0fa" - integrity sha512-nKqUYlo0vZATVOFHY810BSYjmCARrG7e5R3UE3CQlyjJTvv5kSSmPG1kzm/oDyyqjehM+lW1RnEt9It9GNa5JA== - -color-string@^1.9.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" - integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== - dependencies: - color-name "^1.0.0" - simple-swizzle "^0.2.2" - -color@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a" - integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A== - dependencies: - color-convert "^2.0.1" - color-string "^1.9.0" - -colord@^2.9.1: - version "2.9.3" - resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" - integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== - -colorette@^2.0.10: - version "2.0.20" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" - integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== - -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@2, commander@^2.15.1, commander@^2.20.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" - integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== - -commander@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" - integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== - -commander@^8.3.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" - integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== - -common-path-prefix@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" - integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== - -common-tags@^1.8.0: - version "1.8.2" - resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" - integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - -compressible@~2.0.16: - version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - dependencies: - mime-db ">= 1.43.0 < 2" - -compression@1.7.4, compression@^1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== - dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" - debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" - vary "~1.1.2" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -concat-stream@^1.5.2: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - -confusing-browser-globals@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81" - integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA== - -connect-history-api-fallback@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" - integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== - -console-browserify@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" - integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== - -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== - -content-disposition@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" - integrity sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA== - -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" - integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== - -convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== - -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== - -core-js-compat@^3.31.0: - version "3.31.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.1.tgz#5084ad1a46858df50ff89ace152441a63ba7aae0" - integrity sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA== - dependencies: - browserslist "^4.21.9" - -core-js-pure@^3.23.3: - version "3.31.1" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.31.1.tgz#73d154958881873bc19381df80bddb20c8d0cdb5" - integrity sha512-w+C62kvWti0EPs4KPMCMVv9DriHSXfQOCQ94bGGBiEW5rrbtt/Rz8n5Krhfw9cpFyzXBjf3DB3QnPdEzGDY4Fw== - -core-js@^3.19.2, core-js@^3.6.4: - version "3.31.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.31.1.tgz#f2b0eea9be9da0def2c5fece71064a7e5d687653" - integrity sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ== - -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cors@^2.8.5: - version "2.8.5" - resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" - integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== - dependencies: - object-assign "^4" - vary "^1" - -cosmiconfig@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" - integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.1.0" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.7.2" - -cosmiconfig@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" - integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" - -cosmiconfig@^8.1.3: - version "8.2.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz#f7d17c56a590856cd1e7cee98734dca272b0d8fd" - integrity sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ== - dependencies: - import-fresh "^3.2.1" - js-yaml "^4.1.0" - parse-json "^5.0.0" - path-type "^4.0.0" - -country-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/country-regex/-/country-regex-1.1.0.tgz#51c333dcdf12927b7e5eeb9c10ac8112a6120896" - integrity sha512-iSPlClZP8vX7MC3/u6s3lrDuoQyhQukh5LyABJ3hvfzbQ3Yyayd4fp04zjLnfi267B/B2FkumcWWgrbban7sSA== - -create-ecdh@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" - integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== - dependencies: - bn.js "^4.1.0" - elliptic "^6.5.3" - -create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -create-require@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -cross-fetch@^3.0.4: - version "3.1.8" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" - integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== - dependencies: - node-fetch "^2.6.12" - -cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypto-browserify@^3.11.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - -crypto-random-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" - integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== - -css-blank-pseudo@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz#36523b01c12a25d812df343a32c322d2a2324561" - integrity sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ== - dependencies: - postcss-selector-parser "^6.0.9" - -css-declaration-sorter@^6.3.1: - version "6.4.0" - resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz#630618adc21724484b3e9505bce812def44000ad" - integrity sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew== - -css-font-size-keywords@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz#854875ace9aca6a8d2ee0d345a44aae9bb6db6cb" - integrity sha512-Q+svMDbMlelgCfH/RVDKtTDaf5021O486ZThQPIpahnIjUkMUslC+WuOQSWTgGSrNCH08Y7tYNEmmy0hkfMI8Q== - -css-font-stretch-keywords@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz#50cee9b9ba031fb5c952d4723139f1e107b54b10" - integrity sha512-KmugPO2BNqoyp9zmBIUGwt58UQSfyk1X5DbOlkb2pckDXFSAfjsD5wenb88fNrD6fvS+vu90a/tsPpb9vb0SLg== - -css-font-style-keywords@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz#5c3532813f63b4a1de954d13cea86ab4333409e4" - integrity sha512-0Fn0aTpcDktnR1RzaBYorIxQily85M2KXRpzmxQPgh8pxUN9Fcn00I8u9I3grNr1QXVgCl9T5Imx0ZwKU973Vg== - -css-font-weight-keywords@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz#9bc04671ac85bc724b574ef5d3ac96b0d604fd97" - integrity sha512-5So8/NH+oDD+EzsnF4iaG4ZFHQ3vaViePkL1ZbZ5iC/KrsCY+WHq/lvOgrtmuOQ9pBBZ1ADGpaf+A4lj1Z9eYA== - -css-font@^1.0.0, css-font@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/css-font/-/css-font-1.2.0.tgz#e73cbdc11fd87c8e6c928ad7098a9771c8c2b6e3" - integrity sha512-V4U4Wps4dPDACJ4WpgofJ2RT5Yqwe1lEH6wlOOaIxMi0gTjdIijsc5FmxQlZ7ZZyKQkkutqqvULOp07l9c7ssA== - dependencies: - css-font-size-keywords "^1.0.0" - css-font-stretch-keywords "^1.0.1" - css-font-style-keywords "^1.0.1" - css-font-weight-keywords "^1.0.0" - css-global-keywords "^1.0.1" - css-system-font-keywords "^1.0.0" - pick-by-alias "^1.2.0" - string-split-by "^1.0.0" - unquote "^1.1.0" - -css-global-keywords@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/css-global-keywords/-/css-global-keywords-1.0.1.tgz#72a9aea72796d019b1d2a3252de4e5aaa37e4a69" - integrity sha512-X1xgQhkZ9n94WDwntqst5D/FKkmiU0GlJSFZSV3kLvyJ1WC5VeyoXDOuleUD+SIuH9C7W05is++0Woh0CGfKjQ== - -css-has-pseudo@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz#57f6be91ca242d5c9020ee3e51bbb5b89fc7af73" - integrity sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw== - dependencies: - postcss-selector-parser "^6.0.9" - -css-loader@^6.5.1: - version "6.8.1" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.8.1.tgz#0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88" - integrity sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g== - dependencies: - icss-utils "^5.1.0" - postcss "^8.4.21" - postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.3" - postcss-modules-scope "^3.0.0" - postcss-modules-values "^4.0.0" - postcss-value-parser "^4.2.0" - semver "^7.3.8" - -css-minimizer-webpack-plugin@^3.2.0: - version "3.4.1" - resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f" - integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q== - dependencies: - cssnano "^5.0.6" - jest-worker "^27.0.2" - postcss "^8.3.5" - schema-utils "^4.0.0" - serialize-javascript "^6.0.0" - source-map "^0.6.1" - -css-prefers-color-scheme@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz#ca8a22e5992c10a5b9d315155e7caee625903349" - integrity sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA== - -css-select-base-adapter@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" - integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== - -css-select@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" - integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== - dependencies: - boolbase "^1.0.0" - css-what "^3.2.1" - domutils "^1.7.0" - nth-check "^1.0.2" - -css-select@^4.1.3: - version "4.3.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" - integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== - dependencies: - boolbase "^1.0.0" - css-what "^6.0.1" - domhandler "^4.3.1" - domutils "^2.8.0" - nth-check "^2.0.1" - -css-system-font-keywords@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz#85c6f086aba4eb32c571a3086affc434b84823ed" - integrity sha512-1umTtVd/fXS25ftfjB71eASCrYhilmEsvDEI6wG/QplnmlfmVM5HkZ/ZX46DT5K3eblFPgLUHt5BRCb0YXkSFA== - -css-tree@1.0.0-alpha.37: - version "1.0.0-alpha.37" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" - integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== - dependencies: - mdn-data "2.0.4" - source-map "^0.6.1" - -css-tree@^1.1.2, css-tree@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" - integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== - dependencies: - mdn-data "2.0.14" - source-map "^0.6.1" - -css-what@^3.2.1: - version "3.4.2" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" - integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== - -css-what@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== - -css.escape@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" - integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== - -csscolorparser@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/csscolorparser/-/csscolorparser-1.0.3.tgz#b34f391eea4da8f3e98231e2ccd8df9c041f171b" - integrity sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w== - -cssdb@^7.1.0: - version "7.6.0" - resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.6.0.tgz#beac8f7a5f676db62d3c33da517ef4c9eb008f8b" - integrity sha512-Nna7rph8V0jC6+JBY4Vk4ndErUmfJfV6NJCaZdurL0omggabiy+QB2HCQtu5c/ACLZ0I7REv7A4QyPIoYzZx0w== - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -cssnano-preset-default@^5.2.14: - version "5.2.14" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8" - integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== - dependencies: - css-declaration-sorter "^6.3.1" - cssnano-utils "^3.1.0" - postcss-calc "^8.2.3" - postcss-colormin "^5.3.1" - postcss-convert-values "^5.1.3" - postcss-discard-comments "^5.1.2" - postcss-discard-duplicates "^5.1.0" - postcss-discard-empty "^5.1.1" - postcss-discard-overridden "^5.1.0" - postcss-merge-longhand "^5.1.7" - postcss-merge-rules "^5.1.4" - postcss-minify-font-values "^5.1.0" - postcss-minify-gradients "^5.1.1" - postcss-minify-params "^5.1.4" - postcss-minify-selectors "^5.2.1" - postcss-normalize-charset "^5.1.0" - postcss-normalize-display-values "^5.1.0" - postcss-normalize-positions "^5.1.1" - postcss-normalize-repeat-style "^5.1.1" - postcss-normalize-string "^5.1.0" - postcss-normalize-timing-functions "^5.1.0" - postcss-normalize-unicode "^5.1.1" - postcss-normalize-url "^5.1.0" - postcss-normalize-whitespace "^5.1.1" - postcss-ordered-values "^5.1.3" - postcss-reduce-initial "^5.1.2" - postcss-reduce-transforms "^5.1.0" - postcss-svgo "^5.1.0" - postcss-unique-selectors "^5.1.1" - -cssnano-utils@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" - integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== - -cssnano@^5.0.6: - version "5.1.15" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf" - integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== - dependencies: - cssnano-preset-default "^5.2.14" - lilconfig "^2.0.3" - yaml "^1.10.2" - -csso@^4.0.2, csso@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" - integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== - dependencies: - css-tree "^1.1.2" - -cssom@^0.4.4: - version "0.4.4" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" - integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== - dependencies: - cssom "~0.3.6" - -csstype@^3.0.2, csstype@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" - integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== - -d3-array@1, d3-array@^1.2.1: - version "1.2.4" - resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" - integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw== - -d3-collection@1, d3-collection@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.7.tgz#349bd2aa9977db071091c13144d5e4f16b5b310e" - integrity sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A== - -"d3-color@1 - 3": - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" - integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== - -d3-dispatch@1: - version "1.0.6" - resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz#00d37bcee4dd8cd97729dd893a0ac29caaba5d58" - integrity sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA== - -d3-force@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-1.2.1.tgz#fd29a5d1ff181c9e7f0669e4bd72bdb0e914ec0b" - integrity sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg== - dependencies: - d3-collection "1" - d3-dispatch "1" - d3-quadtree "1" - d3-timer "1" - -d3-format@^1.4.5: - version "1.4.5" - resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.5.tgz#374f2ba1320e3717eb74a9356c67daee17a7edb4" - integrity sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ== - -d3-geo-projection@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/d3-geo-projection/-/d3-geo-projection-2.9.0.tgz#826db62f748e8ecd67cd00aced4c26a236ec030c" - integrity sha512-ZULvK/zBn87of5rWAfFMc9mJOipeSo57O+BBitsKIXmU4rTVAnX1kSsJkE0R+TxY8pGNoM1nbyRRE7GYHhdOEQ== - dependencies: - commander "2" - d3-array "1" - d3-geo "^1.12.0" - resolve "^1.1.10" - -d3-geo@^1.12.0, d3-geo@^1.12.1: - version "1.12.1" - resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.12.1.tgz#7fc2ab7414b72e59fbcbd603e80d9adc029b035f" - integrity sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg== - dependencies: - d3-array "1" - -d3-hierarchy@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz#2f6bee24caaea43f8dc37545fa01628559647a83" - integrity sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ== - -d3-interpolate@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" - integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== - dependencies: - d3-color "1 - 3" - -d3-path@1: - version "1.0.9" - resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf" - integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== - -d3-quadtree@1: - version "1.0.7" - resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-1.0.7.tgz#ca8b84df7bb53763fe3c2f24bd435137f4e53135" - integrity sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA== - -d3-shape@^1.2.0: - version "1.3.7" - resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7" - integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== - dependencies: - d3-path "1" - -d3-time-format@^2.2.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.3.0.tgz#107bdc028667788a8924ba040faf1fbccd5a7850" - integrity sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ== - dependencies: - d3-time "1" - -d3-time@1, d3-time@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-1.1.0.tgz#b1e19d307dae9c900b7e5b25ffc5dcc249a8a0f1" - integrity sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA== - -d3-timer@1: - version "1.0.10" - resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.10.tgz#dfe76b8a91748831b13b6d9c793ffbd508dd9de5" - integrity sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw== - -d@1, d@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== - dependencies: - es5-ext "^0.10.50" - type "^1.0.1" - -damerau-levenshtein@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" - integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== - -data-urls@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" - integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== - dependencies: - abab "^2.0.3" - whatwg-mimetype "^2.3.0" - whatwg-url "^8.0.0" - -debug@2, debug@2.6.9, debug@^2.6.0: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -debug@^3.2.6, debug@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - -decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -decimal.js@^10.2.1: - version "10.4.3" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" - integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== - -decompress-response@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" - integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== - dependencies: - mimic-response "^3.1.0" - -dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== - -deep-diff@^0.3.5: - version "0.3.8" - resolved "https://registry.yarnpkg.com/deep-diff/-/deep-diff-0.3.8.tgz#c01de63efb0eec9798801d40c7e0dae25b582c84" - integrity sha512-yVn6RZmHiGnxRKR9sJb3iVV2XTF1Ghh2DiWRZ3dMnGc43yUdWWF/kX6lQyk3+P84iprfWKU/8zFTrlkvtFm1ug== - -deep-equal@^2.0.5: - version "2.2.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" - integrity sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ== - dependencies: - array-buffer-byte-length "^1.0.0" - call-bind "^1.0.2" - es-get-iterator "^1.1.3" - get-intrinsic "^1.2.0" - is-arguments "^1.1.1" - is-array-buffer "^3.0.2" - is-date-object "^1.0.5" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - isarray "^2.0.5" - object-is "^1.1.5" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.5.0" - side-channel "^1.0.4" - which-boxed-primitive "^1.0.2" - which-collection "^1.0.1" - which-typed-array "^1.1.9" - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-is@^0.1.3, deep-is@~0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deepmerge@^4.2.2: - version "4.3.1" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" - integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== - -default-gateway@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" - integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== - dependencies: - execa "^5.0.0" - -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" - integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== - dependencies: - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -defined@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" - integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -depd@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -depd@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== - -dequal@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" - integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== - -des.js@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da" - integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -destroy@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - -detect-kerning@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/detect-kerning/-/detect-kerning-2.1.2.tgz#4ecd548e4a5a3fc880fe2a50609312d000fa9fc2" - integrity sha512-I3JIbrnKPAntNLl1I6TpSQQdQ4AutYzv/sKMFKbepawV/hlH0GmYKhUoOEMd4xqaUHT+Bm0f4127lh5qs1m1tw== - -detect-libc@^2.0.0, detect-libc@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -detect-node@^2.0.4: - version "2.1.0" - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" - integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== - -detect-port-alt@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" - integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== - dependencies: - address "^1.0.1" - debug "^2.6.0" - -didyoumean@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" - integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== - -diff-sequences@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327" - integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== - -diff-sequences@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" - integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== - -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -dlv@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" - integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== - -dns-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" - integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== - -dns-packet@^5.2.2: - version "5.6.0" - resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.0.tgz#2202c947845c7a63c23ece58f2f70ff6ab4c2f7d" - integrity sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ== - dependencies: - "@leichtgewicht/ip-codec" "^2.0.1" - -doctrine@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" - integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== - dependencies: - esutils "^2.0.2" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -dom-accessibility-api@^0.5.6, dom-accessibility-api@^0.5.9: - version "0.5.16" - resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" - integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== - -dom-converter@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" - integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== - dependencies: - utila "~0.4" - -dom-helpers@^5.0.1, dom-helpers@^5.1.3: - version "5.2.1" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" - integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== - dependencies: - "@babel/runtime" "^7.8.7" - csstype "^3.0.2" - -dom-serializer@0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== - dependencies: - domelementtype "^2.0.1" - entities "^2.0.0" - -dom-serializer@^1.0.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" - integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" - -domain-browser@^4.22.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-4.22.0.tgz#6ddd34220ec281f9a65d3386d267ddd35c491f9f" - integrity sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw== - -domelementtype@1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domelementtype@^2.0.1, domelementtype@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" - integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== - -domexception@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" - integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== - dependencies: - webidl-conversions "^5.0.0" - -domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" - integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== - dependencies: - domelementtype "^2.2.0" - -domutils@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^2.5.2, domutils@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" - -dot-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" - integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -dotenv-expand@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" - integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== - -dotenv@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" - integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== - -draft-js-custom-styles@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/draft-js-custom-styles/-/draft-js-custom-styles-2.1.1.tgz#35bbbe7787531c723d2efe2b642cca6e6fc0ccf6" - integrity sha512-i/lTBRuiGQxPybMERRgGAzdx3WcJtshqlBnMgdi+YLVXF82K8zqLvvsXRGGR57TbmzfnnoHRZlDyBlkit22e/Q== - dependencies: - lodash.camelcase "^4.3.0" - lodash.snakecase "^4.1.1" - -draft-js@^0.11.7: - version "0.11.7" - resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.11.7.tgz#be293aaa255c46d8a6647f3860aa4c178484a206" - integrity sha512-ne7yFfN4sEL82QPQEn80xnADR8/Q6ALVworbC5UOSzOvjffmYfFsr3xSZtxbIirti14R7Y33EZC5rivpLgIbsg== - dependencies: - fbjs "^2.0.0" - immutable "~3.7.4" - object-assign "^4.1.1" - -draw-svg-path@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/draw-svg-path/-/draw-svg-path-1.0.0.tgz#6f116d962dd314b99ea534d6f58dd66cdbd69379" - integrity sha512-P8j3IHxcgRMcY6sDzr0QvJDLzBnJJqpTG33UZ2Pvp8rw0apCHhJCWqYprqrXjrgHnJ6tuhP1iTJSAodPDHxwkg== - dependencies: - abs-svg-path "~0.1.1" - normalize-svg-path "~0.1.0" - -dtype@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dtype/-/dtype-2.0.0.tgz#cd052323ce061444ecd2e8f5748f69a29be28434" - integrity sha512-s2YVcLKdFGS0hpFqJaTwscsyt0E8nNFdmo73Ocd81xNPj4URI4rj6D60A+vFMIw7BXWlb4yRkEwfBqcZzPGiZg== - -dup@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dup/-/dup-1.0.0.tgz#51fc5ac685f8196469df0b905e934b20af5b4029" - integrity sha512-Bz5jxMMC0wgp23Zm15ip1x8IhYRqJvF3nFC0UInJUDkN1z4uNPk9jTnfCUJXbOGiQ1JbXLQsiV41Fb+HXcj5BA== - -duplexer@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" - integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== - -duplexify@^3.4.5: - version "3.7.1" - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" - integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== - dependencies: - end-of-stream "^1.0.0" - inherits "^2.0.1" - readable-stream "^2.0.0" - stream-shift "^1.0.0" - -earcut@^2.1.5, earcut@^2.2.2: - version "2.2.4" - resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.2.4.tgz#6d02fd4d68160c114825d06890a92ecaae60343a" - integrity sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ== - -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== - -ejs@^3.1.6: - version "3.1.9" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361" - integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== - dependencies: - jake "^10.8.5" - -electron-to-chromium@^1.4.431: - version "1.4.454" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.454.tgz#774dc7cb5e58576d0125939ec34a4182f3ccc87d" - integrity sha512-pmf1rbAStw8UEQ0sr2cdJtWl48ZMuPD9Sto8HVQOq9vx9j2WgDEN6lYoaqFvqEHYOmGA9oRGn7LqWI9ta0YugQ== - -element-closest-polyfill@^1.0.2: - version "1.0.6" - resolved "https://registry.yarnpkg.com/element-closest-polyfill/-/element-closest-polyfill-1.0.6.tgz#8662673dc3c9b3885af43bac2e8b1de6c3bfdb22" - integrity sha512-rnCCQ89MO1D00I+zOCjuVBl9QyF1pXs5ei+7/3it43/mXrcVHG1GQJaMatfOwPCuI/d3ucE4djNr23r0KxsIzA== - -element-size@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/element-size/-/element-size-1.1.1.tgz#64e5f159d97121631845bcbaecaf279c39b5e34e" - integrity sha512-eaN+GMOq/Q+BIWy0ybsgpcYImjGIdNLyjLFJU4XsLHXYQao5jCNb36GyN6C2qwmDDYSfIBmKpPpr4VnBdLCsPQ== - -elementary-circuits-directed-graph@^1.0.4: - version "1.3.1" - resolved "https://registry.yarnpkg.com/elementary-circuits-directed-graph/-/elementary-circuits-directed-graph-1.3.1.tgz#31c5a1c69517de833127247e5460472168e9e1c1" - integrity sha512-ZEiB5qkn2adYmpXGnJKkxT8uJHlW/mxmBpmeqawEHzPxh9HkLD4/1mFYX5l0On+f6rcPIt8/EWlRU2Vo3fX6dQ== - dependencies: - strongly-connected-components "^1.0.1" - -elliptic@^6.5.3: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - -emittery@^0.10.2: - version "0.10.2" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" - integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== - -emittery@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" - integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - -end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -enhanced-resolve@^5.15.0: - version "5.15.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" - integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== - dependencies: - graceful-fs "^4.2.4" - tapable "^2.2.0" - -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== - -entities@^4.4.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" - integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -error-stack-parser@^2.0.6: - version "2.1.4" - resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" - integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== - dependencies: - stackframe "^1.3.4" - -es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2: - version "1.21.2" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" - integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== - dependencies: - array-buffer-byte-length "^1.0.0" - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - es-set-tostringtag "^2.0.1" - es-to-primitive "^1.2.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.2.0" - get-symbol-description "^1.0.0" - globalthis "^1.0.3" - gopd "^1.0.1" - has "^1.0.3" - has-property-descriptors "^1.0.0" - has-proto "^1.0.1" - has-symbols "^1.0.3" - internal-slot "^1.0.5" - is-array-buffer "^3.0.2" - is-callable "^1.2.7" - is-negative-zero "^2.0.2" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - is-string "^1.0.7" - is-typed-array "^1.1.10" - is-weakref "^1.0.2" - object-inspect "^1.12.3" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" - safe-regex-test "^1.0.0" - string.prototype.trim "^1.2.7" - string.prototype.trimend "^1.0.6" - string.prototype.trimstart "^1.0.6" - typed-array-length "^1.0.4" - unbox-primitive "^1.0.2" - which-typed-array "^1.1.9" - -es-array-method-boxes-properly@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" - integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== - -es-get-iterator@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" - integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" - has-symbols "^1.0.3" - is-arguments "^1.1.1" - is-map "^2.0.2" - is-set "^2.0.2" - is-string "^1.0.7" - isarray "^2.0.5" - stop-iteration-iterator "^1.0.0" - -es-module-lexer@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f" - integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA== - -es-set-tostringtag@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" - integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== - dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" - has-tostringtag "^1.0.0" - -es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== - dependencies: - has "^1.0.3" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50: - version "0.10.62" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5" - integrity sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA== - dependencies: - es6-iterator "^2.0.3" - es6-symbol "^3.1.3" - next-tick "^1.1.0" - -es6-iterator@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g== - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-object-assign@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" - integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== - -es6-symbol@^3.1.1, es6-symbol@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== - dependencies: - d "^1.0.1" - ext "^1.1.2" - -es6-weak-map@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" - integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== - dependencies: - d "1" - es5-ext "^0.10.46" - es6-iterator "^2.0.3" - es6-symbol "^3.1.1" - -esbuild@^0.18.10: - version "0.18.11" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.11.tgz#cbf94dc3359d57f600a0dbf281df9b1d1b4a156e" - integrity sha512-i8u6mQF0JKJUlGR3OdFLKldJQMMs8OqM9Cc3UCi9XXziJ9WERM5bfkHaEAy0YAvPRMgqSW55W7xYn84XtEFTtA== - optionalDependencies: - "@esbuild/android-arm" "0.18.11" - "@esbuild/android-arm64" "0.18.11" - "@esbuild/android-x64" "0.18.11" - "@esbuild/darwin-arm64" "0.18.11" - "@esbuild/darwin-x64" "0.18.11" - "@esbuild/freebsd-arm64" "0.18.11" - "@esbuild/freebsd-x64" "0.18.11" - "@esbuild/linux-arm" "0.18.11" - "@esbuild/linux-arm64" "0.18.11" - "@esbuild/linux-ia32" "0.18.11" - "@esbuild/linux-loong64" "0.18.11" - "@esbuild/linux-mips64el" "0.18.11" - "@esbuild/linux-ppc64" "0.18.11" - "@esbuild/linux-riscv64" "0.18.11" - "@esbuild/linux-s390x" "0.18.11" - "@esbuild/linux-x64" "0.18.11" - "@esbuild/netbsd-x64" "0.18.11" - "@esbuild/openbsd-x64" "0.18.11" - "@esbuild/sunos-x64" "0.18.11" - "@esbuild/win32-arm64" "0.18.11" - "@esbuild/win32-ia32" "0.18.11" - "@esbuild/win32-x64" "0.18.11" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -escodegen@^1.11.1: - version "1.14.3" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== - dependencies: - esprima "^4.0.1" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -escodegen@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" - integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== - dependencies: - esprima "^4.0.1" - estraverse "^5.2.0" - esutils "^2.0.2" - optionalDependencies: - source-map "~0.6.1" - -eslint-config-react-app@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz#73ba3929978001c5c86274c017ea57eb5fa644b4" - integrity sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA== - dependencies: - "@babel/core" "^7.16.0" - "@babel/eslint-parser" "^7.16.3" - "@rushstack/eslint-patch" "^1.1.0" - "@typescript-eslint/eslint-plugin" "^5.5.0" - "@typescript-eslint/parser" "^5.5.0" - babel-preset-react-app "^10.0.1" - confusing-browser-globals "^1.0.11" - eslint-plugin-flowtype "^8.0.3" - eslint-plugin-import "^2.25.3" - eslint-plugin-jest "^25.3.0" - eslint-plugin-jsx-a11y "^6.5.1" - eslint-plugin-react "^7.27.1" - eslint-plugin-react-hooks "^4.3.0" - eslint-plugin-testing-library "^5.0.1" - -eslint-import-resolver-node@^0.3.7: - version "0.3.7" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" - integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== - dependencies: - debug "^3.2.7" - is-core-module "^2.11.0" - resolve "^1.22.1" - -eslint-module-utils@^2.7.4: - version "2.8.0" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" - integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== - dependencies: - debug "^3.2.7" - -eslint-plugin-flowtype@^8.0.3: - version "8.0.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz#e1557e37118f24734aa3122e7536a038d34a4912" - integrity sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ== - dependencies: - lodash "^4.17.21" - string-natural-compare "^3.0.1" - -eslint-plugin-import@^2.25.3: - version "2.27.5" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" - integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== - dependencies: - array-includes "^3.1.6" - array.prototype.flat "^1.3.1" - array.prototype.flatmap "^1.3.1" - debug "^3.2.7" - doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.7" - eslint-module-utils "^2.7.4" - has "^1.0.3" - is-core-module "^2.11.0" - is-glob "^4.0.3" - minimatch "^3.1.2" - object.values "^1.1.6" - resolve "^1.22.1" - semver "^6.3.0" - tsconfig-paths "^3.14.1" - -eslint-plugin-jest@^25.3.0: - version "25.7.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz#ff4ac97520b53a96187bad9c9814e7d00de09a6a" - integrity sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ== - dependencies: - "@typescript-eslint/experimental-utils" "^5.0.0" - -eslint-plugin-jsx-a11y@^6.5.1: - version "6.7.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" - integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== - dependencies: - "@babel/runtime" "^7.20.7" - aria-query "^5.1.3" - array-includes "^3.1.6" - array.prototype.flatmap "^1.3.1" - ast-types-flow "^0.0.7" - axe-core "^4.6.2" - axobject-query "^3.1.1" - damerau-levenshtein "^1.0.8" - emoji-regex "^9.2.2" - has "^1.0.3" - jsx-ast-utils "^3.3.3" - language-tags "=1.0.5" - minimatch "^3.1.2" - object.entries "^1.1.6" - object.fromentries "^2.0.6" - semver "^6.3.0" - -eslint-plugin-react-hooks@^4.3.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" - integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== - -eslint-plugin-react@^7.27.1: - version "7.32.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" - integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== - dependencies: - array-includes "^3.1.6" - array.prototype.flatmap "^1.3.1" - array.prototype.tosorted "^1.1.1" - doctrine "^2.1.0" - estraverse "^5.3.0" - jsx-ast-utils "^2.4.1 || ^3.0.0" - minimatch "^3.1.2" - object.entries "^1.1.6" - object.fromentries "^2.0.6" - object.hasown "^1.1.2" - object.values "^1.1.6" - prop-types "^15.8.1" - resolve "^2.0.0-next.4" - semver "^6.3.0" - string.prototype.matchall "^4.0.8" - -eslint-plugin-testing-library@^5.0.1: - version "5.11.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.0.tgz#0bad7668e216e20dd12f8c3652ca353009163121" - integrity sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q== - dependencies: - "@typescript-eslint/utils" "^5.58.0" - -eslint-scope@5.1.1, eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -eslint-scope@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" - integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-visitor-keys@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" - integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== - -eslint-webpack-plugin@^3.1.1: - version "3.2.0" - resolved "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz#1978cdb9edc461e4b0195a20da950cf57988347c" - integrity sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w== - dependencies: - "@types/eslint" "^7.29.0 || ^8.4.1" - jest-worker "^28.0.2" - micromatch "^4.0.5" - normalize-path "^3.0.0" - schema-utils "^4.0.0" - -eslint@^8.3.0: - version "8.44.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.44.0.tgz#51246e3889b259bbcd1d7d736a0c10add4f0e500" - integrity sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.1.0" - "@eslint/js" "8.44.0" - "@humanwhocodes/config-array" "^0.11.10" - "@humanwhocodes/module-importer" "^1.0.1" - "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.2.0" - eslint-visitor-keys "^3.4.1" - espree "^9.6.0" - esquery "^1.4.2" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - find-up "^5.0.0" - glob-parent "^6.0.2" - globals "^13.19.0" - graphemer "^1.4.0" - ignore "^5.2.0" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - is-path-inside "^3.0.3" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.3" - strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" - text-table "^0.2.0" - -espree@^9.6.0: - version "9.6.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.0.tgz#80869754b1c6560f32e3b6929194a3fe07c5b82f" - integrity sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A== - dependencies: - acorn "^8.9.0" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.1" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.4.2: - version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" - integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1, estraverse@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -estree-walker@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" - integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== - -estree-walker@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" - integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - -eve-raphael@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/eve-raphael/-/eve-raphael-0.5.0.tgz#17c754b792beef3fa6684d79cf5a47c63c4cda30" - integrity sha512-jrxnPsCGqng1UZuEp9DecX/AuSyAszATSjf4oEcRxvfxa1Oux4KkIPKBAAWWnpdwfARtr+Q0o9aPYWjsROD7ug== - -eventemitter3@^4.0.0: - version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -events@^3.0.0, events@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - -execa@^5.0.0, execa@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== - -expand-template@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" - integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== - -expect@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/expect/-/expect-27.5.1.tgz#83ce59f1e5bdf5f9d2b94b61d2050db48f3fef74" - integrity sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw== - dependencies: - "@jest/types" "^27.5.1" - jest-get-type "^27.5.1" - jest-matcher-utils "^27.5.1" - jest-message-util "^27.5.1" - -expect@^29.0.0: - version "29.6.1" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.6.1.tgz#64dd1c8f75e2c0b209418f2b8d36a07921adfdf1" - integrity sha512-XEdDLonERCU1n9uR56/Stx9OqojaLAQtZf9PrCHH9Hl8YXiEIka3H4NXJ3NOIBmQJTg7+j7buh34PMHfJujc8g== - dependencies: - "@jest/expect-utils" "^29.6.1" - "@types/node" "*" - jest-get-type "^29.4.3" - jest-matcher-utils "^29.6.1" - jest-message-util "^29.6.1" - jest-util "^29.6.1" - -express@^4.17.3: - version "4.18.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" - integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "1.20.1" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.5.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "1.2.0" - fresh "0.5.2" - http-errors "2.0.0" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "2.4.1" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.7" - qs "6.11.0" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" - setprototypeof "1.2.0" - statuses "2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -ext@^1.1.2: - version "1.7.0" - resolved "https://registry.yarnpkg.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f" - integrity sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw== - dependencies: - type "^2.7.2" - -falafel@^2.1.0: - version "2.2.5" - resolved "https://registry.yarnpkg.com/falafel/-/falafel-2.2.5.tgz#3ccb4970a09b094e9e54fead2deee64b4a589d56" - integrity sha512-HuC1qF9iTnHDnML9YZAdCDQwT0yKl/U55K4XSUXqGAA2GLoafFgWRqdAbhWJxXaYD4pyoVxAJ8wH670jMpI9DQ== - dependencies: - acorn "^7.1.1" - isarray "^2.0.1" - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-glob@^3.2.12, fast-glob@^3.2.9: - version "3.3.0" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.0.tgz#7c40cb491e1e2ed5664749e87bfb516dbe8727c0" - integrity sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-isnumeric@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/fast-isnumeric/-/fast-isnumeric-1.1.4.tgz#e165786ff471c439e9ace2b8c8e66cceb47e2ea4" - integrity sha512-1mM8qOr2LYz8zGaUdmiqRDiuue00Dxjgcb1NQR7TnhLVh6sQyngP9xvLo7Sl7LZpP/sk5eb+bcyWXw530NTBZw== - dependencies: - is-string-blank "^1.0.1" - -fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fast-url-parser@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d" - integrity sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ== - dependencies: - punycode "^1.3.2" - -fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== - dependencies: - reusify "^1.0.4" - -faye-websocket@^0.11.3: - version "0.11.4" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" - integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== - dependencies: - websocket-driver ">=0.5.1" - -fb-watchman@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" - integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== - dependencies: - bser "2.1.1" - -fbjs-css-vars@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" - integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== - -fbjs@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-2.0.0.tgz#01fb812138d7e31831ed3e374afe27b9169ef442" - integrity sha512-8XA8ny9ifxrAWlyhAbexXcs3rRMtxWcs3M0lctLfB49jRDHiaxj+Mo0XxbwE7nKZYzgCFoq64FS+WFd4IycPPQ== - dependencies: - core-js "^3.6.4" - cross-fetch "^3.0.4" - fbjs-css-vars "^1.0.0" - loose-envify "^1.0.0" - object-assign "^4.1.0" - promise "^7.1.1" - setimmediate "^1.0.5" - ua-parser-js "^0.7.18" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -file-loader@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" - integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -file-saver@^2.0.2: - version "2.0.5" - resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz#d61cfe2ce059f414d899e9dd6d4107ee25670c38" - integrity sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA== - -file-selector@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/file-selector/-/file-selector-0.4.0.tgz#59ec4f27aa5baf0841e9c6385c8386bef4d18b17" - integrity sha512-iACCiXeMYOvZqlF1kTiYINzgepRBymz1wwjiuup9u9nayhb6g4fSwiyJ/6adli+EPwrWtpgQAh2PoS7HukEGEg== - dependencies: - tslib "^2.0.3" - -filelist@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" - integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== - dependencies: - minimatch "^5.0.1" - -filesize@^8.0.6: - version "8.0.7" - resolved "https://registry.yarnpkg.com/filesize/-/filesize-8.0.7.tgz#695e70d80f4e47012c132d57a059e80c6b580bd8" - integrity sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ== - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "2.4.1" - parseurl "~1.3.3" - statuses "2.0.1" - unpipe "~1.0.0" - -find-cache-dir@^3.3.1: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== - dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" - -find-root@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" - integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== - -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== - dependencies: - flatted "^3.1.0" - rimraf "^3.0.2" - -flatted@^3.1.0: - version "3.2.7" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" - integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== - -flatten-vertex-data@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/flatten-vertex-data/-/flatten-vertex-data-1.0.2.tgz#889fd60bea506006ca33955ee1105175fb620219" - integrity sha512-BvCBFK2NZqerFTdMDgqfHBwxYWnxeCkwONsw6PvBMcUXqo8U/KDWwmXhqx1x2kLIg7DqIsJfOaJFOmlua3Lxuw== - dependencies: - dtype "^2.0.0" - -follow-redirects@^1.0.0: - version "1.15.2" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" - integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== - -font-atlas@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/font-atlas/-/font-atlas-2.1.0.tgz#aa2d6dcf656a6c871d66abbd3dfbea2f77178348" - integrity sha512-kP3AmvX+HJpW4w3d+PiPR2X6E1yvsBXt2yhuCw+yReO9F1WYhvZwx3c95DGZGwg9xYzDGrgJYa885xmVA+28Cg== - dependencies: - css-font "^1.0.0" - -font-face-observer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/font-face-observer/-/font-face-observer-1.0.0.tgz#af7a6819dd57f72643015026020aea34242a377f" - integrity sha512-GHeQVlm05gBswpLECTYd3vnsGMyTPkkOSu1dRjfF3VGjCZ1omtjWjVaJw2WjgqegBFKWZOAfj50YEou/WlcmAg== - dependencies: - promise "^6.1.0" - -font-measure@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/font-measure/-/font-measure-1.2.2.tgz#41dbdac5d230dbf4db08865f54da28a475e83026" - integrity sha512-mRLEpdrWzKe9hbfaF3Qpr06TAjquuBVP5cHy4b3hyeNdjc9i0PO6HniGsX5vjL5OWv7+Bd++NiooNpT/s8BvIA== - dependencies: - css-font "^1.2.0" - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -fork-ts-checker-webpack-plugin@^6.5.0: - version "6.5.3" - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz#eda2eff6e22476a2688d10661688c47f611b37f3" - integrity sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ== - dependencies: - "@babel/code-frame" "^7.8.3" - "@types/json-schema" "^7.0.5" - chalk "^4.1.0" - chokidar "^3.4.2" - cosmiconfig "^6.0.0" - deepmerge "^4.2.2" - fs-extra "^9.0.0" - glob "^7.1.6" - memfs "^3.1.2" - minimatch "^3.0.4" - schema-utils "2.7.0" - semver "^7.3.2" - tapable "^1.0.0" - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== - -fraction.js@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" - integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== - -from2@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.0" - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-extra@^10.0.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-extra@^9.0.0, fs-extra@^9.0.1: - version "9.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" - integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== - dependencies: - at-least-node "^1.0.0" - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-monkey@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747" - integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@^2.3.2, fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" - functions-have-names "^1.2.2" - -functions-have-names@^1.2.2, functions-have-names@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -geojson-vt@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/geojson-vt/-/geojson-vt-3.2.1.tgz#f8adb614d2c1d3f6ee7c4265cad4bbf3ad60c8b7" - integrity sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg== - -get-caller-file@^2.0.1, get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-canvas-context@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/get-canvas-context/-/get-canvas-context-1.0.2.tgz#d6e7b50bc4e4c86357cd39f22647a84b73601e93" - integrity sha512-LnpfLf/TNzr9zVOGiIY6aKCz8EKuXmlYNV7CM2pUjBa/B+c2I15tS7KLySep75+FuerJdmArvJLcsAXWEy2H0A== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-proto "^1.0.1" - has-symbols "^1.0.3" - -get-own-enumerable-property-symbols@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" - integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-stream@^6.0.0, get-stream@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-symbol-description@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" - integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -github-from-package@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== - -gl-mat4@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/gl-mat4/-/gl-mat4-1.2.0.tgz#49d8a7636b70aa00819216635f4a3fd3f4669b26" - integrity sha512-sT5C0pwB1/e9G9AvAoLsoaJtbMGjfd/jfxo8jMCKqYYEnjZuFvqV5rehqar0538EmssjdDeiEWnKyBSTw7quoA== - -gl-matrix@^3.2.1: - version "3.4.3" - resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.4.3.tgz#fc1191e8320009fd4d20e9339595c6041ddc22c9" - integrity sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA== - -gl-text@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/gl-text/-/gl-text-1.3.1.tgz#f36594464101b5b053178d6d219c3d08fb9144c8" - integrity sha512-/f5gcEMiZd+UTBJLTl3D+CkCB/0UFGTx3nflH8ZmyWcLkZhsZ1+Xx5YYkw2rgWAzgPeE35xCqBuHSoMKQVsR+w== - dependencies: - bit-twiddle "^1.0.2" - color-normalize "^1.5.0" - css-font "^1.2.0" - detect-kerning "^2.1.2" - es6-weak-map "^2.0.3" - flatten-vertex-data "^1.0.2" - font-atlas "^2.1.0" - font-measure "^1.2.2" - gl-util "^3.1.2" - is-plain-obj "^1.1.0" - object-assign "^4.1.1" - parse-rect "^1.2.0" - parse-unit "^1.0.1" - pick-by-alias "^1.2.0" - regl "^2.0.0" - to-px "^1.0.1" - typedarray-pool "^1.1.0" - -gl-util@^3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/gl-util/-/gl-util-3.1.3.tgz#1e9a724f844b802597c6e30565d4c1e928546861" - integrity sha512-dvRTggw5MSkJnCbh74jZzSoTOGnVYK+Bt+Ckqm39CVcl6+zSsxqWk4lr5NKhkqXHL6qvZAU9h17ZF8mIskY9mA== - dependencies: - is-browser "^2.0.1" - is-firefox "^1.0.3" - is-plain-obj "^1.1.0" - number-is-integer "^1.0.1" - object-assign "^4.1.0" - pick-by-alias "^1.2.0" - weak-map "^1.0.5" - -glob-parent@^5.1.2, glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-parent@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== - dependencies: - is-glob "^4.0.3" - -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - -glob@7.1.6: - version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -global-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== - dependencies: - global-prefix "^3.0.0" - -global-prefix@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== - dependencies: - ini "^1.3.5" - kind-of "^6.0.2" - which "^1.3.1" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^13.19.0: - version "13.20.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" - integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== - dependencies: - type-fest "^0.20.2" - -globalthis@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" - integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== - dependencies: - define-properties "^1.1.3" - -globby@^11.0.4, globby@^11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" - -globrex@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" - integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== - -glsl-inject-defines@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/glsl-inject-defines/-/glsl-inject-defines-1.0.3.tgz#dd1aacc2c17fcb2bd3fc32411c6633d0d7b60fd4" - integrity sha512-W49jIhuDtF6w+7wCMcClk27a2hq8znvHtlGnrYkSWEr8tHe9eA2dcnohlcAmxLYBSpSSdzOkRdyPTrx9fw49+A== - dependencies: - glsl-token-inject-block "^1.0.0" - glsl-token-string "^1.0.1" - glsl-tokenizer "^2.0.2" - -glsl-resolve@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/glsl-resolve/-/glsl-resolve-0.0.1.tgz#894bef73910d792c81b5143180035d0a78af76d3" - integrity sha512-xxFNsfnhZTK9NBhzJjSBGX6IOqYpvBHxxmo+4vapiljyGNCY0Bekzn0firQkQrazK59c1hYxMDxYS8MDlhw4gA== - dependencies: - resolve "^0.6.1" - xtend "^2.1.2" - -glsl-token-assignments@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/glsl-token-assignments/-/glsl-token-assignments-2.0.2.tgz#a5d82ab78499c2e8a6b83cb69495e6e665ce019f" - integrity sha512-OwXrxixCyHzzA0U2g4btSNAyB2Dx8XrztY5aVUCjRSh4/D0WoJn8Qdps7Xub3sz6zE73W3szLrmWtQ7QMpeHEQ== - -glsl-token-defines@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/glsl-token-defines/-/glsl-token-defines-1.0.0.tgz#cb892aa959936231728470d4f74032489697fa9d" - integrity sha512-Vb5QMVeLjmOwvvOJuPNg3vnRlffscq2/qvIuTpMzuO/7s5kT+63iL6Dfo2FYLWbzuiycWpbC0/KV0biqFwHxaQ== - dependencies: - glsl-tokenizer "^2.0.0" - -glsl-token-depth@^1.1.0, glsl-token-depth@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/glsl-token-depth/-/glsl-token-depth-1.1.2.tgz#23c5e30ee2bd255884b4a28bc850b8f791e95d84" - integrity sha512-eQnIBLc7vFf8axF9aoi/xW37LSWd2hCQr/3sZui8aBJnksq9C7zMeUYHVJWMhFzXrBU7fgIqni4EhXVW4/krpg== - -glsl-token-descope@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/glsl-token-descope/-/glsl-token-descope-1.0.2.tgz#0fc90ab326186b82f597b2e77dc9e21efcd32076" - integrity sha512-kS2PTWkvi/YOeicVjXGgX5j7+8N7e56srNDEHDTVZ1dcESmbmpmgrnpjPcjxJjMxh56mSXYoFdZqb90gXkGjQw== - dependencies: - glsl-token-assignments "^2.0.0" - glsl-token-depth "^1.1.0" - glsl-token-properties "^1.0.0" - glsl-token-scope "^1.1.0" - -glsl-token-inject-block@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/glsl-token-inject-block/-/glsl-token-inject-block-1.1.0.tgz#e1015f5980c1091824adaa2625f1dfde8bd00034" - integrity sha512-q/m+ukdUBuHCOtLhSr0uFb/qYQr4/oKrPSdIK2C4TD+qLaJvqM9wfXIF/OOBjuSA3pUoYHurVRNao6LTVVUPWA== - -glsl-token-properties@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/glsl-token-properties/-/glsl-token-properties-1.0.1.tgz#483dc3d839f0d4b5c6171d1591f249be53c28a9e" - integrity sha512-dSeW1cOIzbuUoYH0y+nxzwK9S9O3wsjttkq5ij9ZGw0OS41BirKJzzH48VLm8qLg+au6b0sINxGC0IrGwtQUcA== - -glsl-token-scope@^1.1.0, glsl-token-scope@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/glsl-token-scope/-/glsl-token-scope-1.1.2.tgz#a1728e78df24444f9cb93fd18ef0f75503a643b1" - integrity sha512-YKyOMk1B/tz9BwYUdfDoHvMIYTGtVv2vbDSLh94PT4+f87z21FVdou1KNKgF+nECBTo0fJ20dpm0B1vZB1Q03A== - -glsl-token-string@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/glsl-token-string/-/glsl-token-string-1.0.1.tgz#59441d2f857de7c3449c945666021ece358e48ec" - integrity sha512-1mtQ47Uxd47wrovl+T6RshKGkRRCYWhnELmkEcUAPALWGTFe2XZpH3r45XAwL2B6v+l0KNsCnoaZCSnhzKEksg== - -glsl-token-whitespace-trim@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/glsl-token-whitespace-trim/-/glsl-token-whitespace-trim-1.0.0.tgz#46d1dfe98c75bd7d504c05d7d11b1b3e9cc93b10" - integrity sha512-ZJtsPut/aDaUdLUNtmBYhaCmhIjpKNg7IgZSfX5wFReMc2vnj8zok+gB/3Quqs0TsBSX/fGnqUUYZDqyuc2xLQ== - -glsl-tokenizer@^2.0.0, glsl-tokenizer@^2.0.2: - version "2.1.5" - resolved "https://registry.yarnpkg.com/glsl-tokenizer/-/glsl-tokenizer-2.1.5.tgz#1c2e78c16589933c274ba278d0a63b370c5fee1a" - integrity sha512-XSZEJ/i4dmz3Pmbnpsy3cKh7cotvFlBiZnDOwnj/05EwNp2XrhQ4XKJxT7/pDt4kp4YcpRSKz8eTV7S+mwV6MA== - dependencies: - through2 "^0.6.3" - -glslify-bundle@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glslify-bundle/-/glslify-bundle-5.1.1.tgz#30d2ddf2e6b935bf44d1299321e3b729782c409a" - integrity sha512-plaAOQPv62M1r3OsWf2UbjN0hUYAB7Aph5bfH58VxJZJhloRNbxOL9tl/7H71K7OLJoSJ2ZqWOKk3ttQ6wy24A== - dependencies: - glsl-inject-defines "^1.0.1" - glsl-token-defines "^1.0.0" - glsl-token-depth "^1.1.1" - glsl-token-descope "^1.0.2" - glsl-token-scope "^1.1.1" - glsl-token-string "^1.0.1" - glsl-token-whitespace-trim "^1.0.0" - glsl-tokenizer "^2.0.2" - murmurhash-js "^1.0.0" - shallow-copy "0.0.1" - -glslify-deps@^1.2.5: - version "1.3.2" - resolved "https://registry.yarnpkg.com/glslify-deps/-/glslify-deps-1.3.2.tgz#c09ee945352bfc07ac2d8a1cc9e3de776328c72b" - integrity sha512-7S7IkHWygJRjcawveXQjRXLO2FTjijPDYC7QfZyAQanY+yGLCFHYnPtsGT9bdyHiwPTw/5a1m1M9hamT2aBpag== - dependencies: - "@choojs/findup" "^0.2.0" - events "^3.2.0" - glsl-resolve "0.0.1" - glsl-tokenizer "^2.0.0" - graceful-fs "^4.1.2" - inherits "^2.0.1" - map-limit "0.0.1" - resolve "^1.0.0" - -glslify@^7.0.0, glslify@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/glslify/-/glslify-7.1.1.tgz#454d9172b410cb49864029c86d5613947fefd30b" - integrity sha512-bud98CJ6kGZcP9Yxcsi7Iz647wuDz3oN+IZsjCRi5X1PI7t/xPKeL0mOwXJjo+CRZMqvq0CkSJiywCcY7kVYog== - dependencies: - bl "^2.2.1" - concat-stream "^1.5.2" - duplexify "^3.4.5" - falafel "^2.1.0" - from2 "^2.3.0" - glsl-resolve "0.0.1" - glsl-token-whitespace-trim "^1.0.0" - glslify-bundle "^5.0.0" - glslify-deps "^1.2.5" - minimist "^1.2.5" - resolve "^1.1.5" - stack-trace "0.0.9" - static-eval "^2.0.5" - through2 "^2.0.1" - xtend "^4.0.0" - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: - version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== - -graphemer@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" - integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== - -grid-index@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/grid-index/-/grid-index-1.1.0.tgz#97f8221edec1026c8377b86446a7c71e79522ea7" - integrity sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA== - -gzip-size@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462" - integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== - dependencies: - duplexer "^0.1.2" - -handle-thing@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" - integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== - -harmony-reflect@^1.4.6: - version "1.6.2" - resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.2.tgz#31ecbd32e648a34d030d86adb67d4d47547fe710" - integrity sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g== - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-hover@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-hover/-/has-hover-1.0.1.tgz#3d97437aeb199c62b8ac08acbdc53d3bc52c17f7" - integrity sha512-0G6w7LnlcpyDzpeGUTuT0CEw05+QlMuGVk1IHNAlHrGJITGodjZu3x8BNDUMfKJSZXNB2ZAclqc1bvrd+uUpfg== - dependencies: - is-browser "^2.0.1" - -has-passive-events@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-passive-events/-/has-passive-events-1.0.0.tgz#75fc3dc6dada182c58f24ebbdc018276d1ea3515" - integrity sha512-2vSj6IeIsgvsRMyeQ0JaCX5Q3lX4zMn5HpoVc7MEhQ6pv8Iq9rsXjsp+E5ZwaT7T0xhMT0KmU8gtt1EFVdbJiw== - dependencies: - is-browser "^2.0.1" - -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== - -has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hash-base@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== - dependencies: - inherits "^2.0.4" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - -he@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" - integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== - dependencies: - react-is "^16.7.0" - -hoopy@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d" - integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ== - -hpack.js@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" - integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== - dependencies: - inherits "^2.0.1" - obuf "^1.0.0" - readable-stream "^2.0.1" - wbuf "^1.1.0" - -hsluv@^0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/hsluv/-/hsluv-0.0.3.tgz#829107dafb4a9f8b52a1809ed02e091eade6754c" - integrity sha512-08iL2VyCRbkQKBySkSh6m8zMUa3sADAxGVWs3Z1aPcUkTJeK0ETG4Fc27tEmQBGUAXZjIsXOZqBvacuVNSC/fQ== - -html-encoding-sniffer@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" - integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== - dependencies: - whatwg-encoding "^1.0.5" - -html-entities@^2.1.0, html-entities@^2.3.2: - version "2.4.0" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061" - integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ== - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -html-minifier-terser@^6.0.2: - version "6.1.0" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" - integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== - dependencies: - camel-case "^4.1.2" - clean-css "^5.2.2" - commander "^8.3.0" - he "^1.2.0" - param-case "^3.0.4" - relateurl "^0.2.7" - terser "^5.10.0" - -html-webpack-plugin@^5.5.0: - version "5.5.3" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz#72270f4a78e222b5825b296e5e3e1328ad525a3e" - integrity sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg== - dependencies: - "@types/html-minifier-terser" "^6.0.0" - html-minifier-terser "^6.0.2" - lodash "^4.17.21" - pretty-error "^4.0.0" - tapable "^2.0.0" - -htmlparser2@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" - integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.0.0" - domutils "^2.5.2" - entities "^2.0.0" - -http-deceiver@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" - integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== - -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== - dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" - -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-parser-js@>=0.5.1: - version "0.5.8" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" - integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== - -http-proxy-agent@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - -http-proxy-middleware@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" - integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== - dependencies: - "@types/http-proxy" "^1.17.8" - http-proxy "^1.18.1" - is-glob "^4.0.1" - is-plain-obj "^3.0.0" - micromatch "^4.0.2" - -http-proxy@^1.18.1: - version "1.18.1" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== - -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -iconv-lite@0.4.24, iconv-lite@^0.4.4: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -iconv-lite@^0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -icss-utils@^5.0.0, icss-utils@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" - integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== - -idb@^7.0.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/idb/-/idb-7.1.1.tgz#d910ded866d32c7ced9befc5bfdf36f572ced72b" - integrity sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ== - -identity-obj-proxy@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14" - integrity sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA== - dependencies: - harmony-reflect "^1.4.6" - -ieee754@^1.1.12, ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore@^5.2.0: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== - -immer@^9.0.21, immer@^9.0.7: - version "9.0.21" - resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176" - integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== - -immutable@~3.7.4: - version "3.7.6" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" - integrity sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw== - -import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -indigo-ketcher@1.11.0-rc.1: - version "1.11.0-rc.1" - resolved "https://registry.yarnpkg.com/indigo-ketcher/-/indigo-ketcher-1.11.0-rc.1.tgz#592664730e535a108a7333dbbff6803acc14f8b5" - integrity sha512-9sfIasCQM/e8thrQtu2yAAYvQuDmSpQjrQmnk+lJG486Cp9VlK7iVrk2Ehp3DQDlNuFqrXL1jHSuELXTJ13KIw== - dependencies: - looks-same "^8.1.0" - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== - -ini@^1.3.5, ini@~1.3.0: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" - integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== - dependencies: - get-intrinsic "^1.2.0" - has "^1.0.3" - side-channel "^1.0.4" - -intersection-observer@^0.12.0: - version "0.12.2" - resolved "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.12.2.tgz#4a45349cc0cd91916682b1f44c28d7ec737dc375" - integrity sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg== - -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -ipaddr.js@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f" - integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== - -is-alphabetical@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" - integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== - -is-alphanumerical@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" - integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== - dependencies: - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - -is-arguments@^1.0.4, is-arguments@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" - integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.0" - is-typed-array "^1.1.10" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-arrayish@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-browser@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-browser/-/is-browser-2.1.0.tgz#fc084d59a5fced307d6708c59356bad7007371a9" - integrity sha512-F5rTJxDQ2sW81fcfOR1GnCXT6sVJC104fCyfj+mjpwNEwaPYSn5fte5jiHmBg3DHsIoL/l8Kvw5VN5SsTRcRFQ== - -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - -is-core-module@^2.11.0, is-core-module@^2.9.0: - version "2.12.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" - integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== - dependencies: - has "^1.0.3" - -is-date-object@^1.0.1, is-date-object@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-decimal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" - integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== - -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-finite@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" - integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== - -is-firefox@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-firefox/-/is-firefox-1.0.3.tgz#2a2a1567783a417f6e158323108f3861b0918562" - integrity sha512-6Q9ITjvWIm0Xdqv+5U12wgOKEM2KoBw4Y926m0OFkvlCxnbG94HKAsVz8w3fWcfAS5YA2fJORXX1dLrkprCCxA== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-generator-function@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" - integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== - dependencies: - has-tostringtag "^1.0.0" - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-hexadecimal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" - integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== - -is-iexplorer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-iexplorer/-/is-iexplorer-1.0.0.tgz#1d72bc66d3fe22eaf6170dda8cf10943248cfc76" - integrity sha512-YeLzceuwg3K6O0MLM3UyUUjKAlyULetwryFp1mHy1I5PfArK0AEqlfa+MR4gkJjcbuJXoDJCvXbyqZVf5CR2Sg== - -is-map@^2.0.1, is-map@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" - integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== - -is-mobile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-mobile/-/is-mobile-4.0.0.tgz#bba396eb9656e2739afde3053d7191da310fc758" - integrity sha512-mlcHZA84t1qLSuWkt2v0I2l61PYdyQDt4aG1mLIXF5FDMm4+haBCxCPYSr/uwqQNRk1MiTizn0ypEuRAOLRAew== - -is-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" - integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== - -is-nan@^1.2.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" - integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - -is-negative-zero@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" - integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" - integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== - -is-path-inside@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== - -is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== - -is-plain-obj@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" - integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== - -is-port-reachable@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-port-reachable/-/is-port-reachable-4.0.0.tgz#dac044091ef15319c8ab2f34604d8794181f8c2d" - integrity sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig== - -is-potential-custom-element-name@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" - integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" - integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== - -is-root@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" - integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== - -is-set@^2.0.1, is-set@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" - integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== - -is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== - dependencies: - call-bind "^1.0.2" - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-string-blank@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-string-blank/-/is-string-blank-1.0.1.tgz#866dca066d41d2894ebdfd2d8fe93e586e583a03" - integrity sha512-9H+ZBCVs3L9OYqv8nuUAzpcT9OTgMD1yAWrG7ihlnibdkbtB850heAmYWxHuXc4CHy4lKeK69tN+ny1K7gBIrw== - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-svg-path@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-svg-path/-/is-svg-path-1.0.2.tgz#77ab590c12b3d20348e5c7a13d0040c87784dda0" - integrity sha512-Lj4vePmqpPR1ZnRctHv8ltSh1OrSxHkhUkd7wi+VQdcdP15/KvQFyk7LhNuM7ZW0EVbJz8kZLVmL9quLrfq4Kg== - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-typed-array@^1.1.10, is-typed-array@^1.1.3, is-typed-array@^1.1.9: - version "1.1.10" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" - integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - -is-typedarray@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== - -is-weakmap@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" - integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - -is-weakset@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" - integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== - -isarray@^2.0.1, isarray@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" - integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -isomorphic-timers-promises@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/isomorphic-timers-promises/-/isomorphic-timers-promises-1.0.1.tgz#e4137c24dbc54892de8abae3a4b5c1ffff381598" - integrity sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ== - -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - -istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" - integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== - dependencies: - "@babel/core" "^7.12.3" - "@babel/parser" "^7.14.7" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.2.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" - integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.1.3: - version "3.1.5" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" - integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -jake@^10.8.5: - version "10.8.7" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f" - integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w== - dependencies: - async "^3.2.3" - chalk "^4.0.2" - filelist "^1.0.4" - minimatch "^3.1.2" - -jest-changed-files@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz#a348aed00ec9bf671cc58a66fcbe7c3dfd6a68f5" - integrity sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw== - dependencies: - "@jest/types" "^27.5.1" - execa "^5.0.0" - throat "^6.0.1" - -jest-circus@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.5.1.tgz#37a5a4459b7bf4406e53d637b49d22c65d125ecc" - integrity sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw== - dependencies: - "@jest/environment" "^27.5.1" - "@jest/test-result" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - dedent "^0.7.0" - expect "^27.5.1" - is-generator-fn "^2.0.0" - jest-each "^27.5.1" - jest-matcher-utils "^27.5.1" - jest-message-util "^27.5.1" - jest-runtime "^27.5.1" - jest-snapshot "^27.5.1" - jest-util "^27.5.1" - pretty-format "^27.5.1" - slash "^3.0.0" - stack-utils "^2.0.3" - throat "^6.0.1" - -jest-cli@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.5.1.tgz#278794a6e6458ea8029547e6c6cbf673bd30b145" - integrity sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw== - dependencies: - "@jest/core" "^27.5.1" - "@jest/test-result" "^27.5.1" - "@jest/types" "^27.5.1" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - import-local "^3.0.2" - jest-config "^27.5.1" - jest-util "^27.5.1" - jest-validate "^27.5.1" - prompts "^2.0.1" - yargs "^16.2.0" - -jest-config@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.5.1.tgz#5c387de33dca3f99ad6357ddeccd91bf3a0e4a41" - integrity sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA== - dependencies: - "@babel/core" "^7.8.0" - "@jest/test-sequencer" "^27.5.1" - "@jest/types" "^27.5.1" - babel-jest "^27.5.1" - chalk "^4.0.0" - ci-info "^3.2.0" - deepmerge "^4.2.2" - glob "^7.1.1" - graceful-fs "^4.2.9" - jest-circus "^27.5.1" - jest-environment-jsdom "^27.5.1" - jest-environment-node "^27.5.1" - jest-get-type "^27.5.1" - jest-jasmine2 "^27.5.1" - jest-regex-util "^27.5.1" - jest-resolve "^27.5.1" - jest-runner "^27.5.1" - jest-util "^27.5.1" - jest-validate "^27.5.1" - micromatch "^4.0.4" - parse-json "^5.2.0" - pretty-format "^27.5.1" - slash "^3.0.0" - strip-json-comments "^3.1.1" - -jest-diff@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def" - integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== - dependencies: - chalk "^4.0.0" - diff-sequences "^27.5.1" - jest-get-type "^27.5.1" - pretty-format "^27.5.1" - -jest-diff@^29.6.1: - version "29.6.1" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.6.1.tgz#13df6db0a89ee6ad93c747c75c85c70ba941e545" - integrity sha512-FsNCvinvl8oVxpNLttNQX7FAq7vR+gMDGj90tiP7siWw1UdakWUGqrylpsYrpvj908IYckm5Y0Q7azNAozU1Kg== - dependencies: - chalk "^4.0.0" - diff-sequences "^29.4.3" - jest-get-type "^29.4.3" - pretty-format "^29.6.1" - -jest-docblock@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.5.1.tgz#14092f364a42c6108d42c33c8cf30e058e25f6c0" - integrity sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ== - dependencies: - detect-newline "^3.0.0" - -jest-each@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.5.1.tgz#5bc87016f45ed9507fed6e4702a5b468a5b2c44e" - integrity sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ== - dependencies: - "@jest/types" "^27.5.1" - chalk "^4.0.0" - jest-get-type "^27.5.1" - jest-util "^27.5.1" - pretty-format "^27.5.1" - -jest-environment-jsdom@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz#ea9ccd1fc610209655a77898f86b2b559516a546" - integrity sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw== - dependencies: - "@jest/environment" "^27.5.1" - "@jest/fake-timers" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - jest-mock "^27.5.1" - jest-util "^27.5.1" - jsdom "^16.6.0" - -jest-environment-node@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz#dedc2cfe52fab6b8f5714b4808aefa85357a365e" - integrity sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw== - dependencies: - "@jest/environment" "^27.5.1" - "@jest/fake-timers" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - jest-mock "^27.5.1" - jest-util "^27.5.1" - -jest-get-type@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1" - integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== - -jest-get-type@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" - integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== - -jest-haste-map@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz#9fd8bd7e7b4fa502d9c6164c5640512b4e811e7f" - integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng== - dependencies: - "@jest/types" "^27.5.1" - "@types/graceful-fs" "^4.1.2" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.9" - jest-regex-util "^27.5.1" - jest-serializer "^27.5.1" - jest-util "^27.5.1" - jest-worker "^27.5.1" - micromatch "^4.0.4" - walker "^1.0.7" - optionalDependencies: - fsevents "^2.3.2" - -jest-jasmine2@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz#a037b0034ef49a9f3d71c4375a796f3b230d1ac4" - integrity sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ== - dependencies: - "@jest/environment" "^27.5.1" - "@jest/source-map" "^27.5.1" - "@jest/test-result" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - expect "^27.5.1" - is-generator-fn "^2.0.0" - jest-each "^27.5.1" - jest-matcher-utils "^27.5.1" - jest-message-util "^27.5.1" - jest-runtime "^27.5.1" - jest-snapshot "^27.5.1" - jest-util "^27.5.1" - pretty-format "^27.5.1" - throat "^6.0.1" - -jest-leak-detector@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz#6ec9d54c3579dd6e3e66d70e3498adf80fde3fb8" - integrity sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ== - dependencies: - jest-get-type "^27.5.1" - pretty-format "^27.5.1" - -jest-matcher-utils@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab" - integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== - dependencies: - chalk "^4.0.0" - jest-diff "^27.5.1" - jest-get-type "^27.5.1" - pretty-format "^27.5.1" - -jest-matcher-utils@^29.6.1: - version "29.6.1" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.6.1.tgz#6c60075d84655d6300c5d5128f46531848160b53" - integrity sha512-SLaztw9d2mfQQKHmJXKM0HCbl2PPVld/t9Xa6P9sgiExijviSp7TnZZpw2Fpt+OI3nwUO/slJbOfzfUMKKC5QA== - dependencies: - chalk "^4.0.0" - jest-diff "^29.6.1" - jest-get-type "^29.4.3" - pretty-format "^29.6.1" - -jest-message-util@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.5.1.tgz#bdda72806da10d9ed6425e12afff38cd1458b6cf" - integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^27.5.1" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^27.5.1" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-message-util@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.3.tgz#232def7f2e333f1eecc90649b5b94b0055e7c43d" - integrity sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^28.1.3" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^28.1.3" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-message-util@^29.6.1: - version "29.6.1" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.6.1.tgz#d0b21d87f117e1b9e165e24f245befd2ff34ff8d" - integrity sha512-KoAW2zAmNSd3Gk88uJ56qXUWbFk787QKmjjJVOjtGFmmGSZgDBrlIL4AfQw1xyMYPNVD7dNInfIbur9B2rd/wQ== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.6.1" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^29.6.1" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-mock@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.5.1.tgz#19948336d49ef4d9c52021d34ac7b5f36ff967d6" - integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== - dependencies: - "@jest/types" "^27.5.1" - "@types/node" "*" - -jest-pnp-resolver@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" - integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== - -jest-regex-util@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz#4da143f7e9fd1e542d4aa69617b38e4a78365b95" - integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg== - -jest-regex-util@^28.0.0: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" - integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== - -jest-resolve-dependencies@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz#d811ecc8305e731cc86dd79741ee98fed06f1da8" - integrity sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg== - dependencies: - "@jest/types" "^27.5.1" - jest-regex-util "^27.5.1" - jest-snapshot "^27.5.1" - -jest-resolve@^27.4.2, jest-resolve@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.5.1.tgz#a2f1c5a0796ec18fe9eb1536ac3814c23617b384" - integrity sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw== - dependencies: - "@jest/types" "^27.5.1" - chalk "^4.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^27.5.1" - jest-pnp-resolver "^1.2.2" - jest-util "^27.5.1" - jest-validate "^27.5.1" - resolve "^1.20.0" - resolve.exports "^1.1.0" - slash "^3.0.0" - -jest-runner@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.5.1.tgz#071b27c1fa30d90540805c5645a0ec167c7b62e5" - integrity sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ== - dependencies: - "@jest/console" "^27.5.1" - "@jest/environment" "^27.5.1" - "@jest/test-result" "^27.5.1" - "@jest/transform" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.8.1" - graceful-fs "^4.2.9" - jest-docblock "^27.5.1" - jest-environment-jsdom "^27.5.1" - jest-environment-node "^27.5.1" - jest-haste-map "^27.5.1" - jest-leak-detector "^27.5.1" - jest-message-util "^27.5.1" - jest-resolve "^27.5.1" - jest-runtime "^27.5.1" - jest-util "^27.5.1" - jest-worker "^27.5.1" - source-map-support "^0.5.6" - throat "^6.0.1" - -jest-runtime@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.5.1.tgz#4896003d7a334f7e8e4a53ba93fb9bcd3db0a1af" - integrity sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A== - dependencies: - "@jest/environment" "^27.5.1" - "@jest/fake-timers" "^27.5.1" - "@jest/globals" "^27.5.1" - "@jest/source-map" "^27.5.1" - "@jest/test-result" "^27.5.1" - "@jest/transform" "^27.5.1" - "@jest/types" "^27.5.1" - chalk "^4.0.0" - cjs-module-lexer "^1.0.0" - collect-v8-coverage "^1.0.0" - execa "^5.0.0" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-haste-map "^27.5.1" - jest-message-util "^27.5.1" - jest-mock "^27.5.1" - jest-regex-util "^27.5.1" - jest-resolve "^27.5.1" - jest-snapshot "^27.5.1" - jest-util "^27.5.1" - slash "^3.0.0" - strip-bom "^4.0.0" - -jest-serializer@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.5.1.tgz#81438410a30ea66fd57ff730835123dea1fb1f64" - integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w== - dependencies: - "@types/node" "*" - graceful-fs "^4.2.9" - -jest-snapshot@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz#b668d50d23d38054a51b42c4039cab59ae6eb6a1" - integrity sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA== - dependencies: - "@babel/core" "^7.7.2" - "@babel/generator" "^7.7.2" - "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" - "@babel/types" "^7.0.0" - "@jest/transform" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/babel__traverse" "^7.0.4" - "@types/prettier" "^2.1.5" - babel-preset-current-node-syntax "^1.0.0" - chalk "^4.0.0" - expect "^27.5.1" - graceful-fs "^4.2.9" - jest-diff "^27.5.1" - jest-get-type "^27.5.1" - jest-haste-map "^27.5.1" - jest-matcher-utils "^27.5.1" - jest-message-util "^27.5.1" - jest-util "^27.5.1" - natural-compare "^1.4.0" - pretty-format "^27.5.1" - semver "^7.3.2" - -jest-util@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9" - integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw== - dependencies: - "@jest/types" "^27.5.1" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-util@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.3.tgz#f4f932aa0074f0679943220ff9cbba7e497028b0" - integrity sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ== - dependencies: - "@jest/types" "^28.1.3" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-util@^29.6.1: - version "29.6.1" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.6.1.tgz#c9e29a87a6edbf1e39e6dee2b4689b8a146679cb" - integrity sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg== - dependencies: - "@jest/types" "^29.6.1" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-validate@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.5.1.tgz#9197d54dc0bdb52260b8db40b46ae668e04df067" - integrity sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ== - dependencies: - "@jest/types" "^27.5.1" - camelcase "^6.2.0" - chalk "^4.0.0" - jest-get-type "^27.5.1" - leven "^3.1.0" - pretty-format "^27.5.1" - -jest-watch-typeahead@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz#b4a6826dfb9c9420da2f7bc900de59dad11266a9" - integrity sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw== - dependencies: - ansi-escapes "^4.3.1" - chalk "^4.0.0" - jest-regex-util "^28.0.0" - jest-watcher "^28.0.0" - slash "^4.0.0" - string-length "^5.0.1" - strip-ansi "^7.0.1" - -jest-watcher@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.5.1.tgz#71bd85fb9bde3a2c2ec4dc353437971c43c642a2" - integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw== - dependencies: - "@jest/test-result" "^27.5.1" - "@jest/types" "^27.5.1" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - jest-util "^27.5.1" - string-length "^4.0.1" - -jest-watcher@^28.0.0: - version "28.1.3" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.3.tgz#c6023a59ba2255e3b4c57179fc94164b3e73abd4" - integrity sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g== - dependencies: - "@jest/test-result" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - emittery "^0.10.2" - jest-util "^28.1.3" - string-length "^4.0.1" - -jest-worker@^26.2.1: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" - integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^7.0.0" - -jest-worker@^27.0.2, jest-worker@^27.4.5, jest-worker@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" - integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest-worker@^28.0.2: - version "28.1.3" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.3.tgz#7e3c4ce3fa23d1bb6accb169e7f396f98ed4bb98" - integrity sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest@^27.4.3: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest/-/jest-27.5.1.tgz#dadf33ba70a779be7a6fc33015843b51494f63fc" - integrity sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ== - dependencies: - "@jest/core" "^27.5.1" - import-local "^3.0.2" - jest-cli "^27.5.1" - -jiti@^1.18.2: - version "1.19.1" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.1.tgz#fa99e4b76a23053e0e7cde098efe1704a14c16f1" - integrity sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg== - -js-graph-algorithms@1.0.18: - version "1.0.18" - resolved "https://registry.yarnpkg.com/js-graph-algorithms/-/js-graph-algorithms-1.0.18.tgz#f96ec87bf194f5c0a31365fa0e1d07b7b962d891" - integrity sha512-Gu1wtWzXBzGeye/j9BuyplGHscwqKRZodp/0M1vyBc19RJpblSwKGu099KwwaTx9cRIV+Qupk8xUMfEiGfFqSA== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -jsdom@^16.6.0: - version "16.7.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" - integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== - dependencies: - abab "^2.0.5" - acorn "^8.2.4" - acorn-globals "^6.0.0" - cssom "^0.4.4" - cssstyle "^2.3.0" - data-urls "^2.0.0" - decimal.js "^10.2.1" - domexception "^2.0.1" - escodegen "^2.0.0" - form-data "^3.0.0" - html-encoding-sniffer "^2.0.1" - http-proxy-agent "^4.0.1" - https-proxy-agent "^5.0.0" - is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.0" - parse5 "6.0.1" - saxes "^5.0.1" - symbol-tree "^3.2.4" - tough-cookie "^4.0.0" - w3c-hr-time "^1.0.2" - w3c-xmlserializer "^2.0.0" - webidl-conversions "^6.1.0" - whatwg-encoding "^1.0.5" - whatwg-mimetype "^2.3.0" - whatwg-url "^8.5.0" - ws "^7.4.6" - xml-name-validator "^3.0.0" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - -json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json-schema@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" - integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== - -json5@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" - integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== - dependencies: - minimist "^1.2.0" - -json5@^2.1.2, json5@^2.2.0, json5@^2.2.2: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== - optionalDependencies: - graceful-fs "^4.1.6" - -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - -jsonpointer@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559" - integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== - -"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: - version "3.3.4" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz#b896535fed5b867650acce5a9bd4135ffc7b3bf9" - integrity sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw== - dependencies: - array-includes "^3.1.6" - array.prototype.flat "^1.3.1" - object.assign "^4.1.4" - object.values "^1.1.6" - -kdbush@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-3.0.0.tgz#f8484794d47004cc2d85ed3a79353dbe0abc2bf0" - integrity sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew== - -ketcher-core@*, ketcher-core@^2.8.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/ketcher-core/-/ketcher-core-2.10.0.tgz#e0c6386612d1d3fc993e912e45b2bc7999c5af01" - integrity sha512-9/mOJrcVyJs2dMId3QuysHXM1ePf+UmhP9lRNNX7hzIQ6Pu3bGvq+6FKt2pjzsXLZa8MXSMQWM6OdV5SqPGXug== - dependencies: - "@babel/runtime" "^7.17.9" - ajv "^8.10.0" - assert "^2.0.0" - lodash "^4.17.21" - raphael "^2.3.0" - svgpath "^2.3.1" - -ketcher-react@^2.10.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/ketcher-react/-/ketcher-react-2.10.0.tgz#969583c598e9683203590811fa5e10ed444a7e92" - integrity sha512-N+vHsVo5U94km8TrBiOw9PUyv2f/4py4JI02/lroRlvoZAttG9q9Aug/Eb7O1IbJ2BZzoynZrWbZKLTWtcAYKw== - dependencies: - "@babel/runtime" "^7.17.9" - "@emotion/react" "^11.7.1" - "@emotion/styled" "^11.6.0" - "@mui/material" "^5.2.4" - ajv "^8.10.0" - clsx "^1.1.1" - draft-js "^0.11.7" - draft-js-custom-styles "^2.1.1" - element-closest-polyfill "^1.0.2" - file-saver "^2.0.2" - font-face-observer "^1.0.0" - hoist-non-react-statics "^3.3.2" - intersection-observer "^0.12.0" - ketcher-core "*" - lodash "^4.17.21" - miew-react "^1.0.0" - react-colorful "^5.4.0" - react-contexify "^6.0.0" - react-device-detect "^2.2.2" - react-dropzone "^11.7.1" - react-intersection-observer "^8.32.1" - react-redux "^7.2.1" - react-virtualized "^9.22.3" - redux "^4.0.5" - redux-logger "^3.0.6" - redux-thunk "^2.3.0" - regenerator-runtime "^0.13.7" - remark-gfm "^1.0.0" - remark-parse "^9.0.0" - replace "^1.2.0" - reselect "^4.0.0" - subscription "^3.0.0" - url-search-params-polyfill "^8.1.1" - use-resize-observer "^7.0.0" - w3c-keyname "^2.2.4" - whatwg-fetch "^3.4.1" - -ketcher-standalone@^2.8.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/ketcher-standalone/-/ketcher-standalone-2.10.0.tgz#70465d2ca4f74c0886c66577b59f04f58276b7fd" - integrity sha512-k2Id94PHTTra47vvnptlKs8Wi+097dCpXlEalGkuEm/oZtBCAYWbxHjOab3L0qUFbvsVsbHXCQbauHf/GU08TA== - dependencies: - "@babel/runtime" "^7.17.9" - indigo-ketcher "1.11.0-rc.1" - ketcher-core "*" - -kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -klona@^2.0.4, klona@^2.0.5: - version "2.0.6" - resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22" - integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== - -language-subtag-registry@~0.3.2: - version "0.3.22" - resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" - integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== - -language-tags@=1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" - integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== - dependencies: - language-subtag-registry "~0.3.2" - -launch-editor@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7" - integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ== - dependencies: - picocolors "^1.0.0" - shell-quote "^1.7.3" - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -lilconfig@^2.0.3, lilconfig@^2.0.5, lilconfig@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" - integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -loader-runner@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" - integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== - -loader-utils@^2.0.0, loader-utils@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" - integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - -loader-utils@^3.2.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576" - integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== - -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lodash.camelcase@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash.memoize@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== - -lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash.snakecase@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" - integrity sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw== - -lodash.sortby@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== - -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== - -lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.3, lodash@^4.7.0: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -longest-streak@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" - integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== - -looks-same@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/looks-same/-/looks-same-8.1.0.tgz#0ac94d90fc32b77858a747486e0d3b494c9d8c56" - integrity sha512-gdMgCSCvhpR2/AA15CamZD7Ch+gx8sOqWyRzz3j1Gs8+2VBCyHm3CRMS8EK+5rNvpwf9AGEnDunredVM5+f46w== - dependencies: - color-diff "^1.1.0" - fs-extra "^8.1.0" - js-graph-algorithms "1.0.18" - lodash "^4.17.3" - nested-error-stacks "^2.1.0" - parse-color "^1.0.0" - sharp "~0.30.7" - -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -lower-case@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" - integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== - dependencies: - tslib "^2.0.3" - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -lz-string@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" - integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== - -magic-string@^0.25.0, magic-string@^0.25.7: - version "0.25.9" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" - integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== - dependencies: - sourcemap-codec "^1.4.8" - -magic-string@^0.27.0: - version "0.27.0" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.27.0.tgz#e4a3413b4bab6d98d2becffd48b4a257effdbbf3" - integrity sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA== - dependencies: - "@jridgewell/sourcemap-codec" "^1.4.13" - -make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -makeerror@1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" - integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== - dependencies: - tmpl "1.0.5" - -map-limit@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/map-limit/-/map-limit-0.0.1.tgz#eb7961031c0f0e8d001bf2d56fab685d58822f38" - integrity sha512-pJpcfLPnIF/Sk3taPW21G/RQsEEirGaFpCW3oXRwH9dnFHPHNGjNyvh++rdmC2fNqEaTw2MhYJraoJWAHx8kEg== - dependencies: - once "~1.3.0" - -mapbox-gl@1.10.1: - version "1.10.1" - resolved "https://registry.yarnpkg.com/mapbox-gl/-/mapbox-gl-1.10.1.tgz#7dbd53bdf2f78e45e125c1115e94dea286ef663c" - integrity sha512-0aHt+lFUpYfvh0kMIqXqNXqoYMuhuAsMlw87TbhWrw78Tx2zfuPI0Lx31/YPUgJ+Ire0tzQ4JnuBL7acDNXmMg== - dependencies: - "@mapbox/geojson-rewind" "^0.5.0" - "@mapbox/geojson-types" "^1.0.2" - "@mapbox/jsonlint-lines-primitives" "^2.0.2" - "@mapbox/mapbox-gl-supported" "^1.5.0" - "@mapbox/point-geometry" "^0.1.0" - "@mapbox/tiny-sdf" "^1.1.1" - "@mapbox/unitbezier" "^0.0.0" - "@mapbox/vector-tile" "^1.3.1" - "@mapbox/whoots-js" "^3.1.0" - csscolorparser "~1.0.3" - earcut "^2.2.2" - geojson-vt "^3.2.1" - gl-matrix "^3.2.1" - grid-index "^1.1.0" - minimist "^1.2.5" - murmurhash-js "^1.0.0" - pbf "^3.2.1" - potpack "^1.0.1" - quickselect "^2.0.0" - rw "^1.3.3" - supercluster "^7.0.0" - tinyqueue "^2.0.3" - vt-pbf "^3.1.1" - -markdown-table@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-2.0.0.tgz#194a90ced26d31fe753d8b9434430214c011865b" - integrity sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A== - dependencies: - repeat-string "^1.0.0" - -math-log2@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/math-log2/-/math-log2-1.0.1.tgz#fb8941be5f5ebe8979e718e6273b178e58694565" - integrity sha512-9W0yGtkaMAkf74XGYVy4Dqw3YUMnTNB2eeiw9aQbUl4A3KmuCEHTt2DgAB07ENzOYAjsYSAYufkAq0Zd+jU7zA== - -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -mdast-util-find-and-replace@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz#b7db1e873f96f66588c321f1363069abf607d1b5" - integrity sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA== - dependencies: - escape-string-regexp "^4.0.0" - unist-util-is "^4.0.0" - unist-util-visit-parents "^3.0.0" - -mdast-util-from-markdown@^0.8.0: - version "0.8.5" - resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" - integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== - dependencies: - "@types/mdast" "^3.0.0" - mdast-util-to-string "^2.0.0" - micromark "~2.11.0" - parse-entities "^2.0.0" - unist-util-stringify-position "^2.0.0" - -mdast-util-gfm-autolink-literal@^0.1.0: - version "0.1.3" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.3.tgz#9c4ff399c5ddd2ece40bd3b13e5447d84e385fb7" - integrity sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A== - dependencies: - ccount "^1.0.0" - mdast-util-find-and-replace "^1.1.0" - micromark "^2.11.3" - -mdast-util-gfm-strikethrough@^0.2.0: - version "0.2.3" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-0.2.3.tgz#45eea337b7fff0755a291844fbea79996c322890" - integrity sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA== - dependencies: - mdast-util-to-markdown "^0.6.0" - -mdast-util-gfm-table@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-table/-/mdast-util-gfm-table-0.1.6.tgz#af05aeadc8e5ee004eeddfb324b2ad8c029b6ecf" - integrity sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ== - dependencies: - markdown-table "^2.0.0" - mdast-util-to-markdown "~0.6.0" - -mdast-util-gfm-task-list-item@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-0.1.6.tgz#70c885e6b9f543ddd7e6b41f9703ee55b084af10" - integrity sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A== - dependencies: - mdast-util-to-markdown "~0.6.0" - -mdast-util-gfm@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-0.1.2.tgz#8ecddafe57d266540f6881f5c57ff19725bd351c" - integrity sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ== - dependencies: - mdast-util-gfm-autolink-literal "^0.1.0" - mdast-util-gfm-strikethrough "^0.2.0" - mdast-util-gfm-table "^0.1.0" - mdast-util-gfm-task-list-item "^0.1.0" - mdast-util-to-markdown "^0.6.1" - -mdast-util-to-markdown@^0.6.0, mdast-util-to-markdown@^0.6.1, mdast-util-to-markdown@~0.6.0: - version "0.6.5" - resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" - integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== - dependencies: - "@types/unist" "^2.0.0" - longest-streak "^2.0.0" - mdast-util-to-string "^2.0.0" - parse-entities "^2.0.0" - repeat-string "^1.0.0" - zwitch "^1.0.0" - -mdast-util-to-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b" - integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== - -mdn-data@2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" - integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== - -mdn-data@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" - integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -memfs@^3.1.2, memfs@^3.4.3: - version "3.6.0" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6" - integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ== - dependencies: - fs-monkey "^1.0.4" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== - -micromark-extension-gfm-autolink-literal@~0.5.0: - version "0.5.7" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-0.5.7.tgz#53866c1f0c7ef940ae7ca1f72c6faef8fed9f204" - integrity sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw== - dependencies: - micromark "~2.11.3" - -micromark-extension-gfm-strikethrough@~0.6.5: - version "0.6.5" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-0.6.5.tgz#96cb83356ff87bf31670eefb7ad7bba73e6514d1" - integrity sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw== - dependencies: - micromark "~2.11.0" - -micromark-extension-gfm-table@~0.4.0: - version "0.4.3" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-0.4.3.tgz#4d49f1ce0ca84996c853880b9446698947f1802b" - integrity sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA== - dependencies: - micromark "~2.11.0" - -micromark-extension-gfm-tagfilter@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-0.3.0.tgz#d9f26a65adee984c9ccdd7e182220493562841ad" - integrity sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q== - -micromark-extension-gfm-task-list-item@~0.3.0: - version "0.3.3" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-0.3.3.tgz#d90c755f2533ed55a718129cee11257f136283b8" - integrity sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ== - dependencies: - micromark "~2.11.0" - -micromark-extension-gfm@^0.3.0: - version "0.3.3" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-0.3.3.tgz#36d1a4c089ca8bdfd978c9bd2bf1a0cb24e2acfe" - integrity sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A== - dependencies: - micromark "~2.11.0" - micromark-extension-gfm-autolink-literal "~0.5.0" - micromark-extension-gfm-strikethrough "~0.6.5" - micromark-extension-gfm-table "~0.4.0" - micromark-extension-gfm-tagfilter "~0.3.0" - micromark-extension-gfm-task-list-item "~0.3.0" - -micromark@^2.11.3, micromark@~2.11.0, micromark@~2.11.3: - version "2.11.4" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" - integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== - dependencies: - debug "^4.0.0" - parse-entities "^2.0.0" - -micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -miew-react@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/miew-react/-/miew-react-1.0.0.tgz#033d07b127c9a55fde0bd6be9f0cd797b7d1e1a6" - integrity sha512-MfiHBTaDWh+L3cD0ibfng8Pxe9+JKI7gar12CfTlRN9W4hA4x8eMwiWq8iRHr7o/XmQJbntp412YGsMrFN5NoA== - dependencies: - "@babel/runtime" "^7.12.5" - "@emotion/react" "^11.7.1" - "@emotion/styled" "^11.6.0" - "@mui/material" "^5.2.5" - "@reduxjs/toolkit" "^1.7.1" - clsx "^1.1.1" - lodash "^4.17.21" - miew "0.10.1" - react-redux "^7.2.6" - redux "^4.1.2" - redux-saga "^1.1.3" - use-resize-observer "^7.0.0" - -miew@0.10.1, miew@^0.10.1: - version "0.10.1" - resolved "https://registry.yarnpkg.com/miew/-/miew-0.10.1.tgz#4dc53c6e53c147a5ae7bef54e3c2a8cdcd2c8a12" - integrity sha512-ZZI/rPC/Lw+Pqlz1B4PrHm5/UkNbRqKGjIv8TLDrUgx+WhJhkCEaVDfb6vkL6Tv1id93ESTtga4vEINP8VGihw== - dependencies: - lodash "^4.17.21" - three "0.131.3" - -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-db@~1.33.0: - version "1.33.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" - integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== - -mime-types@2.1.18: - version "2.1.18" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" - integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== - dependencies: - mime-db "~1.33.0" - -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-response@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" - integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -mini-css-extract-plugin@^2.4.5: - version "2.7.6" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d" - integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw== - dependencies: - schema-utils "^4.0.0" - -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== - -minimatch@3.0.5: - version "3.0.5" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.5.tgz#4da8f1290ee0f0f8e83d60ca69f8f134068604a3" - integrity sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@3.1.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^5.0.1: - version "5.1.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" - integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== - dependencies: - brace-expansion "^2.0.1" - -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@~0.5.1: - version "0.5.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" - integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== - dependencies: - minimist "^1.2.6" - -mouse-change@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/mouse-change/-/mouse-change-1.4.0.tgz#c2b77e5bfa34a43ce1445c8157a4e4dc9895c14f" - integrity sha512-vpN0s+zLL2ykyyUDh+fayu9Xkor5v/zRD9jhSqjRS1cJTGS0+oakVZzNm5n19JvvEj0you+MXlYTpNxUDQUjkQ== - dependencies: - mouse-event "^1.0.0" - -mouse-event-offset@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/mouse-event-offset/-/mouse-event-offset-3.0.2.tgz#dfd86a6e248c6ba8cad53b905d5037a2063e9984" - integrity sha512-s9sqOs5B1Ykox3Xo8b3Ss2IQju4UwlW6LSR+Q5FXWpprJ5fzMLefIIItr3PH8RwzfGy6gxs/4GAmiNuZScE25w== - -mouse-event@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/mouse-event/-/mouse-event-1.0.5.tgz#b3789edb7109997d5a932d1d01daa1543a501732" - integrity sha512-ItUxtL2IkeSKSp9cyaX2JLUuKk2uMoxBg4bbOWVd29+CskYJR9BGsUqtXenNzKbnDshvupjUewDIYVrOB6NmGw== - -mouse-wheel@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mouse-wheel/-/mouse-wheel-1.2.0.tgz#6d2903b1ea8fb48e61f1b53b9036773f042cdb5c" - integrity sha512-+OfYBiUOCTWcTECES49neZwL5AoGkXE+lFjIvzwNCnYRlso+EnfvovcBxGoyQ0yQt806eSPjS675K0EwWknXmw== - dependencies: - right-now "^1.0.0" - signum "^1.0.0" - to-px "^1.0.1" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@2.1.3, ms@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -multicast-dns@^7.2.5: - version "7.2.5" - resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" - integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== - dependencies: - dns-packet "^5.2.2" - thunky "^1.0.2" - -mumath@^3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/mumath/-/mumath-3.3.4.tgz#48d4a0f0fd8cad4e7b32096ee89b161a63d30bbf" - integrity sha512-VAFIOG6rsxoc7q/IaY3jdjmrsuX9f15KlRLYTHmixASBZkZEKC1IFqE2BC5CdhXmK6WLM1Re33z//AGmeRI6FA== - dependencies: - almost-equal "^1.1.0" - -murmurhash-js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51" - integrity sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw== - -mz@^2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" - integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== - dependencies: - any-promise "^1.0.0" - object-assign "^4.0.1" - thenify-all "^1.0.0" - -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== - -napi-build-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" - integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== - -native-promise-only@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" - integrity sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg== - -natural-compare-lite@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" - integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -needle@^2.5.2: - version "2.9.1" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.9.1.tgz#22d1dffbe3490c2b83e301f7709b6736cd8f2684" - integrity sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ== - dependencies: - debug "^3.2.6" - iconv-lite "^0.4.4" - sax "^1.2.4" - -negotiator@0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - -neo-async@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -nested-error-stacks@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.1.1.tgz#26c8a3cee6cc05fbcf1e333cd2fc3e003326c0b5" - integrity sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw== - -next-tick@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" - integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== - -ngl@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ngl/-/ngl-2.1.1.tgz#91d0ad2b1f88ae39f863d9f7ff1772faab3916ed" - integrity sha512-Bl8WCyVPfmX44YRlzjJ7i+KbfnwpKcv0r8bPX/nkHH6T/J6fPT/qgxs/WWgvlcQCC7Uc8V3CfV06lbf2bi5wqA== - dependencies: - chroma-js "^1.3.7" - promise-polyfill "^8.0.0" - signals "^1.0.0" - sprintf-js "^1.1.2" - three "^0.118.0" - -no-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" - integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== - dependencies: - lower-case "^2.0.2" - tslib "^2.0.3" - -node-abi@^3.3.0: - version "3.45.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.45.0.tgz#f568f163a3bfca5aacfce1fbeee1fa2cc98441f5" - integrity sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ== - dependencies: - semver "^7.3.5" - -node-addon-api@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.1.0.tgz#49da1ca055e109a23d537e9de43c09cca21eb762" - integrity sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA== - -node-fetch@^2.6.12: - version "2.6.12" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.12.tgz#02eb8e22074018e3d5a83016649d04df0e348fba" - integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g== - dependencies: - whatwg-url "^5.0.0" - -node-forge@^1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" - integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== - -node-releases@^2.0.12: - version "2.0.13" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" - integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== - -node-stdlib-browser@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/node-stdlib-browser/-/node-stdlib-browser-1.2.0.tgz#5ddcfdf4063b88fb282979a1aa6ddab9728d5e4c" - integrity sha512-VSjFxUhRhkyed8AtLwSCkMrJRfQ3e2lGtG3sP6FEgaLKBBbxM/dLfjRe1+iLhjvyLFW3tBQ8+c0pcOtXGbAZJg== - dependencies: - assert "^2.0.0" - browser-resolve "^2.0.0" - browserify-zlib "^0.2.0" - buffer "^5.7.1" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - create-require "^1.1.1" - crypto-browserify "^3.11.0" - domain-browser "^4.22.0" - events "^3.0.0" - https-browserify "^1.0.0" - isomorphic-timers-promises "^1.0.1" - os-browserify "^0.3.0" - path-browserify "^1.0.1" - pkg-dir "^5.0.0" - process "^0.11.10" - punycode "^1.4.1" - querystring-es3 "^0.2.1" - readable-stream "^3.6.0" - stream-browserify "^3.0.0" - stream-http "^3.2.0" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.1" - url "^0.11.0" - util "^0.12.4" - vm-browserify "^1.0.1" - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== - -normalize-svg-path@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/normalize-svg-path/-/normalize-svg-path-1.1.0.tgz#0e614eca23c39f0cffe821d6be6cd17e569a766c" - integrity sha512-r9KHKG2UUeB5LoTouwDzBy2VxXlHsiM6fyLQvnJa0S5hrhzqElH/CH7TUGhT1fVvIYBIKf3OpY4YJ4CK+iaqHg== - dependencies: - svg-arc-to-cubic-bezier "^3.0.0" - -normalize-svg-path@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/normalize-svg-path/-/normalize-svg-path-0.1.0.tgz#456360e60ece75fbef7b5d7e160480e7ffd16fe5" - integrity sha512-1/kmYej2iedi5+ROxkRESL/pI02pkg0OBnaR4hJkSIX6+ORzepwbuUXfrdZaPjysTsJInj0Rj5NuX027+dMBvA== - -normalize-url@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" - integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -nth-check@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== - dependencies: - boolbase "~1.0.0" - -nth-check@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" - integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== - dependencies: - boolbase "^1.0.0" - -number-is-integer@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-integer/-/number-is-integer-1.0.1.tgz#e59bca172ffed27318e79c7ceb6cb72c095b2152" - integrity sha512-Dq3iuiFBkrbmuQjGFFF3zckXNCQoSD37/SdSbgcBailUx6knDvDwb5CympBgcoWHy36sfS12u74MHYkXyHq6bg== - dependencies: - is-finite "^1.0.1" - -nwsapi@^2.2.0: - version "2.2.7" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" - integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== - -object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== - -object-hash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" - integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== - -object-inspect@^1.12.3, object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -object-is@^1.0.1, object-is@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" - integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -object.entries@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" - integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -object.fromentries@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" - integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -object.getownpropertydescriptors@^2.1.0: - version "2.1.6" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz#5e5c384dd209fa4efffead39e3a0512770ccc312" - integrity sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ== - dependencies: - array.prototype.reduce "^1.0.5" - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.21.2" - safe-array-concat "^1.0.0" - -object.hasown@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" - integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== - dependencies: - define-properties "^1.1.4" - es-abstract "^1.20.4" - -object.values@^1.1.0, object.values@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" - integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -obuf@^1.0.0, obuf@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" - integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== - -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -once@~1.3.0: - version "1.3.3" - resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" - integrity sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w== - dependencies: - wrappy "1" - -onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^8.0.9, open@^8.4.0: - version "8.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" - integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.3: - version "0.9.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" - integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== - dependencies: - "@aashutoshrathi/word-wrap" "^1.2.3" - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== - -p-limit@^2.0.0, p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-retry@^4.5.0: - version "4.6.2" - resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" - integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== - dependencies: - "@types/retry" "0.12.0" - retry "^0.13.1" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -pako@~1.0.5: - version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== - -param-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" - integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parenthesis@^3.1.5: - version "3.1.8" - resolved "https://registry.yarnpkg.com/parenthesis/-/parenthesis-3.1.8.tgz#3457fccb8f05db27572b841dad9d2630b912f125" - integrity sha512-KF/U8tk54BgQewkJPvB4s/US3VQY68BRDpH638+7O/n58TpnwiwnOtGIOsT2/i+M78s61BBpeC83STB88d8sqw== - -parse-asn1@^5.0.0, parse-asn1@^5.1.5: - version "5.1.6" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" - integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== - dependencies: - asn1.js "^5.2.0" - browserify-aes "^1.0.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - -parse-color@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-color/-/parse-color-1.0.0.tgz#7b748b95a83f03f16a94f535e52d7f3d94658619" - integrity sha512-fuDHYgFHJGbpGMgw9skY/bj3HL/Jrn4l/5rSspy00DoT4RyLnDcRvPxdZ+r6OFwIsgAuhDh4I09tAId4mI12bw== - dependencies: - color-convert "~0.5.0" - -parse-entities@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" - integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== - dependencies: - character-entities "^1.0.0" - character-entities-legacy "^1.0.0" - character-reference-invalid "^1.0.0" - is-alphanumerical "^1.0.0" - is-decimal "^1.0.0" - is-hexadecimal "^1.0.0" - -parse-json@^5.0.0, parse-json@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse-rect@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/parse-rect/-/parse-rect-1.2.0.tgz#e0a5b0dbaaaee637a0a1eb9779969e19399d8dec" - integrity sha512-4QZ6KYbnE6RTwg9E0HpLchUM9EZt6DnDxajFZZDSV4p/12ZJEvPO702DZpGvRYEPo00yKDys7jASi+/w7aO8LA== - dependencies: - pick-by-alias "^1.2.0" - -parse-svg-path@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/parse-svg-path/-/parse-svg-path-0.1.2.tgz#7a7ec0d1eb06fa5325c7d3e009b859a09b5d49eb" - integrity sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ== - -parse-unit@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parse-unit/-/parse-unit-1.0.1.tgz#7e1bb6d5bef3874c28e392526a2541170291eecf" - integrity sha512-hrqldJHokR3Qj88EIlV/kAyAi/G5R2+R56TBANxNMy0uPlYcttx0jnMW6Yx5KsKPSbC3KddM/7qQm3+0wEXKxg== - -parse5@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" - integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== - -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -pascal-case@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" - integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -path-browserify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-is-inside@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" - integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== - -path-to-regexp@2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" - integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pbf@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/pbf/-/pbf-3.2.1.tgz#b4c1b9e72af966cd82c6531691115cc0409ffe2a" - integrity sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ== - dependencies: - ieee754 "^1.1.12" - resolve-protobuf-schema "^2.1.0" - -pbkdf2@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" - integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== - -pick-by-alias@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pick-by-alias/-/pick-by-alias-1.2.0.tgz#5f7cb2b1f21a6e1e884a0c87855aa4a37361107b" - integrity sha512-ESj2+eBxhGrcA1azgHs7lARG5+5iLakc/6nlfbpjcLl00HuuUOIuORhYXN4D1HfvMSKuVtFQjAlnwi1JHEeDIw== - -picocolors@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" - integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pify@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== - -pirates@^4.0.1, pirates@^4.0.4: - version "4.0.6" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" - integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== - -pkg-dir@^4.1.0, pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -pkg-dir@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" - integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== - dependencies: - find-up "^5.0.0" - -pkg-up@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" - integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== - dependencies: - find-up "^3.0.0" - -plotly.js@^2.14.0: - version "2.24.3" - resolved "https://registry.yarnpkg.com/plotly.js/-/plotly.js-2.24.3.tgz#f184a37a63a6a48819ecec081200530dd9ee100a" - integrity sha512-XPlBqWXx+BHU49gQ0tVIAhTqzP7cmnOfYTXIMxju8wTJElKEaiF9qqPG88WDiIAToup2n40zhXjsyJe/JaRu2g== - dependencies: - "@plotly/d3" "3.8.1" - "@plotly/d3-sankey" "0.7.2" - "@plotly/d3-sankey-circular" "0.33.1" - "@turf/area" "^6.4.0" - "@turf/bbox" "^6.4.0" - "@turf/centroid" "^6.0.2" - canvas-fit "^1.5.0" - color-alpha "1.0.4" - color-normalize "1.5.0" - color-parse "1.3.8" - color-rgba "2.1.1" - country-regex "^1.1.0" - d3-force "^1.2.1" - d3-format "^1.4.5" - d3-geo "^1.12.1" - d3-geo-projection "^2.9.0" - d3-hierarchy "^1.1.9" - d3-interpolate "^3.0.1" - d3-time "^1.1.0" - d3-time-format "^2.2.3" - fast-isnumeric "^1.1.4" - gl-mat4 "^1.2.0" - gl-text "^1.3.1" - glslify "^7.1.1" - has-hover "^1.0.1" - has-passive-events "^1.0.0" - is-mobile "^4.0.0" - mapbox-gl "1.10.1" - mouse-change "^1.4.0" - mouse-event-offset "^3.0.2" - mouse-wheel "^1.2.0" - native-promise-only "^0.8.1" - parse-svg-path "^0.1.2" - point-in-polygon "^1.1.0" - polybooljs "^1.2.0" - probe-image-size "^7.2.3" - regl "npm:@plotly/regl@^2.1.2" - regl-error2d "^2.0.12" - regl-line2d "^3.1.2" - regl-scatter2d "^3.2.9" - regl-splom "^1.0.14" - strongly-connected-components "^1.0.1" - superscript-text "^1.0.0" - svg-path-sdf "^1.1.3" - tinycolor2 "^1.4.2" - to-px "1.0.1" - topojson-client "^3.1.0" - webgl-context "^2.2.0" - world-calendars "^1.0.3" - -point-in-polygon@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/point-in-polygon/-/point-in-polygon-1.1.0.tgz#b0af2616c01bdee341cbf2894df643387ca03357" - integrity sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw== - -polybooljs@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/polybooljs/-/polybooljs-1.2.0.tgz#b4390c2e079d4c262d3b2504c6288d95ba7a4758" - integrity sha512-mKjR5nolISvF+q2BtC1fi/llpxBPTQ3wLWN8+ldzdw2Hocpc8C72ZqnamCM4Z6z+68GVVjkeM01WJegQmZ8MEQ== - -postcss-attribute-case-insensitive@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz#03d761b24afc04c09e757e92ff53716ae8ea2741" - integrity sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ== - dependencies: - postcss-selector-parser "^6.0.10" - -postcss-browser-comments@^4: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz#bcfc86134df5807f5d3c0eefa191d42136b5e72a" - integrity sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg== - -postcss-calc@^8.2.3: - version "8.2.4" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5" - integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== - dependencies: - postcss-selector-parser "^6.0.9" - postcss-value-parser "^4.2.0" - -postcss-clamp@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/postcss-clamp/-/postcss-clamp-4.1.0.tgz#7263e95abadd8c2ba1bd911b0b5a5c9c93e02363" - integrity sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-color-functional-notation@^4.2.4: - version "4.2.4" - resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz#21a909e8d7454d3612d1659e471ce4696f28caec" - integrity sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-color-hex-alpha@^8.0.4: - version "8.0.4" - resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz#c66e2980f2fbc1a63f5b079663340ce8b55f25a5" - integrity sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-color-rebeccapurple@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz#63fdab91d878ebc4dd4b7c02619a0c3d6a56ced0" - integrity sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-colormin@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f" - integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== - dependencies: - browserslist "^4.21.4" - caniuse-api "^3.0.0" - colord "^2.9.1" - postcss-value-parser "^4.2.0" - -postcss-convert-values@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393" - integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== - dependencies: - browserslist "^4.21.4" - postcss-value-parser "^4.2.0" - -postcss-custom-media@^8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz#c8f9637edf45fef761b014c024cee013f80529ea" - integrity sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-custom-properties@^12.1.10: - version "12.1.11" - resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz#d14bb9b3989ac4d40aaa0e110b43be67ac7845cf" - integrity sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-custom-selectors@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz#1ab4684d65f30fed175520f82d223db0337239d9" - integrity sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg== - dependencies: - postcss-selector-parser "^6.0.4" - -postcss-dir-pseudo-class@^6.0.5: - version "6.0.5" - resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz#2bf31de5de76added44e0a25ecf60ae9f7c7c26c" - integrity sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA== - dependencies: - postcss-selector-parser "^6.0.10" - -postcss-discard-comments@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" - integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== - -postcss-discard-duplicates@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" - integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== - -postcss-discard-empty@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c" - integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== - -postcss-discard-overridden@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" - integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== - -postcss-double-position-gradients@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz#b96318fdb477be95997e86edd29c6e3557a49b91" - integrity sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ== - dependencies: - "@csstools/postcss-progressive-custom-properties" "^1.1.0" - postcss-value-parser "^4.2.0" - -postcss-env-function@^4.0.6: - version "4.0.6" - resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-4.0.6.tgz#7b2d24c812f540ed6eda4c81f6090416722a8e7a" - integrity sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-flexbugs-fixes@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz#2028e145313074fc9abe276cb7ca14e5401eb49d" - integrity sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ== - -postcss-focus-visible@^6.0.4: - version "6.0.4" - resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz#50c9ea9afa0ee657fb75635fabad25e18d76bf9e" - integrity sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw== - dependencies: - postcss-selector-parser "^6.0.9" - -postcss-focus-within@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz#5b1d2ec603195f3344b716c0b75f61e44e8d2e20" - integrity sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ== - dependencies: - postcss-selector-parser "^6.0.9" - -postcss-font-variant@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz#efd59b4b7ea8bb06127f2d031bfbb7f24d32fa66" - integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA== - -postcss-gap-properties@^3.0.5: - version "3.0.5" - resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz#f7e3cddcf73ee19e94ccf7cb77773f9560aa2fff" - integrity sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg== - -postcss-image-set-function@^4.0.7: - version "4.0.7" - resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz#08353bd756f1cbfb3b6e93182c7829879114481f" - integrity sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-import@^15.1.0: - version "15.1.0" - resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" - integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== - dependencies: - postcss-value-parser "^4.0.0" - read-cache "^1.0.0" - resolve "^1.1.7" - -postcss-initial@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-4.0.1.tgz#529f735f72c5724a0fb30527df6fb7ac54d7de42" - integrity sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ== - -postcss-js@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" - integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== - dependencies: - camelcase-css "^2.0.1" - -postcss-lab-function@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz#6fe4c015102ff7cd27d1bd5385582f67ebdbdc98" - integrity sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w== - dependencies: - "@csstools/postcss-progressive-custom-properties" "^1.1.0" - postcss-value-parser "^4.2.0" - -postcss-load-config@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" - integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== - dependencies: - lilconfig "^2.0.5" - yaml "^2.1.1" - -postcss-loader@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-6.2.1.tgz#0895f7346b1702103d30fdc66e4d494a93c008ef" - integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== - dependencies: - cosmiconfig "^7.0.0" - klona "^2.0.5" - semver "^7.3.5" - -postcss-logical@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-5.0.4.tgz#ec75b1ee54421acc04d5921576b7d8db6b0e6f73" - integrity sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g== - -postcss-media-minmax@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz#7140bddec173e2d6d657edbd8554a55794e2a5b5" - integrity sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ== - -postcss-merge-longhand@^5.1.7: - version "5.1.7" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16" - integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== - dependencies: - postcss-value-parser "^4.2.0" - stylehacks "^5.1.1" - -postcss-merge-rules@^5.1.4: - version "5.1.4" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c" - integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== - dependencies: - browserslist "^4.21.4" - caniuse-api "^3.0.0" - cssnano-utils "^3.1.0" - postcss-selector-parser "^6.0.5" - -postcss-minify-font-values@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b" - integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-minify-gradients@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c" - integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== - dependencies: - colord "^2.9.1" - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" - -postcss-minify-params@^5.1.4: - version "5.1.4" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352" - integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== - dependencies: - browserslist "^4.21.4" - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" - -postcss-minify-selectors@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" - integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== - dependencies: - postcss-selector-parser "^6.0.5" - -postcss-modules-extract-imports@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" - integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== - -postcss-modules-local-by-default@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" - integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== - dependencies: - icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.1.0" - -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== - dependencies: - postcss-selector-parser "^6.0.4" - -postcss-modules-values@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" - integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== - dependencies: - icss-utils "^5.0.0" - -postcss-nested@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" - integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== - dependencies: - postcss-selector-parser "^6.0.11" - -postcss-nesting@^10.2.0: - version "10.2.0" - resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-10.2.0.tgz#0b12ce0db8edfd2d8ae0aaf86427370b898890be" - integrity sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA== - dependencies: - "@csstools/selector-specificity" "^2.0.0" - postcss-selector-parser "^6.0.10" - -postcss-normalize-charset@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed" - integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== - -postcss-normalize-display-values@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8" - integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-positions@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92" - integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-repeat-style@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2" - integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-string@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228" - integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-timing-functions@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb" - integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-unicode@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030" - integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== - dependencies: - browserslist "^4.21.4" - postcss-value-parser "^4.2.0" - -postcss-normalize-url@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc" - integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== - dependencies: - normalize-url "^6.0.1" - postcss-value-parser "^4.2.0" - -postcss-normalize-whitespace@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa" - integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize/-/postcss-normalize-10.0.1.tgz#464692676b52792a06b06880a176279216540dd7" - integrity sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA== - dependencies: - "@csstools/normalize.css" "*" - postcss-browser-comments "^4" - sanitize.css "*" - -postcss-opacity-percentage@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz#5b89b35551a556e20c5d23eb5260fbfcf5245da6" - integrity sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A== - -postcss-ordered-values@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38" - integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== - dependencies: - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" - -postcss-overflow-shorthand@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz#7ed6486fec44b76f0eab15aa4866cda5d55d893e" - integrity sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-page-break@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-3.0.4.tgz#7fbf741c233621622b68d435babfb70dd8c1ee5f" - integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ== - -postcss-place@^7.0.5: - version "7.0.5" - resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-7.0.5.tgz#95dbf85fd9656a3a6e60e832b5809914236986c4" - integrity sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-preset-env@^7.0.1: - version "7.8.3" - resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz#2a50f5e612c3149cc7af75634e202a5b2ad4f1e2" - integrity sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag== - dependencies: - "@csstools/postcss-cascade-layers" "^1.1.1" - "@csstools/postcss-color-function" "^1.1.1" - "@csstools/postcss-font-format-keywords" "^1.0.1" - "@csstools/postcss-hwb-function" "^1.0.2" - "@csstools/postcss-ic-unit" "^1.0.1" - "@csstools/postcss-is-pseudo-class" "^2.0.7" - "@csstools/postcss-nested-calc" "^1.0.0" - "@csstools/postcss-normalize-display-values" "^1.0.1" - "@csstools/postcss-oklab-function" "^1.1.1" - "@csstools/postcss-progressive-custom-properties" "^1.3.0" - "@csstools/postcss-stepped-value-functions" "^1.0.1" - "@csstools/postcss-text-decoration-shorthand" "^1.0.0" - "@csstools/postcss-trigonometric-functions" "^1.0.2" - "@csstools/postcss-unset-value" "^1.0.2" - autoprefixer "^10.4.13" - browserslist "^4.21.4" - css-blank-pseudo "^3.0.3" - css-has-pseudo "^3.0.4" - css-prefers-color-scheme "^6.0.3" - cssdb "^7.1.0" - postcss-attribute-case-insensitive "^5.0.2" - postcss-clamp "^4.1.0" - postcss-color-functional-notation "^4.2.4" - postcss-color-hex-alpha "^8.0.4" - postcss-color-rebeccapurple "^7.1.1" - postcss-custom-media "^8.0.2" - postcss-custom-properties "^12.1.10" - postcss-custom-selectors "^6.0.3" - postcss-dir-pseudo-class "^6.0.5" - postcss-double-position-gradients "^3.1.2" - postcss-env-function "^4.0.6" - postcss-focus-visible "^6.0.4" - postcss-focus-within "^5.0.4" - postcss-font-variant "^5.0.0" - postcss-gap-properties "^3.0.5" - postcss-image-set-function "^4.0.7" - postcss-initial "^4.0.1" - postcss-lab-function "^4.2.1" - postcss-logical "^5.0.4" - postcss-media-minmax "^5.0.0" - postcss-nesting "^10.2.0" - postcss-opacity-percentage "^1.1.2" - postcss-overflow-shorthand "^3.0.4" - postcss-page-break "^3.0.4" - postcss-place "^7.0.5" - postcss-pseudo-class-any-link "^7.1.6" - postcss-replace-overflow-wrap "^4.0.0" - postcss-selector-not "^6.0.1" - postcss-value-parser "^4.2.0" - -postcss-pseudo-class-any-link@^7.1.6: - version "7.1.6" - resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz#2693b221902da772c278def85a4d9a64b6e617ab" - integrity sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w== - dependencies: - postcss-selector-parser "^6.0.10" - -postcss-reduce-initial@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6" - integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== - dependencies: - browserslist "^4.21.4" - caniuse-api "^3.0.0" - -postcss-reduce-transforms@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9" - integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-replace-overflow-wrap@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz#d2df6bed10b477bf9c52fab28c568b4b29ca4319" - integrity sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw== - -postcss-selector-not@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz#8f0a709bf7d4b45222793fc34409be407537556d" - integrity sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ== - dependencies: - postcss-selector-parser "^6.0.10" - -postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: - version "6.0.13" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" - integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== - dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" - -postcss-svgo@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d" - integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== - dependencies: - postcss-value-parser "^4.2.0" - svgo "^2.7.0" - -postcss-unique-selectors@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6" - integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== - dependencies: - postcss-selector-parser "^6.0.5" - -postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" - integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== - -postcss@^7.0.35: - version "7.0.39" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" - integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== - dependencies: - picocolors "^0.2.1" - source-map "^0.6.1" - -postcss@^8.3.5, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.24, postcss@^8.4.4: - version "8.4.25" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.25.tgz#4a133f5e379eda7f61e906c3b1aaa9b81292726f" - integrity sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw== - dependencies: - nanoid "^3.3.6" - picocolors "^1.0.0" - source-map-js "^1.0.2" - -potpack@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/potpack/-/potpack-1.0.2.tgz#23b99e64eb74f5741ffe7656b5b5c4ddce8dfc14" - integrity sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ== - -prebuild-install@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" - integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== - dependencies: - detect-libc "^2.0.0" - expand-template "^2.0.3" - github-from-package "0.0.0" - minimist "^1.2.3" - mkdirp-classic "^0.5.3" - napi-build-utils "^1.0.1" - node-abi "^3.3.0" - pump "^3.0.0" - rc "^1.2.7" - simple-get "^4.0.0" - tar-fs "^2.0.0" - tunnel-agent "^0.6.0" - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - -pretty-bytes@^5.3.0, pretty-bytes@^5.4.1: - version "5.6.0" - resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" - integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== - -pretty-error@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" - integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== - dependencies: - lodash "^4.17.20" - renderkid "^3.0.0" - -pretty-format@^27.0.2, pretty-format@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" - integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== - dependencies: - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^17.0.1" - -pretty-format@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.3.tgz#c9fba8cedf99ce50963a11b27d982a9ae90970d5" - integrity sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q== - dependencies: - "@jest/schemas" "^28.1.3" - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -pretty-format@^29.0.0, pretty-format@^29.6.1: - version "29.6.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.6.1.tgz#ec838c288850b7c4f9090b867c2d4f4edbfb0f3e" - integrity sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog== - dependencies: - "@jest/schemas" "^29.6.0" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -probe-image-size@^7.2.3: - version "7.2.3" - resolved "https://registry.yarnpkg.com/probe-image-size/-/probe-image-size-7.2.3.tgz#d49c64be540ec8edea538f6f585f65a9b3ab4309" - integrity sha512-HubhG4Rb2UH8YtV4ba0Vp5bQ7L78RTONYu/ujmCu5nBI8wGv24s4E9xSKBi0N1MowRpxk76pFCpJtW0KPzOK0w== - dependencies: - lodash.merge "^4.6.2" - needle "^2.5.2" - stream-parser "~0.3.1" - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== - -promise-polyfill@^8.0.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-8.3.0.tgz#9284810268138d103807b11f4e23d5e945a4db63" - integrity sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg== - -promise@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/promise/-/promise-6.1.0.tgz#2ce729f6b94b45c26891ad0602c5c90e04c6eef6" - integrity sha512-O+uwGKreKNKkshzZv2P7N64lk6EP17iXBn0PbUnNQhk+Q0AHLstiTrjkx3v5YBd3cxUe7Sq6KyRhl/A0xUjk7Q== - dependencies: - asap "~1.0.0" - -promise@^7.1.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - -promise@^8.1.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a" - integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg== - dependencies: - asap "~2.0.6" - -prompts@^2.0.1, prompts@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: - version "15.8.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" - integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.13.1" - -protocol-buffers-schema@^3.3.1: - version "3.6.0" - resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz#77bc75a48b2ff142c1ad5b5b90c94cd0fa2efd03" - integrity sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw== - -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== - dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" - -psl@^1.1.33: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== - -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^1.3.2, punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== - -punycode@^2.1.0, punycode@^2.1.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -q@^1.1.2: - version "1.5.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== - -qs@6.11.0: - version "6.11.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" - integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== - dependencies: - side-channel "^1.0.4" - -qs@^6.11.0: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - -querystring-es3@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== - -querystringify@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" - integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -quickselect@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018" - integrity sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw== - -raf@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" - integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== - dependencies: - performance-now "^2.1.0" - -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - -range-parser@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" - integrity sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A== - -range-parser@^1.2.1, range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raphael@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/raphael/-/raphael-2.3.0.tgz#eabeb09dba861a1d4cee077eaafb8c53f3131f89" - integrity sha512-w2yIenZAQnp257XUWGni4bLMVxpUpcIl7qgxEgDIXtmSypYtlNxfXWpOBxs7LBTps5sDwhRnrToJrMUrivqNTQ== - dependencies: - eve-raphael "0.5.0" - -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== - dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" - -rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -react-app-polyfill@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz#95221e0a9bd259e5ca6b177c7bb1cb6768f68fd7" - integrity sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w== - dependencies: - core-js "^3.19.2" - object-assign "^4.1.1" - promise "^8.1.0" - raf "^3.4.1" - regenerator-runtime "^0.13.9" - whatwg-fetch "^3.6.2" - -react-colorful@^5.4.0: - version "5.6.1" - resolved "https://registry.yarnpkg.com/react-colorful/-/react-colorful-5.6.1.tgz#7dc2aed2d7c72fac89694e834d179e32f3da563b" - integrity sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw== - -react-contexify@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/react-contexify/-/react-contexify-6.0.0.tgz#52959bb507d6a31224fe870ae147e211e359abe1" - integrity sha512-jMhz6yZI81Jv3UDj7TXqCkhdkCFEEmvwGCPXsQuA2ZUC8EbCuVQ6Cy8FzKMXa0y454XTDClBN2YFvvmoFlrFkg== - dependencies: - clsx "^1.2.1" - -react-dev-utils@^12.0.1: - version "12.0.1" - resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-12.0.1.tgz#ba92edb4a1f379bd46ccd6bcd4e7bc398df33e73" - integrity sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ== - dependencies: - "@babel/code-frame" "^7.16.0" - address "^1.1.2" - browserslist "^4.18.1" - chalk "^4.1.2" - cross-spawn "^7.0.3" - detect-port-alt "^1.1.6" - escape-string-regexp "^4.0.0" - filesize "^8.0.6" - find-up "^5.0.0" - fork-ts-checker-webpack-plugin "^6.5.0" - global-modules "^2.0.0" - globby "^11.0.4" - gzip-size "^6.0.0" - immer "^9.0.7" - is-root "^2.1.0" - loader-utils "^3.2.0" - open "^8.4.0" - pkg-up "^3.1.0" - prompts "^2.4.2" - react-error-overlay "^6.0.11" - recursive-readdir "^2.2.2" - shell-quote "^1.7.3" - strip-ansi "^6.0.1" - text-table "^0.2.0" - -react-device-detect@^2.2.2: - version "2.2.3" - resolved "https://registry.yarnpkg.com/react-device-detect/-/react-device-detect-2.2.3.tgz#97a7ae767cdd004e7c3578260f48cf70c036e7ca" - integrity sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw== - dependencies: - ua-parser-js "^1.0.33" - -react-dom@^18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" - integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== - dependencies: - loose-envify "^1.1.0" - scheduler "^0.23.0" - -react-dropzone@^11.7.1: - version "11.7.1" - resolved "https://registry.yarnpkg.com/react-dropzone/-/react-dropzone-11.7.1.tgz#3851bb75b26af0bf1b17ce1449fd980e643b9356" - integrity sha512-zxCMwhfPy1olUEbw3FLNPLhAm/HnaYH5aELIEglRbqabizKAdHs0h+WuyOpmA+v1JXn0++fpQDdNfUagWt5hJQ== - dependencies: - attr-accept "^2.2.2" - file-selector "^0.4.0" - prop-types "^15.8.1" - -react-error-overlay@^6.0.11: - version "6.0.11" - resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb" - integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== - -react-intersection-observer@^8.32.1: - version "8.34.0" - resolved "https://registry.yarnpkg.com/react-intersection-observer/-/react-intersection-observer-8.34.0.tgz#6f6e67831c52e6233f6b6cc7eb55814820137c42" - integrity sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw== - -react-is@^16.13.1, react-is@^16.7.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== - -react-is@^17.0.1, react-is@^17.0.2: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" - integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== - -react-is@^18.0.0, react-is@^18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" - integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== - -react-lifecycles-compat@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" - integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== - -react-plotly.js@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/react-plotly.js/-/react-plotly.js-2.6.0.tgz#ad6b68ee64f1b5cfa142ee92c59687f9c2c09209" - integrity sha512-g93xcyhAVCSt9kV1svqG1clAEdL6k3U+jjuSzfTV7owaSU9Go6Ph8bl25J+jKfKvIGAEYpe4qj++WHJuc9IaeA== - dependencies: - prop-types "^15.8.1" - -react-redux@^7.2.1, react-redux@^7.2.6: - version "7.2.9" - resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.9.tgz#09488fbb9416a4efe3735b7235055442b042481d" - integrity sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ== - dependencies: - "@babel/runtime" "^7.15.4" - "@types/react-redux" "^7.1.20" - hoist-non-react-statics "^3.3.2" - loose-envify "^1.4.0" - prop-types "^15.7.2" - react-is "^17.0.2" - -react-refresh@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046" - integrity sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A== - -react-refresh@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" - integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== - -react-router-dom@^6.4.1: - version "6.14.1" - resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-6.14.1.tgz#0ad7ba7abdf75baa61169d49f096f0494907a36f" - integrity sha512-ssF6M5UkQjHK70fgukCJyjlda0Dgono2QGwqGvuk7D+EDGHdacEN3Yke2LTMjkrpHuFwBfDFsEjGVXBDmL+bWw== - dependencies: - "@remix-run/router" "1.7.1" - react-router "6.14.1" - -react-router@6.14.1: - version "6.14.1" - resolved "https://registry.yarnpkg.com/react-router/-/react-router-6.14.1.tgz#5e82bcdabf21add859dc04b1859f91066b3a5810" - integrity sha512-U4PfgvG55LdvbQjg5Y9QRWyVxIdO1LlpYT7x+tMAxd9/vmiPuJhIwdxZuIQLN/9e3O4KFDHYfR9gzGeYMasW8g== - dependencies: - "@remix-run/router" "1.7.1" - -react-scripts@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-5.0.1.tgz#6285dbd65a8ba6e49ca8d651ce30645a6d980003" - integrity sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ== - dependencies: - "@babel/core" "^7.16.0" - "@pmmmwh/react-refresh-webpack-plugin" "^0.5.3" - "@svgr/webpack" "^5.5.0" - babel-jest "^27.4.2" - babel-loader "^8.2.3" - babel-plugin-named-asset-import "^0.3.8" - babel-preset-react-app "^10.0.1" - bfj "^7.0.2" - browserslist "^4.18.1" - camelcase "^6.2.1" - case-sensitive-paths-webpack-plugin "^2.4.0" - css-loader "^6.5.1" - css-minimizer-webpack-plugin "^3.2.0" - dotenv "^10.0.0" - dotenv-expand "^5.1.0" - eslint "^8.3.0" - eslint-config-react-app "^7.0.1" - eslint-webpack-plugin "^3.1.1" - file-loader "^6.2.0" - fs-extra "^10.0.0" - html-webpack-plugin "^5.5.0" - identity-obj-proxy "^3.0.0" - jest "^27.4.3" - jest-resolve "^27.4.2" - jest-watch-typeahead "^1.0.0" - mini-css-extract-plugin "^2.4.5" - postcss "^8.4.4" - postcss-flexbugs-fixes "^5.0.2" - postcss-loader "^6.2.1" - postcss-normalize "^10.0.1" - postcss-preset-env "^7.0.1" - prompts "^2.4.2" - react-app-polyfill "^3.0.0" - react-dev-utils "^12.0.1" - react-refresh "^0.11.0" - resolve "^1.20.0" - resolve-url-loader "^4.0.0" - sass-loader "^12.3.0" - semver "^7.3.5" - source-map-loader "^3.0.0" - style-loader "^3.3.1" - tailwindcss "^3.0.2" - terser-webpack-plugin "^5.2.5" - webpack "^5.64.4" - webpack-dev-server "^4.6.0" - webpack-manifest-plugin "^4.0.2" - workbox-webpack-plugin "^6.4.1" - optionalDependencies: - fsevents "^2.3.2" - -react-transition-group@^4.4.5: - version "4.4.5" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" - integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== - dependencies: - "@babel/runtime" "^7.5.5" - dom-helpers "^5.0.1" - loose-envify "^1.4.0" - prop-types "^15.6.2" - -react-virtualized@^9.22.3: - version "9.22.5" - resolved "https://registry.yarnpkg.com/react-virtualized/-/react-virtualized-9.22.5.tgz#bfb96fed519de378b50d8c0064b92994b3b91620" - integrity sha512-YqQMRzlVANBv1L/7r63OHa2b0ZsAaDp1UhVNEdUaXI8A5u6hTpA5NYtUueLH2rFuY/27mTGIBl7ZhqFKzw18YQ== - dependencies: - "@babel/runtime" "^7.7.2" - clsx "^1.0.4" - dom-helpers "^5.1.3" - loose-envify "^1.4.0" - prop-types "^15.7.2" - react-lifecycles-compat "^3.0.4" - -react@^18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" - integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== - dependencies: - loose-envify "^1.1.0" - -read-cache@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" - integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== - dependencies: - pify "^2.3.0" - -"readable-stream@>=1.0.33-1 <1.1.0-0": - version "1.0.34" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" - integrity sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.2.2, readable-stream@^2.3.5, readable-stream@~2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -recursive-readdir@^2.2.2: - version "2.2.3" - resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.3.tgz#e726f328c0d69153bcabd5c322d3195252379372" - integrity sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA== - dependencies: - minimatch "^3.0.5" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -redux-logger@^3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/redux-logger/-/redux-logger-3.0.6.tgz#f7555966f3098f3c88604c449cf0baf5778274bf" - integrity sha512-JoCIok7bg/XpqA1JqCqXFypuqBbQzGQySrhFzewB7ThcnysTO30l4VCst86AuB9T9tuT03MAA56Jw2PNhRSNCg== - dependencies: - deep-diff "^0.3.5" - -redux-saga@^1.1.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/redux-saga/-/redux-saga-1.2.3.tgz#7362f78a0235868daf1210f8862a95906ac018a1" - integrity sha512-HDe0wTR5nhd8Xr5xjGzoyTbdAw6rjy1GDplFt3JKtKN8/MnkQSRqK/n6aQQhpw5NI4ekDVOaW+w4sdxPBaCoTQ== - dependencies: - "@redux-saga/core" "^1.2.3" - -redux-thunk@^2.3.0, redux-thunk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.2.tgz#b9d05d11994b99f7a91ea223e8b04cf0afa5ef3b" - integrity sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q== - -redux@^4.0.0, redux@^4.0.4, redux@^4.0.5, redux@^4.1.2, redux@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.1.tgz#c08f4306826c49b5e9dc901dee0452ea8fce6197" - integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== - dependencies: - "@babel/runtime" "^7.9.2" - -regenerate-unicode-properties@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" - integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== - dependencies: - regenerate "^1.4.2" - -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - -regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.7, regenerator-runtime@^0.13.9: - version "0.13.11" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== - -regenerator-transform@^0.15.1: - version "0.15.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" - integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== - dependencies: - "@babel/runtime" "^7.8.4" - -regex-parser@^2.2.11: - version "2.2.11" - resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58" - integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q== - -regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" - integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - functions-have-names "^1.2.3" - -regexpu-core@^5.3.1: - version "5.3.2" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" - integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== - dependencies: - "@babel/regjsgen" "^0.8.0" - regenerate "^1.4.2" - regenerate-unicode-properties "^10.1.0" - regjsparser "^0.9.1" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.1.0" - -registry-auth-token@3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" - integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ== - dependencies: - rc "^1.1.6" - safe-buffer "^5.0.1" - -registry-url@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" - integrity sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA== - dependencies: - rc "^1.0.1" - -regjsparser@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" - integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== - dependencies: - jsesc "~0.5.0" - -regl-error2d@^2.0.12: - version "2.0.12" - resolved "https://registry.yarnpkg.com/regl-error2d/-/regl-error2d-2.0.12.tgz#3b976e13fe641d5242a154fcacc80aecfa0a9881" - integrity sha512-r7BUprZoPO9AbyqM5qlJesrSRkl+hZnVKWKsVp7YhOl/3RIpi4UDGASGJY0puQ96u5fBYw/OlqV24IGcgJ0McA== - dependencies: - array-bounds "^1.0.1" - color-normalize "^1.5.0" - flatten-vertex-data "^1.0.2" - object-assign "^4.1.1" - pick-by-alias "^1.2.0" - to-float32 "^1.1.0" - update-diff "^1.1.0" - -regl-line2d@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/regl-line2d/-/regl-line2d-3.1.2.tgz#2bedef7f44c1f7fae75c90f9918258723ca84c1c" - integrity sha512-nmT7WWS/WxmXAQMkgaMKWXaVmwJ65KCrjbqHGOUjjqQi6shfT96YbBOvelXwO9hG7/hjvbzjtQ2UO0L3e7YaXQ== - dependencies: - array-bounds "^1.0.1" - array-find-index "^1.0.2" - array-normalize "^1.1.4" - color-normalize "^1.5.0" - earcut "^2.1.5" - es6-weak-map "^2.0.3" - flatten-vertex-data "^1.0.2" - glslify "^7.0.0" - object-assign "^4.1.1" - parse-rect "^1.2.0" - pick-by-alias "^1.2.0" - to-float32 "^1.1.0" - -regl-scatter2d@^3.2.3, regl-scatter2d@^3.2.9: - version "3.2.9" - resolved "https://registry.yarnpkg.com/regl-scatter2d/-/regl-scatter2d-3.2.9.tgz#cd27b014c355e80d96fb2f273b563fd8f1b094f0" - integrity sha512-PNrXs+xaCClKpiB2b3HZ2j3qXQXhC5kcTh/Nfgx9rLO0EpEhab0BSQDqAsbdbpdf+pSHSJvbgitB7ulbGeQ+Fg== - dependencies: - "@plotly/point-cluster" "^3.1.9" - array-range "^1.0.1" - array-rearrange "^2.2.2" - clamp "^1.0.1" - color-id "^1.1.0" - color-normalize "^1.5.0" - color-rgba "^2.1.1" - flatten-vertex-data "^1.0.2" - glslify "^7.0.0" - is-iexplorer "^1.0.0" - object-assign "^4.1.1" - parse-rect "^1.2.0" - pick-by-alias "^1.2.0" - to-float32 "^1.1.0" - update-diff "^1.1.0" - -regl-splom@^1.0.14: - version "1.0.14" - resolved "https://registry.yarnpkg.com/regl-splom/-/regl-splom-1.0.14.tgz#58800b7bbd7576aa323499a1966868a6c9ea1456" - integrity sha512-OiLqjmPRYbd7kDlHC6/zDf6L8lxgDC65BhC8JirhP4ykrK4x22ZyS+BnY8EUinXKDeMgmpRwCvUmk7BK4Nweuw== - dependencies: - array-bounds "^1.0.1" - array-range "^1.0.1" - color-alpha "^1.0.4" - flatten-vertex-data "^1.0.2" - parse-rect "^1.2.0" - pick-by-alias "^1.2.0" - raf "^3.4.1" - regl-scatter2d "^3.2.3" - -regl@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/regl/-/regl-2.1.0.tgz#7dae71e9ff20f29c4f42f510c70cd92ebb6b657c" - integrity sha512-oWUce/aVoEvW5l2V0LK7O5KJMzUSKeiOwFuJehzpSFd43dO5spP9r+sSUfhKtsky4u6MCqWJaRL+abzExynfTg== +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 8 + cacheKey: 10c0 + +"@aashutoshrathi/word-wrap@npm:^1.2.3": + version: 1.2.6 + resolution: "@aashutoshrathi/word-wrap@npm:1.2.6" + checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f + languageName: node + linkType: hard + +"@adobe/css-tools@npm:^4.0.1": + version: 4.2.0 + resolution: "@adobe/css-tools@npm:4.2.0" + checksum: b8dbfd9c54df73a398e9b20c922abe26c67732e16afc50668402af0e3d101409e0c944baf69bf814343eb8639014637b96f209426088b06943cea288c1ef1486 + languageName: node + linkType: hard + +"@alloc/quick-lru@npm:^5.2.0": + version: 5.2.0 + resolution: "@alloc/quick-lru@npm:5.2.0" + checksum: 7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92 + languageName: node + linkType: hard + +"@ampproject/remapping@npm:^2.2.0": + version: 2.2.1 + resolution: "@ampproject/remapping@npm:2.2.1" + dependencies: + "@jridgewell/gen-mapping": "npm:^0.3.0" + "@jridgewell/trace-mapping": "npm:^0.3.9" + checksum: 92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43 + languageName: node + linkType: hard + +"@apideck/better-ajv-errors@npm:^0.3.1": + version: 0.3.6 + resolution: "@apideck/better-ajv-errors@npm:0.3.6" + dependencies: + json-schema: "npm:^0.4.0" + jsonpointer: "npm:^5.0.0" + leven: "npm:^3.1.0" + peerDependencies: + ajv: ">=8" + checksum: f89a1e16ecbc2ada91c56d4391c8345471e385f0b9c38d62c3bccac40ec94482cdfa496d4c2fe0af411e9851a9931c0d5042a8040f52213f603ba6b6fd7f949b + languageName: node + linkType: hard + +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.0, @babel/code-frame@npm:^7.22.5, @babel/code-frame@npm:^7.8.3": + version: 7.22.5 + resolution: "@babel/code-frame@npm:7.22.5" + dependencies: + "@babel/highlight": "npm:^7.22.5" + checksum: 0b6c5eaf9e58be7140ac790b7bdf8148e8a24e26502dcaa50f157259c083b0584285748fd90d342ae311a5bb1eaad7835aec625296d2b46853464f9bd8991e28 + languageName: node + linkType: hard + +"@babel/code-frame@npm:^7.22.13": + version: 7.23.5 + resolution: "@babel/code-frame@npm:7.23.5" + dependencies: + "@babel/highlight": "npm:^7.23.4" + chalk: "npm:^2.4.2" + checksum: a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6 + languageName: node + linkType: hard + +"@babel/compat-data@npm:^7.22.5, @babel/compat-data@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/compat-data@npm:7.22.6" + checksum: 09971bda48c46e19d8f1d8c817ebd60ccca2ca30b90324ba6227cfa3765847a9ddd7730481ec81149a2270e2c90c2674e41ebbb73258e48c37922171ffe1e6dc + languageName: node + linkType: hard + +"@babel/core@npm:^7.1.0, @babel/core@npm:^7.11.1, @babel/core@npm:^7.12.3, @babel/core@npm:^7.16.0, @babel/core@npm:^7.21.3, @babel/core@npm:^7.22.5, @babel/core@npm:^7.7.2, @babel/core@npm:^7.8.0": + version: 7.22.8 + resolution: "@babel/core@npm:7.22.8" + dependencies: + "@ampproject/remapping": "npm:^2.2.0" + "@babel/code-frame": "npm:^7.22.5" + "@babel/generator": "npm:^7.22.7" + "@babel/helper-compilation-targets": "npm:^7.22.6" + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helpers": "npm:^7.22.6" + "@babel/parser": "npm:^7.22.7" + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.8" + "@babel/types": "npm:^7.22.5" + "@nicolo-ribaudo/semver-v6": "npm:^6.3.3" + convert-source-map: "npm:^1.7.0" + debug: "npm:^4.1.0" + gensync: "npm:^1.0.0-beta.2" + json5: "npm:^2.2.2" + checksum: d506ac42eaf2f7c3c190cc91a1413bb9ae5c067e06268fa962cb5fd0e67fc0feb48c7fa51527da378e3cc3a92a13a3420bae877df89207d880c839b6bb73e662 + languageName: node + linkType: hard + +"@babel/eslint-parser@npm:^7.16.3": + version: 7.22.7 + resolution: "@babel/eslint-parser@npm:7.22.7" + dependencies: + "@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1" + "@nicolo-ribaudo/semver-v6": "npm:^6.3.3" + eslint-visitor-keys: "npm:^2.1.0" + peerDependencies: + "@babel/core": ">=7.11.0" + eslint: ^7.5.0 || ^8.0.0 + checksum: 888de7fdc1cd8a4cd7a798828717bd4b4fa52bd8db7e16e55c17da68f516c0524d9bddbbe71132b34c61894cf65cb97b735b2525da1cbff7c36158d60a9c11f2 + languageName: node + linkType: hard + +"@babel/generator@npm:^7.22.7, @babel/generator@npm:^7.7.2": + version: 7.22.7 + resolution: "@babel/generator@npm:7.22.7" + dependencies: + "@babel/types": "npm:^7.22.5" + "@jridgewell/gen-mapping": "npm:^0.3.2" + "@jridgewell/trace-mapping": "npm:^0.3.17" + jsesc: "npm:^2.5.1" + checksum: 7eb106916d782d397d0d4370bb4b23229229481218693a55f3fc0b756d4e9dc39cee41872f1735decb0b34be8dbb98c4488d5f7abbf6e40826d5dcac045b1f12 + languageName: node + linkType: hard + +"@babel/helper-annotate-as-pure@npm:^7.18.6, @babel/helper-annotate-as-pure@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: 5a80dc364ddda26b334bbbc0f6426cab647381555ef7d0cd32eb284e35b867c012ce6ce7d52a64672ed71383099c99d32765b3d260626527bb0e3470b0f58e45 + languageName: node + linkType: hard + +"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: 73a61a56364849770d5569264ba0a5f06035387cafd219d1ae26077f80a1dfb75f240e6abcd991c655641ad8fe066b964261942b4086ba2efc946c807c9d1698 + languageName: node + linkType: hard + +"@babel/helper-compilation-targets@npm:^7.22.5, @babel/helper-compilation-targets@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/helper-compilation-targets@npm:7.22.6" + dependencies: + "@babel/compat-data": "npm:^7.22.6" + "@babel/helper-validator-option": "npm:^7.22.5" + "@nicolo-ribaudo/semver-v6": "npm:^6.3.3" + browserslist: "npm:^4.21.9" + lru-cache: "npm:^5.1.1" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a37ae986bbfc61bc1adebe05a415ac03e0e8100e4b1ccbfd6ed90ffe201947beae9d7bd2cebe562199e1326797f908153d7b544520786eecf99fccb9db3c0fa9 + languageName: node + linkType: hard + +"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.22.5, @babel/helper-create-class-features-plugin@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/helper-create-class-features-plugin@npm:7.22.6" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-member-expression-to-functions": "npm:^7.22.5" + "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/helper-replace-supers": "npm:^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.6" + "@nicolo-ribaudo/semver-v6": "npm:^6.3.3" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 4411b40bad0b4f1927eaaabbedd0b75cb9a7c18d18c3c2139dcf66a59352092632d8e38fe462337206167f11a6d4a70459ecc06a0ae30400dcbe56773fe3617d + languageName: node + linkType: hard + +"@babel/helper-create-class-features-plugin@npm:^7.21.0": + version: 7.23.7 + resolution: "@babel/helper-create-class-features-plugin@npm:7.23.7" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-environment-visitor": "npm:^7.22.20" + "@babel/helper-function-name": "npm:^7.23.0" + "@babel/helper-member-expression-to-functions": "npm:^7.23.0" + "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/helper-replace-supers": "npm:^7.22.20" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.6" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: f594e99f97211bda5530756712751c1c4ce6063bb376f1f38cc540309a086bd0f4b62aff969ddb29e7310e936c2d3745934a2b292c4710be8112e57fbe3f3381 + languageName: node + linkType: hard + +"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.5": + version: 7.22.6 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.6" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@nicolo-ribaudo/semver-v6": "npm:^6.3.3" + regexpu-core: "npm:^5.3.1" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 09e195edf82c94d04fe4a53dc2dc38f9bac499625e99da21e2b16b3f3f765971ce903b7621fe868e496117a5084fd513d05b5ca58b57f46acc641af84eedc68d + languageName: node + linkType: hard + +"@babel/helper-define-polyfill-provider@npm:^0.4.1": + version: 0.4.1 + resolution: "@babel/helper-define-polyfill-provider@npm:0.4.1" + dependencies: + "@babel/helper-compilation-targets": "npm:^7.22.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" + debug: "npm:^4.1.1" + lodash.debounce: "npm:^4.0.8" + resolve: "npm:^1.14.2" + peerDependencies: + "@babel/core": ^7.4.0-0 + checksum: 402a8ca29354f01640d7226587576479507093437239ec1ba283c190986442a8759e5043859df9795c07c43d9b99d0685ee36ff77974c5be9a0cbec36a8283af + languageName: node + linkType: hard + +"@babel/helper-environment-visitor@npm:^7.22.20": + version: 7.22.20 + resolution: "@babel/helper-environment-visitor@npm:7.22.20" + checksum: e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94 + languageName: node + linkType: hard + +"@babel/helper-environment-visitor@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-environment-visitor@npm:7.22.5" + checksum: c9377464c1839741a0a77bbad56de94c896f4313eb034c988fc2ab01293e7c4027244c93b4256606c5f4e34c68cf599a7d31a548d537577c7da836bbca40551b + languageName: node + linkType: hard + +"@babel/helper-function-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-function-name@npm:7.22.5" + dependencies: + "@babel/template": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: 3ce2e87967fe54aa463d279150ddda0dae3b5bc3f8c2773b90670b553b61e8fe62da7edcd7b1e1891c5b25af4924a6700dad2e9d8249b910a5bf7caa2eaf4c13 + languageName: node + linkType: hard + +"@babel/helper-function-name@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/helper-function-name@npm:7.23.0" + dependencies: + "@babel/template": "npm:^7.22.15" + "@babel/types": "npm:^7.23.0" + checksum: d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428 + languageName: node + linkType: hard + +"@babel/helper-hoist-variables@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-hoist-variables@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: 60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208 + languageName: node + linkType: hard + +"@babel/helper-member-expression-to-functions@npm:^7.22.15, @babel/helper-member-expression-to-functions@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0" + dependencies: + "@babel/types": "npm:^7.23.0" + checksum: b810daddf093ffd0802f1429052349ed9ea08ef7d0c56da34ffbcdecbdafac86f95bdea2fe30e0e0e629febc7dd41b56cb5eacc10d1a44336d37b755dac31fa4 + languageName: node + linkType: hard + +"@babel/helper-member-expression-to-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-member-expression-to-functions@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: c04a71976b2508c6f1fa46562439b74970cea37958e450bcd59363b9c62ac49fb8e3cef544b08264b1d710b3f36214486cb7e1102e4f1ee8e1c2878b5eebcc75 + languageName: node + linkType: hard + +"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-module-imports@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: 04f8c0586c485c33017c63e0fc5fc16bd33b883cef3c88e4b3a8bf7bc807b3f9a7bcb9372fbcc01c0a539a5d1cdb477e7bdec77e250669edab00f796683b6b07 + languageName: node + linkType: hard + +"@babel/helper-module-transforms@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-module-transforms@npm:7.22.5" + dependencies: + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-module-imports": "npm:^7.22.5" + "@babel/helper-simple-access": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.5" + "@babel/helper-validator-identifier": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: a28cf9a91ed657392f75ada08d96a46e8d0df420b7d5d1ac0bb1633d1404807d0cb6e6a3b0666c747d30f378fbb34985d30c6f25e2fcdd69dc58656e47aafe92 + languageName: node + linkType: hard + +"@babel/helper-optimise-call-expression@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-optimise-call-expression@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: 31b41a764fc3c585196cf5b776b70cf4705c132e4ce9723f39871f215f2ddbfb2e28a62f9917610f67c8216c1080482b9b05f65dd195dae2a52cef461f2ac7b8 + languageName: node + linkType: hard + +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": + version: 7.22.5 + resolution: "@babel/helper-plugin-utils@npm:7.22.5" + checksum: d2c4bfe2fa91058bcdee4f4e57a3f4933aed7af843acfd169cd6179fab8d13c1d636474ecabb2af107dc77462c7e893199aa26632bac1c6d7e025a17cbb9d20d + languageName: node + linkType: hard + +"@babel/helper-remap-async-to-generator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-remap-async-to-generator@npm:7.22.5" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-wrap-function": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a4ec78db69db61dbc65eb5b07c8ab4e836caf89a3a8b2983c2afcde805c11f5c660e0932739315d9f08d7ac442360822227ce9f9fdd9436993d342de9a043cf5 + languageName: node + linkType: hard + +"@babel/helper-replace-supers@npm:^7.22.20": + version: 7.22.20 + resolution: "@babel/helper-replace-supers@npm:7.22.20" + dependencies: + "@babel/helper-environment-visitor": "npm:^7.22.20" + "@babel/helper-member-expression-to-functions": "npm:^7.22.15" + "@babel/helper-optimise-call-expression": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 6b0858811ad46873817c90c805015d63300e003c5a85c147a17d9845fa2558a02047c3cc1f07767af59014b2dd0fa75b503e5bc36e917f360e9b67bb6f1e79f4 + languageName: node + linkType: hard + +"@babel/helper-replace-supers@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-replace-supers@npm:7.22.5" + dependencies: + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-member-expression-to-functions": "npm:^7.22.5" + "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: 0590aa037340e069de866f313eca7d7f0031bd95b56e5182bef79c05a97e763a6098fa4ab77fed8e3798e832bb6a3230bea438e669bc4d90112f09e841bff064 + languageName: node + linkType: hard + +"@babel/helper-simple-access@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-simple-access@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: f0cf81a30ba3d09a625fd50e5a9069e575c5b6719234e04ee74247057f8104beca89ed03e9217b6e9b0493434cedc18c5ecca4cea6244990836f1f893e140369 + languageName: node + linkType: hard + +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: ab7fa2aa709ab49bb8cd86515a1e715a3108c4bb9a616965ba76b43dc346dee66d1004ccf4d222b596b6224e43e04cbc5c3a34459501b388451f8c589fbc3691 + languageName: node + linkType: hard + +"@babel/helper-split-export-declaration@npm:^7.22.5, @babel/helper-split-export-declaration@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/helper-split-export-declaration@npm:7.22.6" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: d83e4b623eaa9622c267d3c83583b72f3aac567dc393dda18e559d79187961cb29ae9c57b2664137fc3d19508370b12ec6a81d28af73a50e0846819cb21c6e44 + languageName: node + linkType: hard + +"@babel/helper-string-parser@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-string-parser@npm:7.22.5" + checksum: 6b0ff8af724377ec41e5587fffa7605198da74cb8e7d8d48a36826df0c0ba210eb9fedb3d9bef4d541156e0bd11040f021945a6cbb731ccec4aefb4affa17aa4 + languageName: node + linkType: hard + +"@babel/helper-string-parser@npm:^7.23.4": + version: 7.23.4 + resolution: "@babel/helper-string-parser@npm:7.23.4" + checksum: f348d5637ad70b6b54b026d6544bd9040f78d24e7ec245a0fc42293968181f6ae9879c22d89744730d246ce8ec53588f716f102addd4df8bbc79b73ea10004ac + languageName: node + linkType: hard + +"@babel/helper-validator-identifier@npm:^7.22.20": + version: 7.22.20 + resolution: "@babel/helper-validator-identifier@npm:7.22.20" + checksum: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e + languageName: node + linkType: hard + +"@babel/helper-validator-identifier@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-validator-identifier@npm:7.22.5" + checksum: 2ff1d3833154d17ccf773b8a71fdc0cd0e7356aa8033179d0e3133787dfb33d97796cbff8b92a97c56268205337dfc720227aeddc677c1bc08ae1b67a95252d7 + languageName: node + linkType: hard + +"@babel/helper-validator-option@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-validator-option@npm:7.22.5" + checksum: 23e310bf1b90d085b1ae250f31d423fb6cc004da882f0d3409266e5e4c7fd41ed0a172283a6a9a16083c5f2e11f987b32c815c80c60d9a948e23dd6dcf2e0437 + languageName: node + linkType: hard + +"@babel/helper-wrap-function@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-wrap-function@npm:7.22.5" + dependencies: + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: 34aa811cc433a3fe2d1bcb7c703ad57c523fd9cad5df8da0651175569cb63dc95b1557305735d922d94a4420e11b2a87d65dbe7f14b49b69e2c7a9c0fdea5647 + languageName: node + linkType: hard + +"@babel/helpers@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/helpers@npm:7.22.6" + dependencies: + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.6" + "@babel/types": "npm:^7.22.5" + checksum: 8c03c19802d0fcc78d00d1eaa9ddab28f97f0c78a5d570762800e86f08c6f41750ad61e20cdede977a56173edf85e7175f1fd804eb6ef817280f064d3a3ca514 + languageName: node + linkType: hard + +"@babel/highlight@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/highlight@npm:7.22.5" + dependencies: + "@babel/helper-validator-identifier": "npm:^7.22.5" + chalk: "npm:^2.0.0" + js-tokens: "npm:^4.0.0" + checksum: e8cc07b5de76a9bf779982096ccbbe5a867c36d3786b26151eb570d9344a68af8aa065ed97d431e0d18ba55fe792c7c4301e0d62afff7a52ee0d20678443be54 + languageName: node + linkType: hard + +"@babel/highlight@npm:^7.23.4": + version: 7.23.4 + resolution: "@babel/highlight@npm:7.23.4" + dependencies: + "@babel/helper-validator-identifier": "npm:^7.22.20" + chalk: "npm:^2.4.2" + js-tokens: "npm:^4.0.0" + checksum: fbff9fcb2f5539289c3c097d130e852afd10d89a3a08ac0b5ebebbc055cc84a4bcc3dcfed463d488cde12dd0902ef1858279e31d7349b2e8cee43913744bda33 + languageName: node + linkType: hard + +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.5, @babel/parser@npm:^7.22.7": + version: 7.22.7 + resolution: "@babel/parser@npm:7.22.7" + bin: + parser: ./bin/babel-parser.js + checksum: d2bdf212644c39de58f1216540ec5aca4a05ffbec07c904eaaef8575dd9546b55345b91dcc0d306be4adbb717401ce321027bac7e2f7babfd66794c96243bb79 + languageName: node + linkType: hard + +"@babel/parser@npm:^7.22.15": + version: 7.23.6 + resolution: "@babel/parser@npm:7.23.6" + bin: + parser: ./bin/babel-parser.js + checksum: 6f76cd5ccae1fa9bcab3525b0865c6222e9c1d22f87abc69f28c5c7b2c8816a13361f5bd06bddbd5faf903f7320a8feba02545c981468acec45d12a03db7755e + languageName: node + linkType: hard + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 573bd9b1984d74e3663cb7f5f317646223020107681e8dcffe68b041bd620ebbb35c0cc05f4ee20f2da502d02a9633e2b477596e71f4f7802f72c02e948f38af + languageName: node + linkType: hard + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/plugin-transform-optional-chaining": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.13.0 + checksum: 1e38dcd28d2dc5012f96550a3fa1330d71fc923607ceccc91e83c0b7dd3eaeb4d8c632946909c389964acb3e35c888f81653e2d24f7cc02a83fe39a64ca59e89 + languageName: node + linkType: hard + +"@babel/plugin-proposal-class-properties@npm:^7.16.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.18.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d5172ac6c9948cdfc387e94f3493ad86cb04035cf7433f86b5d358270b1b9752dc25e176db0c5d65892a246aca7bdb4636672e15626d7a7de4bc0bd0040168d9 + languageName: node + linkType: hard + +"@babel/plugin-proposal-decorators@npm:^7.16.4": + version: 7.22.7 + resolution: "@babel/plugin-proposal-decorators@npm:7.22.7" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.22.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-replace-supers": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.6" + "@babel/plugin-syntax-decorators": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 80a0db66b04fb09afb57abcc5dbde89659f076b4579656e4a0670510d9de7c68aa17fff7479f42078d42b00ada546228a55694a9bd6a050bc57997d1f7feb008 + languageName: node + linkType: hard + +"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.16.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f6629158196ee9f16295d16db75825092ef543f8b98f4dfdd516e642a0430c7b1d69319ee676d35485d9b86a53ade6de0b883490d44de6d4336d38cdeccbe0bf + languageName: node + linkType: hard + +"@babel/plugin-proposal-numeric-separator@npm:^7.16.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-numeric-separator@npm:7.18.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a83a65c6ec0d2293d830e9db61406d246f22d8ea03583d68460cb1b6330c6699320acce1b45f66ba3c357830720e49267e3d99f95088be457c66e6450fbfe3fa + languageName: node + linkType: hard + +"@babel/plugin-proposal-optional-chaining@npm:^7.16.0": + version: 7.21.0 + resolution: "@babel/plugin-proposal-optional-chaining@npm:7.21.0" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.20.0" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b524a61b1de3f3ad287cd1e98c2a7f662178d21cd02205b0d615512e475f0159fa1b569fa7e34c8ed67baef689c0136fa20ba7d1bf058d186d30736a581a723f + languageName: node + linkType: hard + +"@babel/plugin-proposal-private-methods@npm:^7.16.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-private-methods@npm:7.18.6" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.18.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1c273d0ec3d49d0fe80bd754ec0191016e5b3ab4fb1e162ac0c014e9d3c1517a5d973afbf8b6dc9f9c98a8605c79e5f9e8b5ee158a4313fa68d1ff7b02084b6a + languageName: node + linkType: hard + +"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": + version: 7.21.0-placeholder-for-preset-env.2 + resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e605e0070da087f6c35579499e65801179a521b6842c15181a1e305c04fded2393f11c1efd09b087be7f8b083d1b75e8f3efcbc1292b4f60d3369e14812cff63 + languageName: node + linkType: hard + +"@babel/plugin-proposal-private-property-in-object@npm:^7.16.0": + version: 7.21.11 + resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.11" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.18.6" + "@babel/helper-create-class-features-plugin": "npm:^7.21.0" + "@babel/helper-plugin-utils": "npm:^7.20.2" + "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3c8c9ea175101b1cbb2b0e8fee20fcbdd03eb0700d3581aa826ac3573c9b002f39b1512c2af9fd1903ff921bcc864da95ad3cdeba53c9fbcfb3dc23916eacf47 + languageName: node + linkType: hard + +"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4": + version: 7.18.6 + resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.18.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.18.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c68feae57d9b1f4d98ecc2da63bda1993980deb509ccb08f6eace712ece8081032eb6532c304524b544c2dd577e2f9c2fe5c5bfd73d1955c946300def6fc7493 + languageName: node + linkType: hard + +"@babel/plugin-syntax-async-generators@npm:^7.8.4": + version: 7.8.4 + resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8 + languageName: node + linkType: hard + +"@babel/plugin-syntax-bigint@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3": + version: 7.12.13 + resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.12.13" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120 + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-static-block@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371 + languageName: node + linkType: hard + +"@babel/plugin-syntax-decorators@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-decorators@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a24ad01f89523575b93f3bdef48a16e80d2e0a3e0fc90803c0397c58c6c7abf92379e941719f7f469757d6778d5ac60dc488d4a8b406bd6bbf3c636da477e534 + languageName: node + linkType: hard + +"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9c50927bf71adf63f60c75370e2335879402648f468d0172bc912e303c6a3876927d8eb35807331b57f415392732ed05ab9b42c68ac30a936813ab549e0246c5 + languageName: node + linkType: hard + +"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5100d658ba563829700cd8d001ddc09f4c0187b1a13de300d729c5b3e87503f75a6d6c99c1794182f7f1a9f546ee009df4f15a0ce36376e206ed0012fa7cdc24 + languageName: node + linkType: hard + +"@babel/plugin-syntax-flow@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-flow@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 07afc7df02141597968532bfbfa3f6c0ad21a2bdd885d0e5e035dcf60fdf35f0995631c9750b464e1a6f2feea14160a82787f914e88e8f7115dc99f09853e43e + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-assertions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b297d7c757c746ed0ef3496ad749ae2ce648ec73dae5184120b191c280e62da7dc104ee126bc0053dfece3ce198a5ee7dc1cbf4768860f666afef5dee84a7146 + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-attributes@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: de0b104a82cb8ffdc29472177210936609b973665a2ad8ef26c078251d7c728fbd521119de4c417285408a8bae345b5da09cd4a4a3311619f71b9b2c64cce3fa + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee + languageName: node + linkType: hard + +"@babel/plugin-syntax-json-strings@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e + languageName: node + linkType: hard + +"@babel/plugin-syntax-jsx@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-jsx@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b56ceaa9c6adc17fadfb48e1c801d07797195df2a581489e33c8034950e12e7778de6e1e70d6bcf7c5c7ada6222fe6bad5746187ab280df435f5a2799c8dd0d8 + languageName: node + linkType: hard + +"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b + languageName: node + linkType: hard + +"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce + languageName: node + linkType: hard + +"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9 + languageName: node + linkType: hard + +"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26 + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81 + languageName: node + linkType: hard + +"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 69822772561706c87f0a65bc92d0772cea74d6bc0911537904a676d5ff496a6d3ac4e05a166d8125fce4a16605bace141afc3611074e170a994e66e5397787f3 + languageName: node + linkType: hard + +"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3": + version: 7.14.5 + resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f + languageName: node + linkType: hard + +"@babel/plugin-syntax-typescript@npm:^7.22.5, @babel/plugin-syntax-typescript@npm:^7.7.2": + version: 7.22.5 + resolution: "@babel/plugin-syntax-typescript@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 523a76627f17e67dc1999f4d7c7a71ed79e9f77f55a61cf05051101967ac23ec378ff0c93787b2cbd5d53720ad799658d796a649fa351682b2bf636f63b665a1 + languageName: node + linkType: hard + +"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.18.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 9144e5b02a211a4fb9a0ce91063f94fbe1004e80bde3485a0910c9f14897cf83fabd8c21267907cff25db8e224858178df0517f14333cfcf3380ad9a4139cb50 + languageName: node + linkType: hard + +"@babel/plugin-transform-arrow-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1b24d47ddac6ae2fe8c7fab9a020fdb6a556d17d8c5f189bb470ff2958a5437fe6441521fd3d850f4283a1131d7a0acf3e8ebe789f9077f54bab4e2e8c6df176 + languageName: node + linkType: hard + +"@babel/plugin-transform-async-generator-functions@npm:^7.22.7": + version: 7.22.7 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.22.7" + dependencies: + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-remap-async-to-generator": "npm:^7.22.5" + "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b9712f47de65d8409625de5cfa4bda6984f9e7065f6170c34b3d11974879276ffa61675c8118de5de7746f5de378c5dfc21efc706664c6f0c652fb58949b53f0 + languageName: node + linkType: hard + +"@babel/plugin-transform-async-to-generator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.22.5" + dependencies: + "@babel/helper-module-imports": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-remap-async-to-generator": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2972f22c3a5a56a8b225f4fa1bbdbcf6e989e0da460d5f4e2280652b1433d7c68b6ddc0cc2affc4b59905835133a253a31c24c7ca1bebe1a2f28377d27b4ca1c + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoped-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 21878d4f0040f5001c4a14e17759e80bf699cb883a497552fa882dbc05230b100e8572345654b091021d5c4227555ed2bf40c8d6ba16a54d81145abfe0022cf8 + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoping@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-block-scoping@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 68f663d349345b522e1dece9641ee304d8f7db1d4b11998f47ebc5d678d281f76a143fb8603a1c12596962d7a63ffe044cd205a4910c8d74906eae17a605f96f + languageName: node + linkType: hard + +"@babel/plugin-transform-class-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-class-properties@npm:7.22.5" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 707f976d3aea2b52dad36a5695a71af8956f9b1d5dec02c2b8cce7ff3b5e60df4cbe059c71ae0b7983034dc639de654a2c928b97e4e01ebf436d58ea43639e7d + languageName: node + linkType: hard + +"@babel/plugin-transform-class-static-block@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-class-static-block@npm:7.22.5" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.12.0 + checksum: 23814d00b2966e8dab7a60934622853698b2cb861a8667c006e000d8e5a50aba4d221c52852552562e7f38e32ad5c7778125ef602c2d2f1c4f9d8f790a9f27e9 + languageName: node + linkType: hard + +"@babel/plugin-transform-classes@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/plugin-transform-classes@npm:7.22.6" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-compilation-targets": "npm:^7.22.6" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-replace-supers": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.6" + globals: "npm:^11.1.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 915f1c0d3a0446a3ebfb099c4a5e714896f773322432b91572e6739d7af82e9743ae2874eb596ef1d26ed94472385eb814e1f33b033fc708155576d566e1f5ff + languageName: node + linkType: hard + +"@babel/plugin-transform-computed-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-computed-properties@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 22ecea23c1635083f5473092c5fbca62cbf7a85764bcf3e704c850446d68fe946097f6001c4cbfc92b4aee27ed30b375773ee479f749293e41fdb8f1fb8fcb67 + languageName: node + linkType: hard + +"@babel/plugin-transform-destructuring@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-destructuring@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bffd0069f44165e101368f34ab34d4bb810ef3dc16a5bf5e55e633a60b0c3aca948dccc15d04e6d6996a2a467f4a52d7224a82efc4be175836cc6e3a3702efa5 + languageName: node + linkType: hard + +"@babel/plugin-transform-dotall-regex@npm:^7.22.5, @babel/plugin-transform-dotall-regex@npm:^7.4.4": + version: 7.22.5 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e0d7b95380483ef563c13f7c0a2122f575c58708cfb56494d6265ebb31753cf46ee0b3f5126fa6bbea5af392b3a2da05bf1e028d0b2b4d1dc279edd67cf3c3d9 + languageName: node + linkType: hard + +"@babel/plugin-transform-duplicate-keys@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-duplicate-keys@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 82772fdcc1301358bc722c1316bea071ad0cd5893ca95b08e183748e044277a93ee90f9c641ac7873a00e4b31a8df7cf8c0981ca98d01becb4864a11b22c09d1 + languageName: node + linkType: hard + +"@babel/plugin-transform-dynamic-import@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 82fb6fa0b6f7c7760ac21ebcb856a01579c9e64a325d5bb8841591b58b2d92024169f10f4ca2b34b45376999b352974138c94fc1d5cc330e00beeeb1bda51425 + languageName: node + linkType: hard + +"@babel/plugin-transform-exponentiation-operator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.22.5" + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e8832460cfc9e087561fa42a796bb4eb181e6983d6db85c6dcec15f98af4ae3d13fcab18a262252a43b075d79ac93aaa38d33022bc5a870d2760c6888ba5d211 + languageName: node + linkType: hard + +"@babel/plugin-transform-export-namespace-from@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d5d301dde2d6e7f9e4db12ac70e19153f0e8d17406ad733a8f7d01de77d123588fe90c7f5b8cc086420594ec1e7d20abc5e08323f9ad9704a19c6c87ca03eb59 + languageName: node + linkType: hard + +"@babel/plugin-transform-flow-strip-types@npm:^7.16.0": + version: 7.22.5 + resolution: "@babel/plugin-transform-flow-strip-types@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-flow": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5949a8e5214e3fc65d31dab0551423cea9d9eef35faa5d0004707ba7347baf96166aa400907ce7498f754db4e1e9d039ca434a508546b0dc9fdae9a42e814c1a + languageName: node + linkType: hard + +"@babel/plugin-transform-for-of@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-for-of@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 08bd2d14f10b8ae421e61b55c28232547044149b8ef62c99c54561ce93a5067f9654d701d798871e733543359748e1b093f5c450b69705ec1db674175ee9fcdb + languageName: node + linkType: hard + +"@babel/plugin-transform-function-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-function-name@npm:7.22.5" + dependencies: + "@babel/helper-compilation-targets": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 206bdef2ff91c29a7d94c77778ad79f18bdb2cd6a30179449f2b95af04637cb68d96625dc673d9a0961b6b7088bd325bbed7540caf9aa8f69e5b003d6ba20456 + languageName: node + linkType: hard + +"@babel/plugin-transform-json-strings@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-json-strings@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 64ee0f3497822d312b609d3b8a5a2617337d1624292e89f5e90fd25b5bc91a20beadfa91730b5b199b5a027284ced5d59748d99e8ab81ee7bdac38236e6b61ca + languageName: node + linkType: hard + +"@babel/plugin-transform-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-literals@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1003d0cf98e9ae432889bcf5f3d5f7d463f777fc2c74b0d4a1a93b51e83606c263a16146e34f0a06b291300aa5f2001d6e8bf65ed1bf478ab071b714bf158aa5 + languageName: node + linkType: hard + +"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bfacdafa8018d1607897015e1ea0f98edbefee16b4409d5f37c37df0d2058dde2e55586dd79f8479a0cd603ff06272216de077f071bc49c96014edfe1629bd26 + languageName: node + linkType: hard + +"@babel/plugin-transform-member-expression-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 731a341b17511809ae435b64822d4d093e86fd928b572028e6742bdfba271c57070860b0f3da080a76c5574d58c4f369fac3f7bf0f450b37920c0fc6fe27bb4e + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-amd@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-amd@npm:7.22.5" + dependencies: + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 157ae3b58a50ca52e361860ecab2b608bc9228ea6c760112a35302990976f8936b8d75a2b21925797eed7b3bab4930a3f447193127afef9a21b7b6463ff0b422 + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-commonjs@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.22.5" + dependencies: + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-simple-access": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 818317363cc96a1ab28cd0691bdb86fe06f452d210e2cef7ef4708f2c2c80cbe3c76bca23c2ab4b1bb200d44e508eae71f627c7cb27299a41be56fc7e3aaced0 + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-systemjs@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.22.5" + dependencies: + "@babel/helper-hoist-variables": "npm:^7.22.5" + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-validator-identifier": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 25d7ada275039523541cfc3efd91cd3d9cfc77e7b9dd6a51e7d9ad842d2cb3e0f26aee29426aa56ac72f61247268369680f2bdc1171bb00a16cfd00bbb325a6c + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-umd@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-umd@npm:7.22.5" + dependencies: + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f4a40e18986182a2b1be6af949aaff67a7d112af3d26bbd4319d05b50f323a62a10b32b5584148e4630bdffbd4d85b31c0d571fe4f601354898b837b87afca4c + languageName: node + linkType: hard + +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: b0b072bef303670b5a98307bc37d1ac326cb7ad40ea162b89a03c2ffc465451be7ef05be95cb81ed28bfeb29670dc98fe911f793a67bceab18b4cb4c81ef48f3 + languageName: node + linkType: hard + +"@babel/plugin-transform-new-target@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-new-target@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 22ead0668bfd8db9166a4a47579d9f44726b59f21104561a6dd851156336741abdc5c576558e042c58c4b4fd577d3e29e4bd836021007f3381c33fe3c88dca19 + languageName: node + linkType: hard + +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 66f7237d59060954fc0ba0c5d9e7081580421014b446080b3efedb3d4be9a4346f50974c5886a4ec7962db9992e5e1c5e26cb76801728b4d9626ac2eb09c26f7 + languageName: node + linkType: hard + +"@babel/plugin-transform-numeric-separator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 921d6ff2165eb782c28a6c06e9eb0dc17400c9476b000a7f8b8dfa95c122c22be4adee7bc15f035a1e4269842b3a68b0a2f20e4437025a6e0fbe16e479a879b8 + languageName: node + linkType: hard + +"@babel/plugin-transform-object-rest-spread@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.5" + dependencies: + "@babel/compat-data": "npm:^7.22.5" + "@babel/helper-compilation-targets": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" + "@babel/plugin-transform-parameters": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ab93b8f84e4ed6629ea258d94b597976598a1990035b4d5178c8d117908a48a36f0f03dd2f4a3375393a23a588ecc7817c099ac88a80f8307475b9a25e4d08e0 + languageName: node + linkType: hard + +"@babel/plugin-transform-object-super@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-object-super@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-replace-supers": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 062a78ff897c095a71f0db577bd4e4654659d542cb9ef79ec0fda7873ee6fefe31a0cb8a6c2e307e16dacaae1f50d48572184a59e1235b8d9d9cb2f38c4259ce + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-catch-binding@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a15bfa5b36f5f1f61521cc1c73e1e394fbd08aef82a416e2e43f5fc7b43830f17d4c9a5605f1b69ed2bbbacd6f49f5e4f9a3e8e0b7a83841bc95e8ef2116f0a9 + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-chaining@npm:^7.22.5, @babel/plugin-transform-optional-chaining@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.22.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bb8188df57ab46c4c708eea17eddd20238ef9106c0e82016b1eb9565f073746e385e0be0b6ee25148507f3dc849311147a43323109c97106f15e0e7ff3220fdf + languageName: node + linkType: hard + +"@babel/plugin-transform-parameters@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-parameters@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7d6a76dd1ac02373bc5542076c97fadcb18a9ebbcd4047e15f7a83d64efcff2baef1060a4bcfb9372d8ea18e5b1970f09514c58cece4145beb31d8b8d45d2e5f + languageName: node + linkType: hard + +"@babel/plugin-transform-private-methods@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-private-methods@npm:7.22.5" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a62f2e47ca30f6b8043201483c5a505e3d54416e6ddfbe7cb696a1db853a4281b1fffee9f883fe26ac72ba02bba0db5832d69e02f2eb4746e9811b8779287cc1 + languageName: node + linkType: hard + +"@babel/plugin-transform-private-property-in-object@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.22.5" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f178191da005d986fdeb30ef74ea0d28878e6225d305d931ce925d87b7df432f5bb29e32173cff2a5c408cee7abc9f25fab09530d4f419ce5cc29a44a89f7a55 + languageName: node + linkType: hard + +"@babel/plugin-transform-property-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-property-literals@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 8d25b7b01b5f487cfc1a296555273c1ddad45276f01039130f57eb9ab0fafa0560d10d972323071042e73ac3b8bab596543c9d1a877229624a52e6535084ea51 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-constant-elements@npm:^7.12.1": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-constant-elements@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3a54802058ed3eef9c98efcc9ec4888763dce552f117db9a62fc2cdca30d9de0218cf7722a748d4b715a8bd833b9725d7ee018d01a18209b44434d15f719b173 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-display-name@npm:^7.16.0, @babel/plugin-transform-react-display-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-display-name@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 41e0167ecd8e5281e427556146b1d3bee8652bcd0664be013f16ffeeb4d61b7ab0b1e59bcc2c923774f0d265f78012628d5277880f758f3675893226f9be012e + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-development@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-jsx-development@npm:7.22.5" + dependencies: + "@babel/plugin-transform-react-jsx": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4d2e9e68383238feb873f6111df972df4a2ebf6256d6f787a8772241867efa975b3980f7d75ab7d750e7eaad4bd454e8cc6e106301fd7572dd389e553f5f69d2 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-self@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-jsx-self@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 263091bdede1f448cb2c59b84eb69972c15d3f022c929a75337bd20d8b65551ac38cd26dad1946eaa93289643506b10ddaea3445a28cb8fca5a773a22a0df90b + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-source@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-jsx-source@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: defc9debb76b4295e3617ef7795a0533dbbecef6f51bf5ba4bfc162df892a84fd39e14d5f1b9a5aad7b09b97074fef4c6756f9d2036eef5a9874acabe198f75a + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-jsx@npm:7.22.5" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-module-imports": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-jsx": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: fa4e5b32233c41686a420ad97b07a8a8b6cec7d484e93d5917db460887ded5179a8a20867a5d56d962b5452535830c0c0f8bfdc7d55853369be1e51b6a79a14a + languageName: node + linkType: hard + +"@babel/plugin-transform-react-pure-annotations@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.22.5" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 18db2e2346d79ebe4a3f85f51fa7757a63a09bc6da7f339e6ce9e7534de68b5165fe7d49ac363dee6ba3f81eb904d44bf9c13653331805f9b236a1d9fec7e018 + languageName: node + linkType: hard + +"@babel/plugin-transform-regenerator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-regenerator@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + regenerator-transform: "npm:^0.15.1" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5d9f42f831323db7e148cd9c47f61f3f667d283dba95f3221715871f52dec39868be1aa81dd834c27a2993602e5e396bb44bdfa563573a0d86b3883a58660004 + languageName: node + linkType: hard + +"@babel/plugin-transform-reserved-words@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-reserved-words@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3ee861941b1d3f9e50f1bb97a2067f33c868b8cd5fd3419a610b2ad5f3afef5f9e4b3740d26a617dc1a9e169a33477821d96b6917c774ea87cac6790d341abbd + languageName: node + linkType: hard + +"@babel/plugin-transform-runtime@npm:^7.16.4": + version: 7.22.7 + resolution: "@babel/plugin-transform-runtime@npm:7.22.7" + dependencies: + "@babel/helper-module-imports": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@nicolo-ribaudo/semver-v6": "npm:^6.3.3" + babel-plugin-polyfill-corejs2: "npm:^0.4.4" + babel-plugin-polyfill-corejs3: "npm:^0.8.2" + babel-plugin-polyfill-regenerator: "npm:^0.5.1" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e0768cedf474c3744bedb28f073ef1630f7d1ac33467033ae8ead6a9586cdf007c9d0a63b5d1941c5f29dc95568d700ea0672e17bacb0eb21bf81a49f83346c8 + languageName: node + linkType: hard + +"@babel/plugin-transform-shorthand-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d2dd6b7033f536dd74569d7343bf3ca88c4bc12575e572a2c5446f42a1ebc8e69cec5e38fc0e63ac7c4a48b944a3225e4317d5db94287b9a5b381a5045c0cdb2 + languageName: node + linkType: hard + +"@babel/plugin-transform-spread@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-spread@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f8896b00d69557a4aafb3f48b7db6fbaa8462588e733afc4eabfdf79b12a6aed7d20341d160d704205591f0a43d04971d391fa80328f61240d1edc918079a1b0 + languageName: node + linkType: hard + +"@babel/plugin-transform-sticky-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 42d9295d357415b55c04967ff1cd124cdcbabf2635614f9ad4f8b372d9ae35f6c02bf7473a5418b91e75235960cb1e61493e2c0581cb55bf9719b0986bcd22a5 + languageName: node + linkType: hard + +"@babel/plugin-transform-template-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-template-literals@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1fc597716edf9f5c7bc74e2fead4d7751467500486dd17092af90ccbd65c5fc4a1db2e9c86e9ed1a9f206f6a3403bbc07eab50b0c2b8e50f819b4118f2cf71ef + languageName: node + linkType: hard + +"@babel/plugin-transform-typeof-symbol@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 277084dd3e873d62541f683173c7cf33b8317f7714335b7e861cc5b4b76f09acbf532a4c9dfbcf7756d29bc07b94b48bd9356af478f424865a86c7d5798be7c0 + languageName: node + linkType: hard + +"@babel/plugin-transform-typescript@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-typescript@npm:7.22.5" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-typescript": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1ee79ead40f8a299dd643d433a514e2bc970f954d27c3a92d62f2139a19128c31d76d094df7e1c1789a70528f349ba536f271a0b47117c77ca49cd26f8b1c66d + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-escapes@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-escapes@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e9005b2ca102d75e77154a9a7aa2a716d27f5fede04d98fc5f5bfc63390922da9e0112dac0e3c4df9145d30421131a8a79eeb3c6d51435cb7a6595bb692976f7 + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-property-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: da424c1e99af0e920d21f7f121fb9503d0771597a4bd14130fb5f116407be29e9340c049d04733b3d8a132effe4f4585fe3cc9630ae3294a2df9199c8dfd7075 + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4cfaf4bb724a5c55a6fb5b0ee6ebbeba78dc700b9bc0043715d4b37409d90b43c888735c613690a1ec0d8d8e41a500b9d3f0395aa9f55b174449c8407663684b + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-sets-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: af37b468332db051f0aaa144adbfab39574e570f613e121b58a551e3cbb7083c9f8c32a83ba2641172a4065128052643468438c19ad098cd62b2d97140dc483e + languageName: node + linkType: hard + +"@babel/preset-env@npm:^7.11.0, @babel/preset-env@npm:^7.12.1, @babel/preset-env@npm:^7.16.4": + version: 7.22.7 + resolution: "@babel/preset-env@npm:7.22.7" + dependencies: + "@babel/compat-data": "npm:^7.22.6" + "@babel/helper-compilation-targets": "npm:^7.22.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-validator-option": "npm:^7.22.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.22.5" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.22.5" + "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + "@babel/plugin-syntax-class-properties": "npm:^7.12.13" + "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" + "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" + "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" + "@babel/plugin-syntax-import-assertions": "npm:^7.22.5" + "@babel/plugin-syntax-import-attributes": "npm:^7.22.5" + "@babel/plugin-syntax-import-meta": "npm:^7.10.4" + "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" + "@babel/plugin-syntax-top-level-await": "npm:^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6" + "@babel/plugin-transform-arrow-functions": "npm:^7.22.5" + "@babel/plugin-transform-async-generator-functions": "npm:^7.22.7" + "@babel/plugin-transform-async-to-generator": "npm:^7.22.5" + "@babel/plugin-transform-block-scoped-functions": "npm:^7.22.5" + "@babel/plugin-transform-block-scoping": "npm:^7.22.5" + "@babel/plugin-transform-class-properties": "npm:^7.22.5" + "@babel/plugin-transform-class-static-block": "npm:^7.22.5" + "@babel/plugin-transform-classes": "npm:^7.22.6" + "@babel/plugin-transform-computed-properties": "npm:^7.22.5" + "@babel/plugin-transform-destructuring": "npm:^7.22.5" + "@babel/plugin-transform-dotall-regex": "npm:^7.22.5" + "@babel/plugin-transform-duplicate-keys": "npm:^7.22.5" + "@babel/plugin-transform-dynamic-import": "npm:^7.22.5" + "@babel/plugin-transform-exponentiation-operator": "npm:^7.22.5" + "@babel/plugin-transform-export-namespace-from": "npm:^7.22.5" + "@babel/plugin-transform-for-of": "npm:^7.22.5" + "@babel/plugin-transform-function-name": "npm:^7.22.5" + "@babel/plugin-transform-json-strings": "npm:^7.22.5" + "@babel/plugin-transform-literals": "npm:^7.22.5" + "@babel/plugin-transform-logical-assignment-operators": "npm:^7.22.5" + "@babel/plugin-transform-member-expression-literals": "npm:^7.22.5" + "@babel/plugin-transform-modules-amd": "npm:^7.22.5" + "@babel/plugin-transform-modules-commonjs": "npm:^7.22.5" + "@babel/plugin-transform-modules-systemjs": "npm:^7.22.5" + "@babel/plugin-transform-modules-umd": "npm:^7.22.5" + "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.22.5" + "@babel/plugin-transform-new-target": "npm:^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.22.5" + "@babel/plugin-transform-numeric-separator": "npm:^7.22.5" + "@babel/plugin-transform-object-rest-spread": "npm:^7.22.5" + "@babel/plugin-transform-object-super": "npm:^7.22.5" + "@babel/plugin-transform-optional-catch-binding": "npm:^7.22.5" + "@babel/plugin-transform-optional-chaining": "npm:^7.22.6" + "@babel/plugin-transform-parameters": "npm:^7.22.5" + "@babel/plugin-transform-private-methods": "npm:^7.22.5" + "@babel/plugin-transform-private-property-in-object": "npm:^7.22.5" + "@babel/plugin-transform-property-literals": "npm:^7.22.5" + "@babel/plugin-transform-regenerator": "npm:^7.22.5" + "@babel/plugin-transform-reserved-words": "npm:^7.22.5" + "@babel/plugin-transform-shorthand-properties": "npm:^7.22.5" + "@babel/plugin-transform-spread": "npm:^7.22.5" + "@babel/plugin-transform-sticky-regex": "npm:^7.22.5" + "@babel/plugin-transform-template-literals": "npm:^7.22.5" + "@babel/plugin-transform-typeof-symbol": "npm:^7.22.5" + "@babel/plugin-transform-unicode-escapes": "npm:^7.22.5" + "@babel/plugin-transform-unicode-property-regex": "npm:^7.22.5" + "@babel/plugin-transform-unicode-regex": "npm:^7.22.5" + "@babel/plugin-transform-unicode-sets-regex": "npm:^7.22.5" + "@babel/preset-modules": "npm:^0.1.5" + "@babel/types": "npm:^7.22.5" + "@nicolo-ribaudo/semver-v6": "npm:^6.3.3" + babel-plugin-polyfill-corejs2: "npm:^0.4.4" + babel-plugin-polyfill-corejs3: "npm:^0.8.2" + babel-plugin-polyfill-regenerator: "npm:^0.5.1" + core-js-compat: "npm:^3.31.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4463c50ccab7aa06a60dde5c1f6e94fdf18e425935b13a1bf168ece9b7bd29dcad015a788581a5c5297bae28a3adcea2472fc74d4e1296aa7195ce0a72a9cac5 + languageName: node + linkType: hard + +"@babel/preset-modules@npm:^0.1.5": + version: 0.1.5 + resolution: "@babel/preset-modules@npm:0.1.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.0.0" + "@babel/plugin-proposal-unicode-property-regex": "npm:^7.4.4" + "@babel/plugin-transform-dotall-regex": "npm:^7.4.4" + "@babel/types": "npm:^7.4.4" + esutils: "npm:^2.0.2" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bd90081d96b746c1940dc1ce056dee06ed3a128d20936aee1d1795199f789f9a61293ef738343ae10c6d53970c17285d5e147a945dded35423aacb75083b8a89 + languageName: node + linkType: hard + +"@babel/preset-react@npm:^7.12.5, @babel/preset-react@npm:^7.16.0": + version: 7.22.5 + resolution: "@babel/preset-react@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-validator-option": "npm:^7.22.5" + "@babel/plugin-transform-react-display-name": "npm:^7.22.5" + "@babel/plugin-transform-react-jsx": "npm:^7.22.5" + "@babel/plugin-transform-react-jsx-development": "npm:^7.22.5" + "@babel/plugin-transform-react-pure-annotations": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 60c1fde93d5a6bda03b3d2bb61bcbf056925fd0b01e84d789eaf2a06f639d8714e93735a75da0221fd7a8407c6b4fea7b4fbc35de5ff5d5a299aecb1c82fd530 + languageName: node + linkType: hard + +"@babel/preset-typescript@npm:^7.16.0": + version: 7.22.5 + resolution: "@babel/preset-typescript@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-validator-option": "npm:^7.22.5" + "@babel/plugin-syntax-jsx": "npm:^7.22.5" + "@babel/plugin-transform-modules-commonjs": "npm:^7.22.5" + "@babel/plugin-transform-typescript": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2d5924be38bdfea693548359dc547e8bb2c51793d6293168a7248d5ac1f5e94c5f8acea115b006bdd6fa4a20a8e92aa87a826a4aeaf143649e1683d0fe1b82d6 + languageName: node + linkType: hard + +"@babel/regjsgen@npm:^0.8.0": + version: 0.8.0 + resolution: "@babel/regjsgen@npm:0.8.0" + checksum: 4f3ddd8c7c96d447e05c8304c1d5ba3a83fcabd8a716bc1091c2f31595cdd43a3a055fff7cb5d3042b8cb7d402d78820fcb4e05d896c605a7d8bcf30f2424c4a + languageName: node + linkType: hard + +"@babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.15.4, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.17.9, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.22.5, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.6.3, @babel/runtime@npm:^7.7.2, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.8.7, @babel/runtime@npm:^7.9.2": + version: 7.22.6 + resolution: "@babel/runtime@npm:7.22.6" + dependencies: + regenerator-runtime: "npm:^0.13.11" + checksum: 5a273e7d66586582041c68332028db5376d754d483422541fdc904e10474a6f8aef14dd3a5aabcbcb6daea87b64531cc4be993d2943557ede4a2613f5328a981 + languageName: node + linkType: hard + +"@babel/template@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/template@npm:7.22.15" + dependencies: + "@babel/code-frame": "npm:^7.22.13" + "@babel/parser": "npm:^7.22.15" + "@babel/types": "npm:^7.22.15" + checksum: 9312edd37cf1311d738907003f2aa321a88a42ba223c69209abe4d7111db019d321805504f606c7fd75f21c6cf9d24d0a8223104cd21ebd207e241b6c551f454 + languageName: node + linkType: hard + +"@babel/template@npm:^7.22.5, @babel/template@npm:^7.3.3": + version: 7.22.5 + resolution: "@babel/template@npm:7.22.5" + dependencies: + "@babel/code-frame": "npm:^7.22.5" + "@babel/parser": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: dd8fc1b0bfe0128bace25da0e0a708e26320e8030322d3a53bb6366f199b46a277bfa4281dd370d73ab19087c7e27d166070a0659783b4715f7470448c7342b1 + languageName: node + linkType: hard + +"@babel/traverse@npm:^7.22.5, @babel/traverse@npm:^7.22.6, @babel/traverse@npm:^7.22.8, @babel/traverse@npm:^7.7.2": + version: 7.22.8 + resolution: "@babel/traverse@npm:7.22.8" + dependencies: + "@babel/code-frame": "npm:^7.22.5" + "@babel/generator": "npm:^7.22.7" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-hoist-variables": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.6" + "@babel/parser": "npm:^7.22.7" + "@babel/types": "npm:^7.22.5" + debug: "npm:^4.1.0" + globals: "npm:^11.1.0" + checksum: 839014824c210388ed46f92bf5265522bd5bbb4a9a03c700f9d79b151bdd0aa077c2f6448a0cef41132188cc2bc6d8cdcad98a297ba59983401e882bdc256b1f + languageName: node + linkType: hard + +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.6, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.22.5, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4": + version: 7.22.5 + resolution: "@babel/types@npm:7.22.5" + dependencies: + "@babel/helper-string-parser": "npm:^7.22.5" + "@babel/helper-validator-identifier": "npm:^7.22.5" + to-fast-properties: "npm:^2.0.0" + checksum: 2473295056520432ec0b5fe2dc7b37914292d211ccdbc2cb05650f9c44d5168a760bca0f492a9fff7c72459defee15cd48ef152e74961cfdc03144c7a4b8bec8 + languageName: node + linkType: hard + +"@babel/types@npm:^7.22.15, @babel/types@npm:^7.23.0, @babel/types@npm:^7.8.3": + version: 7.23.5 + resolution: "@babel/types@npm:7.23.5" + dependencies: + "@babel/helper-string-parser": "npm:^7.23.4" + "@babel/helper-validator-identifier": "npm:^7.22.20" + to-fast-properties: "npm:^2.0.0" + checksum: 7dd5e2f59828ed046ad0b06b039df2524a8b728d204affb4fc08da2502b9dd3140b1356b5166515d229dc811539a8b70dcd4bc507e06d62a89f4091a38d0b0fb + languageName: node + linkType: hard + +"@bcoe/v8-coverage@npm:^0.2.3": + version: 0.2.3 + resolution: "@bcoe/v8-coverage@npm:0.2.3" + checksum: 6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52 + languageName: node + linkType: hard + +"@choojs/findup@npm:^0.2.0": + version: 0.2.1 + resolution: "@choojs/findup@npm:0.2.1" + dependencies: + commander: "npm:^2.15.1" + bin: + findup: bin/findup.js + checksum: 0aa58fde413a4cbfd7c67551df1338b638594c46dfa96aa1d79065b88f944a4465d95f3540f4e864130c532182a20cbdef3c2817d20f51253c94096fe57e970f + languageName: node + linkType: hard + +"@csstools/normalize.css@npm:*": + version: 12.0.0 + resolution: "@csstools/normalize.css@npm:12.0.0" + checksum: 707e3699727dec0d28537a06d7340bcea844824dd704f8fee6e4a2bc08f3e0ed2b0d6f99ff20534a8632a6cd1dcd82d6c04c431bb1c6e396bfed0c4572ec724e + languageName: node + linkType: hard + +"@csstools/postcss-cascade-layers@npm:^1.1.1": + version: 1.1.1 + resolution: "@csstools/postcss-cascade-layers@npm:1.1.1" + dependencies: + "@csstools/selector-specificity": "npm:^2.0.2" + postcss-selector-parser: "npm:^6.0.10" + peerDependencies: + postcss: ^8.2 + checksum: 8dcfe748194c95b2bf24cb90845d3b1e7f9a3d831f76d5ce97188026a39bec28379a5672e62ab09e4e83b24dfb93e6d784d194e4fb9474c933f93ce131cae769 + languageName: node + linkType: hard + +"@csstools/postcss-color-function@npm:^1.1.1": + version: 1.1.1 + resolution: "@csstools/postcss-color-function@npm:1.1.1" + dependencies: + "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 802e23fc5ac38aed7366be2ffc3ae5572b45c82b31a0ced10a8fb8e69e7e15f6e975053ce54a6dabb6e56aa5d90a396d49c24eea5723165316acc9b3f988a085 + languageName: node + linkType: hard + +"@csstools/postcss-font-format-keywords@npm:^1.0.1": + version: 1.0.1 + resolution: "@csstools/postcss-font-format-keywords@npm:1.0.1" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: bbd52500809ddc62fe5052d43f3353797d47608bab59e0f62da8165de33404ed047a024f190d69b22e1d4883a43e5a48af443c390010bcc1d58d880cc808715e + languageName: node + linkType: hard + +"@csstools/postcss-hwb-function@npm:^1.0.2": + version: 1.0.2 + resolution: "@csstools/postcss-hwb-function@npm:1.0.2" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 28dfbfc01b5b1d9dd33d2cc9c2ae9b57e73bdf90f2f698f786863c3e116145a1bbe4146b2db2fdfa470444cd8cc9cedac86cf893a9025a690a350a47a040107a + languageName: node + linkType: hard + +"@csstools/postcss-ic-unit@npm:^1.0.1": + version: 1.0.1 + resolution: "@csstools/postcss-ic-unit@npm:1.0.1" + dependencies: + "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: f12ee4c3e6858be4fdf3cad05013898b7b8e62122709ef62c3b236232b1181bd142e7f19460e968fd7759e6d10b113e82a87c206f5adcaaf5ef3acf1c446e5f8 + languageName: node + linkType: hard + +"@csstools/postcss-is-pseudo-class@npm:^2.0.7": + version: 2.0.7 + resolution: "@csstools/postcss-is-pseudo-class@npm:2.0.7" + dependencies: + "@csstools/selector-specificity": "npm:^2.0.0" + postcss-selector-parser: "npm:^6.0.10" + peerDependencies: + postcss: ^8.2 + checksum: 7b0a511f6283b5a2c6f6fc2eecf08f7fbe3772c44cf3a2be327b41731aeafcc93cf7f2a4e01ff6dcb7c5fa88d941ae4b818f0ed2ec93f708d7efda5a3e5a8089 + languageName: node + linkType: hard + +"@csstools/postcss-nested-calc@npm:^1.0.0": + version: 1.0.0 + resolution: "@csstools/postcss-nested-calc@npm:1.0.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: b737ed55581282c9c23b65e6b6fbc7be26f354f384c617f1f73cc252f5d9f4b3386f9b3eef5267efc84452c329895dd438864b6e4f46b0fc7d37045e00a4408c + languageName: node + linkType: hard + +"@csstools/postcss-normalize-display-values@npm:^1.0.1": + version: 1.0.1 + resolution: "@csstools/postcss-normalize-display-values@npm:1.0.1" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 92361a0917b22f3d47c61706c4124560265d9b316b3d877ab2a759de9ae8fe4c50729cc79b99a81aa3a4b54e67d4acc7512c6d460bf308c2197acdc3e9f1287e + languageName: node + linkType: hard + +"@csstools/postcss-oklab-function@npm:^1.1.1": + version: 1.1.1 + resolution: "@csstools/postcss-oklab-function@npm:1.1.1" + dependencies: + "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: f7a3734154bbe3658cee776417cadb99cedfe138b2c1893095a87694fce5498cb623c743cdd5eef933c450cfbba8961b3fa079ebcb5039636f81567deb9db5d5 + languageName: node + linkType: hard + +"@csstools/postcss-progressive-custom-properties@npm:^1.1.0, @csstools/postcss-progressive-custom-properties@npm:^1.3.0": + version: 1.3.0 + resolution: "@csstools/postcss-progressive-custom-properties@npm:1.3.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.3 + checksum: 1910a564e433c7673ad9ceef04e08ec6ac91fa91b8e5b433d018c84983be341ba84232afcb8a4217fb7a31e3711f22115266bfe040efeb7d6ec2a314de826f7e + languageName: node + linkType: hard + +"@csstools/postcss-stepped-value-functions@npm:^1.0.1": + version: 1.0.1 + resolution: "@csstools/postcss-stepped-value-functions@npm:1.0.1" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: ba04c94bf0b21616df278c317a047f809cfb855e4939f9511d82e80018386ccff1cef92c73c5382866491e7a1db61f7889703b97433381e882440c1f3668298a + languageName: node + linkType: hard + +"@csstools/postcss-text-decoration-shorthand@npm:^1.0.0": + version: 1.0.0 + resolution: "@csstools/postcss-text-decoration-shorthand@npm:1.0.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 1aadbc9d7966af0bc7d459cdf34d9814e721635210d1082df277ea623820d6119058d519f6f0f027ec03026793568c7c7adf831479faafc6ff8de76a3d866a31 + languageName: node + linkType: hard + +"@csstools/postcss-trigonometric-functions@npm:^1.0.2": + version: 1.0.2 + resolution: "@csstools/postcss-trigonometric-functions@npm:1.0.2" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: a7ebc9a90b52089fbcf484d992beb2c881f1d9370450cf789e175c4682b4e9ae0c9c3879775b4f353a2a58f7f75462a8e3b6fb0a3fe9572aa52c85e99b4f94f4 + languageName: node + linkType: hard + +"@csstools/postcss-unset-value@npm:^1.0.2": + version: 1.0.2 + resolution: "@csstools/postcss-unset-value@npm:1.0.2" + peerDependencies: + postcss: ^8.2 + checksum: 43d656360ffda504f22f3470cd8c1826362e8938da8eea1c2878302b878d38305c48c31090455fe760f40386c10ccbe17e9a95d63fb4e7934c035e805b641e12 + languageName: node + linkType: hard + +"@csstools/selector-specificity@npm:^2.0.0, @csstools/selector-specificity@npm:^2.0.2": + version: 2.2.0 + resolution: "@csstools/selector-specificity@npm:2.2.0" + peerDependencies: + postcss-selector-parser: ^6.0.10 + checksum: d81c9b437f7d45ad0171e09240454ced439fa3e67576daae4ec7bb9c03e7a6061afeb0fa21d41f5f45d54bf8e242a7aa8101fbbba7ca7632dd847601468b5d9e + languageName: node + linkType: hard + +"@emotion/babel-plugin@npm:^11.11.0": + version: 11.11.0 + resolution: "@emotion/babel-plugin@npm:11.11.0" + dependencies: + "@babel/helper-module-imports": "npm:^7.16.7" + "@babel/runtime": "npm:^7.18.3" + "@emotion/hash": "npm:^0.9.1" + "@emotion/memoize": "npm:^0.8.1" + "@emotion/serialize": "npm:^1.1.2" + babel-plugin-macros: "npm:^3.1.0" + convert-source-map: "npm:^1.5.0" + escape-string-regexp: "npm:^4.0.0" + find-root: "npm:^1.1.0" + source-map: "npm:^0.5.7" + stylis: "npm:4.2.0" + checksum: 89cbb6ec0e52c8ee9c2a4b9889ccd4fc3a75d28091d835bfac6d7c4565d3338621e23af0a85f3bcd133e1cae795c692e1dadada015784d4b0554aa5bb111df43 + languageName: node + linkType: hard + +"@emotion/cache@npm:^11.11.0": + version: 11.11.0 + resolution: "@emotion/cache@npm:11.11.0" + dependencies: + "@emotion/memoize": "npm:^0.8.1" + "@emotion/sheet": "npm:^1.2.2" + "@emotion/utils": "npm:^1.2.1" + "@emotion/weak-memoize": "npm:^0.3.1" + stylis: "npm:4.2.0" + checksum: a23ab5ab2fd08e904698106d58ad3536fed51cc1aa0ef228e95bb640eaf11f560dbd91a395477b0d84e1e3c20150263764b4558517cf6576a89d2d6cc5253688 + languageName: node + linkType: hard + +"@emotion/hash@npm:^0.9.1": + version: 0.9.1 + resolution: "@emotion/hash@npm:0.9.1" + checksum: cdafe5da63fc1137f3db6e232fdcde9188b2b47ee66c56c29137199642a4086f42382d866911cfb4833cae2cc00271ab45cad3946b024f67b527bb7fac7f4c9d + languageName: node + linkType: hard + +"@emotion/is-prop-valid@npm:^1.2.1": + version: 1.2.1 + resolution: "@emotion/is-prop-valid@npm:1.2.1" + dependencies: + "@emotion/memoize": "npm:^0.8.1" + checksum: 7c2aabdf0ca9986ca25abc9dae711348308cf18d418d64ffa4c8ffd2114806c47f2e06ba8ee769f38ec67d65bd59ec73f34d94023e81baa1c43510ac86ccd5e6 + languageName: node + linkType: hard + +"@emotion/memoize@npm:^0.8.1": + version: 0.8.1 + resolution: "@emotion/memoize@npm:0.8.1" + checksum: dffed372fc3b9fa2ba411e76af22b6bb686fb0cb07694fdfaa6dd2baeb0d5e4968c1a7caa472bfcf06a5997d5e7c7d16b90e993f9a6ffae79a2c3dbdc76dfe78 + languageName: node + linkType: hard + +"@emotion/react@npm:^11.10.4, @emotion/react@npm:^11.7.1": + version: 11.11.1 + resolution: "@emotion/react@npm:11.11.1" + dependencies: + "@babel/runtime": "npm:^7.18.3" + "@emotion/babel-plugin": "npm:^11.11.0" + "@emotion/cache": "npm:^11.11.0" + "@emotion/serialize": "npm:^1.1.2" + "@emotion/use-insertion-effect-with-fallbacks": "npm:^1.0.1" + "@emotion/utils": "npm:^1.2.1" + "@emotion/weak-memoize": "npm:^0.3.1" + hoist-non-react-statics: "npm:^3.3.1" + peerDependencies: + react: ">=16.8.0" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 1aea4d735b537fbfbeda828bbf929488a7e1b5b7d131f14aeede8737e92bb3b611e15fec353e97f85aed7a65a1c86a695a04ba6e9be905231beef6bd624cb705 + languageName: node + linkType: hard + +"@emotion/serialize@npm:^1.1.2": + version: 1.1.2 + resolution: "@emotion/serialize@npm:1.1.2" + dependencies: + "@emotion/hash": "npm:^0.9.1" + "@emotion/memoize": "npm:^0.8.1" + "@emotion/unitless": "npm:^0.8.1" + "@emotion/utils": "npm:^1.2.1" + csstype: "npm:^3.0.2" + checksum: d243e0e5abce8d2183d25a32ec89bf650ee741ebadb29e6405abde05d4e2ed446ba5b3f725a29833ad709d0d08f0a5c8d0532fdcd43f4b23d931d8b6d4f218c1 + languageName: node + linkType: hard + +"@emotion/sheet@npm:^1.2.2": + version: 1.2.2 + resolution: "@emotion/sheet@npm:1.2.2" + checksum: 69827a1bfa43d7b188f1d8cea42163143a36312543fdade5257c459a2b3efd7ce386aac84ba152bc2517a4f7e54384c04800b26adb382bb284ac7e4ad40e584b + languageName: node + linkType: hard + +"@emotion/styled@npm:^11.10.4, @emotion/styled@npm:^11.6.0": + version: 11.11.0 + resolution: "@emotion/styled@npm:11.11.0" + dependencies: + "@babel/runtime": "npm:^7.18.3" + "@emotion/babel-plugin": "npm:^11.11.0" + "@emotion/is-prop-valid": "npm:^1.2.1" + "@emotion/serialize": "npm:^1.1.2" + "@emotion/use-insertion-effect-with-fallbacks": "npm:^1.0.1" + "@emotion/utils": "npm:^1.2.1" + peerDependencies: + "@emotion/react": ^11.0.0-rc.0 + react: ">=16.8.0" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: a168bd7a8a6f254e54a321be4c7b7dd4bf65815e6570ba7c5a435b7d5aeebd76434e04886db7799a955817c8d5bf0103a3dcc3c785fba2bb53922320dda59a10 + languageName: node + linkType: hard + +"@emotion/unitless@npm:^0.8.1": + version: 0.8.1 + resolution: "@emotion/unitless@npm:0.8.1" + checksum: a1ed508628288f40bfe6dd17d431ed899c067a899fa293a13afe3aed1d70fac0412b8a215fafab0b42829360db687fecd763e5f01a64ddc4a4b58ec3112ff548 + languageName: node + linkType: hard + +"@emotion/use-insertion-effect-with-fallbacks@npm:^1.0.1": + version: 1.0.1 + resolution: "@emotion/use-insertion-effect-with-fallbacks@npm:1.0.1" + peerDependencies: + react: ">=16.8.0" + checksum: a15b2167940e3a908160687b73fc4fcd81e59ab45136b6967f02c7c419d9a149acd22a416b325c389642d4f1c3d33cf4196cad6b618128b55b7c74f6807a240b + languageName: node + linkType: hard + +"@emotion/utils@npm:^1.2.1": + version: 1.2.1 + resolution: "@emotion/utils@npm:1.2.1" + checksum: db43ca803361740c14dfb1cca1464d10d27f4c8b40d3e8864e6932ccf375d1450778ff4e4eadee03fb97f2aeb18de9fae98294905596a12ff7d4cd1910414d8d + languageName: node + linkType: hard + +"@emotion/weak-memoize@npm:^0.3.1": + version: 0.3.1 + resolution: "@emotion/weak-memoize@npm:0.3.1" + checksum: ed514b3cb94bbacece4ac2450d98898066c0a0698bdeda256e312405ca53634cb83c75889b25cd8bbbe185c80f4c05a1f0a0091e1875460ba6be61d0334f0b8a + languageName: node + linkType: hard + +"@esbuild/android-arm64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/android-arm64@npm:0.18.11" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/android-arm@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/android-arm@npm:0.18.11" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@esbuild/android-x64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/android-x64@npm:0.18.11" + conditions: os=android & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/darwin-arm64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/darwin-arm64@npm:0.18.11" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/darwin-x64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/darwin-x64@npm:0.18.11" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/freebsd-arm64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/freebsd-arm64@npm:0.18.11" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/freebsd-x64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/freebsd-x64@npm:0.18.11" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/linux-arm64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-arm64@npm:0.18.11" + conditions: os=linux & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/linux-arm@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-arm@npm:0.18.11" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@esbuild/linux-ia32@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-ia32@npm:0.18.11" + conditions: os=linux & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/linux-loong64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-loong64@npm:0.18.11" + conditions: os=linux & cpu=loong64 + languageName: node + linkType: hard + +"@esbuild/linux-mips64el@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-mips64el@npm:0.18.11" + conditions: os=linux & cpu=mips64el + languageName: node + linkType: hard + +"@esbuild/linux-ppc64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-ppc64@npm:0.18.11" + conditions: os=linux & cpu=ppc64 + languageName: node + linkType: hard + +"@esbuild/linux-riscv64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-riscv64@npm:0.18.11" + conditions: os=linux & cpu=riscv64 + languageName: node + linkType: hard + +"@esbuild/linux-s390x@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-s390x@npm:0.18.11" + conditions: os=linux & cpu=s390x + languageName: node + linkType: hard + +"@esbuild/linux-x64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/linux-x64@npm:0.18.11" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/netbsd-x64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/netbsd-x64@npm:0.18.11" + conditions: os=netbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/openbsd-x64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/openbsd-x64@npm:0.18.11" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/sunos-x64@npm:0.18.11" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/win32-arm64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/win32-arm64@npm:0.18.11" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/win32-ia32@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/win32-ia32@npm:0.18.11" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/win32-x64@npm:0.18.11": + version: 0.18.11 + resolution: "@esbuild/win32-x64@npm:0.18.11" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@eslint-community/eslint-utils@npm:^4.2.0": + version: 4.4.0 + resolution: "@eslint-community/eslint-utils@npm:4.4.0" + dependencies: + eslint-visitor-keys: "npm:^3.3.0" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: 7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e + languageName: node + linkType: hard + +"@eslint-community/regexpp@npm:^4.4.0": + version: 4.5.1 + resolution: "@eslint-community/regexpp@npm:4.5.1" + checksum: d79cbd99cc4dcfbb17e8dd30a30bb5aec5da9c60b9471043f886f116615bb15f0d417cb0ca638cefedba0b4c67c339e2011b53d88264a4540775f042a5879e01 + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^2.1.0": + version: 2.1.0 + resolution: "@eslint/eslintrc@npm:2.1.0" + dependencies: + ajv: "npm:^6.12.4" + debug: "npm:^4.3.2" + espree: "npm:^9.6.0" + globals: "npm:^13.19.0" + ignore: "npm:^5.2.0" + import-fresh: "npm:^3.2.1" + js-yaml: "npm:^4.1.0" + minimatch: "npm:^3.1.2" + strip-json-comments: "npm:^3.1.1" + checksum: 6ffbc3e7867b377754492539af0e2f5b55645a2c67279a70508fe09080bc76d49ba64b579e59a2a04014f84d0768301736fbcdd94c7b3ad4f0e648c32bf21e43 + languageName: node + linkType: hard + +"@eslint/js@npm:8.44.0": + version: 8.44.0 + resolution: "@eslint/js@npm:8.44.0" + checksum: ce7b966f8804228e4d5725d44d3c8fb7fc427176f077401323a02e082f628d207133a25704330e610ebe3254fdf1acb186f779d1242fd145a758fdcc4486a660 + languageName: node + linkType: hard + +"@humanwhocodes/config-array@npm:^0.11.10": + version: 0.11.10 + resolution: "@humanwhocodes/config-array@npm:0.11.10" + dependencies: + "@humanwhocodes/object-schema": "npm:^1.2.1" + debug: "npm:^4.1.1" + minimatch: "npm:^3.0.5" + checksum: 9e307a49a5baa28beb243d2c14c145f288fccd6885f4c92a9055707057ec40980242256b2a07c976cfa6c75f7081da111a40a9844d1ca8daeff2302f8b640e76 + languageName: node + linkType: hard + +"@humanwhocodes/module-importer@npm:^1.0.1": + version: 1.0.1 + resolution: "@humanwhocodes/module-importer@npm:1.0.1" + checksum: 909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529 + languageName: node + linkType: hard + +"@humanwhocodes/object-schema@npm:^1.2.1": + version: 1.2.1 + resolution: "@humanwhocodes/object-schema@npm:1.2.1" + checksum: c3c35fdb70c04a569278351c75553e293ae339684ed75895edc79facc7276e351115786946658d78133130c0cca80e57e2203bc07f8fa7fe7980300e8deef7db + languageName: node + linkType: hard + +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" + dependencies: + string-width: "npm:^5.1.2" + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: "npm:^7.0.1" + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: "npm:^8.1.0" + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e + languageName: node + linkType: hard + +"@istanbuljs/load-nyc-config@npm:^1.0.0": + version: 1.1.0 + resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" + dependencies: + camelcase: "npm:^5.3.1" + find-up: "npm:^4.1.0" + get-package-type: "npm:^0.1.0" + js-yaml: "npm:^3.13.1" + resolve-from: "npm:^5.0.0" + checksum: dd2a8b094887da5a1a2339543a4933d06db2e63cbbc2e288eb6431bd832065df0c099d091b6a67436e71b7d6bf85f01ce7c15f9253b4cbebcc3b9a496165ba42 + languageName: node + linkType: hard + +"@istanbuljs/schema@npm:^0.1.2": + version: 0.1.3 + resolution: "@istanbuljs/schema@npm:0.1.3" + checksum: 61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a + languageName: node + linkType: hard + +"@jest/console@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/console@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + jest-message-util: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + slash: "npm:^3.0.0" + checksum: 6cb46d721698aaeb0d57ace967f7a36bbefc20719d420ea8bf8ec8adf9994cb1ec11a93bbd9b1514c12a19b5dd99dcbbd1d3e22fd8bea8e41e845055b03ac18d + languageName: node + linkType: hard + +"@jest/console@npm:^28.1.3": + version: 28.1.3 + resolution: "@jest/console@npm:28.1.3" + dependencies: + "@jest/types": "npm:^28.1.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + jest-message-util: "npm:^28.1.3" + jest-util: "npm:^28.1.3" + slash: "npm:^3.0.0" + checksum: c539b814cd9d3eadb53ce04e2ac00716fe0d808511cb64aebf2920bcb1646c65f094188a7f9aa74fca73a501c00ee5835e906717dc3682cbb4ecf7fbb316fc75 + languageName: node + linkType: hard + +"@jest/core@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/core@npm:27.5.1" + dependencies: + "@jest/console": "npm:^27.5.1" + "@jest/reporters": "npm:^27.5.1" + "@jest/test-result": "npm:^27.5.1" + "@jest/transform": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + ansi-escapes: "npm:^4.2.1" + chalk: "npm:^4.0.0" + emittery: "npm:^0.8.1" + exit: "npm:^0.1.2" + graceful-fs: "npm:^4.2.9" + jest-changed-files: "npm:^27.5.1" + jest-config: "npm:^27.5.1" + jest-haste-map: "npm:^27.5.1" + jest-message-util: "npm:^27.5.1" + jest-regex-util: "npm:^27.5.1" + jest-resolve: "npm:^27.5.1" + jest-resolve-dependencies: "npm:^27.5.1" + jest-runner: "npm:^27.5.1" + jest-runtime: "npm:^27.5.1" + jest-snapshot: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + jest-validate: "npm:^27.5.1" + jest-watcher: "npm:^27.5.1" + micromatch: "npm:^4.0.4" + rimraf: "npm:^3.0.0" + slash: "npm:^3.0.0" + strip-ansi: "npm:^6.0.0" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + checksum: 8c858fe99cec9eabde8c894d4313171b923e1d4b8f66884b1fa1b7a0123db9f94b797f77d888a2b57d4832e7e46cd67aa1e2f227f1544643478de021c4b84db2 + languageName: node + linkType: hard + +"@jest/environment@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/environment@npm:27.5.1" + dependencies: + "@jest/fake-timers": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + jest-mock: "npm:^27.5.1" + checksum: 50e40b4f0a351a83f21af03c5cffd9f061729aee8f73131dbb32b39838c575a89d313e946ded91c08e16cf58ff470d74d6b3a48f664cec5c70a946aff45310b3 + languageName: node + linkType: hard + +"@jest/expect-utils@npm:^29.6.1": + version: 29.6.1 + resolution: "@jest/expect-utils@npm:29.6.1" + dependencies: + jest-get-type: "npm:^29.4.3" + checksum: e04164280c0b47a6285f39e70323b54eafc42367d9304897d55d70abd50324e060cb81efc7df82b1031eb46b82b85ecf343ed50c72654b11f1492b34c5e1a7b9 + languageName: node + linkType: hard + +"@jest/fake-timers@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/fake-timers@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + "@sinonjs/fake-timers": "npm:^8.0.1" + "@types/node": "npm:*" + jest-message-util: "npm:^27.5.1" + jest-mock: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + checksum: df6113d11f572219ac61d3946b6cc1aaa8632e3afed9ff959bdb46e122e7cc5b5a16451a88d5fca7cc8daa66333adde3cf70d96c936f3d8406276f6e6e2cbacd + languageName: node + linkType: hard + +"@jest/globals@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/globals@npm:27.5.1" + dependencies: + "@jest/environment": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + expect: "npm:^27.5.1" + checksum: b7309297f13b02bf748782772ab2054bbd11f10eb13e9b4660b33acb8c2c4bc7ee07aa1175045feb27ce3a6916b2d3982a3c5350ea1f9c2c3852334942077471 + languageName: node + linkType: hard + +"@jest/reporters@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/reporters@npm:27.5.1" + dependencies: + "@bcoe/v8-coverage": "npm:^0.2.3" + "@jest/console": "npm:^27.5.1" + "@jest/test-result": "npm:^27.5.1" + "@jest/transform": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + collect-v8-coverage: "npm:^1.0.0" + exit: "npm:^0.1.2" + glob: "npm:^7.1.2" + graceful-fs: "npm:^4.2.9" + istanbul-lib-coverage: "npm:^3.0.0" + istanbul-lib-instrument: "npm:^5.1.0" + istanbul-lib-report: "npm:^3.0.0" + istanbul-lib-source-maps: "npm:^4.0.0" + istanbul-reports: "npm:^3.1.3" + jest-haste-map: "npm:^27.5.1" + jest-resolve: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + jest-worker: "npm:^27.5.1" + slash: "npm:^3.0.0" + source-map: "npm:^0.6.0" + string-length: "npm:^4.0.1" + terminal-link: "npm:^2.0.0" + v8-to-istanbul: "npm:^8.1.0" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + checksum: fd66b17ca8af0464759d12525cfd84ae87403132da61f18ee76a2f07ecd64427797f7ad6e56d338ffa9f956cce153444edf1e5775093e9be2903aaf4d0e049bc + languageName: node + linkType: hard + +"@jest/schemas@npm:^28.1.3": + version: 28.1.3 + resolution: "@jest/schemas@npm:28.1.3" + dependencies: + "@sinclair/typebox": "npm:^0.24.1" + checksum: 8c325918f3e1b83e687987b05c2e5143d171f372b091f891fe17835f06fadd864ddae3c7e221a704bdd7e2ea28c4b337124c02023d8affcbdd51eca2879162ac + languageName: node + linkType: hard + +"@jest/schemas@npm:^29.6.0": + version: 29.6.0 + resolution: "@jest/schemas@npm:29.6.0" + dependencies: + "@sinclair/typebox": "npm:^0.27.8" + checksum: 8671b1fb59c4296204d335190e8451e1983d9f2db6dbbd38f838c6c273fd222fc11e4e0df04adfb6169d36acfb9693d525db136653ec04e6884180f45a131d8f + languageName: node + linkType: hard + +"@jest/source-map@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/source-map@npm:27.5.1" + dependencies: + callsites: "npm:^3.0.0" + graceful-fs: "npm:^4.2.9" + source-map: "npm:^0.6.0" + checksum: 7d9937675ba4cb2f27635b13be0f86588d18cf3b2d5442e818e702ea87afa5048c5f8892c749857fd7dd884fd6e14f799851ec9af61940813a690c6d5a70979e + languageName: node + linkType: hard + +"@jest/test-result@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/test-result@npm:27.5.1" + dependencies: + "@jest/console": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/istanbul-lib-coverage": "npm:^2.0.0" + collect-v8-coverage: "npm:^1.0.0" + checksum: 4fb8cbefda8f645c57e2fc0d0df169b0bf5f6cb456b42dc09f5138595b736e800d8d83e3fd36a47fd801a2359988c841792d7fc46784bec908c88b39b6581749 + languageName: node + linkType: hard + +"@jest/test-result@npm:^28.1.3": + version: 28.1.3 + resolution: "@jest/test-result@npm:28.1.3" + dependencies: + "@jest/console": "npm:^28.1.3" + "@jest/types": "npm:^28.1.3" + "@types/istanbul-lib-coverage": "npm:^2.0.0" + collect-v8-coverage: "npm:^1.0.0" + checksum: 2dcc5dda444d4a308c6cb5b62f71a72ee5ff5702541e7faeec0314b4d50139d9004efd503baa15dec692856005c8a5c4afc3a94dabd92825645832eb12f00bea + languageName: node + linkType: hard + +"@jest/test-sequencer@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/test-sequencer@npm:27.5.1" + dependencies: + "@jest/test-result": "npm:^27.5.1" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^27.5.1" + jest-runtime: "npm:^27.5.1" + checksum: f43ecfc5b4c736c7f6e8521c13ef7b447ad29f96732675776be69b2631eb76019793a02ad58e69baf7ffbce1cc8d5b62ca30294091c4ad3acbdce6c12b73d049 + languageName: node + linkType: hard + +"@jest/transform@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/transform@npm:27.5.1" + dependencies: + "@babel/core": "npm:^7.1.0" + "@jest/types": "npm:^27.5.1" + babel-plugin-istanbul: "npm:^6.1.1" + chalk: "npm:^4.0.0" + convert-source-map: "npm:^1.4.0" + fast-json-stable-stringify: "npm:^2.0.0" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^27.5.1" + jest-regex-util: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + micromatch: "npm:^4.0.4" + pirates: "npm:^4.0.4" + slash: "npm:^3.0.0" + source-map: "npm:^0.6.1" + write-file-atomic: "npm:^3.0.0" + checksum: 2d1819dad9621a562a1ff6eceefeb5ae0900063c50e982b9f08e48d7328a0c343520ba27ce291cb72c113d4f441ef4a95285b9d4ef6604cffd53740e951c99b6 + languageName: node + linkType: hard + +"@jest/types@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/types@npm:27.5.1" + dependencies: + "@types/istanbul-lib-coverage": "npm:^2.0.0" + "@types/istanbul-reports": "npm:^3.0.0" + "@types/node": "npm:*" + "@types/yargs": "npm:^16.0.0" + chalk: "npm:^4.0.0" + checksum: 4598b302398db0eb77168b75a6c58148ea02cc9b9f21c5d1bbe985c1c9257110a5653cf7b901c3cab87fba231e3fed83633687f1c0903b4bc6939ab2a8452504 + languageName: node + linkType: hard + +"@jest/types@npm:^28.1.3": + version: 28.1.3 + resolution: "@jest/types@npm:28.1.3" + dependencies: + "@jest/schemas": "npm:^28.1.3" + "@types/istanbul-lib-coverage": "npm:^2.0.0" + "@types/istanbul-reports": "npm:^3.0.0" + "@types/node": "npm:*" + "@types/yargs": "npm:^17.0.8" + chalk: "npm:^4.0.0" + checksum: 3cffae7d1133aa7952a6b5c4806f89ed78cb0dfe3ec4e8c5a6e704d7bab3cff86c714abb5f0f637540da22776900a33b3bad79c5ed5fc5b5535fb24e3006e3cb + languageName: node + linkType: hard + +"@jest/types@npm:^29.6.1": + version: 29.6.1 + resolution: "@jest/types@npm:29.6.1" + dependencies: + "@jest/schemas": "npm:^29.6.0" + "@types/istanbul-lib-coverage": "npm:^2.0.0" + "@types/istanbul-reports": "npm:^3.0.0" + "@types/node": "npm:*" + "@types/yargs": "npm:^17.0.8" + chalk: "npm:^4.0.0" + checksum: 58de1c2484f6c4968b566fb1661506794d3df79476c0605a71b6e40b8a5a1a9837b9c692782540a179daa424c572c7d0818afa306918e3fcd29c4a962ed34a7b + languageName: node + linkType: hard + +"@jridgewell/gen-mapping@npm:^0.3.0, @jridgewell/gen-mapping@npm:^0.3.2": + version: 0.3.3 + resolution: "@jridgewell/gen-mapping@npm:0.3.3" + dependencies: + "@jridgewell/set-array": "npm:^1.0.1" + "@jridgewell/sourcemap-codec": "npm:^1.4.10" + "@jridgewell/trace-mapping": "npm:^0.3.9" + checksum: 376fc11cf5a967318ba3ddd9d8e91be528eab6af66810a713c49b0c3f8dc67e9949452c51c38ab1b19aa618fb5e8594da5a249977e26b1e7fea1ee5a1fcacc74 + languageName: node + linkType: hard + +"@jridgewell/resolve-uri@npm:3.1.0": + version: 3.1.0 + resolution: "@jridgewell/resolve-uri@npm:3.1.0" + checksum: 78055e2526108331126366572045355051a930f017d1904a4f753d3f4acee8d92a14854948095626f6163cffc24ea4e3efa30637417bb866b84743dec7ef6fd9 + languageName: node + linkType: hard + +"@jridgewell/set-array@npm:^1.0.1": + version: 1.1.2 + resolution: "@jridgewell/set-array@npm:1.1.2" + checksum: bc7ab4c4c00470de4e7562ecac3c0c84f53e7ee8a711e546d67c47da7febe7c45cd67d4d84ee3c9b2c05ae8e872656cdded8a707a283d30bd54fbc65aef821ab + languageName: node + linkType: hard + +"@jridgewell/source-map@npm:^0.3.3": + version: 0.3.5 + resolution: "@jridgewell/source-map@npm:0.3.5" + dependencies: + "@jridgewell/gen-mapping": "npm:^0.3.0" + "@jridgewell/trace-mapping": "npm:^0.3.9" + checksum: b985d9ebd833a21a6e9ace820c8a76f60345a34d9e28d98497c16b6e93ce1f131bff0abd45f8585f14aa382cce678ed680d628c631b40a9616a19cfbc2049b68 + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:1.4.14": + version: 1.4.14 + resolution: "@jridgewell/sourcemap-codec@npm:1.4.14" + checksum: 3fbaff1387c1338b097eeb6ff92890d7838f7de0dde259e4983763b44540bfd5ca6a1f7644dc8ad003a57f7e80670d5b96a8402f1386ba9aee074743ae9bad51 + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.13": + version: 1.4.15 + resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" + checksum: 0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5 + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9": + version: 0.3.18 + resolution: "@jridgewell/trace-mapping@npm:0.3.18" + dependencies: + "@jridgewell/resolve-uri": "npm:3.1.0" + "@jridgewell/sourcemap-codec": "npm:1.4.14" + checksum: e5045775f076022b6c7cc64a7b55742faa5442301cb3389fd0e6712fafc46a2bb13c68fa1ffaf7b8bb665a91196f050b4115885fc802094ebc06a1cf665935ac + languageName: node + linkType: hard + +"@juggle/resize-observer@npm:^3.3.1": + version: 3.4.0 + resolution: "@juggle/resize-observer@npm:3.4.0" + checksum: 12930242357298c6f2ad5d4ec7cf631dfb344ca7c8c830ab7f64e6ac11eb1aae486901d8d880fd08fb1b257800c160a0da3aee1e7ed9adac0ccbb9b7c5d93347 + languageName: node + linkType: hard + +"@leichtgewicht/ip-codec@npm:^2.0.1": + version: 2.0.4 + resolution: "@leichtgewicht/ip-codec@npm:2.0.4" + checksum: 3b0d8844d1d47c0a5ed7267c2964886adad3a642b85d06f95c148eeefd80cdabbd6aa0d63ccde8239967a2e9b6bb734a16bd57e1fda3d16bf56d50a7e7ec131b + languageName: node + linkType: hard + +"@mapbox/geojson-rewind@npm:^0.5.0": + version: 0.5.2 + resolution: "@mapbox/geojson-rewind@npm:0.5.2" + dependencies: + get-stream: "npm:^6.0.1" + minimist: "npm:^1.2.6" + bin: + geojson-rewind: geojson-rewind + checksum: 631f89ba5b656cb1e02197c242b231f98da0afb96815fa26481497176d6bd5f2aac77af4950da91c954094694acbc26382bd3d38146705737e8ff06442d95a12 + languageName: node + linkType: hard + +"@mapbox/geojson-types@npm:^1.0.2": + version: 1.0.2 + resolution: "@mapbox/geojson-types@npm:1.0.2" + checksum: aa0a2cb95a358d8756ab5aa70356bcbd6f554a4571703a88a09e7db6580061d6ef4054db5fe3ecb2817c383b8b5433746a8f46712dc606b32063f73b154f99fc + languageName: node + linkType: hard + +"@mapbox/jsonlint-lines-primitives@npm:^2.0.2": + version: 2.0.2 + resolution: "@mapbox/jsonlint-lines-primitives@npm:2.0.2" + checksum: 5814e42fc453700132f93ea742aabcef9a3c98d9bf17d4c1106f82d1dcd91bbc93052e66e29014323b9b2a41b020c743d897e4a96cc4ed2f734482d587d8c2b2 + languageName: node + linkType: hard + +"@mapbox/mapbox-gl-supported@npm:^1.5.0": + version: 1.5.0 + resolution: "@mapbox/mapbox-gl-supported@npm:1.5.0" + peerDependencies: + mapbox-gl: ">=0.32.1 <2.0.0" + checksum: 5b7712e8b546e598dc5152632504cad53081211b64ddc4447825840ddca703275bc36599167b9550ab906ca8a9554936bcdae562073fdef24b8d38d78ee262fb + languageName: node + linkType: hard + +"@mapbox/point-geometry@npm:0.1.0, @mapbox/point-geometry@npm:^0.1.0, @mapbox/point-geometry@npm:~0.1.0": + version: 0.1.0 + resolution: "@mapbox/point-geometry@npm:0.1.0" + checksum: e4d861908574cb3165f5ad37b000416ebc90a2d6b3e0073191e6b6dc5074a6159d84ac5114d78557399bb429134f0d05bfb529e7902d1cb2b36d722b72ab662c + languageName: node + linkType: hard + +"@mapbox/tiny-sdf@npm:^1.1.1": + version: 1.2.5 + resolution: "@mapbox/tiny-sdf@npm:1.2.5" + checksum: de0252388a628ddb491c986c715f0b63ca6a74f5dac16d3e51eb75a21935a31e34fba5db47c81cc59a462d782021fc68b2e3cc119b2d6cabe15d31e311674d6c + languageName: node + linkType: hard + +"@mapbox/unitbezier@npm:^0.0.0": + version: 0.0.0 + resolution: "@mapbox/unitbezier@npm:0.0.0" + checksum: af1943ebeb7532317a5cedfc38d0e580b7bd76cc5c43988df65541d377f3e3fa7d68c201dda20f5239213a4bc81ec5d13146354107196ffc4f14d6f39b8343b5 + languageName: node + linkType: hard + +"@mapbox/vector-tile@npm:^1.3.1": + version: 1.3.1 + resolution: "@mapbox/vector-tile@npm:1.3.1" + dependencies: + "@mapbox/point-geometry": "npm:~0.1.0" + checksum: ffb271b95c383923768295e72bdf95e428efb906434b864ea04d3853a8373cf0de19f039bd6615f7cf018fbfb4dbf4599f27ebaa86c2b7b09f7d69187f8d7da1 + languageName: node + linkType: hard + +"@mapbox/whoots-js@npm:^3.1.0": + version: 3.1.0 + resolution: "@mapbox/whoots-js@npm:3.1.0" + checksum: fe9e959a9049bcbc2c05d9d1156e050191ad697a1bd95e41cdfa069051ff1d6f2930ced234a8d68d5a0bf78091feab30d76497418ec800d90f0aac8691fe4fd4 + languageName: node + linkType: hard + +"@mui/base@npm:5.0.0-beta.6": + version: 5.0.0-beta.6 + resolution: "@mui/base@npm:5.0.0-beta.6" + dependencies: + "@babel/runtime": "npm:^7.22.5" + "@emotion/is-prop-valid": "npm:^1.2.1" + "@mui/types": "npm:^7.2.4" + "@mui/utils": "npm:^5.13.7" + "@popperjs/core": "npm:^2.11.8" + clsx: "npm:^1.2.1" + prop-types: "npm:^15.8.1" + react-is: "npm:^18.2.0" + peerDependencies: + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 480895fa640865e70d928e54cebc9934f0152b0f5fea438b2238072f2bde5d67c7e4861d5645e94bb810459eb957ff305efab65a1cc26776d020bca06e20ed89 + languageName: node + linkType: hard + +"@mui/core-downloads-tracker@npm:^5.13.7": + version: 5.13.7 + resolution: "@mui/core-downloads-tracker@npm:5.13.7" + checksum: ddf84bf0fede05717754a2fb7a151549d48e8dabaea5e4b38a65195aa0f148d28c1c6e7ff5bf4d83677860c0c2f2899f28400517f24dbac228b7e8f7be26fc3c + languageName: node + linkType: hard + +"@mui/icons-material@npm:^5.10.3": + version: 5.13.7 + resolution: "@mui/icons-material@npm:5.13.7" + dependencies: + "@babel/runtime": "npm:^7.22.5" + peerDependencies: + "@mui/material": ^5.0.0 + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 37003114fc345d747406231cbe5d7257992912484923f3a56c9968754b3bfd94c6cc7314b2dea023a9f7aec0d449cb682201f455e42e9b587bd3e806d8f89ce7 + languageName: node + linkType: hard + +"@mui/material@npm:^5.10.5, @mui/material@npm:^5.2.4, @mui/material@npm:^5.2.5": + version: 5.13.7 + resolution: "@mui/material@npm:5.13.7" + dependencies: + "@babel/runtime": "npm:^7.22.5" + "@mui/base": "npm:5.0.0-beta.6" + "@mui/core-downloads-tracker": "npm:^5.13.7" + "@mui/system": "npm:^5.13.7" + "@mui/types": "npm:^7.2.4" + "@mui/utils": "npm:^5.13.7" + "@types/react-transition-group": "npm:^4.4.6" + clsx: "npm:^1.2.1" + csstype: "npm:^3.1.2" + prop-types: "npm:^15.8.1" + react-is: "npm:^18.2.0" + react-transition-group: "npm:^4.4.5" + peerDependencies: + "@emotion/react": ^11.5.0 + "@emotion/styled": ^11.3.0 + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@emotion/react": + optional: true + "@emotion/styled": + optional: true + "@types/react": + optional: true + checksum: 360bc1fb0d9de0ee1438f44299cc7e463a2d02f2a263a7b9da2806ed8359be16174386a9cf54d24b22728c412c5a59c4ea333eb95c9058db8fa7b40fd4427c2d + languageName: node + linkType: hard + +"@mui/private-theming@npm:^5.13.7": + version: 5.13.7 + resolution: "@mui/private-theming@npm:5.13.7" + dependencies: + "@babel/runtime": "npm:^7.22.5" + "@mui/utils": "npm:^5.13.7" + prop-types: "npm:^15.8.1" + peerDependencies: + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: e38b0a441f55651767a8b29d767c9457d368ab0870f76d38d001fd127663796a219f8c50be79a71343faa798e1ae78b4b379d3c1e391fb0910b27fedf5ce3f70 + languageName: node + linkType: hard + +"@mui/styled-engine@npm:^5.13.2": + version: 5.13.2 + resolution: "@mui/styled-engine@npm:5.13.2" + dependencies: + "@babel/runtime": "npm:^7.21.0" + "@emotion/cache": "npm:^11.11.0" + csstype: "npm:^3.1.2" + prop-types: "npm:^15.8.1" + peerDependencies: + "@emotion/react": ^11.4.1 + "@emotion/styled": ^11.3.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@emotion/react": + optional: true + "@emotion/styled": + optional: true + checksum: ed53dbe0151067c6843989fc41245f98a56c48e7c341ce61656b71de2cb334bdf1cea8bbf625ddbc4ce600d6005717c2cd1f34473b3b41e154662353cf2c108e + languageName: node + linkType: hard + +"@mui/system@npm:^5.13.7": + version: 5.13.7 + resolution: "@mui/system@npm:5.13.7" + dependencies: + "@babel/runtime": "npm:^7.22.5" + "@mui/private-theming": "npm:^5.13.7" + "@mui/styled-engine": "npm:^5.13.2" + "@mui/types": "npm:^7.2.4" + "@mui/utils": "npm:^5.13.7" + clsx: "npm:^1.2.1" + csstype: "npm:^3.1.2" + prop-types: "npm:^15.8.1" + peerDependencies: + "@emotion/react": ^11.5.0 + "@emotion/styled": ^11.3.0 + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@emotion/react": + optional: true + "@emotion/styled": + optional: true + "@types/react": + optional: true + checksum: 7031c0aca3eb6f72ef6c45195d54133cadd3d5bfe39b7f048f1ef38ee74a8f9402db07068230a02047b4a4623914e4c425e201b55e5349ab226f9f39d2d26096 + languageName: node + linkType: hard + +"@mui/types@npm:^7.2.4": + version: 7.2.4 + resolution: "@mui/types@npm:7.2.4" + peerDependencies: + "@types/react": "*" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 17411effd184eff34d6a1a55b2249c7e1ef195bb30c48154f0b16fdce428ff55be4ec5dde8b4a556c01eda2d34e3dcc18d925f8fdee606f5bc15f91167f0ecbc + languageName: node + linkType: hard + +"@mui/utils@npm:^5.13.6, @mui/utils@npm:^5.13.7": + version: 5.13.7 + resolution: "@mui/utils@npm:5.13.7" + dependencies: + "@babel/runtime": "npm:^7.22.5" + "@types/prop-types": "npm:^15.7.5" + "@types/react-is": "npm:^18.2.1" + prop-types: "npm:^15.8.1" + react-is: "npm:^18.2.0" + peerDependencies: + react: ^17.0.0 || ^18.0.0 + checksum: bb64e27e34166fe3e71cb390bce205f65ac03f0cd955fe0e75fe904976ad93bf33812ff284af45c76d888d97345359d7e325122c1e55559734cd0e521035029c + languageName: node + linkType: hard + +"@mui/x-data-grid@npm:^6.5.0": + version: 6.9.2 + resolution: "@mui/x-data-grid@npm:6.9.2" + dependencies: + "@babel/runtime": "npm:^7.22.5" + "@mui/utils": "npm:^5.13.6" + clsx: "npm:^1.2.1" + prop-types: "npm:^15.8.1" + reselect: "npm:^4.1.8" + peerDependencies: + "@mui/material": ^5.4.1 + "@mui/system": ^5.4.1 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + checksum: 8b650ffce55e560fff48f56c9ca2d6d85fb1dd67237ea7335bd33c122518f13f1b1c99dcf04695cdf63fe244f47758a20ff2329b2a43907df6d37a8f04dc54f6 + languageName: node + linkType: hard + +"@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1": + version: 5.1.1-v1 + resolution: "@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1" + dependencies: + eslint-scope: "npm:5.1.1" + checksum: 75dda3e623b8ad7369ca22552d6beee337a814b2d0e8a32d23edd13fcb65c8082b32c5d86e436f3860dd7ade30d91d5db55d4ef9a08fb5a976c718ecc0d88a74 + languageName: node + linkType: hard + +"@nicolo-ribaudo/semver-v6@npm:^6.3.3": + version: 6.3.3 + resolution: "@nicolo-ribaudo/semver-v6@npm:6.3.3" + bin: + semver: bin/semver.js + checksum: 9ef70305fa9b03709805128611c0d95beec479cdd6f6b608386d6cee7a3d36f61e6f749378b60f1e5fca19fc58da7b06fccfe3540c0dbc40719731827d4eb1df + languageName: node + linkType: hard + +"@nodelib/fs.scandir@npm:2.1.5": + version: 2.1.5 + resolution: "@nodelib/fs.scandir@npm:2.1.5" + dependencies: + "@nodelib/fs.stat": "npm:2.0.5" + run-parallel: "npm:^1.1.9" + checksum: 732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb + languageName: node + linkType: hard + +"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": + version: 2.0.5 + resolution: "@nodelib/fs.stat@npm:2.0.5" + checksum: 88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d + languageName: node + linkType: hard + +"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": + version: 1.2.8 + resolution: "@nodelib/fs.walk@npm:1.2.8" + dependencies: + "@nodelib/fs.scandir": "npm:2.1.5" + fastq: "npm:^1.6.0" + checksum: db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1 + languageName: node + linkType: hard + +"@npmcli/agent@npm:^2.0.0": + version: 2.2.0 + resolution: "@npmcli/agent@npm:2.2.0" + dependencies: + agent-base: "npm:^7.1.0" + http-proxy-agent: "npm:^7.0.0" + https-proxy-agent: "npm:^7.0.1" + lru-cache: "npm:^10.0.1" + socks-proxy-agent: "npm:^8.0.1" + checksum: 7b89590598476dda88e79c473766b67c682aae6e0ab0213491daa6083dcc0c171f86b3868f5506f22c09aa5ea69ad7dfb78f4bf39a8dca375d89a42f408645b3 + languageName: node + linkType: hard + +"@npmcli/fs@npm:^3.1.0": + version: 3.1.0 + resolution: "@npmcli/fs@npm:3.1.0" + dependencies: + semver: "npm:^7.3.5" + checksum: 162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd + languageName: node + linkType: hard + +"@plotly/d3-sankey-circular@npm:0.33.1": + version: 0.33.1 + resolution: "@plotly/d3-sankey-circular@npm:0.33.1" + dependencies: + d3-array: "npm:^1.2.1" + d3-collection: "npm:^1.0.4" + d3-shape: "npm:^1.2.0" + elementary-circuits-directed-graph: "npm:^1.0.4" + checksum: 7a1c7caa4297099a0403ad1e2c4a5446f8239fce4b9a4ac44c5bc144d56e4c0eb0761dea05993db8b17a85934f9f1723ded2e008e6096d0c226b481313e6fe29 + languageName: node + linkType: hard + +"@plotly/d3-sankey@npm:0.7.2": + version: 0.7.2 + resolution: "@plotly/d3-sankey@npm:0.7.2" + dependencies: + d3-array: "npm:1" + d3-collection: "npm:1" + d3-shape: "npm:^1.2.0" + checksum: d3443749f9e7ea692ac1f19c740bac40e25df293af738164d4e313bcc6fd27d35822d5f83530cc9c1c1472d0be49e409edafbbf1ca58164aeca0ec4fe2a392e5 + languageName: node + linkType: hard + +"@plotly/d3@npm:3.8.1": + version: 3.8.1 + resolution: "@plotly/d3@npm:3.8.1" + checksum: 71473d9f495ba415c3f2d4af9186de7e5fae4e38283d89f88921a736d6bd7187227af9d54da7927f89f3e5e4042931df9e6103163293e644e04ca327c752c4d1 + languageName: node + linkType: hard + +"@plotly/point-cluster@npm:^3.1.9": + version: 3.1.9 + resolution: "@plotly/point-cluster@npm:3.1.9" + dependencies: + array-bounds: "npm:^1.0.1" + binary-search-bounds: "npm:^2.0.4" + clamp: "npm:^1.0.1" + defined: "npm:^1.0.0" + dtype: "npm:^2.0.0" + flatten-vertex-data: "npm:^1.0.2" + is-obj: "npm:^1.0.1" + math-log2: "npm:^1.0.1" + parse-rect: "npm:^1.2.0" + pick-by-alias: "npm:^1.2.0" + checksum: 3e451b1b04f1ce9c2ff1dcc2adbbc5d56bebc419f49c903eb215fa6973315d7f279fe9ebffea6f7ff0c09ba1c21bfe393bb74f54d0e5522a2d20bf43b7f35c38 + languageName: node + linkType: hard + +"@pmmmwh/react-refresh-webpack-plugin@npm:^0.5.3": + version: 0.5.10 + resolution: "@pmmmwh/react-refresh-webpack-plugin@npm:0.5.10" + dependencies: + ansi-html-community: "npm:^0.0.8" + common-path-prefix: "npm:^3.0.0" + core-js-pure: "npm:^3.23.3" + error-stack-parser: "npm:^2.0.6" + find-up: "npm:^5.0.0" + html-entities: "npm:^2.1.0" + loader-utils: "npm:^2.0.4" + schema-utils: "npm:^3.0.0" + source-map: "npm:^0.7.3" + peerDependencies: + "@types/webpack": 4.x || 5.x + react-refresh: ">=0.10.0 <1.0.0" + sockjs-client: ^1.4.0 + type-fest: ">=0.17.0 <4.0.0" + webpack: ">=4.43.0 <6.0.0" + webpack-dev-server: 3.x || 4.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + "@types/webpack": + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + checksum: e470b543c5e8d73eeaa73636e1976e6719db6ae29c93fa62818f5796c1883051f379a3cb1ff85d909ef2c6bb9ef13ca46c36f1878c48d143b1355fea6660e547 + languageName: node + linkType: hard + +"@popperjs/core@npm:^2.11.8": + version: 2.11.8 + resolution: "@popperjs/core@npm:2.11.8" + checksum: 4681e682abc006d25eb380d0cf3efc7557043f53b6aea7a5057d0d1e7df849a00e281cd8ea79c902a35a414d7919621fc2ba293ecec05f413598e0b23d5a1e63 + languageName: node + linkType: hard + +"@redux-saga/core@npm:^1.2.3": + version: 1.2.3 + resolution: "@redux-saga/core@npm:1.2.3" + dependencies: + "@babel/runtime": "npm:^7.6.3" + "@redux-saga/deferred": "npm:^1.2.1" + "@redux-saga/delay-p": "npm:^1.2.1" + "@redux-saga/is": "npm:^1.1.3" + "@redux-saga/symbols": "npm:^1.1.3" + "@redux-saga/types": "npm:^1.2.1" + redux: "npm:^4.0.4" + typescript-tuple: "npm:^2.2.1" + checksum: a6a0c67eada71a1da8b83569161a32caa9671f718f5a3b158c366cc0da3e8945c103f6ef80e71c95462619547627fc270d0ae2eecb35bbd6581e70f38db1c354 + languageName: node + linkType: hard + +"@redux-saga/deferred@npm:^1.2.1": + version: 1.2.1 + resolution: "@redux-saga/deferred@npm:1.2.1" + checksum: 7042a36e1a799e9602395eb90fb1fa7521c0043743b13cbb9c7a13893be732ba35c0415524b99e420f5e130c103f9e565e5854e49e4d64d09a0f4bb835ba3e72 + languageName: node + linkType: hard + +"@redux-saga/delay-p@npm:^1.2.1": + version: 1.2.1 + resolution: "@redux-saga/delay-p@npm:1.2.1" + dependencies: + "@redux-saga/symbols": "npm:^1.1.3" + checksum: 27566d6b95779d046aef47225d06d8b00a9fe934fa1b713b518359df065b9f7e9512ca5f1ab7a55314664de6a3d89d69490d64e6fda229884c3678f199581f37 + languageName: node + linkType: hard + +"@redux-saga/is@npm:^1.1.3": + version: 1.1.3 + resolution: "@redux-saga/is@npm:1.1.3" + dependencies: + "@redux-saga/symbols": "npm:^1.1.3" + "@redux-saga/types": "npm:^1.2.1" + checksum: f516755b89b4bc7a69f18765fd0be29fbe92c91b5d783c4a9baf81c8fca404c5743f2d391d90527b7d26153170d7e992c27a578f5bfb5bb5cc04c20864d9fdbb + languageName: node + linkType: hard + +"@redux-saga/symbols@npm:^1.1.3": + version: 1.1.3 + resolution: "@redux-saga/symbols@npm:1.1.3" + checksum: 71141bf8fe74420d0929f3c08e8ebfb54bda47ef4177dc46045c73de2f4b5762f176e80c573bce5ac77bc3cb39aa872e943ecbd80b9b317a571c93986c8b9f22 + languageName: node + linkType: hard + +"@redux-saga/types@npm:^1.2.1": + version: 1.2.1 + resolution: "@redux-saga/types@npm:1.2.1" + checksum: 38dc478c5e20dc52511ee122d0011fc71d26266a300ed1b66ec7863c8075aa27cc1ef1ba79dcc4aac0682912e3257ff4cddc52b9be55ee873a4e8f1a1bc7ee7c + languageName: node + linkType: hard + +"@reduxjs/toolkit@npm:^1.7.1": + version: 1.9.5 + resolution: "@reduxjs/toolkit@npm:1.9.5" + dependencies: + immer: "npm:^9.0.21" + redux: "npm:^4.2.1" + redux-thunk: "npm:^2.4.2" + reselect: "npm:^4.1.8" + peerDependencies: + react: ^16.9.0 || ^17.0.0 || ^18 + react-redux: ^7.2.1 || ^8.0.2 + peerDependenciesMeta: + react: + optional: true + react-redux: + optional: true + checksum: e816b91271e9d32a9d6ea6620cc5e3ddcb77384b08dda1d083f8de26531ee6aa4ee93e9849ee344ba54a83e1e5ce50761b10bb9f979e80a7764fc835f87d9725 + languageName: node + linkType: hard + +"@remix-run/router@npm:1.7.1": + version: 1.7.1 + resolution: "@remix-run/router@npm:1.7.1" + checksum: 4b0828529dfb2628e8e737c19bbb360dd373c0452803942611184a2ed304e39fe13996333edd05fda3c265875a78a7f31af743dbb098cbf1186105b76e10949f + languageName: node + linkType: hard + +"@rollup/plugin-babel@npm:^5.2.0": + version: 5.3.1 + resolution: "@rollup/plugin-babel@npm:5.3.1" + dependencies: + "@babel/helper-module-imports": "npm:^7.10.4" + "@rollup/pluginutils": "npm:^3.1.0" + peerDependencies: + "@babel/core": ^7.0.0 + "@types/babel__core": ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + "@types/babel__core": + optional: true + checksum: 2766134dd5567c0d4fd6909d1f511ce9bf3bd9d727e1bc5ffdd6097a3606faca324107ae8e0961839ee4dbb45e5e579ae601efe472fc0a271259aea79920cafa + languageName: node + linkType: hard + +"@rollup/plugin-inject@npm:^5.0.3": + version: 5.0.3 + resolution: "@rollup/plugin-inject@npm:5.0.3" + dependencies: + "@rollup/pluginutils": "npm:^5.0.1" + estree-walker: "npm:^2.0.2" + magic-string: "npm:^0.27.0" + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + checksum: 061bba2ff38fa83ea19865bda28280ca84e9c05e5534c00d044d48487ee1ca79911a3b6786e6f3f19586db79fbc4092dacd88b13e38e71c83a1fb50157810b3c + languageName: node + linkType: hard + +"@rollup/plugin-node-resolve@npm:^11.2.1": + version: 11.2.1 + resolution: "@rollup/plugin-node-resolve@npm:11.2.1" + dependencies: + "@rollup/pluginutils": "npm:^3.1.0" + "@types/resolve": "npm:1.17.1" + builtin-modules: "npm:^3.1.0" + deepmerge: "npm:^4.2.2" + is-module: "npm:^1.0.0" + resolve: "npm:^1.19.0" + peerDependencies: + rollup: ^1.20.0||^2.0.0 + checksum: a8226b01352ee1f7133b1b59b3906267e11c99020a55e3b7a313e03889f790d1cd94e7f7769d3963261e897c3265082533ba595976f8e3f08cf70aa88bf1ddd7 + languageName: node + linkType: hard + +"@rollup/plugin-replace@npm:^2.4.1": + version: 2.4.2 + resolution: "@rollup/plugin-replace@npm:2.4.2" + dependencies: + "@rollup/pluginutils": "npm:^3.1.0" + magic-string: "npm:^0.25.7" + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + checksum: ea3d27291c791661638b91809d0247dde1ee71be0b16fa7060078c2700db3669eada2c3978ea979b917b29ebe06f3fddc8797feae554da966264a22142b5771a + languageName: node + linkType: hard + +"@rollup/pluginutils@npm:^3.1.0": + version: 3.1.0 + resolution: "@rollup/pluginutils@npm:3.1.0" + dependencies: + "@types/estree": "npm:0.0.39" + estree-walker: "npm:^1.0.1" + picomatch: "npm:^2.2.2" + peerDependencies: + rollup: ^1.20.0||^2.0.0 + checksum: 7151753160d15ba2b259461a6c25b3932150994ea52dba8fd3144f634c7647c2e56733d986e2c15de67c4d96a9ee7d6278efa6d2e626a7169898fd64adc0f90c + languageName: node + linkType: hard + +"@rollup/pluginutils@npm:^5.0.1, @rollup/pluginutils@npm:^5.0.2": + version: 5.0.2 + resolution: "@rollup/pluginutils@npm:5.0.2" + dependencies: + "@types/estree": "npm:^1.0.0" + estree-walker: "npm:^2.0.2" + picomatch: "npm:^2.3.1" + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + checksum: b06f73c15bb59418aa6fbfead5675bab2d6922e15663525ffc2eb8429530bc5add516600adb251cfbf9b60f3d12fb821cde155cb5103415154a476bd0f163432 + languageName: node + linkType: hard + +"@rushstack/eslint-patch@npm:^1.1.0": + version: 1.3.2 + resolution: "@rushstack/eslint-patch@npm:1.3.2" + checksum: 0a81d5f950fbfbe1d448a519821bcaf51524b8a1398f996f4fe8752a849cc83402f707a4cf5c35491d74eabbb19c2d53db7c870cfbb47aca5f081241b4a0681a + languageName: node + linkType: hard + +"@sinclair/typebox@npm:^0.24.1": + version: 0.24.51 + resolution: "@sinclair/typebox@npm:0.24.51" + checksum: 458131e83ca59ad3721f0abeef2aa5220aff2083767e1143d75c67c85d55ef7a212f48f394471ee6bdd2e860ba30f09a489cdd2a28a2824d5b0d1014bdfb2552 + languageName: node + linkType: hard + +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: ef6351ae073c45c2ac89494dbb3e1f87cc60a93ce4cde797b782812b6f97da0d620ae81973f104b43c9b7eaa789ad20ba4f6a1359f1cc62f63729a55a7d22d4e + languageName: node + linkType: hard + +"@sinonjs/commons@npm:^1.7.0": + version: 1.8.6 + resolution: "@sinonjs/commons@npm:1.8.6" + dependencies: + type-detect: "npm:4.0.8" + checksum: 93b4d4e27e93652b83467869c2fe09cbd8f37cd5582327f0e081fbf9b93899e2d267db7b668c96810c63dc229867614ced825e5512b47db96ca6f87cb3ec0f61 + languageName: node + linkType: hard + +"@sinonjs/fake-timers@npm:^8.0.1": + version: 8.1.0 + resolution: "@sinonjs/fake-timers@npm:8.1.0" + dependencies: + "@sinonjs/commons": "npm:^1.7.0" + checksum: d6b795f9ddaf044daf184c151555ca557ccd23636f2ee3d2f76a9d128329f81fc1aac412f6f67239ab92cb9390aad9955b71df93cf4bd442c68b1f341e381ab6 + languageName: node + linkType: hard + +"@surma/rollup-plugin-off-main-thread@npm:^2.2.3": + version: 2.2.3 + resolution: "@surma/rollup-plugin-off-main-thread@npm:2.2.3" + dependencies: + ejs: "npm:^3.1.6" + json5: "npm:^2.2.0" + magic-string: "npm:^0.25.0" + string.prototype.matchall: "npm:^4.0.6" + checksum: 4f36a7488cdae2907053a48231430e8e9aa8f1903a96131bf8325786afba3224011f9120164cae75043558bd051881050b071958388fe477927d340b1cc1a066 + languageName: node + linkType: hard + +"@svgr/babel-plugin-add-jsx-attribute@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-add-jsx-attribute@npm:5.4.0" + checksum: f7f7681f0353a265c85a9fa0a6682c2c39c2eba35d6c855bbf25ea9739b339bf1fdd826b61fb3875642bf607c77bf41e6a66a97a4f07fb6e84bd521a363749e5 + languageName: node + linkType: hard + +"@svgr/babel-plugin-add-jsx-attribute@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-plugin-add-jsx-attribute@npm:7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 66714c2961f21409b0d33f0f65cf52f2496838b4ed056e98c872faa9f60754fae491ca4397717991eaa9884a0a44ae8920fd550101c9877759bd73f361a49800 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-attribute@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-remove-jsx-attribute@npm:5.4.0" + checksum: 0562c4c1597aecab0248fbd250e45e630de373307468568b7508c78d315a93f29920dffad2f5f54aad8e2aad9da440e16867e54961f3e6402d9855e5fc836948 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-attribute@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-plugin-remove-jsx-attribute@npm:7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 8b2320919d918e83d8b5fc9d194a4354e3aac98801863defe4f732954bb48b665812a5e3813f2eaf8bdb0c8d78f0a2c9934675a2df5248b99d2eb7a33688d408 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-empty-expression@npm:^5.0.1": + version: 5.0.1 + resolution: "@svgr/babel-plugin-remove-jsx-empty-expression@npm:5.0.1" + checksum: 80e2d736528ee553f54916acb9a9a0414e4a06730df420fb2a14788446125728abcb5125bfca6b15ce6fd99771397160f02ec95828871777c1a7803fcf258a44 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-empty-expression@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-plugin-remove-jsx-empty-expression@npm:7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c9d338206aade1bd280a4d45ec3f80f72b91e0a27502d38eeb68024e5fa21b0fcd20f72b6e591eb0e82cca9793012680888e66c2fd04bdcf17e79385f512e946 + languageName: node + linkType: hard + +"@svgr/babel-plugin-replace-jsx-attribute-value@npm:^5.0.1": + version: 5.0.1 + resolution: "@svgr/babel-plugin-replace-jsx-attribute-value@npm:5.0.1" + checksum: fb9e267ba961a0daf1f37f2954552617e09ad1d8e97f033aefc28d2a7d7824831318a5324e8e873341b53c9bb10a0c266665c7871251fd0dd2a8294fe1546fac + languageName: node + linkType: hard + +"@svgr/babel-plugin-replace-jsx-attribute-value@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-plugin-replace-jsx-attribute-value@npm:7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9a39807bd09fb00c121e2b6952e24b90b6d9cd2318105176b93ccc4e1ec5b87b9999b96bce6f9f5e7769033583565908b440951de89ac9c3cb82ea0e0a3db686 + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-dynamic-title@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-svg-dynamic-title@npm:5.4.0" + checksum: e6d1a1ef2f4b91473152bf5153a6857585857e7f0e7897df2d18e14d567811814a5590c9d10d80cf3f2964a5b7bd93d3e4cbd15c8d006c5dd83d4e6839646636 + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-dynamic-title@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-plugin-svg-dynamic-title@npm:7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 49dd7907a63bd7643e6081d0bc4daee23e3fc095b6eafc58760f5d67314eee1ea60a6788ccbe68e2457f083ea31522c847119fe48eb6e2dc20956b9bb3316cbb + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-em-dimensions@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-svg-em-dimensions@npm:5.4.0" + checksum: 1dc247f376ed110d1407b96c1c919c0bfa2907cd02b2eaa98d40209f21f1ff3602a46f0eb0528e514826a843dc411c06ed251cf8c691efbc961f0cbe0aaf860d + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-em-dimensions@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-plugin-svg-em-dimensions@npm:7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9d5b569b75a612074b03aab20837dd1858f97d002b05fc9a2ec939aebbc8053e893960e264a1f2261bf0c426e4f8fa93c72313bcf7dface89fc09bc643147ebd + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-react-native-svg@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-transform-react-native-svg@npm:5.4.0" + checksum: 3ad2f074d0e5857d07758492d0c98d1d862f2def9fab48939c69c5a3c4387065d01b0e8ac62c53a402a9ce09ed3de099bdf41cd2a597e7d58ddf47fb3a3b2c3e + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-react-native-svg@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-plugin-transform-react-native-svg@npm:7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9091bd61d787e8506965f10a946dec463881b337aa435eedb0d5423ece1d0589fa643c2e01003cbb3447d3dbdf5d937ff7bae487a3098abbbe94ac04c84022d8 + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-svg-component@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/babel-plugin-transform-svg-component@npm:5.5.0" + checksum: 73bfb09933d4a85a0ee8ec364684a0915a9ce05e668d024c073369cc36d78dcde41ddcdb493dde6440f5ee5649ed75b95ac8add226eaee32b20dc54894ac2974 + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-svg-component@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-plugin-transform-svg-component@npm:7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 715c371bdae660fa9452083f2be6c1736d9ad516dc7134656c6e70374799de94eacda596504394aa6934aacb6da9099acd99569089220d66aaf91b34aa934c7b + languageName: node + linkType: hard + +"@svgr/babel-preset@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/babel-preset@npm:5.5.0" + dependencies: + "@svgr/babel-plugin-add-jsx-attribute": "npm:^5.4.0" + "@svgr/babel-plugin-remove-jsx-attribute": "npm:^5.4.0" + "@svgr/babel-plugin-remove-jsx-empty-expression": "npm:^5.0.1" + "@svgr/babel-plugin-replace-jsx-attribute-value": "npm:^5.0.1" + "@svgr/babel-plugin-svg-dynamic-title": "npm:^5.4.0" + "@svgr/babel-plugin-svg-em-dimensions": "npm:^5.4.0" + "@svgr/babel-plugin-transform-react-native-svg": "npm:^5.4.0" + "@svgr/babel-plugin-transform-svg-component": "npm:^5.5.0" + checksum: a737592044ee3aea22506fa7178464fc0e1e6e6f3005cbc8db12d6963f18b8a097c97a2d4ede93dd1d3309074f84f47272924614cd74d2c7900c649f0356e349 + languageName: node + linkType: hard + +"@svgr/babel-preset@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/babel-preset@npm:7.0.0" + dependencies: + "@svgr/babel-plugin-add-jsx-attribute": "npm:^7.0.0" + "@svgr/babel-plugin-remove-jsx-attribute": "npm:^7.0.0" + "@svgr/babel-plugin-remove-jsx-empty-expression": "npm:^7.0.0" + "@svgr/babel-plugin-replace-jsx-attribute-value": "npm:^7.0.0" + "@svgr/babel-plugin-svg-dynamic-title": "npm:^7.0.0" + "@svgr/babel-plugin-svg-em-dimensions": "npm:^7.0.0" + "@svgr/babel-plugin-transform-react-native-svg": "npm:^7.0.0" + "@svgr/babel-plugin-transform-svg-component": "npm:^7.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7d0755e2f007d4108b9ccbd7ccb2de2787ed3aa54cf873426bb211666996fe7a4fde73710a76bbdc169e1e72d7eca1dec5a6b26f14ab3124ff154ecbe387b69a + languageName: node + linkType: hard + +"@svgr/core@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/core@npm:5.5.0" + dependencies: + "@svgr/plugin-jsx": "npm:^5.5.0" + camelcase: "npm:^6.2.0" + cosmiconfig: "npm:^7.0.0" + checksum: a8f8ac7f829ea92a6d0305c746afb33feba3b1c7000e6f22d83b8bad13fdcd5aacc3ebde60330368830eebf23ff3090ddd3ef959d41a90d694f4b7914aea6686 + languageName: node + linkType: hard + +"@svgr/core@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/core@npm:7.0.0" + dependencies: + "@babel/core": "npm:^7.21.3" + "@svgr/babel-preset": "npm:^7.0.0" + camelcase: "npm:^6.2.0" + cosmiconfig: "npm:^8.1.3" + checksum: 347617081188fc0ed5de53a8643b70949c8737a1b5baf6e4a2dd23ecb8311de111d4e76f8f005959ec66e7d53a5f8155249f6b947c8111042b978fc798f53c4c + languageName: node + linkType: hard + +"@svgr/hast-util-to-babel-ast@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/hast-util-to-babel-ast@npm:5.5.0" + dependencies: + "@babel/types": "npm:^7.12.6" + checksum: 1758afd99594b094ec3d0966ba0e81e5ca8acea075801b8a93c5e97269b046eca1fd8dac7c7efbc3b5775e2496adb6880530fd1d6ccaaf8792afd567773a4f64 + languageName: node + linkType: hard + +"@svgr/hast-util-to-babel-ast@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/hast-util-to-babel-ast@npm:7.0.0" + dependencies: + "@babel/types": "npm:^7.21.3" + entities: "npm:^4.4.0" + checksum: 2d6880fac9445559cc2e29f87782a52c37d2db7b99a4892f65def1e79a8239d7961c483934ff9ce2d37cb087f5b34c80ca5a51f7bc9eaceacfe0bd66e4e64373 + languageName: node + linkType: hard + +"@svgr/plugin-jsx@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/plugin-jsx@npm:5.5.0" + dependencies: + "@babel/core": "npm:^7.12.3" + "@svgr/babel-preset": "npm:^5.5.0" + "@svgr/hast-util-to-babel-ast": "npm:^5.5.0" + svg-parser: "npm:^2.0.2" + checksum: 96f84139dae94cdda7e24896ab23e9d41e699fc8ecbbd11e280604eb7a67dfec55f126ec12ea3c622b8df6b0fccce5eb261d96f6ca8c59366d3963f13e411ec6 + languageName: node + linkType: hard + +"@svgr/plugin-jsx@npm:^7.0.0": + version: 7.0.0 + resolution: "@svgr/plugin-jsx@npm:7.0.0" + dependencies: + "@babel/core": "npm:^7.21.3" + "@svgr/babel-preset": "npm:^7.0.0" + "@svgr/hast-util-to-babel-ast": "npm:^7.0.0" + svg-parser: "npm:^2.0.4" + checksum: bd649a306b83bc355315265046461cfa089c81604785b081fe0ccffd0112dc8bfad1e19d8e042d85339792458ab2e9022f8bf29fdd64bfea90718a40553ce00e + languageName: node + linkType: hard + +"@svgr/plugin-svgo@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/plugin-svgo@npm:5.5.0" + dependencies: + cosmiconfig: "npm:^7.0.0" + deepmerge: "npm:^4.2.2" + svgo: "npm:^1.2.2" + checksum: 7494f7417ac339422f4eb2219489badaa51cdd79de2b5b3ff772c602036c5a38faf92fdefaab47414175f7c83406c4db195c35e619aae88d0573d7b199ec4503 + languageName: node + linkType: hard + +"@svgr/webpack@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/webpack@npm:5.5.0" + dependencies: + "@babel/core": "npm:^7.12.3" + "@babel/plugin-transform-react-constant-elements": "npm:^7.12.1" + "@babel/preset-env": "npm:^7.12.1" + "@babel/preset-react": "npm:^7.12.5" + "@svgr/core": "npm:^5.5.0" + "@svgr/plugin-jsx": "npm:^5.5.0" + "@svgr/plugin-svgo": "npm:^5.5.0" + loader-utils: "npm:^2.0.0" + checksum: 0313712a1892f387d8c425652239dd635269241b18e7e6f9aad6a339cbe887ebec813d146df23407229384ac5e9d6527f3571aa2fc9dcb30e32006c9eb918663 + languageName: node + linkType: hard + +"@testing-library/dom@npm:^8.5.0": + version: 8.20.1 + resolution: "@testing-library/dom@npm:8.20.1" + dependencies: + "@babel/code-frame": "npm:^7.10.4" + "@babel/runtime": "npm:^7.12.5" + "@types/aria-query": "npm:^5.0.1" + aria-query: "npm:5.1.3" + chalk: "npm:^4.1.0" + dom-accessibility-api: "npm:^0.5.9" + lz-string: "npm:^1.5.0" + pretty-format: "npm:^27.0.2" + checksum: 614013756706467f2a7f3f693c18377048c210ec809884f0f9be866f7d865d075805ad15f5d100e8a699467fdde09085bf79e23a00ea0a6ab001d9583ef15e5d + languageName: node + linkType: hard + +"@testing-library/jest-dom@npm:^5.14.1": + version: 5.16.5 + resolution: "@testing-library/jest-dom@npm:5.16.5" + dependencies: + "@adobe/css-tools": "npm:^4.0.1" + "@babel/runtime": "npm:^7.9.2" + "@types/testing-library__jest-dom": "npm:^5.9.1" + aria-query: "npm:^5.0.0" + chalk: "npm:^3.0.0" + css.escape: "npm:^1.5.1" + dom-accessibility-api: "npm:^0.5.6" + lodash: "npm:^4.17.15" + redent: "npm:^3.0.0" + checksum: 0925fda78096cca355d164d5358b84b9371c4fb6ba60ce60c2263446ac6d9c6aaca75e2792cdb42699fe78c379924c53db672a3510361b577ebb89a0c6e1c629 + languageName: node + linkType: hard + +"@testing-library/react@npm:^13.0.0": + version: 13.4.0 + resolution: "@testing-library/react@npm:13.4.0" + dependencies: + "@babel/runtime": "npm:^7.12.5" + "@testing-library/dom": "npm:^8.5.0" + "@types/react-dom": "npm:^18.0.0" + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + checksum: 371bf982dd0deb27da004f368b06904353eac0f23f9c08ff0f24443c3f51a6d647009e366034417565d2484c40f1c7eff74413738abf4ec55209da9bd3253b0e + languageName: node + linkType: hard + +"@testing-library/user-event@npm:^13.2.1": + version: 13.5.0 + resolution: "@testing-library/user-event@npm:13.5.0" + dependencies: + "@babel/runtime": "npm:^7.12.5" + peerDependencies: + "@testing-library/dom": ">=7.21.4" + checksum: ff57edaeab31322c80c3f01d55404b4cebb907b9ec7672b96a1a14d053f172046b01c5f27b45677927ebee8ed91bce695a7d09edec9a48875cfacabe39d0426a + languageName: node + linkType: hard + +"@tootallnate/once@npm:1": + version: 1.1.2 + resolution: "@tootallnate/once@npm:1.1.2" + checksum: 8fe4d006e90422883a4fa9339dd05a83ff626806262e1710cee5758d493e8cbddf2db81c0e4690636dc840b02c9fda62877866ea774ebd07c1777ed5fafbdec6 + languageName: node + linkType: hard + +"@trysound/sax@npm:0.2.0": + version: 0.2.0 + resolution: "@trysound/sax@npm:0.2.0" + checksum: 44907308549ce775a41c38a815f747009ac45929a45d642b836aa6b0a536e4978d30b8d7d680bbd116e9dd73b7dbe2ef0d1369dcfc2d09e83ba381e485ecbe12 + languageName: node + linkType: hard + +"@turf/area@npm:^6.4.0": + version: 6.5.0 + resolution: "@turf/area@npm:6.5.0" + dependencies: + "@turf/helpers": "npm:^6.5.0" + "@turf/meta": "npm:^6.5.0" + checksum: 2b34e8d371bc65594e5f3c92149509e56bcad5bbf17e8ab8222fd6510186dcbea9fbedbde2d1fc02e6ecf69142fae748aa0bf852e0bd4c483c0254fc97ca6194 + languageName: node + linkType: hard + +"@turf/bbox@npm:^6.4.0": + version: 6.5.0 + resolution: "@turf/bbox@npm:6.5.0" + dependencies: + "@turf/helpers": "npm:^6.5.0" + "@turf/meta": "npm:^6.5.0" + checksum: 32c705ff0462f9f72fd4c78f013ebf3cbb30127c998770841d41540b246d3f3a73365a714ef335e45a70b9340317f402af76c36dbd64e9d9c2dfc65de71a9f84 + languageName: node + linkType: hard + +"@turf/centroid@npm:^6.0.2": + version: 6.5.0 + resolution: "@turf/centroid@npm:6.5.0" + dependencies: + "@turf/helpers": "npm:^6.5.0" + "@turf/meta": "npm:^6.5.0" + checksum: d00279918e4ebb3bf936b6c2e3c4e57289589bb2217b7f6edab0c533d440b065ec56fa1a0b4dacba006457d6631e2a63dda87b328dd831ee2527875ead3191bd + languageName: node + linkType: hard + +"@turf/helpers@npm:^6.5.0": + version: 6.5.0 + resolution: "@turf/helpers@npm:6.5.0" + checksum: 786cbe0c0027f85db286fb3a0b7be04bb29bd63ec07760a49735ef32e9c5b4a7c059a8f691fafa31c7e0e9be34c281e014dc24077438bae01a09b492a680fb6f + languageName: node + linkType: hard + +"@turf/meta@npm:^6.5.0": + version: 6.5.0 + resolution: "@turf/meta@npm:6.5.0" + dependencies: + "@turf/helpers": "npm:^6.5.0" + checksum: 9df6cb5af7af98a477ddcd744fb44e4e890fe8a67afa50bb24cad7d9c15af67362d24f1f8890d706a9c369b18285b0ba42430509add769ad868ac452703bb59b + languageName: node + linkType: hard + +"@types/aria-query@npm:^5.0.1": + version: 5.0.1 + resolution: "@types/aria-query@npm:5.0.1" + checksum: bc9e40ce37bd3a1654948778c7829bd55aea1bc5f2cd06fcf6cd650b07bb388995799e9aab6e2d93a6cf55dcba3b85c155f7ba93adefcc7c2e152fc6057061b5 + languageName: node + linkType: hard + +"@types/babel__core@npm:^7.0.0, @types/babel__core@npm:^7.1.14": + version: 7.20.1 + resolution: "@types/babel__core@npm:7.20.1" + dependencies: + "@babel/parser": "npm:^7.20.7" + "@babel/types": "npm:^7.20.7" + "@types/babel__generator": "npm:*" + "@types/babel__template": "npm:*" + "@types/babel__traverse": "npm:*" + checksum: c83402fc7ef8abd1f94ffe350b8bde9a35ccb6c3624bc8e39b6a7e1a675d112f6b70ac1b05391a579ca3b126baffe66b0b94f954edef086c4482b97d293c3659 + languageName: node + linkType: hard + +"@types/babel__generator@npm:*": + version: 7.6.4 + resolution: "@types/babel__generator@npm:7.6.4" + dependencies: + "@babel/types": "npm:^7.0.0" + checksum: e0051b450e4ba2df0a7e386f08df902a4e920f6f8d6f185d69ddbe9b0e2e2d3ae434bb51e437bc0fca2a9a0f5dc4ca44d3a1941ef75e74371e8be5bf64416fe4 + languageName: node + linkType: hard + +"@types/babel__template@npm:*": + version: 7.4.1 + resolution: "@types/babel__template@npm:7.4.1" + dependencies: + "@babel/parser": "npm:^7.1.0" + "@babel/types": "npm:^7.0.0" + checksum: 6f180e96c39765487f27e861d43eebed341ec7a2fc06cdf5a52c22872fae67f474ca165d149c708f4fd9d5482beb66c0a92f77411b234bb30262ed2303e50b1a + languageName: node + linkType: hard + +"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.4, @types/babel__traverse@npm:^7.0.6": + version: 7.20.1 + resolution: "@types/babel__traverse@npm:7.20.1" + dependencies: + "@babel/types": "npm:^7.20.7" + checksum: 5a6a3a26be090573309527184a31f1b82ef55f3d73d811c15f181d323e471305f2390651a04d49d4cd4ca41bbeabb53c9f7862a8e09eab5a0f8910a6aec6e867 + languageName: node + linkType: hard + +"@types/body-parser@npm:*": + version: 1.19.2 + resolution: "@types/body-parser@npm:1.19.2" + dependencies: + "@types/connect": "npm:*" + "@types/node": "npm:*" + checksum: c2dd533e1d4af958d656bdba7f376df68437d8dfb7e4522c88b6f3e6f827549e4be5bf0be68a5f1878accf5752ea37fba7e8a4b6dda53d0d122d77e27b69c750 + languageName: node + linkType: hard + +"@types/bonjour@npm:^3.5.9": + version: 3.5.10 + resolution: "@types/bonjour@npm:3.5.10" + dependencies: + "@types/node": "npm:*" + checksum: 5a3d70695a8dfe79c020579fcbf18d7dbb89b8f061dd388c76b68c4797c0fccd71f3e8a9e2bea00afffdb9b37a49dd0ac0a192829d5b655a5b49c66f313a7be8 + languageName: node + linkType: hard + +"@types/connect-history-api-fallback@npm:^1.3.5": + version: 1.5.0 + resolution: "@types/connect-history-api-fallback@npm:1.5.0" + dependencies: + "@types/express-serve-static-core": "npm:*" + "@types/node": "npm:*" + checksum: 176362698eb68cfbd0517c015fc089fd764d5d35f07230238bb57f833d24a4737f46b4d78dfc225809e7324729d360b831567d1dff17639d576ad85f5b86743d + languageName: node + linkType: hard + +"@types/connect@npm:*": + version: 3.4.35 + resolution: "@types/connect@npm:3.4.35" + dependencies: + "@types/node": "npm:*" + checksum: f11a1ccfed540723dddd7cb496543ad40a2f663f22ff825e9b220f0bae86db8b1ced2184ee41d3fb358b019ad6519e39481b06386db91ebb859003ad1d54fe6a + languageName: node + linkType: hard + +"@types/debug@npm:^4.0.0": + version: 4.1.12 + resolution: "@types/debug@npm:4.1.12" + dependencies: + "@types/ms": "npm:*" + checksum: 5dcd465edbb5a7f226e9a5efd1f399c6172407ef5840686b73e3608ce135eeca54ae8037dcd9f16bdb2768ac74925b820a8b9ecc588a58ca09eca6acabe33e2f + languageName: node + linkType: hard + +"@types/eslint-scope@npm:^3.7.3": + version: 3.7.4 + resolution: "@types/eslint-scope@npm:3.7.4" + dependencies: + "@types/eslint": "npm:*" + "@types/estree": "npm:*" + checksum: f8a19cddf9d402f079bcc261958fff5ff2616465e4fb4cd423aa966a6a32bf5d3c65ca3ca0fbe824776b48c5cd525efbaf927b98b8eeef093aa68a1a2ba19359 + languageName: node + linkType: hard + +"@types/eslint@npm:*, @types/eslint@npm:^7.29.0 || ^8.4.1": + version: 8.44.0 + resolution: "@types/eslint@npm:8.44.0" + dependencies: + "@types/estree": "npm:*" + "@types/json-schema": "npm:*" + checksum: feac2a3aafe96844993aa0a3343e9265a13e4dbe2981a215b0103926253ce23adbee4563cef91ef0444f2463658bc10ce69fb6941f4297b4f9a021c77fdf1ec7 + languageName: node + linkType: hard + +"@types/estree-jsx@npm:^1.0.0": + version: 1.0.3 + resolution: "@types/estree-jsx@npm:1.0.3" + dependencies: + "@types/estree": "npm:*" + checksum: 41742a7b0874f63e61396d87a46d3ca531850a0e2cd7cec304339b8df439b6371d5e8758f34de9b5d9e940486ea21305b2f74cb420754838ecdfdaba918afc66 + languageName: node + linkType: hard + +"@types/estree@npm:*, @types/estree@npm:^1.0.0": + version: 1.0.1 + resolution: "@types/estree@npm:1.0.1" + checksum: b4022067f834d86766f23074a1a7ac6c460e823b00cd8fe94c997bc491e7794615facd3e1520a934c42bd8c0689dbff81e5c643b01f1dee143fc758cac19669e + languageName: node + linkType: hard + +"@types/estree@npm:0.0.39": + version: 0.0.39 + resolution: "@types/estree@npm:0.0.39" + checksum: f0af6c95ac1988c4827964bd9d3b51d24da442e2188943f6dfcb1e1559103d5d024d564b2e9d3f84c53714a02a0a7435c7441138eb63d9af5de4dfc66cdc0d92 + languageName: node + linkType: hard + +"@types/express-serve-static-core@npm:*, @types/express-serve-static-core@npm:^4.17.33": + version: 4.17.35 + resolution: "@types/express-serve-static-core@npm:4.17.35" + dependencies: + "@types/node": "npm:*" + "@types/qs": "npm:*" + "@types/range-parser": "npm:*" + "@types/send": "npm:*" + checksum: 08db6ffff07b5d53d852bb0a078ea5ee6dc3eb581d8c8fdf0d65f48c641db2830658074c797844e618b0933ce4ca2ddd08191f9d79b12eb2ec3d66f8551716ec + languageName: node + linkType: hard + +"@types/express@npm:*, @types/express@npm:^4.17.13": + version: 4.17.17 + resolution: "@types/express@npm:4.17.17" + dependencies: + "@types/body-parser": "npm:*" + "@types/express-serve-static-core": "npm:^4.17.33" + "@types/qs": "npm:*" + "@types/serve-static": "npm:*" + checksum: 5802a0a28f7473744dd6a118479440d8c5c801c973d34fb6f31b5ee645a41fee936193978a8e905d55deefda9b675d19924167bf11a31339874c3161a3fc2922 + languageName: node + linkType: hard + +"@types/graceful-fs@npm:^4.1.2": + version: 4.1.6 + resolution: "@types/graceful-fs@npm:4.1.6" + dependencies: + "@types/node": "npm:*" + checksum: b1d32c5ae7bd52cf60e29df20407904c4312a39612e7ec2ee23c1e3731c1cfe31d97c6941bf6cb52f5f929d50d86d92dd506436b63fafa833181d439b628885e + languageName: node + linkType: hard + +"@types/hast@npm:^3.0.0": + version: 3.0.3 + resolution: "@types/hast@npm:3.0.3" + dependencies: + "@types/unist": "npm:*" + checksum: 0779740926efc1f856976abd95fcb04f4b45d885ec65ef148505722e15cd8fdf4e84d93bf29908131ae6b040f3ca1c1f0cf9fef1b35d52c90c76ff90cfc1214f + languageName: node + linkType: hard + +"@types/hoist-non-react-statics@npm:^3.3.0": + version: 3.3.1 + resolution: "@types/hoist-non-react-statics@npm:3.3.1" + dependencies: + "@types/react": "npm:*" + hoist-non-react-statics: "npm:^3.3.0" + checksum: 5ed808e5fbf0979fe07acd631147420c30319383f4388a57e0fb811c6ff30abef286e937a84c7b00f4647ca7f1ab390cc42af0bfc7547a87d2e59e0e7072d92b + languageName: node + linkType: hard + +"@types/html-minifier-terser@npm:^6.0.0": + version: 6.1.0 + resolution: "@types/html-minifier-terser@npm:6.1.0" + checksum: a62fb8588e2f3818d82a2d7b953ad60a4a52fd767ae04671de1c16f5788bd72f1ed3a6109ed63fd190c06a37d919e3c39d8adbc1793a005def76c15a3f5f5dab + languageName: node + linkType: hard + +"@types/http-errors@npm:*": + version: 2.0.1 + resolution: "@types/http-errors@npm:2.0.1" + checksum: 3bbc8c84fb02b381737e2eec563b434121384b1aef4e070edec4479a1bc74f27373edc09162680cd3ea1035ef8e5ab6d606bd7c99e3855c424045fb74376cb66 + languageName: node + linkType: hard + +"@types/http-proxy@npm:^1.17.8": + version: 1.17.11 + resolution: "@types/http-proxy@npm:1.17.11" + dependencies: + "@types/node": "npm:*" + checksum: 0af1bed7c1eaace924b8a316a718a702d40882dc541320ca1629c7f4ee852ef4dbef1963d4cb9e523b59dbe4d7f07e37def38b15e8ebb92d5b569b800b1c2bf7 + languageName: node + linkType: hard + +"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0, @types/istanbul-lib-coverage@npm:^2.0.1": + version: 2.0.4 + resolution: "@types/istanbul-lib-coverage@npm:2.0.4" + checksum: af5f6b64e788331ed3f7b2e2613cb6ca659c58b8500be94bbda8c995ad3da9216c006f1cfe6f66b321c39392b1bda18b16e63cef090a77d24a00b4bd5ba3b018 + languageName: node + linkType: hard + +"@types/istanbul-lib-report@npm:*": + version: 3.0.0 + resolution: "@types/istanbul-lib-report@npm:3.0.0" + dependencies: + "@types/istanbul-lib-coverage": "npm:*" + checksum: 7ced458631276a28082ee40645224c3cdd8b861961039ff811d841069171c987ec7e50bc221845ec0d04df0022b2f457a21fb2f816dab2fbe64d59377b32031f + languageName: node + linkType: hard + +"@types/istanbul-reports@npm:^3.0.0": + version: 3.0.1 + resolution: "@types/istanbul-reports@npm:3.0.1" + dependencies: + "@types/istanbul-lib-report": "npm:*" + checksum: e147f0db9346a0cae9a359220bc76f7c78509fb6979a2597feb24d64b6e8328d2d26f9d152abbd59c6bca721e4ea2530af20116d01df50815efafd1e151fd777 + languageName: node + linkType: hard + +"@types/jest@npm:*": + version: 29.5.2 + resolution: "@types/jest@npm:29.5.2" + dependencies: + expect: "npm:^29.0.0" + pretty-format: "npm:^29.0.0" + checksum: e85525fe83a0792632a31ca32968b33a0014d617442e9a515357d2aa8890052ef622b1f6fd25d48f4f1a3ab806bed94e6d9b056dea23a897464e0e35957ff654 + languageName: node + linkType: hard + +"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.4, @types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9": + version: 7.0.12 + resolution: "@types/json-schema@npm:7.0.12" + checksum: 2c39946ae321fe42d085c61a85872a81bbee70f9b2054ad344e8811dfc478fdbaf1ebf5f2989bb87c895ba2dfc3b1dcba85db11e467bbcdc023708814207791c + languageName: node + linkType: hard + +"@types/json5@npm:^0.0.29": + version: 0.0.29 + resolution: "@types/json5@npm:0.0.29" + checksum: 6bf5337bc447b706bb5b4431d37686aa2ea6d07cfd6f79cc31de80170d6ff9b1c7384a9c0ccbc45b3f512bae9e9f75c2e12109806a15331dc94e8a8db6dbb4ac + languageName: node + linkType: hard + +"@types/mdast@npm:^3.0.0": + version: 3.0.11 + resolution: "@types/mdast@npm:3.0.11" + dependencies: + "@types/unist": "npm:*" + checksum: 569ec32ac16deb42f2c9e7cdbfb5be0f67d2407036b49ba9cfa07ad0258b044c259922acba170eaed165ebcf5eb168032fbb4b3e35023fe8c581fe46e9bcbad0 + languageName: node + linkType: hard + +"@types/mdast@npm:^4.0.0": + version: 4.0.3 + resolution: "@types/mdast@npm:4.0.3" + dependencies: + "@types/unist": "npm:*" + checksum: e6994404f5ce58073aa6c1a37ceac3060326470a464e2d751580a9f89e2dbca3a2a6222b849bdaaa5bffbe89033c50a886d17e49fca3b040a4ffcf970e387a0c + languageName: node + linkType: hard + +"@types/mime@npm:*": + version: 3.0.1 + resolution: "@types/mime@npm:3.0.1" + checksum: c4c0fc89042822a3b5ffd6ef0da7006513454ee8376ffa492372d17d2925a4e4b1b194c977b718c711df38b33eb9d06deb5dbf9f851bcfb7e5e65f06b2a87f97 + languageName: node + linkType: hard + +"@types/mime@npm:^1": + version: 1.3.2 + resolution: "@types/mime@npm:1.3.2" + checksum: 61d144e5170c6cdf6de334ec0ee4bb499b1a0fb0233834a9e8cec6d289b0e3042bedf35cbc1c995d71a247635770dae3f13a9ddae69098bb54b933429bc08d35 + languageName: node + linkType: hard + +"@types/ms@npm:*": + version: 0.7.34 + resolution: "@types/ms@npm:0.7.34" + checksum: ac80bd90012116ceb2d188fde62d96830ca847823e8ca71255616bc73991aa7d9f057b8bfab79e8ee44ffefb031ddd1bcce63ea82f9e66f7c31ec02d2d823ccc + languageName: node + linkType: hard + +"@types/node@npm:*": + version: 20.4.0 + resolution: "@types/node@npm:20.4.0" + checksum: b45864c70d3642611a82a55b4d1734cae9ae5341f4af3dcb7e42aedbe3ca66d766c0dffe26bb94af030b52a45ba5af370fd3104a3b41fa70addbc4fae7322516 + languageName: node + linkType: hard + +"@types/parse-json@npm:^4.0.0": + version: 4.0.0 + resolution: "@types/parse-json@npm:4.0.0" + checksum: 1d3012ab2fcdad1ba313e1d065b737578f6506c8958e2a7a5bdbdef517c7e930796cb1599ee067d5dee942fb3a764df64b5eef7e9ae98548d776e86dcffba985 + languageName: node + linkType: hard + +"@types/prettier@npm:^2.1.5": + version: 2.7.3 + resolution: "@types/prettier@npm:2.7.3" + checksum: 0960b5c1115bb25e979009d0b44c42cf3d792accf24085e4bfce15aef5794ea042e04e70c2139a2c3387f781f18c89b5706f000ddb089e9a4a2ccb7536a2c5f0 + languageName: node + linkType: hard + +"@types/prop-types@npm:*, @types/prop-types@npm:^15.7.5": + version: 15.7.5 + resolution: "@types/prop-types@npm:15.7.5" + checksum: 648aae41423821c61c83823ae36116c8d0f68258f8b609bdbc257752dcd616438d6343d554262aa9a7edaee5a19aca2e028a74fa2d0f40fffaf2816bc7056857 + languageName: node + linkType: hard + +"@types/q@npm:^1.5.1": + version: 1.5.5 + resolution: "@types/q@npm:1.5.5" + checksum: 0a22134a75de86196adf4ad1052f35fdbb9d8a053b2034fb97f328b30ada26f321d7241681cd1cb76e8311f7ead85cc88aa65a42d316828a4a813caed4b55e7c + languageName: node + linkType: hard + +"@types/qs@npm:*": + version: 6.9.7 + resolution: "@types/qs@npm:6.9.7" + checksum: 157eb05f4c75790b0ebdcf7b0547ff117feabc8cda03c3cac3d3ea82bb19a1912e76a411df3eb0bdd01026a9770f07bc0e7e3fbe39ebb31c1be4564c16be35f1 + languageName: node + linkType: hard + +"@types/range-parser@npm:*": + version: 1.2.4 + resolution: "@types/range-parser@npm:1.2.4" + checksum: 8e3c3cda88675efd9145241bcb454449715b7d015a7fb80d018dcb3d441fa1938b302242cc0dfa6b02c5d014dd8bc082ae90091e62b1e816cae3ec36c2a7dbcb + languageName: node + linkType: hard + +"@types/react-dom@npm:^18.0.0": + version: 18.2.6 + resolution: "@types/react-dom@npm:18.2.6" + dependencies: + "@types/react": "npm:*" + checksum: bd734ca04c52b3c96891a7f9c1139486807dac7a2449fb72e8f8e23018bc6eeeb87a490a105cb39d05ccb7ddf80ed7a441e5bd3e5866c6f6ae8870cd723599e8 + languageName: node + linkType: hard + +"@types/react-is@npm:^18.2.1": + version: 18.2.1 + resolution: "@types/react-is@npm:18.2.1" + dependencies: + "@types/react": "npm:*" + checksum: 0d426ef34c23383760c718b9902a8262099ff81466685034594bf3b7a183356627806ba19610b16da51358f6389f1d83e6f843b7781c39218cfc7f4da5536e8b + languageName: node + linkType: hard + +"@types/react-redux@npm:^7.1.20": + version: 7.1.25 + resolution: "@types/react-redux@npm:7.1.25" + dependencies: + "@types/hoist-non-react-statics": "npm:^3.3.0" + "@types/react": "npm:*" + hoist-non-react-statics: "npm:^3.3.0" + redux: "npm:^4.0.0" + checksum: a9fe2da54df720339fb24c27fd3f9e8b61a04e7296e139f1f23dc6444b20dfe2ba74237d431fae6ef9f62bf0f6ef1b0c5155575c2d82c1e9586da023cdc151b6 + languageName: node + linkType: hard + +"@types/react-transition-group@npm:^4.4.6": + version: 4.4.6 + resolution: "@types/react-transition-group@npm:4.4.6" + dependencies: + "@types/react": "npm:*" + checksum: 154dc4e94738cff0b2fa183331427c0de3d8daac44a9b79c27aa8a95b78adde44b9f70db8a374399eabe1d44ca50304b1d7bbaeadca0fbdf6f2a91f6f9eb343d + languageName: node + linkType: hard + +"@types/react@npm:*": + version: 18.2.14 + resolution: "@types/react@npm:18.2.14" + dependencies: + "@types/prop-types": "npm:*" + "@types/scheduler": "npm:*" + csstype: "npm:^3.0.2" + checksum: a728a90e242fb41c233729fa46885cc47aca7df2035ed803f83bf0b582dde81143d465ecbf04a056bc6404f0f746f219d7043245ebd99baf83a178bbbb856c76 + languageName: node + linkType: hard + +"@types/resolve@npm:1.17.1": + version: 1.17.1 + resolution: "@types/resolve@npm:1.17.1" + dependencies: + "@types/node": "npm:*" + checksum: 6eeb9c27d99bf4b393bf168d43208f63e78cefca5644662a0bdb2bdbf8352386f4f3aca66add138fc41bce5f66fd48a0de430a1473f11b612fbed0375ae78031 + languageName: node + linkType: hard + +"@types/retry@npm:0.12.0": + version: 0.12.0 + resolution: "@types/retry@npm:0.12.0" + checksum: 7c5c9086369826f569b83a4683661557cab1361bac0897a1cefa1a915ff739acd10ca0d62b01071046fe3f5a3f7f2aec80785fe283b75602dc6726781ea3e328 + languageName: node + linkType: hard + +"@types/scheduler@npm:*": + version: 0.16.3 + resolution: "@types/scheduler@npm:0.16.3" + checksum: c249d4b96fa05165ac22c214f94a045ee0af8beedefdbc54b769febd0044cab3a874e55419841a0dcc76439e379a63e257f3253c87168e3261e7bc783d623302 + languageName: node + linkType: hard + +"@types/semver@npm:^7.3.12": + version: 7.5.0 + resolution: "@types/semver@npm:7.5.0" + checksum: ca4ba4642b5972b6e88e73c5bc02bbaceb8d76bce71748d86e3e95042d4e5a44603113a1dcd2cb9b73ad6f91f6e4ab73185eb41bbfc9c73b11f0ed3db3b7443a + languageName: node + linkType: hard + +"@types/send@npm:*": + version: 0.17.1 + resolution: "@types/send@npm:0.17.1" + dependencies: + "@types/mime": "npm:^1" + "@types/node": "npm:*" + checksum: 1aad6bfafdaa3a3cadad1b441843dfd166821c0e93513daabe979de85b552a1298cfb6f07d40f80b5ecf14a3194dc148deb138605039841f1dadc7132c73e634 + languageName: node + linkType: hard + +"@types/serve-index@npm:^1.9.1": + version: 1.9.1 + resolution: "@types/serve-index@npm:1.9.1" + dependencies: + "@types/express": "npm:*" + checksum: ed1ac8407101a787ebf09164a81bc24248ccf9d9789cd4eaa360a9a06163e5d2168c46ab0ddf2007e47b455182ecaa7632a886639919d9d409a27f7aef4e847a + languageName: node + linkType: hard + +"@types/serve-static@npm:*, @types/serve-static@npm:^1.13.10": + version: 1.15.2 + resolution: "@types/serve-static@npm:1.15.2" + dependencies: + "@types/http-errors": "npm:*" + "@types/mime": "npm:*" + "@types/node": "npm:*" + checksum: 5e7b3e17b376f8910d5c9a0b1def38d7841c8939713940098f1b80a330d5caa9cfe9b632c122252cd70165052439e18fafa46635dc55b1d6058343901eec22eb + languageName: node + linkType: hard + +"@types/sockjs@npm:^0.3.33": + version: 0.3.33 + resolution: "@types/sockjs@npm:0.3.33" + dependencies: + "@types/node": "npm:*" + checksum: 75b9b2839970ebab3e557955b9e2b1091d87cefabee1023e566bccc093411acc4a1402f3da4fde18aca44f5b9c42fe0626afd073a2140002b9b53eb71a084e4d + languageName: node + linkType: hard + +"@types/stack-utils@npm:^2.0.0": + version: 2.0.1 + resolution: "@types/stack-utils@npm:2.0.1" + checksum: 3327ee919a840ffe907bbd5c1d07dfd79137dd9732d2d466cf717ceec5bb21f66296173c53bb56cff95fae4185b9cd6770df3e9745fe4ba528bbc4975f54d13f + languageName: node + linkType: hard + +"@types/testing-library__jest-dom@npm:^5.9.1": + version: 5.14.7 + resolution: "@types/testing-library__jest-dom@npm:5.14.7" + dependencies: + "@types/jest": "npm:*" + checksum: 793a8505e8551d6567271aa1999e7b41447c9ca6e00ffc4a26e62b6cf732b473c2d91ccf38d000c794a79975089a8c941cb775756c6135ffb00d65457480c5c1 + languageName: node + linkType: hard + +"@types/trusted-types@npm:^2.0.2": + version: 2.0.3 + resolution: "@types/trusted-types@npm:2.0.3" + checksum: 25eae736a8a6d24353c3e0108138935250f79d1d239f6fd6f3eb52d88476456ba946f8cb8f3130c6841d40534cafc2dd2326358d86966327c3c4a3d3eecaf585 + languageName: node + linkType: hard + +"@types/unist@npm:*": + version: 3.0.0 + resolution: "@types/unist@npm:3.0.0" + checksum: 2910fe0eb4c2d85367bf4b1caaef1e8e5d2b212b9df17ba73c32b146571c0ef0322e67e5db0052c2a3071afff1196c14a0b906bcd1512e659221b911ca8e5991 + languageName: node + linkType: hard + +"@types/unist@npm:^2.0.0, @types/unist@npm:^2.0.2": + version: 2.0.6 + resolution: "@types/unist@npm:2.0.6" + checksum: 8690789328e8e10c487334341fcf879fd49f8987c98ce49849f9871052f95d87477735171bb661e6f551bdb95235e015dfdad1867ca1d9b5b88a053f72ac40eb + languageName: node + linkType: hard + +"@types/unist@npm:^3.0.0": + version: 3.0.2 + resolution: "@types/unist@npm:3.0.2" + checksum: 39f220ce184a773c55c18a127062bfc4d0d30c987250cd59bab544d97be6cfec93717a49ef96e81f024b575718f798d4d329eb81c452fc57d6d051af8b043ebf + languageName: node + linkType: hard + +"@types/ws@npm:^8.5.5": + version: 8.5.5 + resolution: "@types/ws@npm:8.5.5" + dependencies: + "@types/node": "npm:*" + checksum: 9fb5aaeb2899f2c5aa55946656a39fdf679e48ec4eff557901215249ac84f435853b1d224214e88a93fcbca4bc9a0b0af01113d76f37db0b5873a882e5e99935 + languageName: node + linkType: hard + +"@types/yargs-parser@npm:*": + version: 21.0.0 + resolution: "@types/yargs-parser@npm:21.0.0" + checksum: cb89f3bb2e8002f1479a65a934e825be4cc18c50b350bbc656405d41cf90b8a299b105e7da497d7eb1aa460472a07d1e5a389f3af0862f1d1252279cfcdd017c + languageName: node + linkType: hard + +"@types/yargs@npm:^16.0.0": + version: 16.0.5 + resolution: "@types/yargs@npm:16.0.5" + dependencies: + "@types/yargs-parser": "npm:*" + checksum: 7b2824c749b6e28f5ee3248d13b244eaf7d3c5bb96089add774997572b5a10f1a0826d29a7bc797d64d29ca504b0b0d6ba2e74931b3fabae78ccbbcf07282f0c + languageName: node + linkType: hard + +"@types/yargs@npm:^17.0.8": + version: 17.0.24 + resolution: "@types/yargs@npm:17.0.24" + dependencies: + "@types/yargs-parser": "npm:*" + checksum: fbebf57e1d04199e5e7eb0c67a402566fa27177ee21140664e63da826408793d203d262b48f8f41d4a7665126393d2e952a463e960e761226def247d9bbcdbd0 + languageName: node + linkType: hard + +"@typescript-eslint/eslint-plugin@npm:^5.5.0": + version: 5.61.0 + resolution: "@typescript-eslint/eslint-plugin@npm:5.61.0" + dependencies: + "@eslint-community/regexpp": "npm:^4.4.0" + "@typescript-eslint/scope-manager": "npm:5.61.0" + "@typescript-eslint/type-utils": "npm:5.61.0" + "@typescript-eslint/utils": "npm:5.61.0" + debug: "npm:^4.3.4" + graphemer: "npm:^1.4.0" + ignore: "npm:^5.2.0" + natural-compare-lite: "npm:^1.4.0" + semver: "npm:^7.3.7" + tsutils: "npm:^3.21.0" + peerDependencies: + "@typescript-eslint/parser": ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 5ee13b7b776d7d910082cb1bc31efe6e94fcb22ee163636df28bcc49891d678c05632c8f0900b954ea82701270bd135d45cc1b8234caf4f97864e49b54c04799 + languageName: node + linkType: hard + +"@typescript-eslint/experimental-utils@npm:^5.0.0": + version: 5.61.0 + resolution: "@typescript-eslint/experimental-utils@npm:5.61.0" + dependencies: + "@typescript-eslint/utils": "npm:5.61.0" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: eb97527b5b12e7d86f836b6fd828e6188d312558ad173272029a6e49a626cfb9ba771b1e4644531205acc65ba89d982774ce430af1dd000fb327596b8c75665a + languageName: node + linkType: hard + +"@typescript-eslint/parser@npm:^5.5.0": + version: 5.61.0 + resolution: "@typescript-eslint/parser@npm:5.61.0" + dependencies: + "@typescript-eslint/scope-manager": "npm:5.61.0" + "@typescript-eslint/types": "npm:5.61.0" + "@typescript-eslint/typescript-estree": "npm:5.61.0" + debug: "npm:^4.3.4" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 4fd5a589b0e27a931f32296cc020e7b6052337ceb8312008e5cacbbcd6706f12b2bc481398c40d6e8c482770929593564a6ed2a3b681e7a7634282bd9c12afc4 + languageName: node + linkType: hard + +"@typescript-eslint/scope-manager@npm:5.61.0": + version: 5.61.0 + resolution: "@typescript-eslint/scope-manager@npm:5.61.0" + dependencies: + "@typescript-eslint/types": "npm:5.61.0" + "@typescript-eslint/visitor-keys": "npm:5.61.0" + checksum: 3f4cc831094490d1d201ed1bdf4441eb807b3d6613898b0683ff989bb6dbaeef0311a6dd9d8deb2e4efa2a84d9c857de058edba2eb92abbaeb0385d1dd2ab564 + languageName: node + linkType: hard + +"@typescript-eslint/type-utils@npm:5.61.0": + version: 5.61.0 + resolution: "@typescript-eslint/type-utils@npm:5.61.0" + dependencies: + "@typescript-eslint/typescript-estree": "npm:5.61.0" + "@typescript-eslint/utils": "npm:5.61.0" + debug: "npm:^4.3.4" + tsutils: "npm:^3.21.0" + peerDependencies: + eslint: "*" + peerDependenciesMeta: + typescript: + optional: true + checksum: a99775baf0a6401bb937c9fdf4f1d23a16428c7ec96c39e549ed313af6ffff3274bad7684d9fc7f846e15c4ef7343a7372a6e6868f9e1ea4061ced7c67f50d9a + languageName: node + linkType: hard + +"@typescript-eslint/types@npm:5.61.0": + version: 5.61.0 + resolution: "@typescript-eslint/types@npm:5.61.0" + checksum: f6aacd4ee3180d851463976696d9c43df2debf3bad2c3f26aeaf2a0cab30235152efb5f04e649863548bfc57f454d6c0a2f12f68508feb4771d7e6b1b72bc066 + languageName: node + linkType: hard + +"@typescript-eslint/typescript-estree@npm:5.61.0": + version: 5.61.0 + resolution: "@typescript-eslint/typescript-estree@npm:5.61.0" + dependencies: + "@typescript-eslint/types": "npm:5.61.0" + "@typescript-eslint/visitor-keys": "npm:5.61.0" + debug: "npm:^4.3.4" + globby: "npm:^11.1.0" + is-glob: "npm:^4.0.3" + semver: "npm:^7.3.7" + tsutils: "npm:^3.21.0" + peerDependenciesMeta: + typescript: + optional: true + checksum: 78f60103ad7c282840bd7623b38b785fdd46a75511354e1336589bae532daab7e7f297b1264814e7cd3191cf2e0608b1cc89fc599c0b03085b709a6490965233 + languageName: node + linkType: hard + +"@typescript-eslint/utils@npm:5.61.0, @typescript-eslint/utils@npm:^5.58.0": + version: 5.61.0 + resolution: "@typescript-eslint/utils@npm:5.61.0" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.2.0" + "@types/json-schema": "npm:^7.0.9" + "@types/semver": "npm:^7.3.12" + "@typescript-eslint/scope-manager": "npm:5.61.0" + "@typescript-eslint/types": "npm:5.61.0" + "@typescript-eslint/typescript-estree": "npm:5.61.0" + eslint-scope: "npm:^5.1.1" + semver: "npm:^7.3.7" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: f55bc4a0637e5f529260a0240ae7ecca04b20fde69e1892991d1087b3e230fa02df1c46e671359b3789f15bcfb90cf9f47bb79fa5f48b41b92966706cc66f413 + languageName: node + linkType: hard + +"@typescript-eslint/visitor-keys@npm:5.61.0": + version: 5.61.0 + resolution: "@typescript-eslint/visitor-keys@npm:5.61.0" + dependencies: + "@typescript-eslint/types": "npm:5.61.0" + eslint-visitor-keys: "npm:^3.3.0" + checksum: f438b68b67e03fc39e39537a594259f5df64155f775ef7afb915507f7c364ba8a93567302080c3364d270001d5dd67ee0a0632a92d8d6f6fc776f97c082c130a + languageName: node + linkType: hard + +"@ungap/structured-clone@npm:^1.0.0": + version: 1.2.0 + resolution: "@ungap/structured-clone@npm:1.2.0" + checksum: 8209c937cb39119f44eb63cf90c0b73e7c754209a6411c707be08e50e29ee81356dca1a848a405c8bdeebfe2f5e4f831ad310ae1689eeef65e7445c090c6657d + languageName: node + linkType: hard + +"@vitejs/plugin-react@npm:^4.0.2": + version: 4.0.2 + resolution: "@vitejs/plugin-react@npm:4.0.2" + dependencies: + "@babel/core": "npm:^7.22.5" + "@babel/plugin-transform-react-jsx-self": "npm:^7.22.5" + "@babel/plugin-transform-react-jsx-source": "npm:^7.22.5" + react-refresh: "npm:^0.14.0" + peerDependencies: + vite: ^4.2.0 + checksum: 146d7f5f7311abc4acda00b2ae7ff9c945f1bb259f99c78533647ca0c70c3ee5b15c60497e44472f71281f5c00afa2fbd52008d97f574e0458a96801f8e437ca + languageName: node + linkType: hard + +"@webassemblyjs/ast@npm:1.11.6, @webassemblyjs/ast@npm:^1.11.5": + version: 1.11.6 + resolution: "@webassemblyjs/ast@npm:1.11.6" + dependencies: + "@webassemblyjs/helper-numbers": "npm:1.11.6" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" + checksum: e28476a183c8a1787adcf0e5df1d36ec4589467ab712c674fe4f6769c7fb19d1217bfb5856b3edd0f3e0a148ebae9e4bbb84110cee96664966dfef204d9c31fb + languageName: node + linkType: hard + +"@webassemblyjs/floating-point-hex-parser@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/floating-point-hex-parser@npm:1.11.6" + checksum: 37fe26f89e18e4ca0e7d89cfe3b9f17cfa327d7daf906ae01400416dbb2e33c8a125b4dc55ad7ff405e5fcfb6cf0d764074c9bc532b9a31a71e762be57d2ea0a + languageName: node + linkType: hard + +"@webassemblyjs/helper-api-error@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-api-error@npm:1.11.6" + checksum: a681ed51863e4ff18cf38d223429f414894e5f7496856854d9a886eeddcee32d7c9f66290f2919c9bb6d2fc2b2fae3f989b6a1e02a81e829359738ea0c4d371a + languageName: node + linkType: hard + +"@webassemblyjs/helper-buffer@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-buffer@npm:1.11.6" + checksum: 55b5d67db95369cdb2a505ae7ebdf47194d49dfc1aecb0f5403277dcc899c7d3e1f07e8d279646adf8eafd89959272db62ca66fbe803321661ab184176ddfd3a + languageName: node + linkType: hard + +"@webassemblyjs/helper-numbers@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-numbers@npm:1.11.6" + dependencies: + "@webassemblyjs/floating-point-hex-parser": "npm:1.11.6" + "@webassemblyjs/helper-api-error": "npm:1.11.6" + "@xtuc/long": "npm:4.2.2" + checksum: c7d5afc0ff3bd748339b466d8d2f27b908208bf3ff26b2e8e72c39814479d486e0dca6f3d4d776fd9027c1efe05b5c0716c57a23041eb34473892b2731c33af3 + languageName: node + linkType: hard + +"@webassemblyjs/helper-wasm-bytecode@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-wasm-bytecode@npm:1.11.6" + checksum: 79d2bebdd11383d142745efa32781249745213af8e022651847382685ca76709f83e1d97adc5f0d3c2b8546bf02864f8b43a531fdf5ca0748cb9e4e0ef2acaa5 + languageName: node + linkType: hard + +"@webassemblyjs/helper-wasm-section@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-wasm-section@npm:1.11.6" + dependencies: + "@webassemblyjs/ast": "npm:1.11.6" + "@webassemblyjs/helper-buffer": "npm:1.11.6" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" + "@webassemblyjs/wasm-gen": "npm:1.11.6" + checksum: b79b19a63181f32e5ee0e786fa8264535ea5360276033911fae597d2de15e1776f028091d08c5a813a3901fd2228e74cd8c7e958fded064df734f00546bef8ce + languageName: node + linkType: hard + +"@webassemblyjs/ieee754@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/ieee754@npm:1.11.6" + dependencies: + "@xtuc/ieee754": "npm:^1.2.0" + checksum: 59de0365da450322c958deadade5ec2d300c70f75e17ae55de3c9ce564deff5b429e757d107c7ec69bd0ba169c6b6cc2ff66293ab7264a7053c829b50ffa732f + languageName: node + linkType: hard + +"@webassemblyjs/leb128@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/leb128@npm:1.11.6" + dependencies: + "@xtuc/long": "npm:4.2.2" + checksum: cb344fc04f1968209804de4da018679c5d4708a03b472a33e0fa75657bb024978f570d3ccf9263b7f341f77ecaa75d0e051b9cd4b7bb17a339032cfd1c37f96e + languageName: node + linkType: hard + +"@webassemblyjs/utf8@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/utf8@npm:1.11.6" + checksum: 14d6c24751a89ad9d801180b0d770f30a853c39f035a15fbc96266d6ac46355227abd27a3fd2eeaa97b4294ced2440a6b012750ae17bafe1a7633029a87b6bee + languageName: node + linkType: hard + +"@webassemblyjs/wasm-edit@npm:^1.11.5": + version: 1.11.6 + resolution: "@webassemblyjs/wasm-edit@npm:1.11.6" + dependencies: + "@webassemblyjs/ast": "npm:1.11.6" + "@webassemblyjs/helper-buffer": "npm:1.11.6" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" + "@webassemblyjs/helper-wasm-section": "npm:1.11.6" + "@webassemblyjs/wasm-gen": "npm:1.11.6" + "@webassemblyjs/wasm-opt": "npm:1.11.6" + "@webassemblyjs/wasm-parser": "npm:1.11.6" + "@webassemblyjs/wast-printer": "npm:1.11.6" + checksum: 9a56b6bf635cf7aa5d6e926eaddf44c12fba050170e452a8e17ab4e1b937708678c03f5817120fb9de1e27167667ce693d16ce718d41e5a16393996a6017ab73 + languageName: node + linkType: hard + +"@webassemblyjs/wasm-gen@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/wasm-gen@npm:1.11.6" + dependencies: + "@webassemblyjs/ast": "npm:1.11.6" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" + "@webassemblyjs/ieee754": "npm:1.11.6" + "@webassemblyjs/leb128": "npm:1.11.6" + "@webassemblyjs/utf8": "npm:1.11.6" + checksum: ce9a39d3dab2eb4a5df991bc9f3609960daa4671d25d700f4617152f9f79da768547359f817bee10cd88532c3e0a8a1714d383438e0a54217eba53cb822bd5ad + languageName: node + linkType: hard + +"@webassemblyjs/wasm-opt@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/wasm-opt@npm:1.11.6" + dependencies: + "@webassemblyjs/ast": "npm:1.11.6" + "@webassemblyjs/helper-buffer": "npm:1.11.6" + "@webassemblyjs/wasm-gen": "npm:1.11.6" + "@webassemblyjs/wasm-parser": "npm:1.11.6" + checksum: 82788408054171688e9f12883b693777219366d6867003e34dccc21b4a0950ef53edc9d2b4d54cabdb6ee869cf37c8718401b4baa4f70a7f7dd3867c75637298 + languageName: node + linkType: hard + +"@webassemblyjs/wasm-parser@npm:1.11.6, @webassemblyjs/wasm-parser@npm:^1.11.5": + version: 1.11.6 + resolution: "@webassemblyjs/wasm-parser@npm:1.11.6" + dependencies: + "@webassemblyjs/ast": "npm:1.11.6" + "@webassemblyjs/helper-api-error": "npm:1.11.6" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.11.6" + "@webassemblyjs/ieee754": "npm:1.11.6" + "@webassemblyjs/leb128": "npm:1.11.6" + "@webassemblyjs/utf8": "npm:1.11.6" + checksum: 7a97a5f34f98bdcfd812157845a06d53f3d3f67dbd4ae5d6bf66e234e17dc4a76b2b5e74e5dd70b4cab9778fc130194d50bbd6f9a1d23e15ed1ed666233d6f5f + languageName: node + linkType: hard + +"@webassemblyjs/wast-printer@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/wast-printer@npm:1.11.6" + dependencies: + "@webassemblyjs/ast": "npm:1.11.6" + "@xtuc/long": "npm:4.2.2" + checksum: 916b90fa3a8aadd95ca41c21d4316d0a7582cf6d0dcf6d9db86ab0de823914df513919fba60ac1edd227ff00e93a66b927b15cbddd36b69d8a34c8815752633c + languageName: node + linkType: hard + +"@xtuc/ieee754@npm:^1.2.0": + version: 1.2.0 + resolution: "@xtuc/ieee754@npm:1.2.0" + checksum: a8565d29d135039bd99ae4b2220d3e167d22cf53f867e491ed479b3f84f895742d0097f935b19aab90265a23d5d46711e4204f14c479ae3637fbf06c4666882f + languageName: node + linkType: hard + +"@xtuc/long@npm:4.2.2": + version: 4.2.2 + resolution: "@xtuc/long@npm:4.2.2" + checksum: 8582cbc69c79ad2d31568c412129bf23d2b1210a1dfb60c82d5a1df93334da4ee51f3057051658569e2c196d8dc33bc05ae6b974a711d0d16e801e1d0647ccd1 + languageName: node + linkType: hard + +"@zeit/schemas@npm:2.29.0": + version: 2.29.0 + resolution: "@zeit/schemas@npm:2.29.0" + checksum: 57532f88f7d7962a10852584fb1c0c7f5bc79302bf6e92e575c32ce06d3639a125de5ca151cc23675dca1d5743750077f9f7342a8ffcaf59cea67ce504e8651e + languageName: node + linkType: hard + +"abab@npm:^2.0.3, abab@npm:^2.0.5": + version: 2.0.6 + resolution: "abab@npm:2.0.6" + checksum: 0b245c3c3ea2598fe0025abf7cc7bb507b06949d51e8edae5d12c1b847a0a0c09639abcb94788332b4e2044ac4491c1e8f571b51c7826fd4b0bda1685ad4a278 + languageName: node + linkType: hard + +"abbrev@npm:^2.0.0": + version: 2.0.0 + resolution: "abbrev@npm:2.0.0" + checksum: f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372 + languageName: node + linkType: hard + +"abs-svg-path@npm:^0.1.1, abs-svg-path@npm:~0.1.1": + version: 0.1.1 + resolution: "abs-svg-path@npm:0.1.1" + checksum: aa763f3843cd4d7c3eabcddc91834ab27def4c1f470b98a3bf01ebe82928629c5aeaa97766252781449e0c722e1785f8e512fea79f86d3d10f8eca220d6aa292 + languageName: node + linkType: hard + +"accepts@npm:~1.3.4, accepts@npm:~1.3.5, accepts@npm:~1.3.8": + version: 1.3.8 + resolution: "accepts@npm:1.3.8" + dependencies: + mime-types: "npm:~2.1.34" + negotiator: "npm:0.6.3" + checksum: 3a35c5f5586cfb9a21163ca47a5f77ac34fa8ceb5d17d2fa2c0d81f41cbd7f8c6fa52c77e2c039acc0f4d09e71abdc51144246900f6bef5e3c4b333f77d89362 + languageName: node + linkType: hard + +"acorn-globals@npm:^6.0.0": + version: 6.0.0 + resolution: "acorn-globals@npm:6.0.0" + dependencies: + acorn: "npm:^7.1.1" + acorn-walk: "npm:^7.1.1" + checksum: 5f92390a3fd7e5a4f84fe976d4650e2a33ecf27135aa9efc5406e3406df7f00a1bbb00648ee0c8058846f55ad0924ff574e6c73395705690e754589380a41801 + languageName: node + linkType: hard + +"acorn-import-assertions@npm:^1.9.0": + version: 1.9.0 + resolution: "acorn-import-assertions@npm:1.9.0" + peerDependencies: + acorn: ^8 + checksum: 3b4a194e128efdc9b86c2b1544f623aba4c1aa70d638f8ab7dc3971a5b4aa4c57bd62f99af6e5325bb5973c55863b4112e708a6f408bad7a138647ca72283afe + languageName: node + linkType: hard + +"acorn-jsx@npm:^5.3.2": + version: 5.3.2 + resolution: "acorn-jsx@npm:5.3.2" + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: 4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1 + languageName: node + linkType: hard + +"acorn-walk@npm:^7.1.1": + version: 7.2.0 + resolution: "acorn-walk@npm:7.2.0" + checksum: ff99f3406ed8826f7d6ef6ac76b7608f099d45a1ff53229fa267125da1924188dbacf02e7903dfcfd2ae4af46f7be8847dc7d564c73c4e230dfb69c8ea8e6b4c + languageName: node + linkType: hard + +"acorn@npm:^7.1.1": + version: 7.4.1 + resolution: "acorn@npm:7.4.1" + bin: + acorn: bin/acorn + checksum: bd0b2c2b0f334bbee48828ff897c12bd2eb5898d03bf556dcc8942022cec795ac5bb5b6b585e2de687db6231faf07e096b59a361231dd8c9344d5df5f7f0e526 + languageName: node + linkType: hard + +"acorn@npm:^8.2.4, acorn@npm:^8.7.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0": + version: 8.10.0 + resolution: "acorn@npm:8.10.0" + bin: + acorn: bin/acorn + checksum: deaeebfbea6e40f6c0e1070e9b0e16e76ba484de54cbd735914d1d41d19169a450de8630b7a3a0c4e271a3b0c0b075a3427ad1a40d8a69f8747c0e8cb02ee3e2 + languageName: node + linkType: hard + +"address@npm:^1.0.1, address@npm:^1.1.2": + version: 1.2.2 + resolution: "address@npm:1.2.2" + checksum: 1c8056b77fb124456997b78ed682ecc19d2fd7ea8bd5850a2aa8c3e3134c913847c57bcae418622efd32ba858fa1e242a40a251ac31da0515664fc0ac03a047d + languageName: node + linkType: hard + +"adjust-sourcemap-loader@npm:^4.0.0": + version: 4.0.0 + resolution: "adjust-sourcemap-loader@npm:4.0.0" + dependencies: + loader-utils: "npm:^2.0.0" + regex-parser: "npm:^2.2.11" + checksum: 6a6e5bb8b670e4e1238c708f6163e92aa2ad0308fe5913de73c89e4cbf41738ee0bcc5552b94d0b7bf8be435ee49b78c6de8a6db7badd80762051e843c8aa14f + languageName: node + linkType: hard + +"agent-base@npm:6": + version: 6.0.2 + resolution: "agent-base@npm:6.0.2" + dependencies: + debug: "npm:4" + checksum: dc4f757e40b5f3e3d674bc9beb4f1048f4ee83af189bae39be99f57bf1f48dde166a8b0a5342a84b5944ee8e6ed1e5a9d801858f4ad44764e84957122fe46261 + languageName: node + linkType: hard + +"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0": + version: 7.1.0 + resolution: "agent-base@npm:7.1.0" + dependencies: + debug: "npm:^4.3.4" + checksum: fc974ab57ffdd8421a2bc339644d312a9cca320c20c3393c9d8b1fd91731b9bbabdb985df5fc860f5b79d81c3e350daa3fcb31c5c07c0bb385aafc817df004ce + languageName: node + linkType: hard + +"aggregate-error@npm:^3.0.0": + version: 3.1.0 + resolution: "aggregate-error@npm:3.1.0" + dependencies: + clean-stack: "npm:^2.0.0" + indent-string: "npm:^4.0.0" + checksum: a42f67faa79e3e6687a4923050e7c9807db3848a037076f791d10e092677d65c1d2d863b7848560699f40fc0502c19f40963fb1cd1fb3d338a7423df8e45e039 + languageName: node + linkType: hard + +"ajv-formats@npm:^2.1.1": + version: 2.1.1 + resolution: "ajv-formats@npm:2.1.1" + dependencies: + ajv: "npm:^8.0.0" + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + checksum: e43ba22e91b6a48d96224b83d260d3a3a561b42d391f8d3c6d2c1559f9aa5b253bfb306bc94bbeca1d967c014e15a6efe9a207309e95b3eaae07fcbcdc2af662 + languageName: node + linkType: hard + +"ajv-keywords@npm:^3.4.1, ajv-keywords@npm:^3.5.2": + version: 3.5.2 + resolution: "ajv-keywords@npm:3.5.2" + peerDependencies: + ajv: ^6.9.1 + checksum: 0c57a47cbd656e8cdfd99d7c2264de5868918ffa207c8d7a72a7f63379d4333254b2ba03d69e3c035e996a3fd3eb6d5725d7a1597cca10694296e32510546360 + languageName: node + linkType: hard + +"ajv-keywords@npm:^5.1.0": + version: 5.1.0 + resolution: "ajv-keywords@npm:5.1.0" + dependencies: + fast-deep-equal: "npm:^3.1.3" + peerDependencies: + ajv: ^8.8.2 + checksum: 18bec51f0171b83123ba1d8883c126e60c6f420cef885250898bf77a8d3e65e3bfb9e8564f497e30bdbe762a83e0d144a36931328616a973ee669dc74d4a9590 + languageName: node + linkType: hard + +"ajv@npm:8.11.0": + version: 8.11.0 + resolution: "ajv@npm:8.11.0" + dependencies: + fast-deep-equal: "npm:^3.1.1" + json-schema-traverse: "npm:^1.0.0" + require-from-string: "npm:^2.0.2" + uri-js: "npm:^4.2.2" + checksum: 8a4b1b639a53d52169b94dd1cdd03716fe7bbc1fc676006957ba82497e764f4bd44b92f75e37c8804ea3176ee3c224322e22779d071fb01cd89aefaaa42c9414 + languageName: node + linkType: hard + +"ajv@npm:^6.10.0, ajv@npm:^6.12.2, ajv@npm:^6.12.4, ajv@npm:^6.12.5": + version: 6.12.6 + resolution: "ajv@npm:6.12.6" + dependencies: + fast-deep-equal: "npm:^3.1.1" + fast-json-stable-stringify: "npm:^2.0.0" + json-schema-traverse: "npm:^0.4.1" + uri-js: "npm:^4.2.2" + checksum: 41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 + languageName: node + linkType: hard + +"ajv@npm:^8.0.0, ajv@npm:^8.10.0, ajv@npm:^8.6.0, ajv@npm:^8.9.0": + version: 8.12.0 + resolution: "ajv@npm:8.12.0" + dependencies: + fast-deep-equal: "npm:^3.1.1" + json-schema-traverse: "npm:^1.0.0" + require-from-string: "npm:^2.0.2" + uri-js: "npm:^4.2.2" + checksum: ac4f72adf727ee425e049bc9d8b31d4a57e1c90da8d28bcd23d60781b12fcd6fc3d68db5df16994c57b78b94eed7988f5a6b482fd376dc5b084125e20a0a622e + languageName: node + linkType: hard + +"almost-equal@npm:^1.1.0": + version: 1.1.0 + resolution: "almost-equal@npm:1.1.0" + checksum: 169f50ec565cafcb99043532789c982da1f5b82abb49cf6376d3c2b989e27b6455004f854b26b25086fc5579e4186994d8de64dae29d171f9f7593f43f8c6aa2 + languageName: node + linkType: hard + +"ansi-align@npm:^3.0.1": + version: 3.0.1 + resolution: "ansi-align@npm:3.0.1" + dependencies: + string-width: "npm:^4.1.0" + checksum: ad8b755a253a1bc8234eb341e0cec68a857ab18bf97ba2bda529e86f6e30460416523e0ec58c32e5c21f0ca470d779503244892873a5895dbd0c39c788e82467 + languageName: node + linkType: hard + +"ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.1": + version: 4.3.2 + resolution: "ansi-escapes@npm:4.3.2" + dependencies: + type-fest: "npm:^0.21.3" + checksum: da917be01871525a3dfcf925ae2977bc59e8c513d4423368645634bf5d4ceba5401574eb705c1e92b79f7292af5a656f78c5725a4b0e1cec97c4b413705c1d50 + languageName: node + linkType: hard + +"ansi-html-community@npm:^0.0.8": + version: 0.0.8 + resolution: "ansi-html-community@npm:0.0.8" + bin: + ansi-html: bin/ansi-html + checksum: 45d3a6f0b4f10b04fdd44bef62972e2470bfd917bf00439471fa7473d92d7cbe31369c73db863cc45dda115cb42527f39e232e9256115534b8ee5806b0caeed4 + languageName: node + linkType: hard + +"ansi-regex@npm:^5.0.1": + version: 5.0.1 + resolution: "ansi-regex@npm:5.0.1" + checksum: 9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 + languageName: node + linkType: hard + +"ansi-regex@npm:^6.0.1": + version: 6.0.1 + resolution: "ansi-regex@npm:6.0.1" + checksum: cbe16dbd2c6b2735d1df7976a7070dd277326434f0212f43abf6d87674095d247968209babdaad31bb00882fa68807256ba9be340eec2f1004de14ca75f52a08 + languageName: node + linkType: hard + +"ansi-styles@npm:^3.2.1": + version: 3.2.1 + resolution: "ansi-styles@npm:3.2.1" + dependencies: + color-convert: "npm:^1.9.0" + checksum: ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b + languageName: node + linkType: hard + +"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": + version: 4.3.0 + resolution: "ansi-styles@npm:4.3.0" + dependencies: + color-convert: "npm:^2.0.1" + checksum: 895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 + languageName: node + linkType: hard + +"ansi-styles@npm:^5.0.0": + version: 5.2.0 + resolution: "ansi-styles@npm:5.2.0" + checksum: 9c4ca80eb3c2fb7b33841c210d2f20807f40865d27008d7c3f707b7f95cab7d67462a565e2388ac3285b71cb3d9bb2173de8da37c57692a362885ec34d6e27df + languageName: node + linkType: hard + +"ansi-styles@npm:^6.1.0": + version: 6.2.1 + resolution: "ansi-styles@npm:6.2.1" + checksum: 5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c + languageName: node + linkType: hard + +"any-promise@npm:^1.0.0": + version: 1.3.0 + resolution: "any-promise@npm:1.3.0" + checksum: 60f0298ed34c74fef50daab88e8dab786036ed5a7fad02e012ab57e376e0a0b4b29e83b95ea9b5e7d89df762f5f25119b83e00706ecaccb22cfbacee98d74889 + languageName: node + linkType: hard + +"anymatch@npm:^3.0.3, anymatch@npm:~3.1.2": + version: 3.1.3 + resolution: "anymatch@npm:3.1.3" + dependencies: + normalize-path: "npm:^3.0.0" + picomatch: "npm:^2.0.4" + checksum: 57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac + languageName: node + linkType: hard + +"arch@npm:^2.2.0": + version: 2.2.0 + resolution: "arch@npm:2.2.0" + checksum: 4ceaf8d8207817c216ebc4469742052cb0a097bc45d9b7fcd60b7507220da545a28562ab5bdd4dfe87921bb56371a0805da4e10d704e01f93a15f83240f1284c + languageName: node + linkType: hard + +"arg@npm:5.0.2, arg@npm:^5.0.2": + version: 5.0.2 + resolution: "arg@npm:5.0.2" + checksum: ccaf86f4e05d342af6666c569f844bec426595c567d32a8289715087825c2ca7edd8a3d204e4d2fb2aa4602e09a57d0c13ea8c9eea75aac3dbb4af5514e6800e + languageName: node + linkType: hard + +"argparse@npm:^1.0.7": + version: 1.0.10 + resolution: "argparse@npm:1.0.10" + dependencies: + sprintf-js: "npm:~1.0.2" + checksum: b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de + languageName: node + linkType: hard + +"argparse@npm:^2.0.1": + version: 2.0.1 + resolution: "argparse@npm:2.0.1" + checksum: c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e + languageName: node + linkType: hard + +"aria-query@npm:5.1.3": + version: 5.1.3 + resolution: "aria-query@npm:5.1.3" + dependencies: + deep-equal: "npm:^2.0.5" + checksum: edcbc8044c4663d6f88f785e983e6784f98cb62b4ba1e9dd8d61b725d0203e4cfca38d676aee984c31f354103461102a3d583aa4fbe4fd0a89b679744f4e5faf + languageName: node + linkType: hard + +"aria-query@npm:^5.0.0, aria-query@npm:^5.1.3": + version: 5.3.0 + resolution: "aria-query@npm:5.3.0" + dependencies: + dequal: "npm:^2.0.3" + checksum: 2bff0d4eba5852a9dd578ecf47eaef0e82cc52569b48469b0aac2db5145db0b17b7a58d9e01237706d1e14b7a1b0ac9b78e9c97027ad97679dd8f91b85da1469 + languageName: node + linkType: hard + +"array-bounds@npm:^1.0.0, array-bounds@npm:^1.0.1": + version: 1.0.1 + resolution: "array-bounds@npm:1.0.1" + checksum: 69ee3bb14b6a9e170ef052d21354e0b1d63fd113702e082b70fc08197767f36018cf86d532d9602e01ae76fb36dbafbe72a194f5bd61312f5626db2aff305a2e + languageName: node + linkType: hard + +"array-buffer-byte-length@npm:^1.0.0": + version: 1.0.0 + resolution: "array-buffer-byte-length@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.2" + is-array-buffer: "npm:^3.0.1" + checksum: 12f84f6418b57a954caa41654e5e63e019142a4bbb2c6829ba86d1ba65d31ccfaf1461d1743556fd32b091fac34ff44d9dfbdb001402361c45c373b2c86f5c20 + languageName: node + linkType: hard + +"array-find-index@npm:^1.0.2": + version: 1.0.2 + resolution: "array-find-index@npm:1.0.2" + checksum: 86b9485c74ddd324feab807e10a6de3f9c1683856267236fac4bb4d4667ada6463e106db3f6c540ae6b720e0442b590ec701d13676df4c6af30ebf4da09b4f57 + languageName: node + linkType: hard + +"array-flatten@npm:1.1.1": + version: 1.1.1 + resolution: "array-flatten@npm:1.1.1" + checksum: 806966c8abb2f858b08f5324d9d18d7737480610f3bd5d3498aaae6eb5efdc501a884ba019c9b4a8f02ff67002058749d05548fd42fa8643f02c9c7f22198b91 + languageName: node + linkType: hard + +"array-flatten@npm:^2.1.2": + version: 2.1.2 + resolution: "array-flatten@npm:2.1.2" + checksum: bdc1cee68e41bec9cfc1161408734e2269428ef371445606bce4e6241001e138a94b9a617cc9a5b4b7fe6a3a51e3d5a942646975ce82a2e202ccf3e9b478c82f + languageName: node + linkType: hard + +"array-includes@npm:^3.1.6": + version: 3.1.6 + resolution: "array-includes@npm:3.1.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + get-intrinsic: "npm:^1.1.3" + is-string: "npm:^1.0.7" + checksum: d0caeaa57bea7d14b8480daee30cf8611899321006b15a6cd872b831bd7aaed7649f8764e060d01c5d33b8d9e998e5de5c87f4901874e1c1f467f429b7db2929 + languageName: node + linkType: hard + +"array-normalize@npm:^1.1.4": + version: 1.1.4 + resolution: "array-normalize@npm:1.1.4" + dependencies: + array-bounds: "npm:^1.0.0" + checksum: 68ef2d37105ab84101ee024b8d660f6b820faedd2c89a018d68e1e774a2cc31b21060bb5e168b233919d50127857fbf62e2f8d20ae8e0d428b6c40d393454ee9 + languageName: node + linkType: hard + +"array-range@npm:^1.0.1": + version: 1.0.1 + resolution: "array-range@npm:1.0.1" + checksum: d54a5cf60ac91c525c3ad52b6b02994c0bb437a175852ef64fd5474888c56053a97e108aeb32bc5fc17b928783d57dddf87757752eb5f0aa9092566a731fa734 + languageName: node + linkType: hard + +"array-rearrange@npm:^2.2.2": + version: 2.2.2 + resolution: "array-rearrange@npm:2.2.2" + checksum: 3cee3171eaeb364110dba1d9f1ba80c5b37d8284465930482060240097c47bbcc89b659748c515fdf3ac23fc230658a08847c8507c9ffae4f17fa74218716ef2 + languageName: node + linkType: hard + +"array-union@npm:^2.1.0": + version: 2.1.0 + resolution: "array-union@npm:2.1.0" + checksum: 429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962 + languageName: node + linkType: hard + +"array.prototype.flat@npm:^1.3.1": + version: 1.3.1 + resolution: "array.prototype.flat@npm:1.3.1" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + es-shim-unscopables: "npm:^1.0.0" + checksum: 8eda91d6925cc84b73ebf5a3d406ff28745d93a22ef6a0afb967755107081a937cf6c4555d3c18354870b2c5366c0ff51b3f597c11079e689869810a418b1b4f + languageName: node + linkType: hard + +"array.prototype.flatmap@npm:^1.3.1": + version: 1.3.1 + resolution: "array.prototype.flatmap@npm:1.3.1" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + es-shim-unscopables: "npm:^1.0.0" + checksum: 2bd58a0e79d5d90cb4f5ef0e287edf8b28e87c65428f54025ac6b7b4c204224b92811c266f296c53a2dbc93872117c0fcea2e51d3c9e8cecfd5024d4a4a57db4 + languageName: node + linkType: hard + +"array.prototype.reduce@npm:^1.0.5": + version: 1.0.5 + resolution: "array.prototype.reduce@npm:1.0.5" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + es-array-method-boxes-properly: "npm:^1.0.0" + is-string: "npm:^1.0.7" + checksum: 0c6c589d22d6cda4a32458c6fd57a41f420a4fa6cd184a3f6fe7b507f457bc4a073aff6accd595bcd6ac29cad856e7ac306549f127acdb098f401eea13c54901 + languageName: node + linkType: hard + +"array.prototype.tosorted@npm:^1.1.1": + version: 1.1.1 + resolution: "array.prototype.tosorted@npm:1.1.1" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + es-shim-unscopables: "npm:^1.0.0" + get-intrinsic: "npm:^1.1.3" + checksum: fd5f57aca3c7ddcd1bb83965457b625f3a67d8f334f5cbdb8ac8ef33d5b0d38281524114db2936f8c08048115d5158af216c94e6ae1eb966241b9b6f4ab8a7e8 + languageName: node + linkType: hard + +"asap@npm:~1.0.0": + version: 1.0.0 + resolution: "asap@npm:1.0.0" + checksum: c3817005507272f1af4ae6b307a6e85f09fa5b8a6315e318861b5ac48af4899b89b36d1548d3f69aaf88e6db6eaca7f827103feb5270338f751293113f9b6455 + languageName: node + linkType: hard + +"asap@npm:~2.0.3, asap@npm:~2.0.6": + version: 2.0.6 + resolution: "asap@npm:2.0.6" + checksum: c6d5e39fe1f15e4b87677460bd66b66050cd14c772269cee6688824c1410a08ab20254bb6784f9afb75af9144a9f9a7692d49547f4d19d715aeb7c0318f3136d + languageName: node + linkType: hard + +"asn1.js@npm:^5.2.0": + version: 5.4.1 + resolution: "asn1.js@npm:5.4.1" + dependencies: + bn.js: "npm:^4.0.0" + inherits: "npm:^2.0.1" + minimalistic-assert: "npm:^1.0.0" + safer-buffer: "npm:^2.1.0" + checksum: b577232fa6069cc52bb128e564002c62b2b1fe47f7137bdcd709c0b8495aa79cee0f8cc458a831b2d8675900eea0d05781b006be5e1aa4f0ae3577a73ec20324 + languageName: node + linkType: hard + +"assert@npm:^2.0.0": + version: 2.0.0 + resolution: "assert@npm:2.0.0" + dependencies: + es6-object-assign: "npm:^1.1.0" + is-nan: "npm:^1.2.1" + object-is: "npm:^1.0.1" + util: "npm:^0.12.0" + checksum: a25c7ebc07b52cc4dadd5c46d73472e7d4b86e40eb7ebaa12f78c1ba954dbe83612be5dea314b862fc364c305ab3bdbcd1c9d4ec2d92bc37214ae7d5596347f3 + languageName: node + linkType: hard + +"ast-types-flow@npm:^0.0.7": + version: 0.0.7 + resolution: "ast-types-flow@npm:0.0.7" + checksum: f381529f2da535949ba6cceddbdfaa33b4d5105842e147ec63582f560ea9ecc1a08f66457664f3109841d3053641fa8b9fa94ba607f1ea9f6c804fe5dee44a1d + languageName: node + linkType: hard + +"async@npm:^3.2.3": + version: 3.2.4 + resolution: "async@npm:3.2.4" + checksum: b5d02fed64717edf49e35b2b156debd9cf524934ea670108fa5528e7615ed66a5e0bf6c65f832c9483b63aa7f0bffe3e588ebe8d58a539b833798d324516e1c9 + languageName: node + linkType: hard + +"asynckit@npm:^0.4.0": + version: 0.4.0 + resolution: "asynckit@npm:0.4.0" + checksum: d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d + languageName: node + linkType: hard + +"at-least-node@npm:^1.0.0": + version: 1.0.0 + resolution: "at-least-node@npm:1.0.0" + checksum: 4c058baf6df1bc5a1697cf182e2029c58cd99975288a13f9e70068ef5d6f4e1f1fd7c4d2c3c4912eae44797d1725be9700995736deca441b39f3e66d8dee97ef + languageName: node + linkType: hard + +"attr-accept@npm:^2.2.2": + version: 2.2.2 + resolution: "attr-accept@npm:2.2.2" + checksum: f77c073ac9616a783f2df814a56f65f1c870193e8da6097139e30b3be84ecc19fb835b93e81315d1da4f19e80721f14e8c8075014205e00abd37b856fe030b80 + languageName: node + linkType: hard + +"autoprefixer@npm:^10.4.13": + version: 10.4.14 + resolution: "autoprefixer@npm:10.4.14" + dependencies: + browserslist: "npm:^4.21.5" + caniuse-lite: "npm:^1.0.30001464" + fraction.js: "npm:^4.2.0" + normalize-range: "npm:^0.1.2" + picocolors: "npm:^1.0.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.1.0 + bin: + autoprefixer: bin/autoprefixer + checksum: 66ce961b86acd2a46e05ac1eece8657b3d9edfd2ee3abddd6cfcb32755e6865409f57acf11fe05990d6f166afda85a603678435916267a09652265cfff7b5706 + languageName: node + linkType: hard + +"available-typed-arrays@npm:^1.0.5": + version: 1.0.5 + resolution: "available-typed-arrays@npm:1.0.5" + checksum: c4df567ca72d2754a6cbad20088f5f98b1065b3360178169fa9b44ea101af62c0f423fc3854fa820fd6895b6b9171b8386e71558203103ff8fc2ad503fdcc660 + languageName: node + linkType: hard + +"axe-core@npm:^4.6.2": + version: 4.7.2 + resolution: "axe-core@npm:4.7.2" + checksum: 8dfc61f038fbd9623ae8a264c8a475d887113a027fb440a2b377b82ffd300e71d1a0bcf042ff13b517a8d548b34c44b4159eff693725c5d7cde240d0aa68feac + languageName: node + linkType: hard + +"axobject-query@npm:^3.1.1": + version: 3.2.1 + resolution: "axobject-query@npm:3.2.1" + dependencies: + dequal: "npm:^2.0.3" + checksum: f7debc2012e456139b57d888c223f6d3cb4b61eb104164a85e3d346273dd6ef0bc9a04b6660ca9407704a14a8e05fa6b6eb9d55f44f348c7210de7ffb350c3a7 + languageName: node + linkType: hard + +"babel-jest@npm:^27.4.2, babel-jest@npm:^27.5.1": + version: 27.5.1 + resolution: "babel-jest@npm:27.5.1" + dependencies: + "@jest/transform": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/babel__core": "npm:^7.1.14" + babel-plugin-istanbul: "npm:^6.1.1" + babel-preset-jest: "npm:^27.5.1" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + slash: "npm:^3.0.0" + peerDependencies: + "@babel/core": ^7.8.0 + checksum: 3ec8fdabba150431e430ab98d31ba62a1e0bc0fb2fd8d9236cb7dffda740de99c0b04f24da54ff0b5814dce9f81ff0c35a61add53c0734775996a11a7ba38318 + languageName: node + linkType: hard + +"babel-loader@npm:^8.2.3": + version: 8.3.0 + resolution: "babel-loader@npm:8.3.0" + dependencies: + find-cache-dir: "npm:^3.3.1" + loader-utils: "npm:^2.0.0" + make-dir: "npm:^3.1.0" + schema-utils: "npm:^2.6.5" + peerDependencies: + "@babel/core": ^7.0.0 + webpack: ">=2" + checksum: 7b83bae35a12fbc5cdf250e2d36a288305fe5b6d20ab044ab7c09bbf456c8895b80af7a4f1e8b64b5c07a4fd48d4b5144dab40b4bc72a4fed532dc000362f38f + languageName: node + linkType: hard + +"babel-plugin-istanbul@npm:^6.1.1": + version: 6.1.1 + resolution: "babel-plugin-istanbul@npm:6.1.1" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.0.0" + "@istanbuljs/load-nyc-config": "npm:^1.0.0" + "@istanbuljs/schema": "npm:^0.1.2" + istanbul-lib-instrument: "npm:^5.0.4" + test-exclude: "npm:^6.0.0" + checksum: 1075657feb705e00fd9463b329921856d3775d9867c5054b449317d39153f8fbcebd3e02ebf00432824e647faff3683a9ca0a941325ef1afe9b3c4dd51b24beb + languageName: node + linkType: hard + +"babel-plugin-jest-hoist@npm:^27.5.1": + version: 27.5.1 + resolution: "babel-plugin-jest-hoist@npm:27.5.1" + dependencies: + "@babel/template": "npm:^7.3.3" + "@babel/types": "npm:^7.3.3" + "@types/babel__core": "npm:^7.0.0" + "@types/babel__traverse": "npm:^7.0.6" + checksum: 2f08ebde32d9d2bffff75524bda44812995b3fcab6cbf259e1db52561b6c8d829f4688db77ef277054a362c9a61826e121a2a4853b0bf93d077ebb3b69685f8e + languageName: node + linkType: hard + +"babel-plugin-macros@npm:^3.1.0": + version: 3.1.0 + resolution: "babel-plugin-macros@npm:3.1.0" + dependencies: + "@babel/runtime": "npm:^7.12.5" + cosmiconfig: "npm:^7.0.0" + resolve: "npm:^1.19.0" + checksum: c6dfb15de96f67871d95bd2e8c58b0c81edc08b9b087dc16755e7157f357dc1090a8dc60ebab955e92587a9101f02eba07e730adc253a1e4cf593ca3ebd3839c + languageName: node + linkType: hard + +"babel-plugin-named-asset-import@npm:^0.3.8": + version: 0.3.8 + resolution: "babel-plugin-named-asset-import@npm:0.3.8" + peerDependencies: + "@babel/core": ^7.1.0 + checksum: 1a583432e16b9b17ead619f2c1d241106c5e57171d75e0494b93a3f23fec94c53a6e521b9485a17f8daa6c5ddb111e57849b424c7796fa07c204cbbee1583f48 + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs2@npm:^0.4.4": + version: 0.4.4 + resolution: "babel-plugin-polyfill-corejs2@npm:0.4.4" + dependencies: + "@babel/compat-data": "npm:^7.22.6" + "@babel/helper-define-polyfill-provider": "npm:^0.4.1" + "@nicolo-ribaudo/semver-v6": "npm:^6.3.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4bb3056ae17002776e3003314068bdd7dd8e5d4b038ce1198db84346b953e73beb8d2b4445bff831c09ff217e533466eb28e771a80c3696decc2dae1347164e3 + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs3@npm:^0.8.2": + version: 0.8.2 + resolution: "babel-plugin-polyfill-corejs3@npm:0.8.2" + dependencies: + "@babel/helper-define-polyfill-provider": "npm:^0.4.1" + core-js-compat: "npm:^3.31.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: de094cc9d703a3bf6518f4312491b6f033f2db45791825499c905173b2d7d0f8ab9b1919a607eb76833907c6533a2106c951108da7689c0929354d38c661f346 + languageName: node + linkType: hard + +"babel-plugin-polyfill-regenerator@npm:^0.5.1": + version: 0.5.1 + resolution: "babel-plugin-polyfill-regenerator@npm:0.5.1" + dependencies: + "@babel/helper-define-polyfill-provider": "npm:^0.4.1" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5ec9e2ab2f031028a36f8d611f3fc3bc8347e2842e4354a28ac303e81697968549ea0ebea79cf0c28658e1e09d3a55a2a2085bb5a53d00f28bd688daa301fd6b + languageName: node + linkType: hard + +"babel-plugin-transform-react-remove-prop-types@npm:^0.4.24": + version: 0.4.24 + resolution: "babel-plugin-transform-react-remove-prop-types@npm:0.4.24" + checksum: 713441fd9fb663cc95709cb52d9c2c6228ea6d5406092a8a50094c810bcb13c3c347f8fca703d45b20cc401782743a91d7272025950147f9247d53360267f107 + languageName: node + linkType: hard + +"babel-preset-current-node-syntax@npm:^1.0.0": + version: 1.0.1 + resolution: "babel-preset-current-node-syntax@npm:1.0.1" + dependencies: + "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + "@babel/plugin-syntax-bigint": "npm:^7.8.3" + "@babel/plugin-syntax-class-properties": "npm:^7.8.3" + "@babel/plugin-syntax-import-meta": "npm:^7.8.3" + "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/plugin-syntax-numeric-separator": "npm:^7.8.3" + "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/plugin-syntax-top-level-await": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 5ba39a3a0e6c37d25e56a4fb843be632dac98d54706d8a0933f9bcb1a07987a96d55c2b5a6c11788a74063fb2534fe68c1f1dbb6c93626850c785e0938495627 + languageName: node + linkType: hard + +"babel-preset-jest@npm:^27.5.1": + version: 27.5.1 + resolution: "babel-preset-jest@npm:27.5.1" + dependencies: + babel-plugin-jest-hoist: "npm:^27.5.1" + babel-preset-current-node-syntax: "npm:^1.0.0" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: fc2f7fd03d8cddb36e0a07a94f1bb1826f7d7dae1f3519ed170c7a5e56c863aecbdb3fd2b034674a53210088478f000318b06415bad511bcf203c5729e5dd079 + languageName: node + linkType: hard + +"babel-preset-react-app@npm:^10.0.1": + version: 10.0.1 + resolution: "babel-preset-react-app@npm:10.0.1" + dependencies: + "@babel/core": "npm:^7.16.0" + "@babel/plugin-proposal-class-properties": "npm:^7.16.0" + "@babel/plugin-proposal-decorators": "npm:^7.16.4" + "@babel/plugin-proposal-nullish-coalescing-operator": "npm:^7.16.0" + "@babel/plugin-proposal-numeric-separator": "npm:^7.16.0" + "@babel/plugin-proposal-optional-chaining": "npm:^7.16.0" + "@babel/plugin-proposal-private-methods": "npm:^7.16.0" + "@babel/plugin-transform-flow-strip-types": "npm:^7.16.0" + "@babel/plugin-transform-react-display-name": "npm:^7.16.0" + "@babel/plugin-transform-runtime": "npm:^7.16.4" + "@babel/preset-env": "npm:^7.16.4" + "@babel/preset-react": "npm:^7.16.0" + "@babel/preset-typescript": "npm:^7.16.0" + "@babel/runtime": "npm:^7.16.3" + babel-plugin-macros: "npm:^3.1.0" + babel-plugin-transform-react-remove-prop-types: "npm:^0.4.24" + checksum: aba225d0caf2591f7cc1aeed69369d1e86419a92fcf6025312421c238f4468347a7b6c12a45a4fb15e879a01f5a060439842fbde5739d7be31077b35c7d20fa5 + languageName: node + linkType: hard + +"bail@npm:^2.0.0": + version: 2.0.2 + resolution: "bail@npm:2.0.2" + checksum: 25cbea309ef6a1f56214187004e8f34014eb015713ea01fa5b9b7e9e776ca88d0fdffd64143ac42dc91966c915a4b7b683411b56e14929fad16153fc026ffb8b + languageName: node + linkType: hard + +"balanced-match@npm:^1.0.0": + version: 1.0.2 + resolution: "balanced-match@npm:1.0.2" + checksum: 9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee + languageName: node + linkType: hard + +"base64-js@npm:^1.3.1": + version: 1.5.1 + resolution: "base64-js@npm:1.5.1" + checksum: f23823513b63173a001030fae4f2dabe283b99a9d324ade3ad3d148e218134676f1ee8568c877cd79ec1c53158dcf2d2ba527a97c606618928ba99dd930102bf + languageName: node + linkType: hard + +"batch@npm:0.6.1": + version: 0.6.1 + resolution: "batch@npm:0.6.1" + checksum: 925a13897b4db80d4211082fe287bcf96d297af38e26448c857cee3e095c9792e3b8f26b37d268812e7f38a589f694609de8534a018b1937d7dc9f84e6b387c5 + languageName: node + linkType: hard + +"bfj@npm:^7.0.2": + version: 7.0.2 + resolution: "bfj@npm:7.0.2" + dependencies: + bluebird: "npm:^3.5.5" + check-types: "npm:^11.1.1" + hoopy: "npm:^0.1.4" + tryer: "npm:^1.0.1" + checksum: 2e576c7e13a036c457dd45ce8d8aa3c407a801e90a4feb7e3adc42238befdef19a7c677a23725e42f6c7f79e76838afd72e7a0b7c5aa7a6e8147209709f57981 + languageName: node + linkType: hard + +"big.js@npm:^5.2.2": + version: 5.2.2 + resolution: "big.js@npm:5.2.2" + checksum: 230520f1ff920b2d2ce3e372d77a33faa4fa60d802fe01ca4ffbc321ee06023fe9a741ac02793ee778040a16b7e497f7d60c504d1c402b8fdab6f03bb785a25f + languageName: node + linkType: hard + +"binary-extensions@npm:^2.0.0": + version: 2.2.0 + resolution: "binary-extensions@npm:2.2.0" + checksum: d73d8b897238a2d3ffa5f59c0241870043aa7471335e89ea5e1ff48edb7c2d0bb471517a3e4c5c3f4c043615caa2717b5f80a5e61e07503d51dc85cb848e665d + languageName: node + linkType: hard + +"binary-search-bounds@npm:^2.0.4": + version: 2.0.5 + resolution: "binary-search-bounds@npm:2.0.5" + checksum: d433db5fba086d1585e268c0b0b7ae6ec359df60b9135112d1fd4dcf2f8a8820caab7e2523bbbca0a9cae0725486f67a6663a87b5637f0e58f4201985e6e5b0b + languageName: node + linkType: hard + +"bit-twiddle@npm:^1.0.0, bit-twiddle@npm:^1.0.2": + version: 1.0.2 + resolution: "bit-twiddle@npm:1.0.2" + checksum: edd86fdaeb27fb5acb9dbde247a71e511ebb6c5406ed645038974203dce8c87ef0359f5d5b60212c2a54d0a52ab16a27c4cc3b1cd4e06256a33881ed77f03d7a + languageName: node + linkType: hard + +"bitmap-sdf@npm:^1.0.0": + version: 1.0.4 + resolution: "bitmap-sdf@npm:1.0.4" + checksum: 1af490ff70c6fcb4f2a3d6c2217c0876a63a8a164515ee7283622409f35c050827ec1ad6fa8a1f152bb288d77de8fe7f7858ce67f1e7621af56de8755dce48fd + languageName: node + linkType: hard + +"bl@npm:^2.2.1": + version: 2.2.1 + resolution: "bl@npm:2.2.1" + dependencies: + readable-stream: "npm:^2.3.5" + safe-buffer: "npm:^5.1.1" + checksum: 37481260f1661755253b6205fcdd64b6d852147aaf61628947d2193fcdb78e625ee061dae0094ac16e7c7f10b12c90110fb2b08826815d47a28f9628bebb5a8f + languageName: node + linkType: hard + +"bl@npm:^4.0.3": + version: 4.1.0 + resolution: "bl@npm:4.1.0" + dependencies: + buffer: "npm:^5.5.0" + inherits: "npm:^2.0.4" + readable-stream: "npm:^3.4.0" + checksum: 02847e1d2cb089c9dc6958add42e3cdeaf07d13f575973963335ac0fdece563a50ac770ac4c8fa06492d2dd276f6cc3b7f08c7cd9c7a7ad0f8d388b2a28def5f + languageName: node + linkType: hard + +"bluebird@npm:^3.5.5": + version: 3.7.2 + resolution: "bluebird@npm:3.7.2" + checksum: 680de03adc54ff925eaa6c7bb9a47a0690e8b5de60f4792604aae8ed618c65e6b63a7893b57ca924beaf53eee69c5af4f8314148c08124c550fe1df1add897d2 + languageName: node + linkType: hard + +"bn.js@npm:^4.0.0, bn.js@npm:^4.1.0, bn.js@npm:^4.11.9": + version: 4.12.0 + resolution: "bn.js@npm:4.12.0" + checksum: 9736aaa317421b6b3ed038ff3d4491935a01419ac2d83ddcfebc5717385295fcfcf0c57311d90fe49926d0abbd7a9dbefdd8861e6129939177f7e67ebc645b21 + languageName: node + linkType: hard + +"bn.js@npm:^5.0.0, bn.js@npm:^5.1.1": + version: 5.2.1 + resolution: "bn.js@npm:5.2.1" + checksum: bed3d8bd34ec89dbcf9f20f88bd7d4a49c160fda3b561c7bb227501f974d3e435a48fb9b61bc3de304acab9215a3bda0803f7017ffb4d0016a0c3a740a283caa + languageName: node + linkType: hard + +"body-parser@npm:1.20.1": + version: 1.20.1 + resolution: "body-parser@npm:1.20.1" + dependencies: + bytes: "npm:3.1.2" + content-type: "npm:~1.0.4" + debug: "npm:2.6.9" + depd: "npm:2.0.0" + destroy: "npm:1.2.0" + http-errors: "npm:2.0.0" + iconv-lite: "npm:0.4.24" + on-finished: "npm:2.4.1" + qs: "npm:6.11.0" + raw-body: "npm:2.5.1" + type-is: "npm:~1.6.18" + unpipe: "npm:1.0.0" + checksum: a202d493e2c10a33fb7413dac7d2f713be579c4b88343cd814b6df7a38e5af1901fc31044e04de176db56b16d9772aa25a7723f64478c20f4d91b1ac223bf3b8 + languageName: node + linkType: hard + +"bonjour-service@npm:^1.0.11": + version: 1.1.1 + resolution: "bonjour-service@npm:1.1.1" + dependencies: + array-flatten: "npm:^2.1.2" + dns-equal: "npm:^1.0.0" + fast-deep-equal: "npm:^3.1.3" + multicast-dns: "npm:^7.2.5" + checksum: 8dd3fef3ff8a11678d8f586be03c85004a45bae4353c55d7dbffe288cad73ddb38dee08b57425b9945c9a3a840d50bd40ae5aeda0066186dabe4b84a315b4e05 + languageName: node + linkType: hard + +"boolbase@npm:^1.0.0, boolbase@npm:~1.0.0": + version: 1.0.0 + resolution: "boolbase@npm:1.0.0" + checksum: e4b53deb4f2b85c52be0e21a273f2045c7b6a6ea002b0e139c744cb6f95e9ec044439a52883b0d74dedd1ff3da55ed140cfdddfed7fb0cccbed373de5dce1bcf + languageName: node + linkType: hard + +"boxen@npm:7.0.0": + version: 7.0.0 + resolution: "boxen@npm:7.0.0" + dependencies: + ansi-align: "npm:^3.0.1" + camelcase: "npm:^7.0.0" + chalk: "npm:^5.0.1" + cli-boxes: "npm:^3.0.0" + string-width: "npm:^5.1.2" + type-fest: "npm:^2.13.0" + widest-line: "npm:^4.0.1" + wrap-ansi: "npm:^8.0.1" + checksum: af5e8bc3f1486ac50ec7485ae482eb1d4db905233d7ab2acafc406b576375be85bdc60b53fab99c842c42c274328b7219c7ae79adab13161f4c84e139f4b06ae + languageName: node + linkType: hard + +"brace-expansion@npm:^1.1.7": + version: 1.1.11 + resolution: "brace-expansion@npm:1.1.11" + dependencies: + balanced-match: "npm:^1.0.0" + concat-map: "npm:0.0.1" + checksum: 695a56cd058096a7cb71fb09d9d6a7070113c7be516699ed361317aca2ec169f618e28b8af352e02ab4233fb54eb0168460a40dc320bab0034b36ab59aaad668 + languageName: node + linkType: hard + +"brace-expansion@npm:^2.0.1": + version: 2.0.1 + resolution: "brace-expansion@npm:2.0.1" + dependencies: + balanced-match: "npm:^1.0.0" + checksum: b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f + languageName: node + linkType: hard + +"braces@npm:^3.0.2, braces@npm:~3.0.2": + version: 3.0.2 + resolution: "braces@npm:3.0.2" + dependencies: + fill-range: "npm:^7.0.1" + checksum: 321b4d675791479293264019156ca322163f02dc06e3c4cab33bb15cd43d80b51efef69b0930cfde3acd63d126ebca24cd0544fa6f261e093a0fb41ab9dda381 + languageName: node + linkType: hard + +"brorand@npm:^1.0.1, brorand@npm:^1.1.0": + version: 1.1.0 + resolution: "brorand@npm:1.1.0" + checksum: 6f366d7c4990f82c366e3878492ba9a372a73163c09871e80d82fb4ae0d23f9f8924cb8a662330308206e6b3b76ba1d528b4601c9ef73c2166b440b2ea3b7571 + languageName: node + linkType: hard + +"browser-process-hrtime@npm:^1.0.0": + version: 1.0.0 + resolution: "browser-process-hrtime@npm:1.0.0" + checksum: 65da78e51e9d7fa5909147f269c54c65ae2e03d1cf797cc3cfbbe49f475578b8160ce4a76c36c1a2ffbff26c74f937d73096c508057491ddf1a6dfd11143f72d + languageName: node + linkType: hard + +"browser-resolve@npm:^2.0.0": + version: 2.0.0 + resolution: "browser-resolve@npm:2.0.0" + dependencies: + resolve: "npm:^1.17.0" + checksum: 06c43adf3cb1939825ab9a4ac355b23272820ee421a20d04f62e0dabd9ea305e497b97f3ac027f87d53c366483aafe8673bbe1aaa5e41cd69eeafa65ac5fda6e + languageName: node + linkType: hard + +"browserify-aes@npm:^1.0.0, browserify-aes@npm:^1.0.4": + version: 1.2.0 + resolution: "browserify-aes@npm:1.2.0" + dependencies: + buffer-xor: "npm:^1.0.3" + cipher-base: "npm:^1.0.0" + create-hash: "npm:^1.1.0" + evp_bytestokey: "npm:^1.0.3" + inherits: "npm:^2.0.1" + safe-buffer: "npm:^5.0.1" + checksum: 967f2ae60d610b7b252a4cbb55a7a3331c78293c94b4dd9c264d384ca93354c089b3af9c0dd023534efdc74ffbc82510f7ad4399cf82bc37bc07052eea485f18 + languageName: node + linkType: hard + +"browserify-cipher@npm:^1.0.0": + version: 1.0.1 + resolution: "browserify-cipher@npm:1.0.1" + dependencies: + browserify-aes: "npm:^1.0.4" + browserify-des: "npm:^1.0.0" + evp_bytestokey: "npm:^1.0.0" + checksum: aa256dcb42bc53a67168bbc94ab85d243b0a3b56109dee3b51230b7d010d9b78985ffc1fb36e145c6e4db151f888076c1cfc207baf1525d3e375cbe8187fe27d + languageName: node + linkType: hard + +"browserify-des@npm:^1.0.0": + version: 1.0.2 + resolution: "browserify-des@npm:1.0.2" + dependencies: + cipher-base: "npm:^1.0.1" + des.js: "npm:^1.0.0" + inherits: "npm:^2.0.1" + safe-buffer: "npm:^5.1.2" + checksum: 943eb5d4045eff80a6cde5be4e5fbb1f2d5002126b5a4789c3c1aae3cdddb1eb92b00fb92277f512288e5c6af330730b1dbabcf7ce0923e749e151fcee5a074d + languageName: node + linkType: hard + +"browserify-rsa@npm:^4.0.0, browserify-rsa@npm:^4.0.1": + version: 4.1.0 + resolution: "browserify-rsa@npm:4.1.0" + dependencies: + bn.js: "npm:^5.0.0" + randombytes: "npm:^2.0.1" + checksum: fb2b5a8279d8a567a28d8ee03fb62e448428a906bab5c3dc9e9c3253ace551b5ea271db15e566ac78f1b1d71b243559031446604168b9235c351a32cae99d02a + languageName: node + linkType: hard + +"browserify-sign@npm:^4.0.0": + version: 4.2.1 + resolution: "browserify-sign@npm:4.2.1" + dependencies: + bn.js: "npm:^5.1.1" + browserify-rsa: "npm:^4.0.1" + create-hash: "npm:^1.2.0" + create-hmac: "npm:^1.1.7" + elliptic: "npm:^6.5.3" + inherits: "npm:^2.0.4" + parse-asn1: "npm:^5.1.5" + readable-stream: "npm:^3.6.0" + safe-buffer: "npm:^5.2.0" + checksum: 8f00a370e3e97060977dc58e51251d3ca398ee73523994a44430321e8de2c7d85395362d59014b2b07efe4190f369baee2ff28eb8f405ff4660b776651cf052d + languageName: node + linkType: hard + +"browserify-zlib@npm:^0.2.0": + version: 0.2.0 + resolution: "browserify-zlib@npm:0.2.0" + dependencies: + pako: "npm:~1.0.5" + checksum: 9ab10b6dc732c6c5ec8ebcbe5cb7fe1467f97402c9b2140113f47b5f187b9438f93a8e065d8baf8b929323c18324fbf1105af479ee86d9d36cab7d7ef3424ad9 + languageName: node + linkType: hard + +"browserslist@npm:^4.0.0, browserslist@npm:^4.14.5, browserslist@npm:^4.18.1, browserslist@npm:^4.21.4, browserslist@npm:^4.21.5, browserslist@npm:^4.21.9": + version: 4.21.9 + resolution: "browserslist@npm:4.21.9" + dependencies: + caniuse-lite: "npm:^1.0.30001503" + electron-to-chromium: "npm:^1.4.431" + node-releases: "npm:^2.0.12" + update-browserslist-db: "npm:^1.0.11" + bin: + browserslist: cli.js + checksum: 903189787141f645f47ec46ec482dc85985d1297948062690dc2ea8480eb98fd6213507234eb17177825acaae49c53888445910f1af984abce5373fb65c270b8 + languageName: node + linkType: hard + +"bser@npm:2.1.1": + version: 2.1.1 + resolution: "bser@npm:2.1.1" + dependencies: + node-int64: "npm:^0.4.0" + checksum: 24d8dfb7b6d457d73f32744e678a60cc553e4ec0e9e1a01cf614b44d85c3c87e188d3cc78ef0442ce5032ee6818de20a0162ba1074725c0d08908f62ea979227 + languageName: node + linkType: hard + +"buffer-from@npm:^1.0.0": + version: 1.1.2 + resolution: "buffer-from@npm:1.1.2" + checksum: 124fff9d66d691a86d3b062eff4663fe437a9d9ee4b47b1b9e97f5a5d14f6d5399345db80f796827be7c95e70a8e765dd404b7c3ff3b3324f98e9b0c8826cc34 + languageName: node + linkType: hard + +"buffer-xor@npm:^1.0.3": + version: 1.0.3 + resolution: "buffer-xor@npm:1.0.3" + checksum: fd269d0e0bf71ecac3146187cfc79edc9dbb054e2ee69b4d97dfb857c6d997c33de391696d04bdd669272751fa48e7872a22f3a6c7b07d6c0bc31dbe02a4075c + languageName: node + linkType: hard + +"buffer@npm:^5.5.0, buffer@npm:^5.7.1": + version: 5.7.1 + resolution: "buffer@npm:5.7.1" + dependencies: + base64-js: "npm:^1.3.1" + ieee754: "npm:^1.1.13" + checksum: 27cac81cff434ed2876058d72e7c4789d11ff1120ef32c9de48f59eab58179b66710c488987d295ae89a228f835fc66d088652dffeb8e3ba8659f80eb091d55e + languageName: node + linkType: hard + +"builtin-modules@npm:^3.1.0": + version: 3.3.0 + resolution: "builtin-modules@npm:3.3.0" + checksum: 2cb3448b4f7306dc853632a4fcddc95e8d4e4b9868c139400027b71938fc6806d4ff44007deffb362ac85724bd40c2c6452fb6a0aa4531650eeddb98d8e5ee8a + languageName: node + linkType: hard + +"builtin-status-codes@npm:^3.0.0": + version: 3.0.0 + resolution: "builtin-status-codes@npm:3.0.0" + checksum: c37bbba11a34c4431e56bd681b175512e99147defbe2358318d8152b3a01df7bf25e0305873947e5b350073d5ef41a364a22b37e48f1fb6d2fe6d5286a0f348c + languageName: node + linkType: hard + +"bytes@npm:3.0.0": + version: 3.0.0 + resolution: "bytes@npm:3.0.0" + checksum: 91d42c38601c76460519ffef88371caacaea483a354c8e4b8808e7b027574436a5713337c003ea3de63ee4991c2a9a637884fdfe7f761760d746929d9e8fec60 + languageName: node + linkType: hard + +"bytes@npm:3.1.2": + version: 3.1.2 + resolution: "bytes@npm:3.1.2" + checksum: 76d1c43cbd602794ad8ad2ae94095cddeb1de78c5dddaa7005c51af10b0176c69971a6d88e805a90c2b6550d76636e43c40d8427a808b8645ede885de4a0358e + languageName: node + linkType: hard + +"cacache@npm:^18.0.0": + version: 18.0.2 + resolution: "cacache@npm:18.0.2" + dependencies: + "@npmcli/fs": "npm:^3.1.0" + fs-minipass: "npm:^3.0.0" + glob: "npm:^10.2.2" + lru-cache: "npm:^10.0.1" + minipass: "npm:^7.0.3" + minipass-collect: "npm:^2.0.1" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + p-map: "npm:^4.0.0" + ssri: "npm:^10.0.0" + tar: "npm:^6.1.11" + unique-filename: "npm:^3.0.0" + checksum: 7992665305cc251a984f4fdbab1449d50e88c635bc43bf2785530c61d239c61b349e5734461baa461caaee65f040ab14e2d58e694f479c0810cffd181ba5eabc + languageName: node + linkType: hard + +"call-bind@npm:^1.0.0, call-bind@npm:^1.0.2": + version: 1.0.2 + resolution: "call-bind@npm:1.0.2" + dependencies: + function-bind: "npm:^1.1.1" + get-intrinsic: "npm:^1.0.2" + checksum: 74ba3f31e715456e22e451d8d098779b861eba3c7cac0d9b510049aced70d75c231ba05071f97e1812c98e34e2bee734c0c6126653e0088c2d9819ca047f4073 + languageName: node + linkType: hard + +"callsites@npm:^3.0.0": + version: 3.1.0 + resolution: "callsites@npm:3.1.0" + checksum: fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301 + languageName: node + linkType: hard + +"camel-case@npm:^4.1.2": + version: 4.1.2 + resolution: "camel-case@npm:4.1.2" + dependencies: + pascal-case: "npm:^3.1.2" + tslib: "npm:^2.0.3" + checksum: bf9eefaee1f20edbed2e9a442a226793bc72336e2b99e5e48c6b7252b6f70b080fc46d8246ab91939e2af91c36cdd422e0af35161e58dd089590f302f8f64c8a + languageName: node + linkType: hard + +"camelcase-css@npm:^2.0.1": + version: 2.0.1 + resolution: "camelcase-css@npm:2.0.1" + checksum: 1a1a3137e8a781e6cbeaeab75634c60ffd8e27850de410c162cce222ea331cd1ba5364e8fb21c95e5ca76f52ac34b81a090925ca00a87221355746d049c6e273 + languageName: node + linkType: hard + +"camelcase@npm:^5.0.0, camelcase@npm:^5.3.1": + version: 5.3.1 + resolution: "camelcase@npm:5.3.1" + checksum: 92ff9b443bfe8abb15f2b1513ca182d16126359ad4f955ebc83dc4ddcc4ef3fdd2c078bc223f2673dc223488e75c99b16cc4d056624374b799e6a1555cf61b23 + languageName: node + linkType: hard + +"camelcase@npm:^6.2.0, camelcase@npm:^6.2.1": + version: 6.3.0 + resolution: "camelcase@npm:6.3.0" + checksum: 0d701658219bd3116d12da3eab31acddb3f9440790c0792e0d398f0a520a6a4058018e546862b6fba89d7ae990efaeb97da71e1913e9ebf5a8b5621a3d55c710 + languageName: node + linkType: hard + +"camelcase@npm:^7.0.0": + version: 7.0.1 + resolution: "camelcase@npm:7.0.1" + checksum: 3adfc9a0e96d51b3a2f4efe90a84dad3e206aaa81dfc664f1bd568270e1bf3b010aad31f01db16345b4ffe1910e16ab411c7273a19a859addd1b98ef7cf4cfbd + languageName: node + linkType: hard + +"caniuse-api@npm:^3.0.0": + version: 3.0.0 + resolution: "caniuse-api@npm:3.0.0" + dependencies: + browserslist: "npm:^4.0.0" + caniuse-lite: "npm:^1.0.0" + lodash.memoize: "npm:^4.1.2" + lodash.uniq: "npm:^4.5.0" + checksum: 60f9e85a3331e6d761b1b03eec71ca38ef7d74146bece34694853033292156b815696573ed734b65583acf493e88163618eda915c6c826d46a024c71a9572b4c + languageName: node + linkType: hard + +"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001464, caniuse-lite@npm:^1.0.30001503": + version: 1.0.30001513 + resolution: "caniuse-lite@npm:1.0.30001513" + checksum: b4eca40458e01fa07947ea8eb1dae2acf902d27f7f7399daf47c9cd75724ab03f2424a59a8d211144653ba7e9e66f722863b5e940453e6c3909a2194c0a6622c + languageName: node + linkType: hard + +"canvas-fit@npm:^1.5.0": + version: 1.5.0 + resolution: "canvas-fit@npm:1.5.0" + dependencies: + element-size: "npm:^1.1.1" + checksum: 9d85ce4c205e7edf87fa6281891780e1f62c0ffc62b4e4b16f3d27960e2b81cb05e340b21068bd35ea63651c5f343f3c0af981e40cd2f9a42bc6c7e387248bbb + languageName: node + linkType: hard + +"case-sensitive-paths-webpack-plugin@npm:^2.4.0": + version: 2.4.0 + resolution: "case-sensitive-paths-webpack-plugin@npm:2.4.0" + checksum: 310dab619b661a7fa44ed773870be6d6d7373faff6953ad92720f9553e2579e46dda5b9a79eae6d25ff3733cc15aa466b96e5811af16213f23c115aa220b4ab4 + languageName: node + linkType: hard + +"ccount@npm:^1.0.0": + version: 1.1.0 + resolution: "ccount@npm:1.1.0" + checksum: 9ccfddfa45c8d6d01411b8e30d2ce03c55c33f32a69bdb84ee44d743427cdb01b03159954917023d0dac960c34973ba42626bb9fa883491ebb663a53a6713d43 + languageName: node + linkType: hard + +"ccount@npm:^2.0.0": + version: 2.0.1 + resolution: "ccount@npm:2.0.1" + checksum: 3939b1664390174484322bc3f45b798462e6c07ee6384cb3d645e0aa2f318502d174845198c1561930e1d431087f74cf1fe291ae9a4722821a9f4ba67e574350 + languageName: node + linkType: hard + +"chalk-template@npm:0.4.0": + version: 0.4.0 + resolution: "chalk-template@npm:0.4.0" + dependencies: + chalk: "npm:^4.1.2" + checksum: 6a4cb4252966475f0bd3ee1cd8780146e1ba69f445e59c565cab891ac18708c8143515d23e2b0fb7e192574fb7608d429ea5b28f3b7b9507770ad6fccd3467e3 + languageName: node + linkType: hard + +"chalk@npm:2.4.2, chalk@npm:^2.0.0, chalk@npm:^2.4.1, chalk@npm:^2.4.2": + version: 2.4.2 + resolution: "chalk@npm:2.4.2" + dependencies: + ansi-styles: "npm:^3.2.1" + escape-string-regexp: "npm:^1.0.5" + supports-color: "npm:^5.3.0" + checksum: e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073 + languageName: node + linkType: hard + +"chalk@npm:5.0.1": + version: 5.0.1 + resolution: "chalk@npm:5.0.1" + checksum: 97898611ae40cfdeda9778901731df1404ea49fac0eb8253804e8d21b8064917df9823e29c0c9d766aab623da1a0b43d0e072d19a73d4f62d0d9115aef4c64e6 + languageName: node + linkType: hard + +"chalk@npm:^3.0.0": + version: 3.0.0 + resolution: "chalk@npm:3.0.0" + dependencies: + ansi-styles: "npm:^4.1.0" + supports-color: "npm:^7.1.0" + checksum: ee650b0a065b3d7a6fda258e75d3a86fc8e4effa55871da730a9e42ccb035bf5fd203525e5a1ef45ec2582ecc4f65b47eb11357c526b84dd29a14fb162c414d2 + languageName: node + linkType: hard + +"chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0, chalk@npm:^4.1.2": + version: 4.1.2 + resolution: "chalk@npm:4.1.2" + dependencies: + ansi-styles: "npm:^4.1.0" + supports-color: "npm:^7.1.0" + checksum: 4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 + languageName: node + linkType: hard + +"chalk@npm:^5.0.1": + version: 5.3.0 + resolution: "chalk@npm:5.3.0" + checksum: 8297d436b2c0f95801103ff2ef67268d362021b8210daf8ddbe349695333eb3610a71122172ff3b0272f1ef2cf7cc2c41fdaa4715f52e49ffe04c56340feed09 + languageName: node + linkType: hard + +"char-regex@npm:^1.0.2": + version: 1.0.2 + resolution: "char-regex@npm:1.0.2" + checksum: 57a09a86371331e0be35d9083ba429e86c4f4648ecbe27455dbfb343037c16ee6fdc7f6b61f433a57cc5ded5561d71c56a150e018f40c2ffb7bc93a26dae341e + languageName: node + linkType: hard + +"char-regex@npm:^2.0.0": + version: 2.0.1 + resolution: "char-regex@npm:2.0.1" + checksum: ec592229ac3ef18f2ea1f5676ae9a829c37150db55fd7f709edce1bcdc9f506de22ae19388d853704806e51af71fe9239bcb7e7be583296951bfbf2a9a9763a2 + languageName: node + linkType: hard + +"character-entities-html4@npm:^2.0.0": + version: 2.1.0 + resolution: "character-entities-html4@npm:2.1.0" + checksum: fe61b553f083400c20c0b0fd65095df30a0b445d960f3bbf271536ae6c3ba676f39cb7af0b4bf2755812f08ab9b88f2feed68f9aebb73bb153f7a115fe5c6e40 + languageName: node + linkType: hard + +"character-entities-legacy@npm:^1.0.0": + version: 1.1.4 + resolution: "character-entities-legacy@npm:1.1.4" + checksum: ea4ca9c29887335eed86d78fc67a640168342b1274da84c097abb0575a253d1265281a5052f9a863979e952bcc267b4ecaaf4fe233a7e1e0d8a47806c65b96c7 + languageName: node + linkType: hard + +"character-entities-legacy@npm:^3.0.0": + version: 3.0.0 + resolution: "character-entities-legacy@npm:3.0.0" + checksum: ec4b430af873661aa754a896a2b55af089b4e938d3d010fad5219299a6b6d32ab175142699ee250640678cd64bdecd6db3c9af0b8759ab7b155d970d84c4c7d1 + languageName: node + linkType: hard + +"character-entities@npm:^1.0.0": + version: 1.2.4 + resolution: "character-entities@npm:1.2.4" + checksum: ad015c3d7163563b8a0ee1f587fb0ef305ef344e9fd937f79ca51cccc233786a01d591d989d5bf7b2e66b528ac9efba47f3b1897358324e69932f6d4b25adfe1 + languageName: node + linkType: hard + +"character-entities@npm:^2.0.0": + version: 2.0.2 + resolution: "character-entities@npm:2.0.2" + checksum: b0c645a45bcc90ff24f0e0140f4875a8436b8ef13b6bcd31ec02cfb2ca502b680362aa95386f7815bdc04b6464d48cf191210b3840d7c04241a149ede591a308 + languageName: node + linkType: hard + +"character-reference-invalid@npm:^1.0.0": + version: 1.1.4 + resolution: "character-reference-invalid@npm:1.1.4" + checksum: 29f05081c5817bd1e975b0bf61e77b60a40f62ad371d0f0ce0fdb48ab922278bc744d1fbe33771dced751887a8403f265ff634542675c8d7375f6ff4811efd0e + languageName: node + linkType: hard + +"character-reference-invalid@npm:^2.0.0": + version: 2.0.1 + resolution: "character-reference-invalid@npm:2.0.1" + checksum: 2ae0dec770cd8659d7e8b0ce24392d83b4c2f0eb4a3395c955dce5528edd4cc030a794cfa06600fcdd700b3f2de2f9b8e40e309c0011c4180e3be64a0b42e6a1 + languageName: node + linkType: hard + +"check-types@npm:^11.1.1": + version: 11.2.2 + resolution: "check-types@npm:11.2.2" + checksum: 2ec757441f97594210b5ccdb35f52d47318e9a705a7dad7940cbd114c02e3f62504d8b4a389cdbb4cd2bc13ea1092a1b27119bde35012b8d1b059b7675bbe0c3 + languageName: node + linkType: hard + +"chokidar@npm:^3.4.2, chokidar@npm:^3.5.3": + version: 3.5.3 + resolution: "chokidar@npm:3.5.3" + dependencies: + anymatch: "npm:~3.1.2" + braces: "npm:~3.0.2" + fsevents: "npm:~2.3.2" + glob-parent: "npm:~5.1.2" + is-binary-path: "npm:~2.1.0" + is-glob: "npm:~4.0.1" + normalize-path: "npm:~3.0.0" + readdirp: "npm:~3.6.0" + dependenciesMeta: + fsevents: + optional: true + checksum: 1076953093e0707c882a92c66c0f56ba6187831aa51bb4de878c1fec59ae611a3bf02898f190efec8e77a086b8df61c2b2a3ea324642a0558bdf8ee6c5dc9ca1 + languageName: node + linkType: hard + +"chownr@npm:^1.1.1": + version: 1.1.4 + resolution: "chownr@npm:1.1.4" + checksum: ed57952a84cc0c802af900cf7136de643d3aba2eecb59d29344bc2f3f9bf703a301b9d84cdc71f82c3ffc9ccde831b0d92f5b45f91727d6c9da62f23aef9d9db + languageName: node + linkType: hard + +"chownr@npm:^2.0.0": + version: 2.0.0 + resolution: "chownr@npm:2.0.0" + checksum: 594754e1303672171cc04e50f6c398ae16128eb134a88f801bf5354fd96f205320f23536a045d9abd8b51024a149696e51231565891d4efdab8846021ecf88e6 + languageName: node + linkType: hard + +"chroma-js@npm:^1.3.7": + version: 1.4.1 + resolution: "chroma-js@npm:1.4.1" + checksum: 90b4378634b6d678498cd3677964e55efb3249dd1b023148d20c4c92d2da77853e0969c268ecd2a0ebdade98a55effb87f5771bfb0c15cd3eaa30485da22767d + languageName: node + linkType: hard + +"chrome-trace-event@npm:^1.0.2": + version: 1.0.3 + resolution: "chrome-trace-event@npm:1.0.3" + checksum: 080ce2d20c2b9e0f8461a380e9585686caa768b1c834a464470c9dc74cda07f27611c7b727a2cd768a9cecd033297fdec4ce01f1e58b62227882c1059dec321c + languageName: node + linkType: hard + +"ci-info@npm:^3.2.0": + version: 3.8.0 + resolution: "ci-info@npm:3.8.0" + checksum: 0d3052193b58356372b34ab40d2668c3e62f1006d5ca33726d1d3c423853b19a85508eadde7f5908496fb41448f465263bf61c1ee58b7832cb6a924537e3863a + languageName: node + linkType: hard + +"cipher-base@npm:^1.0.0, cipher-base@npm:^1.0.1, cipher-base@npm:^1.0.3": + version: 1.0.4 + resolution: "cipher-base@npm:1.0.4" + dependencies: + inherits: "npm:^2.0.1" + safe-buffer: "npm:^5.0.1" + checksum: d8d005f8b64d8a77b3d3ce531301ae7b45902c9cab4ec8b66bdbd2bf2a1d9fceb9a2133c293eb3c060b2d964da0f14c47fb740366081338aa3795dd1faa8984b + languageName: node + linkType: hard + +"cjs-module-lexer@npm:^1.0.0": + version: 1.2.3 + resolution: "cjs-module-lexer@npm:1.2.3" + checksum: 0de9a9c3fad03a46804c0d38e7b712fb282584a9c7ef1ed44cae22fb71d9bb600309d66a9711ac36a596fd03422f5bb03e021e8f369c12a39fa1786ae531baab + languageName: node + linkType: hard + +"clamp@npm:^1.0.1": + version: 1.0.1 + resolution: "clamp@npm:1.0.1" + checksum: 8f95ccbc5d646a98c1d690bce820f3d060a5267242083e8994f70dc504ce441dbc7b8ef13b93819129fc166e7a5b6abd320f109bdba0f49b8dcc794710987c97 + languageName: node + linkType: hard + +"clean-css@npm:^5.2.2": + version: 5.3.2 + resolution: "clean-css@npm:5.3.2" + dependencies: + source-map: "npm:~0.6.0" + checksum: 315e0e81306524bd2c1905fa6823bf7658be40799b78f446e5e6922808718d2b80266fb3e96842a06176fa683bc2c1a0d2827b08d154e2f9cf136d7bda909d33 + languageName: node + linkType: hard + +"clean-stack@npm:^2.0.0": + version: 2.2.0 + resolution: "clean-stack@npm:2.2.0" + checksum: 1f90262d5f6230a17e27d0c190b09d47ebe7efdd76a03b5a1127863f7b3c9aec4c3e6c8bb3a7bbf81d553d56a1fd35728f5a8ef4c63f867ac8d690109742a8c1 + languageName: node + linkType: hard + +"cli-boxes@npm:^3.0.0": + version: 3.0.0 + resolution: "cli-boxes@npm:3.0.0" + checksum: 4db3e8fbfaf1aac4fb3a6cbe5a2d3fa048bee741a45371b906439b9ffc821c6e626b0f108bdcd3ddf126a4a319409aedcf39a0730573ff050fdd7b6731e99fb9 + languageName: node + linkType: hard + +"clipboardy@npm:3.0.0": + version: 3.0.0 + resolution: "clipboardy@npm:3.0.0" + dependencies: + arch: "npm:^2.2.0" + execa: "npm:^5.1.1" + is-wsl: "npm:^2.2.0" + checksum: 299d66e13fcaccf656306e76d629ce6927eaba8ba58ae5328e3379ae627e469e29df8ef87408cdb234e2ad0e25f0024dd203393f7e59c67ae79772579c4de052 + languageName: node + linkType: hard + +"cliui@npm:^6.0.0": + version: 6.0.0 + resolution: "cliui@npm:6.0.0" + dependencies: + string-width: "npm:^4.2.0" + strip-ansi: "npm:^6.0.0" + wrap-ansi: "npm:^6.2.0" + checksum: 35229b1bb48647e882104cac374c9a18e34bbf0bace0e2cf03000326b6ca3050d6b59545d91e17bfe3705f4a0e2988787aa5cde6331bf5cbbf0164732cef6492 + languageName: node + linkType: hard + +"cliui@npm:^7.0.2": + version: 7.0.4 + resolution: "cliui@npm:7.0.4" + dependencies: + string-width: "npm:^4.2.0" + strip-ansi: "npm:^6.0.0" + wrap-ansi: "npm:^7.0.0" + checksum: 6035f5daf7383470cef82b3d3db00bec70afb3423538c50394386ffbbab135e26c3689c41791f911fa71b62d13d3863c712fdd70f0fbdffd938a1e6fd09aac00 + languageName: node + linkType: hard + +"clsx@npm:^1.0.4, clsx@npm:^1.1.1, clsx@npm:^1.2.1": + version: 1.2.1 + resolution: "clsx@npm:1.2.1" + checksum: 34dead8bee24f5e96f6e7937d711978380647e936a22e76380290e35486afd8634966ce300fc4b74a32f3762c7d4c0303f442c3e259f4ce02374eb0c82834f27 + languageName: node + linkType: hard + +"co@npm:^4.6.0": + version: 4.6.0 + resolution: "co@npm:4.6.0" + checksum: c0e85ea0ca8bf0a50cbdca82efc5af0301240ca88ebe3644a6ffb8ffe911f34d40f8fbcf8f1d52c5ddd66706abd4d3bfcd64259f1e8e2371d4f47573b0dc8c28 + languageName: node + linkType: hard + +"coa@npm:^2.0.2": + version: 2.0.2 + resolution: "coa@npm:2.0.2" + dependencies: + "@types/q": "npm:^1.5.1" + chalk: "npm:^2.4.1" + q: "npm:^1.1.2" + checksum: 0264392e3b691a8551e619889f3e67558b4f755eeb09d67625032a25c37634731e778fabbd9d14df6477d6ae770e30ea9405d18e515b2ec492b0eb90bb8d7f43 + languageName: node + linkType: hard + +"collect-v8-coverage@npm:^1.0.0": + version: 1.0.2 + resolution: "collect-v8-coverage@npm:1.0.2" + checksum: ed7008e2e8b6852c5483b444a3ae6e976e088d4335a85aa0a9db2861c5f1d31bd2d7ff97a60469b3388deeba661a619753afbe201279fb159b4b9548ab8269a1 + languageName: node + linkType: hard + +"color-alpha@npm:1.0.4": + version: 1.0.4 + resolution: "color-alpha@npm:1.0.4" + dependencies: + color-parse: "npm:^1.3.8" + checksum: dd78453f9c9fc20e9303d085357594abe26ec5ea644d87ef21d6bd61e1eaf02e324d43efaa00dd68af2b7e551f4bc53c11dafd9556835c3707a7b29623053842 + languageName: node + linkType: hard + +"color-alpha@npm:^1.0.4": + version: 1.1.3 + resolution: "color-alpha@npm:1.1.3" + dependencies: + color-parse: "npm:^1.4.1" + checksum: 3481da412db67716860e86af89f75b3db550cf38879086208314863f4bd2b6004c42d6d8532970d9482bd75c47f60eab6a5002c4b3740d0e0c2f81bfb1caad15 + languageName: node + linkType: hard + +"color-convert@npm:^1.9.0": + version: 1.9.3 + resolution: "color-convert@npm:1.9.3" + dependencies: + color-name: "npm:1.1.3" + checksum: 5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c + languageName: node + linkType: hard + +"color-convert@npm:^2.0.1": + version: 2.0.1 + resolution: "color-convert@npm:2.0.1" + dependencies: + color-name: "npm:~1.1.4" + checksum: 37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 + languageName: node + linkType: hard + +"color-convert@npm:~0.5.0": + version: 0.5.3 + resolution: "color-convert@npm:0.5.3" + checksum: 324b863446bab6c5f88cb0010c3a16a6ca6bf6709eb7b7b3482d3e9ca6cfcfa690c25c1151bd2dc6279a0f4e2c593630486a2b9caae3c3eb96b82f5408e23e54 + languageName: node + linkType: hard + +"color-diff@npm:^1.1.0": + version: 1.4.0 + resolution: "color-diff@npm:1.4.0" + checksum: c52eeef1d0b0a60482fb7a16070b86db2b15d1730fbfca0876deb1e21eebf4769473fdb90982bcba9a38d53c45b83cc3a2467e530d219a64053cd849b96351cb + languageName: node + linkType: hard + +"color-id@npm:^1.1.0": + version: 1.1.0 + resolution: "color-id@npm:1.1.0" + dependencies: + clamp: "npm:^1.0.1" + checksum: 620d9184529c917e994a2b172ca2a73af33df0608596ed07ea42fed22fe308c164a08903e1dce88185e5b39ee9c7a5580cbf87a52c1fd8455c3fa8d359b6263d + languageName: node + linkType: hard + +"color-name@npm:1.1.3": + version: 1.1.3 + resolution: "color-name@npm:1.1.3" + checksum: 566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6 + languageName: node + linkType: hard + +"color-name@npm:^1.0.0, color-name@npm:~1.1.4": + version: 1.1.4 + resolution: "color-name@npm:1.1.4" + checksum: a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 + languageName: node + linkType: hard + +"color-normalize@npm:1.5.0": + version: 1.5.0 + resolution: "color-normalize@npm:1.5.0" + dependencies: + clamp: "npm:^1.0.1" + color-rgba: "npm:^2.1.1" + dtype: "npm:^2.0.0" + checksum: 86131bb0c3c4cc16f63423c08d523915825b30c08b3b1e36f9cac52e3710209ef47f623b2f0943b6efc4f6d71f098922e6795e2546d8885398643ff1b96ee623 + languageName: node + linkType: hard + +"color-normalize@npm:^1.5.0": + version: 1.5.2 + resolution: "color-normalize@npm:1.5.2" + dependencies: + color-rgba: "npm:^2.2.0" + dtype: "npm:^2.0.0" + checksum: d9d536b9cb9b14a5ee6dc0555f12e846ef2fdb478fddd245478ad414b6d60f0da42c9b76bf99cc23a42e30e06d5e2ff3a69ddb8e4d767f3f3ac14669ecebc5d0 + languageName: node + linkType: hard + +"color-parse@npm:1.3.8": + version: 1.3.8 + resolution: "color-parse@npm:1.3.8" + dependencies: + color-name: "npm:^1.0.0" + defined: "npm:^1.0.0" + is-plain-obj: "npm:^1.1.0" + checksum: 245c7ffa93961f7daff995ae09875edf52d3007e020c0a3a675dc06fd478ba624d88f79d653de4feb33573fa27629d88caf4ca1d24cf7e48326888a8ecc8bbdc + languageName: node + linkType: hard + +"color-parse@npm:^1.3.8, color-parse@npm:^1.4.1, color-parse@npm:^1.4.2": + version: 1.4.2 + resolution: "color-parse@npm:1.4.2" + dependencies: + color-name: "npm:^1.0.0" + checksum: 911e47271d6362f6535779c3b5cfddbdc1ca2160e253de83e36784bb223c0c41cf11c382fa4b1cb766fcb313bd891f51c24d0ff0a7afee3a92aa0daf792ac4ff + languageName: node + linkType: hard + +"color-rgba@npm:2.1.1": + version: 2.1.1 + resolution: "color-rgba@npm:2.1.1" + dependencies: + clamp: "npm:^1.0.1" + color-parse: "npm:^1.3.8" + color-space: "npm:^1.14.6" + checksum: 1fdd77fe067ad210f427663b5ab81925db3ab8aa3aa709069acd6be80b562fcc4dd83682b6935d63b6425ab748c6cb4a2de427e166097d4fd53e25650ac1c498 + languageName: node + linkType: hard + +"color-rgba@npm:^2.1.1, color-rgba@npm:^2.2.0": + version: 2.4.0 + resolution: "color-rgba@npm:2.4.0" + dependencies: + color-parse: "npm:^1.4.2" + color-space: "npm:^2.0.0" + checksum: b2d952a464a51ff446927b60528c94caee8987bcf1609dce7a18589a2d2febeab79d8c66c9eb1c4d9ef69ae4b5dfebc9f8fc858ad45d6cae7d2b013c562893ee + languageName: node + linkType: hard + +"color-space@npm:^1.14.6": + version: 1.16.0 + resolution: "color-space@npm:1.16.0" + dependencies: + hsluv: "npm:^0.0.3" + mumath: "npm:^3.3.4" + checksum: 93c977671d9b90392477e863c6bf49598256ae63b5196bcdc9f74184a7cd4e125ebf6695e3f34082c1dba8f9eb303eeafd91d8be237064ab7d6a2f6a256014ea + languageName: node + linkType: hard + +"color-space@npm:^2.0.0": + version: 2.0.1 + resolution: "color-space@npm:2.0.1" + checksum: aeeca8d5f99f108a056df9dbadcebfe0e8c352004a5999c858ecc48ef8e52f5d06d137b7f330100d68c61dfb83fd6a7c1c113fcc2dfc37d783351b03536aa33f + languageName: node + linkType: hard + +"color-string@npm:^1.9.0": + version: 1.9.1 + resolution: "color-string@npm:1.9.1" + dependencies: + color-name: "npm:^1.0.0" + simple-swizzle: "npm:^0.2.2" + checksum: b0bfd74c03b1f837f543898b512f5ea353f71630ccdd0d66f83028d1f0924a7d4272deb278b9aef376cacf1289b522ac3fb175e99895283645a2dc3a33af2404 + languageName: node + linkType: hard + +"color@npm:^4.2.3": + version: 4.2.3 + resolution: "color@npm:4.2.3" + dependencies: + color-convert: "npm:^2.0.1" + color-string: "npm:^1.9.0" + checksum: 7fbe7cfb811054c808349de19fb380252e5e34e61d7d168ec3353e9e9aacb1802674bddc657682e4e9730c2786592a4de6f8283e7e0d3870b829bb0b7b2f6118 + languageName: node + linkType: hard + +"colord@npm:^2.9.1": + version: 2.9.3 + resolution: "colord@npm:2.9.3" + checksum: 9699e956894d8996b28c686afe8988720785f476f59335c80ce852ded76ab3ebe252703aec53d9bef54f6219aea6b960fb3d9a8300058a1d0c0d4026460cd110 + languageName: node + linkType: hard + +"colorette@npm:^2.0.10": + version: 2.0.20 + resolution: "colorette@npm:2.0.20" + checksum: e94116ff33b0ff56f3b83b9ace895e5bf87c2a7a47b3401b8c3f3226e050d5ef76cf4072fb3325f9dc24d1698f9b730baf4e05eeaf861d74a1883073f4c98a40 + languageName: node + linkType: hard + +"combined-stream@npm:^1.0.8": + version: 1.0.8 + resolution: "combined-stream@npm:1.0.8" + dependencies: + delayed-stream: "npm:~1.0.0" + checksum: 0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5 + languageName: node + linkType: hard + +"comma-separated-tokens@npm:^2.0.0": + version: 2.0.3 + resolution: "comma-separated-tokens@npm:2.0.3" + checksum: 91f90f1aae320f1755d6957ef0b864fe4f54737f3313bd95e0802686ee2ca38bff1dd381964d00ae5db42912dd1f4ae5c2709644e82706ffc6f6842a813cdd67 + languageName: node + linkType: hard + +"commander@npm:2, commander@npm:^2.15.1, commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: 74c781a5248c2402a0a3e966a0a2bba3c054aad144f5c023364be83265e796b20565aa9feff624132ff629aa64e16999fa40a743c10c12f7c61e96a794b99288 + languageName: node + linkType: hard + +"commander@npm:^4.0.0": + version: 4.1.1 + resolution: "commander@npm:4.1.1" + checksum: 84a76c08fe6cc08c9c93f62ac573d2907d8e79138999312c92d4155bc2325d487d64d13f669b2000c9f8caf70493c1be2dac74fec3c51d5a04f8bc3ae1830bab + languageName: node + linkType: hard + +"commander@npm:^7.2.0": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 8d690ff13b0356df7e0ebbe6c59b4712f754f4b724d4f473d3cc5b3fdcf978e3a5dc3078717858a2ceb50b0f84d0660a7f22a96cdc50fb877d0c9bb31593d23a + languageName: node + linkType: hard + +"commander@npm:^8.3.0": + version: 8.3.0 + resolution: "commander@npm:8.3.0" + checksum: 8b043bb8322ea1c39664a1598a95e0495bfe4ca2fad0d84a92d7d1d8d213e2a155b441d2470c8e08de7c4a28cf2bc6e169211c49e1b21d9f7edc6ae4d9356060 + languageName: node + linkType: hard + +"common-path-prefix@npm:^3.0.0": + version: 3.0.0 + resolution: "common-path-prefix@npm:3.0.0" + checksum: c4a74294e1b1570f4a8ab435285d185a03976c323caa16359053e749db4fde44e3e6586c29cd051100335e11895767cbbd27ea389108e327d62f38daf4548fdb + languageName: node + linkType: hard + +"common-tags@npm:^1.8.0": + version: 1.8.2 + resolution: "common-tags@npm:1.8.2" + checksum: 23efe47ff0a1a7c91489271b3a1e1d2a171c12ec7f9b35b29b2fce51270124aff0ec890087e2bc2182c1cb746e232ab7561aaafe05f1e7452aea733d2bfe3f63 + languageName: node + linkType: hard + +"commondir@npm:^1.0.1": + version: 1.0.1 + resolution: "commondir@npm:1.0.1" + checksum: 33a124960e471c25ee19280c9ce31ccc19574b566dc514fe4f4ca4c34fa8b0b57cf437671f5de380e11353ea9426213fca17687dd2ef03134fea2dbc53809fd6 + languageName: node + linkType: hard + +"compressible@npm:~2.0.16": + version: 2.0.18 + resolution: "compressible@npm:2.0.18" + dependencies: + mime-db: "npm:>= 1.43.0 < 2" + checksum: 8a03712bc9f5b9fe530cc5a79e164e665550d5171a64575d7dcf3e0395d7b4afa2d79ab176c61b5b596e28228b350dd07c1a2a6ead12fd81d1b6cd632af2fef7 + languageName: node + linkType: hard + +"compression@npm:1.7.4, compression@npm:^1.7.4": + version: 1.7.4 + resolution: "compression@npm:1.7.4" + dependencies: + accepts: "npm:~1.3.5" + bytes: "npm:3.0.0" + compressible: "npm:~2.0.16" + debug: "npm:2.6.9" + on-headers: "npm:~1.0.2" + safe-buffer: "npm:5.1.2" + vary: "npm:~1.1.2" + checksum: 138db836202a406d8a14156a5564fb1700632a76b6e7d1546939472895a5304f2b23c80d7a22bf44c767e87a26e070dbc342ea63bb45ee9c863354fa5556bbbc + languageName: node + linkType: hard + +"concat-map@npm:0.0.1": + version: 0.0.1 + resolution: "concat-map@npm:0.0.1" + checksum: c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f + languageName: node + linkType: hard + +"concat-stream@npm:^1.5.2": + version: 1.6.2 + resolution: "concat-stream@npm:1.6.2" + dependencies: + buffer-from: "npm:^1.0.0" + inherits: "npm:^2.0.3" + readable-stream: "npm:^2.2.2" + typedarray: "npm:^0.0.6" + checksum: 2e9864e18282946dabbccb212c5c7cec0702745e3671679eb8291812ca7fd12023f7d8cb36493942a62f770ac96a7f90009dc5c82ad69893438371720fa92617 + languageName: node + linkType: hard + +"confusing-browser-globals@npm:^1.0.11": + version: 1.0.11 + resolution: "confusing-browser-globals@npm:1.0.11" + checksum: 475d0a284fa964a5182b519af5738b5b64bf7e413cfd703c1b3496bf6f4df9f827893a9b221c0ea5873c1476835beb1e0df569ba643eff0734010c1eb780589e + languageName: node + linkType: hard + +"connect-history-api-fallback@npm:^2.0.0": + version: 2.0.0 + resolution: "connect-history-api-fallback@npm:2.0.0" + checksum: 90fa8b16ab76e9531646cc70b010b1dbd078153730c510d3142f6cf07479ae8a812c5a3c0e40a28528dd1681a62395d0cfdef67da9e914c4772ac85d69a3ed87 + languageName: node + linkType: hard + +"console-browserify@npm:^1.1.0": + version: 1.2.0 + resolution: "console-browserify@npm:1.2.0" + checksum: 89b99a53b7d6cee54e1e64fa6b1f7ac24b844b4019c5d39db298637e55c1f4ffa5c165457ad984864de1379df2c8e1886cbbdac85d9dbb6876a9f26c3106f226 + languageName: node + linkType: hard + +"constants-browserify@npm:^1.0.0": + version: 1.0.0 + resolution: "constants-browserify@npm:1.0.0" + checksum: ab49b1d59a433ed77c964d90d19e08b2f77213fb823da4729c0baead55e3c597f8f97ebccfdfc47bd896d43854a117d114c849a6f659d9986420e97da0f83ac5 + languageName: node + linkType: hard + +"content-disposition@npm:0.5.2": + version: 0.5.2 + resolution: "content-disposition@npm:0.5.2" + checksum: 49eebaa0da1f9609b192e99d7fec31d1178cb57baa9d01f5b63b29787ac31e9d18b5a1033e854c68c9b6cce790e700a6f7fa60e43f95e2e416404e114a8f2f49 + languageName: node + linkType: hard + +"content-disposition@npm:0.5.4": + version: 0.5.4 + resolution: "content-disposition@npm:0.5.4" + dependencies: + safe-buffer: "npm:5.2.1" + checksum: bac0316ebfeacb8f381b38285dc691c9939bf0a78b0b7c2d5758acadad242d04783cee5337ba7d12a565a19075af1b3c11c728e1e4946de73c6ff7ce45f3f1bb + languageName: node + linkType: hard + +"content-type@npm:~1.0.4": + version: 1.0.5 + resolution: "content-type@npm:1.0.5" + checksum: b76ebed15c000aee4678c3707e0860cb6abd4e680a598c0a26e17f0bfae723ec9cc2802f0ff1bc6e4d80603719010431d2231018373d4dde10f9ccff9dadf5af + languageName: node + linkType: hard + +"convert-source-map@npm:^1.4.0, convert-source-map@npm:^1.5.0, convert-source-map@npm:^1.6.0, convert-source-map@npm:^1.7.0": + version: 1.9.0 + resolution: "convert-source-map@npm:1.9.0" + checksum: 281da55454bf8126cbc6625385928c43479f2060984180c42f3a86c8b8c12720a24eac260624a7d1e090004028d2dee78602330578ceec1a08e27cb8bb0a8a5b + languageName: node + linkType: hard + +"cookie-signature@npm:1.0.6": + version: 1.0.6 + resolution: "cookie-signature@npm:1.0.6" + checksum: b36fd0d4e3fef8456915fcf7742e58fbfcc12a17a018e0eb9501c9d5ef6893b596466f03b0564b81af29ff2538fd0aa4b9d54fe5ccbfb4c90ea50ad29fe2d221 + languageName: node + linkType: hard + +"cookie@npm:0.5.0": + version: 0.5.0 + resolution: "cookie@npm:0.5.0" + checksum: c01ca3ef8d7b8187bae434434582288681273b5a9ed27521d4d7f9f7928fe0c920df0decd9f9d3bbd2d14ac432b8c8cf42b98b3bdd5bfe0e6edddeebebe8b61d + languageName: node + linkType: hard + +"core-js-compat@npm:^3.31.0": + version: 3.31.1 + resolution: "core-js-compat@npm:3.31.1" + dependencies: + browserslist: "npm:^4.21.9" + checksum: 2f05c5d5b04e8a69cf50f538ef3fb1932ab83bd7dc690c438c7b876049cb1515eb4ca9fa29400ed7cd5885f34c901bf6a26d9149dfff8665d8302cace7e96d72 + languageName: node + linkType: hard + +"core-js-pure@npm:^3.23.3": + version: 3.31.1 + resolution: "core-js-pure@npm:3.31.1" + checksum: 58e126c2fb3d2758f29f947edc9a561b367189d158f98bfdf6169a7fafbbafc61ae4a9c69df6ed48a7b3985727c60eead82b2072f66f5ca0d911b9b4c74cbb8c + languageName: node + linkType: hard + +"core-js@npm:^3.19.2, core-js@npm:^3.6.4": + version: 3.31.1 + resolution: "core-js@npm:3.31.1" + checksum: 17b44ddc675d7e924ecf0da21dcae3dc9e26758048e3275ba05fcd1a8805d45e6bacee1335b781e9d59d0c38302d5cbfc49073ef33232387459f432852fb6cd9 + languageName: node + linkType: hard + +"core-util-is@npm:~1.0.0": + version: 1.0.3 + resolution: "core-util-is@npm:1.0.3" + checksum: 90a0e40abbddfd7618f8ccd63a74d88deea94e77d0e8dbbea059fa7ebebb8fbb4e2909667fe26f3a467073de1a542ebe6ae4c73a73745ac5833786759cd906c9 + languageName: node + linkType: hard + +"cors@npm:^2.8.5": + version: 2.8.5 + resolution: "cors@npm:2.8.5" + dependencies: + object-assign: "npm:^4" + vary: "npm:^1" + checksum: 373702b7999409922da80de4a61938aabba6929aea5b6fd9096fefb9e8342f626c0ebd7507b0e8b0b311380744cc985f27edebc0a26e0ddb784b54e1085de761 + languageName: node + linkType: hard + +"cosmiconfig@npm:^6.0.0": + version: 6.0.0 + resolution: "cosmiconfig@npm:6.0.0" + dependencies: + "@types/parse-json": "npm:^4.0.0" + import-fresh: "npm:^3.1.0" + parse-json: "npm:^5.0.0" + path-type: "npm:^4.0.0" + yaml: "npm:^1.7.2" + checksum: 666ed8732d0bf7d7fe6f8516c8ee6041e0622032e8fa26201577b883d2767ad105d03f38b34b93d1f02f26b22a89e7bab4443b9d2e7f931f48d0e944ffa038b5 + languageName: node + linkType: hard + +"cosmiconfig@npm:^7.0.0": + version: 7.1.0 + resolution: "cosmiconfig@npm:7.1.0" + dependencies: + "@types/parse-json": "npm:^4.0.0" + import-fresh: "npm:^3.2.1" + parse-json: "npm:^5.0.0" + path-type: "npm:^4.0.0" + yaml: "npm:^1.10.0" + checksum: b923ff6af581638128e5f074a5450ba12c0300b71302398ea38dbeabd33bbcaa0245ca9adbedfcf284a07da50f99ede5658c80bb3e39e2ce770a99d28a21ef03 + languageName: node + linkType: hard + +"cosmiconfig@npm:^8.1.3": + version: 8.2.0 + resolution: "cosmiconfig@npm:8.2.0" + dependencies: + import-fresh: "npm:^3.2.1" + js-yaml: "npm:^4.1.0" + parse-json: "npm:^5.0.0" + path-type: "npm:^4.0.0" + checksum: 4180aa6d1881b75ba591b2fc04b022741a3a4b67e9e243c0eb8d169b6e1efbd3cdf7e8ca19243c0f2e53a9d59ac3eccd5cad5f95f487fcbf4e740f9e86745747 + languageName: node + linkType: hard + +"country-regex@npm:^1.1.0": + version: 1.1.0 + resolution: "country-regex@npm:1.1.0" + checksum: 3e95be9c3065dbf7dfafae8bb951e36b2805b8dd7dbba5688c74cedaf7c86effd74b7a7b43116bf57709560e7ace7e5001d34f62bf25802aa1a90052dba1a667 + languageName: node + linkType: hard + +"create-ecdh@npm:^4.0.0": + version: 4.0.4 + resolution: "create-ecdh@npm:4.0.4" + dependencies: + bn.js: "npm:^4.1.0" + elliptic: "npm:^6.5.3" + checksum: 77b11a51360fec9c3bce7a76288fc0deba4b9c838d5fb354b3e40c59194d23d66efe6355fd4b81df7580da0661e1334a235a2a5c040b7569ba97db428d466e7f + languageName: node + linkType: hard + +"create-hash@npm:^1.1.0, create-hash@npm:^1.1.2, create-hash@npm:^1.2.0": + version: 1.2.0 + resolution: "create-hash@npm:1.2.0" + dependencies: + cipher-base: "npm:^1.0.1" + inherits: "npm:^2.0.1" + md5.js: "npm:^1.3.4" + ripemd160: "npm:^2.0.1" + sha.js: "npm:^2.4.0" + checksum: d402e60e65e70e5083cb57af96d89567954d0669e90550d7cec58b56d49c4b193d35c43cec8338bc72358198b8cbf2f0cac14775b651e99238e1cf411490f915 + languageName: node + linkType: hard + +"create-hmac@npm:^1.1.0, create-hmac@npm:^1.1.4, create-hmac@npm:^1.1.7": + version: 1.1.7 + resolution: "create-hmac@npm:1.1.7" + dependencies: + cipher-base: "npm:^1.0.3" + create-hash: "npm:^1.1.0" + inherits: "npm:^2.0.1" + ripemd160: "npm:^2.0.0" + safe-buffer: "npm:^5.0.1" + sha.js: "npm:^2.4.8" + checksum: 24332bab51011652a9a0a6d160eed1e8caa091b802335324ae056b0dcb5acbc9fcf173cf10d128eba8548c3ce98dfa4eadaa01bd02f44a34414baee26b651835 + languageName: node + linkType: hard + +"create-require@npm:^1.1.1": + version: 1.1.1 + resolution: "create-require@npm:1.1.1" + checksum: 157cbc59b2430ae9a90034a5f3a1b398b6738bf510f713edc4d4e45e169bc514d3d99dd34d8d01ca7ae7830b5b8b537e46ae8f3c8f932371b0875c0151d7ec91 + languageName: node + linkType: hard + +"cross-fetch@npm:^3.0.4": + version: 3.1.8 + resolution: "cross-fetch@npm:3.1.8" + dependencies: + node-fetch: "npm:^2.6.12" + checksum: 4c5e022ffe6abdf380faa6e2373c0c4ed7ef75e105c95c972b6f627c3f083170b6886f19fb488a7fa93971f4f69dcc890f122b0d97f0bf5f41ca1d9a8f58c8af + languageName: node + linkType: hard + +"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": + version: 7.0.3 + resolution: "cross-spawn@npm:7.0.3" + dependencies: + path-key: "npm:^3.1.0" + shebang-command: "npm:^2.0.0" + which: "npm:^2.0.1" + checksum: 5738c312387081c98d69c98e105b6327b069197f864a60593245d64c8089c8a0a744e16349281210d56835bb9274130d825a78b2ad6853ca13cfbeffc0c31750 + languageName: node + linkType: hard + +"crypto-browserify@npm:^3.11.0": + version: 3.12.0 + resolution: "crypto-browserify@npm:3.12.0" + dependencies: + browserify-cipher: "npm:^1.0.0" + browserify-sign: "npm:^4.0.0" + create-ecdh: "npm:^4.0.0" + create-hash: "npm:^1.1.0" + create-hmac: "npm:^1.1.0" + diffie-hellman: "npm:^5.0.0" + inherits: "npm:^2.0.1" + pbkdf2: "npm:^3.0.3" + public-encrypt: "npm:^4.0.0" + randombytes: "npm:^2.0.0" + randomfill: "npm:^1.0.3" + checksum: 0c20198886576050a6aa5ba6ae42f2b82778bfba1753d80c5e7a090836890dc372bdc780986b2568b4fb8ed2a91c958e61db1f0b6b1cc96af4bd03ffc298ba92 + languageName: node + linkType: hard + +"crypto-random-string@npm:^2.0.0": + version: 2.0.0 + resolution: "crypto-random-string@npm:2.0.0" + checksum: 288589b2484fe787f9e146f56c4be90b940018f17af1b152e4dde12309042ff5a2bf69e949aab8b8ac253948381529cc6f3e5a2427b73643a71ff177fa122b37 + languageName: node + linkType: hard + +"css-blank-pseudo@npm:^3.0.3": + version: 3.0.3 + resolution: "css-blank-pseudo@npm:3.0.3" + dependencies: + postcss-selector-parser: "npm:^6.0.9" + peerDependencies: + postcss: ^8.4 + bin: + css-blank-pseudo: dist/cli.cjs + checksum: 889b0c4e47f5172cbc1a036ed31c1b25b13e6331bd85f91c910ce29ba4a1bad33d8d7bd0d48343bc5d9bf30750b4626fe55fe9fd1042e09eda72f4a72c1d779c + languageName: node + linkType: hard + +"css-declaration-sorter@npm:^6.3.1": + version: 6.4.0 + resolution: "css-declaration-sorter@npm:6.4.0" + peerDependencies: + postcss: ^8.0.9 + checksum: aef4d5927e576bae04349457be0607af44525cf5f4b28a91843c7b7f28fcbb302ba149385bb0e2172380556994e31680c5177b42d03502c417789b139e20cbc2 + languageName: node + linkType: hard + +"css-font-size-keywords@npm:^1.0.0": + version: 1.0.0 + resolution: "css-font-size-keywords@npm:1.0.0" + checksum: afc3e296a20e533da5fe84e1436914b5ec789d2db851b856688a1aa80f88c2ee408580a8a0a1e0581cc0952b65bfb37a769c841df185c7b1d95198c563996465 + languageName: node + linkType: hard + +"css-font-stretch-keywords@npm:^1.0.1": + version: 1.0.1 + resolution: "css-font-stretch-keywords@npm:1.0.1" + checksum: 9f5c405c99962f2bf77ed79f9f137ac7eecbc2e0f64cfe448277af9924ec2717214369d0e9a02b4520e3e0812b6a5289fad36911678a13f5505e972889cb27a9 + languageName: node + linkType: hard + +"css-font-style-keywords@npm:^1.0.1": + version: 1.0.1 + resolution: "css-font-style-keywords@npm:1.0.1" + checksum: 431bb7ee0346302abc9c94a74df0c20b8f5173ef8b29284c571bbba4eec4e22a461dcb6a7d0ae764f9b02f9a7a185612193906122c744af96eb6e4be72e646d2 + languageName: node + linkType: hard + +"css-font-weight-keywords@npm:^1.0.0": + version: 1.0.0 + resolution: "css-font-weight-keywords@npm:1.0.0" + checksum: 99fbf6ca55ca86cbb083786f6ca83d47c0284eab1a96929b71401a50969e18a901474ffe8b1a895226f9bbde461c77d88ca50fcc871ce8a8926a2d2ba65bb847 + languageName: node + linkType: hard + +"css-font@npm:^1.0.0, css-font@npm:^1.2.0": + version: 1.2.0 + resolution: "css-font@npm:1.2.0" + dependencies: + css-font-size-keywords: "npm:^1.0.0" + css-font-stretch-keywords: "npm:^1.0.1" + css-font-style-keywords: "npm:^1.0.1" + css-font-weight-keywords: "npm:^1.0.0" + css-global-keywords: "npm:^1.0.1" + css-system-font-keywords: "npm:^1.0.0" + pick-by-alias: "npm:^1.2.0" + string-split-by: "npm:^1.0.0" + unquote: "npm:^1.1.0" + checksum: 6a68aeb6529e179ff3d5d4de52f96f89de507d06b69a0d3899c0d06448530a6e755342f390a42bf9c8672411694618a9a6e204dc808918cd98d5c08cedc5455e + languageName: node + linkType: hard + +"css-global-keywords@npm:^1.0.1": + version: 1.0.1 + resolution: "css-global-keywords@npm:1.0.1" + checksum: c49de806fa532fda2c2ba5b27b3443a2ad3d7b05a0a80d9eeae81231a67b7fa09b772dc87226d82a62b8a429141001a62f9eb3b78a4ad8ee85551beb65215a48 + languageName: node + linkType: hard + +"css-has-pseudo@npm:^3.0.4": + version: 3.0.4 + resolution: "css-has-pseudo@npm:3.0.4" + dependencies: + postcss-selector-parser: "npm:^6.0.9" + peerDependencies: + postcss: ^8.4 + bin: + css-has-pseudo: dist/cli.cjs + checksum: da950bd66a73b7e02b428c95eba98fe664583ea059200dc4ddac2dfa3e316b637c538b69a1a8ffe52c4f739818bf55a264d652f15b18b78a6332e73ae08f03ed + languageName: node + linkType: hard + +"css-loader@npm:^6.5.1": + version: 6.8.1 + resolution: "css-loader@npm:6.8.1" + dependencies: + icss-utils: "npm:^5.1.0" + postcss: "npm:^8.4.21" + postcss-modules-extract-imports: "npm:^3.0.0" + postcss-modules-local-by-default: "npm:^4.0.3" + postcss-modules-scope: "npm:^3.0.0" + postcss-modules-values: "npm:^4.0.0" + postcss-value-parser: "npm:^4.2.0" + semver: "npm:^7.3.8" + peerDependencies: + webpack: ^5.0.0 + checksum: a6e23de4ec1d2832f10b8ca3cfec6b6097a97ca3c73f64338ae5cd110ac270f1b218ff0273d39f677a7a561f1a9d9b0d332274664d0991bcfafaae162c2669c4 + languageName: node + linkType: hard + +"css-minimizer-webpack-plugin@npm:^3.2.0": + version: 3.4.1 + resolution: "css-minimizer-webpack-plugin@npm:3.4.1" + dependencies: + cssnano: "npm:^5.0.6" + jest-worker: "npm:^27.0.2" + postcss: "npm:^8.3.5" + schema-utils: "npm:^4.0.0" + serialize-javascript: "npm:^6.0.0" + source-map: "npm:^0.6.1" + peerDependencies: + webpack: ^5.0.0 + peerDependenciesMeta: + "@parcel/css": + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + checksum: a6b749a136f7a62a173e576a10c8f2ada18013800a2698ede08dfdf6df6761b9ad24cabfce153ef4958ffcf8509e7b6a40c6ddffa6eb06f3624a97c17b825e06 + languageName: node + linkType: hard + +"css-prefers-color-scheme@npm:^6.0.3": + version: 6.0.3 + resolution: "css-prefers-color-scheme@npm:6.0.3" + peerDependencies: + postcss: ^8.4 + bin: + css-prefers-color-scheme: dist/cli.cjs + checksum: b0f1efba0384f52506a5ab54179a2b56a4a2b693c81e2d533529c6eae7ddb9ca4b1be3a6bc9d2d44f7c4b3750bb4eda7ae9d7254fe91379b25e0cc3b301fbdd8 + languageName: node + linkType: hard + +"css-select-base-adapter@npm:^0.1.1": + version: 0.1.1 + resolution: "css-select-base-adapter@npm:0.1.1" + checksum: 17f28a0d9e8596c541de250e48958e72a65399c9e15ba5689915d6631a451068187c19d674f08187843a61cb949951cb33c7db82bd7341536769523baed867dc + languageName: node + linkType: hard + +"css-select@npm:^2.0.0": + version: 2.1.0 + resolution: "css-select@npm:2.1.0" + dependencies: + boolbase: "npm:^1.0.0" + css-what: "npm:^3.2.1" + domutils: "npm:^1.7.0" + nth-check: "npm:^1.0.2" + checksum: 47832492c8218ffd92ed18eaa325397bd0bd8e4bcf3bc71767c5e1ed8b4f39b672ba157b0b5e693ef50006017d78c19e46791a75b43bb192c4db3680a331afc7 + languageName: node + linkType: hard + +"css-select@npm:^4.1.3": + version: 4.3.0 + resolution: "css-select@npm:4.3.0" + dependencies: + boolbase: "npm:^1.0.0" + css-what: "npm:^6.0.1" + domhandler: "npm:^4.3.1" + domutils: "npm:^2.8.0" + nth-check: "npm:^2.0.1" + checksum: a489d8e5628e61063d5a8fe0fa1cc7ae2478cb334a388a354e91cf2908154be97eac9fa7ed4dffe87a3e06cf6fcaa6016553115335c4fd3377e13dac7bd5a8e1 + languageName: node + linkType: hard + +"css-system-font-keywords@npm:^1.0.0": + version: 1.0.0 + resolution: "css-system-font-keywords@npm:1.0.0" + checksum: 8eb3c1d70f70f4727d273cfdc37c53cb0e312286c070f9ec1cf24b7c2602cf8b128f2a127004f1f9feca45848442ad99c22875a440457a238fcd3b9307c8f0ce + languageName: node + linkType: hard + +"css-tree@npm:1.0.0-alpha.37": + version: 1.0.0-alpha.37 + resolution: "css-tree@npm:1.0.0-alpha.37" + dependencies: + mdn-data: "npm:2.0.4" + source-map: "npm:^0.6.1" + checksum: 8f3c197baea919f4f55d0e84b1665d5e7d5fd74cb192fd0bf951828929b9cd5fd71de074afb685705bf5b40d7b04d4c5a206bfab26954378f04f2f5ce426d2f8 + languageName: node + linkType: hard + +"css-tree@npm:^1.1.2, css-tree@npm:^1.1.3": + version: 1.1.3 + resolution: "css-tree@npm:1.1.3" + dependencies: + mdn-data: "npm:2.0.14" + source-map: "npm:^0.6.1" + checksum: 499a507bfa39b8b2128f49736882c0dd636b0cd3370f2c69f4558ec86d269113286b7df469afc955de6a68b0dba00bc533e40022a73698081d600072d5d83c1c + languageName: node + linkType: hard + +"css-what@npm:^3.2.1": + version: 3.4.2 + resolution: "css-what@npm:3.4.2" + checksum: 454dca1b9dff8cf740d666d24a6c517562f374fe3a160891ebf8c82a9dd76864757913573c4db30537a959f5f595750420be00552ea6d5a9456ee68acc2349bf + languageName: node + linkType: hard + +"css-what@npm:^6.0.1": + version: 6.1.0 + resolution: "css-what@npm:6.1.0" + checksum: a09f5a6b14ba8dcf57ae9a59474722e80f20406c53a61e9aedb0eedc693b135113ffe2983f4efc4b5065ae639442e9ae88df24941ef159c218b231011d733746 + languageName: node + linkType: hard + +"css.escape@npm:^1.5.1": + version: 1.5.1 + resolution: "css.escape@npm:1.5.1" + checksum: 5e09035e5bf6c2c422b40c6df2eb1529657a17df37fda5d0433d722609527ab98090baf25b13970ca754079a0f3161dd3dfc0e743563ded8cfa0749d861c1525 + languageName: node + linkType: hard + +"csscolorparser@npm:~1.0.3": + version: 1.0.3 + resolution: "csscolorparser@npm:1.0.3" + checksum: 57b30e1dd3e639fb74d63d3ee5a078ae6d0aaba26bc731fdec1a0f50fd77c2531a1fca2bbe07c18e0569255f92064cda0747e0115955fdb8c037332798ca634f + languageName: node + linkType: hard + +"cssdb@npm:^7.1.0": + version: 7.6.0 + resolution: "cssdb@npm:7.6.0" + checksum: e366cb3063baecd61261b5f9fdbb20f18cd8d7d25791f5ebfe55a540d4b02a3506dec917f24489740a20437edb7024f113167c8c24080ee074acc29e247b0260 + languageName: node + linkType: hard + +"cssesc@npm:^3.0.0": + version: 3.0.0 + resolution: "cssesc@npm:3.0.0" + bin: + cssesc: bin/cssesc + checksum: 6bcfd898662671be15ae7827120472c5667afb3d7429f1f917737f3bf84c4176003228131b643ae74543f17a394446247df090c597bb9a728cce298606ed0aa7 + languageName: node + linkType: hard + +"cssnano-preset-default@npm:^5.2.14": + version: 5.2.14 + resolution: "cssnano-preset-default@npm:5.2.14" + dependencies: + css-declaration-sorter: "npm:^6.3.1" + cssnano-utils: "npm:^3.1.0" + postcss-calc: "npm:^8.2.3" + postcss-colormin: "npm:^5.3.1" + postcss-convert-values: "npm:^5.1.3" + postcss-discard-comments: "npm:^5.1.2" + postcss-discard-duplicates: "npm:^5.1.0" + postcss-discard-empty: "npm:^5.1.1" + postcss-discard-overridden: "npm:^5.1.0" + postcss-merge-longhand: "npm:^5.1.7" + postcss-merge-rules: "npm:^5.1.4" + postcss-minify-font-values: "npm:^5.1.0" + postcss-minify-gradients: "npm:^5.1.1" + postcss-minify-params: "npm:^5.1.4" + postcss-minify-selectors: "npm:^5.2.1" + postcss-normalize-charset: "npm:^5.1.0" + postcss-normalize-display-values: "npm:^5.1.0" + postcss-normalize-positions: "npm:^5.1.1" + postcss-normalize-repeat-style: "npm:^5.1.1" + postcss-normalize-string: "npm:^5.1.0" + postcss-normalize-timing-functions: "npm:^5.1.0" + postcss-normalize-unicode: "npm:^5.1.1" + postcss-normalize-url: "npm:^5.1.0" + postcss-normalize-whitespace: "npm:^5.1.1" + postcss-ordered-values: "npm:^5.1.3" + postcss-reduce-initial: "npm:^5.1.2" + postcss-reduce-transforms: "npm:^5.1.0" + postcss-svgo: "npm:^5.1.0" + postcss-unique-selectors: "npm:^5.1.1" + peerDependencies: + postcss: ^8.2.15 + checksum: d125bdb9ac007f97f920e30be953c550a8e7de0cb9298f67e0bc9744f4b920039046b5a6b817e345872836b08689af747f82fbf2189c8bd48da3e6f0c1087b89 + languageName: node + linkType: hard + +"cssnano-utils@npm:^3.1.0": + version: 3.1.0 + resolution: "cssnano-utils@npm:3.1.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 057508645a3e7584decede1045daa5b362dbfa2f5df96c3527c7d52e41e787a3442a56a8ea0c0af6a757f518e79a459ee580a35c323ad0d0eec912afd67d7630 + languageName: node + linkType: hard + +"cssnano@npm:^5.0.6": + version: 5.1.15 + resolution: "cssnano@npm:5.1.15" + dependencies: + cssnano-preset-default: "npm:^5.2.14" + lilconfig: "npm:^2.0.3" + yaml: "npm:^1.10.2" + peerDependencies: + postcss: ^8.2.15 + checksum: 4252e4f4edd7a0fbdd4017825c0f8632b7a12ecbfdd432d2ff7ec268d48eb956a0a10bbf209602181f9f84ceeecea4a864719ecde03aa2cc48f5d9636fcf5f9a + languageName: node + linkType: hard + +"csso@npm:^4.0.2, csso@npm:^4.2.0": + version: 4.2.0 + resolution: "csso@npm:4.2.0" + dependencies: + css-tree: "npm:^1.1.2" + checksum: f8c6b1300efaa0f8855a7905ae3794a29c6496e7f16a71dec31eb6ca7cfb1f058a4b03fd39b66c4deac6cb06bf6b4ba86da7b67d7320389cb9994d52b924b903 + languageName: node + linkType: hard + +"cssom@npm:^0.4.4": + version: 0.4.4 + resolution: "cssom@npm:0.4.4" + checksum: 0d4fc70255ea3afbd4add79caffa3b01720929da91105340600d8c0f06c31716f933c6314c3d43b62b57c9637bc2eb35296a9e2db427e8b572ee38a4be2b5f82 + languageName: node + linkType: hard + +"cssom@npm:~0.3.6": + version: 0.3.8 + resolution: "cssom@npm:0.3.8" + checksum: d74017b209440822f9e24d8782d6d2e808a8fdd58fa626a783337222fe1c87a518ba944d4c88499031b4786e68772c99dfae616638d71906fe9f203aeaf14411 + languageName: node + linkType: hard + +"cssstyle@npm:^2.3.0": + version: 2.3.0 + resolution: "cssstyle@npm:2.3.0" + dependencies: + cssom: "npm:~0.3.6" + checksum: 863400da2a458f73272b9a55ba7ff05de40d850f22eb4f37311abebd7eff801cf1cd2fb04c4c92b8c3daed83fe766e52e4112afb7bc88d86c63a9c2256a7d178 + languageName: node + linkType: hard + +"csstype@npm:^3.0.2, csstype@npm:^3.1.2": + version: 3.1.2 + resolution: "csstype@npm:3.1.2" + checksum: 32c038af259897c807ac738d9eab16b3d86747c72b09d5c740978e06f067f9b7b1737e1b75e407c7ab1fe1543dc95f20e202b4786aeb1b8d3bdf5d5ce655e6c6 + languageName: node + linkType: hard + +"d3-array@npm:1, d3-array@npm:^1.2.1": + version: 1.2.4 + resolution: "d3-array@npm:1.2.4" + checksum: 7ac0ae096838e75d06350381442d84b327e3215d470f26c297851675bd25c47a633d35b04bfaa0397c529f42428d19f3f80bead24e1e866832e064cc6af24f3a + languageName: node + linkType: hard + +"d3-collection@npm:1, d3-collection@npm:^1.0.4": + version: 1.0.7 + resolution: "d3-collection@npm:1.0.7" + checksum: 7a3c7f733ce4a1a02f46a96c7dd02f8e46a2fa83fc4195682fd33624d6a56fbda6388c86ff5d30799cc768cb63bffcdb216b45c51a8d6e0b23117db9c18bedb3 + languageName: node + linkType: hard + +"d3-color@npm:1 - 3": + version: 3.1.0 + resolution: "d3-color@npm:3.1.0" + checksum: a4e20e1115fa696fce041fbe13fbc80dc4c19150fa72027a7c128ade980bc0eeeba4bcf28c9e21f0bce0e0dbfe7ca5869ef67746541dcfda053e4802ad19783c + languageName: node + linkType: hard + +"d3-dispatch@npm:1": + version: 1.0.6 + resolution: "d3-dispatch@npm:1.0.6" + checksum: 6302554a019e2d75d4e3dc7e8757a00b4b12ac2a2952bccc66e4478ccd170f425e2b6a9443118d5feadcd2439f33582b63c7925e832104ff1978cadea2a30dc2 + languageName: node + linkType: hard + +"d3-force@npm:^1.2.1": + version: 1.2.1 + resolution: "d3-force@npm:1.2.1" + dependencies: + d3-collection: "npm:1" + d3-dispatch: "npm:1" + d3-quadtree: "npm:1" + d3-timer: "npm:1" + checksum: af699875547e3f5d8fc66ea5dd2a5479e06560a7583c37f3262e81474b8f38e44593124925f75796ac686d9db83831d52cbabbb650cc88c7b1235f51cfebe808 + languageName: node + linkType: hard + +"d3-format@npm:^1.4.5": + version: 1.4.5 + resolution: "d3-format@npm:1.4.5" + checksum: 40800a2fb2182d2d711cea3acc2b8b2b3afdb6f644c51de77feb9b08a6150b14c753933d2fd4ad2f6f45130757b738673372c45b4b820466c560f3b1ec0b3ce8 + languageName: node + linkType: hard + +"d3-geo-projection@npm:^2.9.0": + version: 2.9.0 + resolution: "d3-geo-projection@npm:2.9.0" + dependencies: + commander: "npm:2" + d3-array: "npm:1" + d3-geo: "npm:^1.12.0" + resolve: "npm:^1.1.10" + bin: + geo2svg: bin/geo2svg + geograticule: bin/geograticule + geoproject: bin/geoproject + geoquantize: bin/geoquantize + geostitch: bin/geostitch + checksum: eecbb87d1ffaea0a339035f7cc37d366fe877bb1c212f2034d8e44b14669815926f29bf8ca595beee7a620c82f10dc8cd67f461a94b79e0f9415a0aae7918a5d + languageName: node + linkType: hard + +"d3-geo@npm:^1.12.0, d3-geo@npm:^1.12.1": + version: 1.12.1 + resolution: "d3-geo@npm:1.12.1" + dependencies: + d3-array: "npm:1" + checksum: ec46ff8fdd824df2fbcb9c6e7a6e8c778ecaa196ba1a3265fa6b58d32e526d258dda7d6033698f9625189d364d70f5a9b9a7f6f54fdefe8ef677c28e9765b602 + languageName: node + linkType: hard + +"d3-hierarchy@npm:^1.1.9": + version: 1.1.9 + resolution: "d3-hierarchy@npm:1.1.9" + checksum: 63b0ae0953bda076866b8705f8ea6fa1f67ded7ee99d98b20ef4364ce21868c292c9b45e887fde0f0dba1d0202466b2a87e7d5a6cc6388e759aadc5f055142e0 + languageName: node + linkType: hard + +"d3-interpolate@npm:^3.0.1": + version: 3.0.1 + resolution: "d3-interpolate@npm:3.0.1" + dependencies: + d3-color: "npm:1 - 3" + checksum: 19f4b4daa8d733906671afff7767c19488f51a43d251f8b7f484d5d3cfc36c663f0a66c38fe91eee30f40327443d799be17169f55a293a3ba949e84e57a33e6a + languageName: node + linkType: hard + +"d3-path@npm:1": + version: 1.0.9 + resolution: "d3-path@npm:1.0.9" + checksum: e35e84df5abc18091f585725b8235e1fa97efc287571585427d3a3597301e6c506dea56b11dfb3c06ca5858b3eb7f02c1bf4f6a716aa9eade01c41b92d497eb5 + languageName: node + linkType: hard + +"d3-quadtree@npm:1": + version: 1.0.7 + resolution: "d3-quadtree@npm:1.0.7" + checksum: 90571c7bfc7ee2db4bb3f80b1b06f3c653858c365644c31a0ecf0adec525c0d8a70c4eaa88bc8d364b1fa3c919ee55cc55cf82396f4729d2a4baec2b95832492 + languageName: node + linkType: hard + +"d3-shape@npm:^1.2.0": + version: 1.3.7 + resolution: "d3-shape@npm:1.3.7" + dependencies: + d3-path: "npm:1" + checksum: 548057ce59959815decb449f15632b08e2a1bdce208f9a37b5f98ec7629dda986c2356bc7582308405ce68aedae7d47b324df41507404df42afaf352907577ae + languageName: node + linkType: hard + +"d3-time-format@npm:^2.2.3": + version: 2.3.0 + resolution: "d3-time-format@npm:2.3.0" + dependencies: + d3-time: "npm:1" + checksum: 4ca7b5b4ac8fcf4b7930a5dc4ee5f34b188ebd0a36029df2acee0f68b5028451c045c63a12e3970da8e9840548588bde3d366ef8ee7fcb107459d4a6ad11d8c5 + languageName: node + linkType: hard + +"d3-time@npm:1, d3-time@npm:^1.1.0": + version: 1.1.0 + resolution: "d3-time@npm:1.1.0" + checksum: 69ab137adff5b22d0fa148ea514a207bd9cd7d2c042ccf34a268f2ef73720b404f0be6e7b56c95650c53caf52080b5254e2a27f0a676f41d1dd22ef8872c8335 + languageName: node + linkType: hard + +"d3-timer@npm:1": + version: 1.0.10 + resolution: "d3-timer@npm:1.0.10" + checksum: 7e77030a206861e4e626754c689795d43f036fb07a7f8ca6360eb8b7cbe6f52bf43c9c4297ae9a9a906e4de594212702f83c0cde23d4e20d8689a4211e438155 + languageName: node + linkType: hard + +"d@npm:1, d@npm:^1.0.1": + version: 1.0.1 + resolution: "d@npm:1.0.1" + dependencies: + es5-ext: "npm:^0.10.50" + type: "npm:^1.0.1" + checksum: 1fedcb3b956a461f64d86b94b347441beff5cef8910b6ac4ec509a2c67eeaa7093660a98b26601ac91f91260238add73bdf25867a9c0cb783774642bc4c1523f + languageName: node + linkType: hard + +"damerau-levenshtein@npm:^1.0.8": + version: 1.0.8 + resolution: "damerau-levenshtein@npm:1.0.8" + checksum: 4c2647e0f42acaee7d068756c1d396e296c3556f9c8314bac1ac63ffb236217ef0e7e58602b18bb2173deec7ec8e0cac8e27cccf8f5526666b4ff11a13ad54a3 + languageName: node + linkType: hard + +"data-urls@npm:^2.0.0": + version: 2.0.0 + resolution: "data-urls@npm:2.0.0" + dependencies: + abab: "npm:^2.0.3" + whatwg-mimetype: "npm:^2.3.0" + whatwg-url: "npm:^8.0.0" + checksum: 1246442178eb756afb1d99e54669a119eafb3e69c73300d14089687c50c64f9feadd93c973f496224a12f89daa94267a6114aecd70e9b279c09d908c5be44d01 + languageName: node + linkType: hard + +"debug@npm:2, debug@npm:2.6.9, debug@npm:^2.6.0": + version: 2.6.9 + resolution: "debug@npm:2.6.9" + dependencies: + ms: "npm:2.0.0" + checksum: 121908fb839f7801180b69a7e218a40b5a0b718813b886b7d6bdb82001b931c938e2941d1e4450f33a1b1df1da653f5f7a0440c197f29fbf8a6e9d45ff6ef589 + languageName: node + linkType: hard + +"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.2, debug@npm:^4.3.4": + version: 4.3.4 + resolution: "debug@npm:4.3.4" + dependencies: + ms: "npm:2.1.2" + peerDependenciesMeta: + supports-color: + optional: true + checksum: cedbec45298dd5c501d01b92b119cd3faebe5438c3917ff11ae1bff86a6c722930ac9c8659792824013168ba6db7c4668225d845c633fbdafbbf902a6389f736 + languageName: node + linkType: hard + +"debug@npm:^3.2.6, debug@npm:^3.2.7": + version: 3.2.7 + resolution: "debug@npm:3.2.7" + dependencies: + ms: "npm:^2.1.1" + checksum: 37d96ae42cbc71c14844d2ae3ba55adf462ec89fd3a999459dec3833944cd999af6007ff29c780f1c61153bcaaf2c842d1e4ce1ec621e4fc4923244942e4a02a + languageName: node + linkType: hard + +"decamelize@npm:^1.2.0": + version: 1.2.0 + resolution: "decamelize@npm:1.2.0" + checksum: 85c39fe8fbf0482d4a1e224ef0119db5c1897f8503bcef8b826adff7a1b11414972f6fef2d7dec2ee0b4be3863cf64ac1439137ae9e6af23a3d8dcbe26a5b4b2 + languageName: node + linkType: hard + +"decimal.js@npm:^10.2.1": + version: 10.4.3 + resolution: "decimal.js@npm:10.4.3" + checksum: 6d60206689ff0911f0ce968d40f163304a6c1bc739927758e6efc7921cfa630130388966f16bf6ef6b838cb33679fbe8e7a78a2f3c478afce841fd55ac8fb8ee + languageName: node + linkType: hard + +"decode-named-character-reference@npm:^1.0.0": + version: 1.0.2 + resolution: "decode-named-character-reference@npm:1.0.2" + dependencies: + character-entities: "npm:^2.0.0" + checksum: 66a9fc5d9b5385a2b3675c69ba0d8e893393d64057f7dbbb585265bb4fc05ec513d76943b8e5aac7d8016d20eea4499322cbf4cd6d54b466976b78f3a7587a4c + languageName: node + linkType: hard + +"decompress-response@npm:^6.0.0": + version: 6.0.0 + resolution: "decompress-response@npm:6.0.0" + dependencies: + mimic-response: "npm:^3.1.0" + checksum: bd89d23141b96d80577e70c54fb226b2f40e74a6817652b80a116d7befb8758261ad073a8895648a29cc0a5947021ab66705cb542fa9c143c82022b27c5b175e + languageName: node + linkType: hard + +"dedent@npm:^0.7.0": + version: 0.7.0 + resolution: "dedent@npm:0.7.0" + checksum: 7c3aa00ddfe3e5fcd477958e156156a5137e3bb6ff1493ca05edff4decf29a90a057974cc77e75951f8eb801c1816cb45aea1f52d628cdd000b82b36ab839d1b + languageName: node + linkType: hard + +"deep-diff@npm:^0.3.5": + version: 0.3.8 + resolution: "deep-diff@npm:0.3.8" + checksum: dbb10937ccff21b1ad1ee5e64ad926643a7000cb9837bc2165bacfddf569788c78b8bfd74401c32121af3fb1cb1092b7447319d9f01900676473a1b840c08ade + languageName: node + linkType: hard + +"deep-equal@npm:^2.0.5": + version: 2.2.1 + resolution: "deep-equal@npm:2.2.1" + dependencies: + array-buffer-byte-length: "npm:^1.0.0" + call-bind: "npm:^1.0.2" + es-get-iterator: "npm:^1.1.3" + get-intrinsic: "npm:^1.2.0" + is-arguments: "npm:^1.1.1" + is-array-buffer: "npm:^3.0.2" + is-date-object: "npm:^1.0.5" + is-regex: "npm:^1.1.4" + is-shared-array-buffer: "npm:^1.0.2" + isarray: "npm:^2.0.5" + object-is: "npm:^1.1.5" + object-keys: "npm:^1.1.1" + object.assign: "npm:^4.1.4" + regexp.prototype.flags: "npm:^1.5.0" + side-channel: "npm:^1.0.4" + which-boxed-primitive: "npm:^1.0.2" + which-collection: "npm:^1.0.1" + which-typed-array: "npm:^1.1.9" + checksum: 9e32606f0e24ef4d6b100c68cadae81495c3638944e933afc4b8389b042e95c5fe1381492cf7a6d385bcbae564c9cfb7086f37f277e37521a632b008a6b208dc + languageName: node + linkType: hard + +"deep-extend@npm:^0.6.0": + version: 0.6.0 + resolution: "deep-extend@npm:0.6.0" + checksum: 1c6b0abcdb901e13a44c7d699116d3d4279fdb261983122a3783e7273844d5f2537dc2e1c454a23fcf645917f93fbf8d07101c1d03c015a87faa662755212566 + languageName: node + linkType: hard + +"deep-is@npm:^0.1.3, deep-is@npm:~0.1.3": + version: 0.1.4 + resolution: "deep-is@npm:0.1.4" + checksum: 7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c + languageName: node + linkType: hard + +"deepmerge@npm:^4.2.2": + version: 4.3.1 + resolution: "deepmerge@npm:4.3.1" + checksum: e53481aaf1aa2c4082b5342be6b6d8ad9dfe387bc92ce197a66dea08bd4265904a087e75e464f14d1347cf2ac8afe1e4c16b266e0561cc5df29382d3c5f80044 + languageName: node + linkType: hard + +"default-gateway@npm:^6.0.3": + version: 6.0.3 + resolution: "default-gateway@npm:6.0.3" + dependencies: + execa: "npm:^5.0.0" + checksum: 5184f9e6e105d24fb44ade9e8741efa54bb75e84625c1ea78c4ef8b81dff09ca52d6dbdd1185cf0dc655bb6b282a64fffaf7ed2dd561b8d9ad6f322b1f039aba + languageName: node + linkType: hard + +"define-lazy-prop@npm:^2.0.0": + version: 2.0.0 + resolution: "define-lazy-prop@npm:2.0.0" + checksum: db6c63864a9d3b7dc9def55d52764968a5af296de87c1b2cc71d8be8142e445208071953649e0386a8cc37cfcf9a2067a47207f1eb9ff250c2a269658fdae422 + languageName: node + linkType: hard + +"define-properties@npm:^1.1.3, define-properties@npm:^1.1.4, define-properties@npm:^1.2.0": + version: 1.2.0 + resolution: "define-properties@npm:1.2.0" + dependencies: + has-property-descriptors: "npm:^1.0.0" + object-keys: "npm:^1.1.1" + checksum: 34b58cae4651936a3c8c720310ce393a3227f5123640ab5402e7d6e59bb44f8295b789cb5d74e7513682b2e60ff20586d6f52b726d964d617abffa3da76344e0 + languageName: node + linkType: hard + +"defined@npm:^1.0.0": + version: 1.0.1 + resolution: "defined@npm:1.0.1" + checksum: 357212c95fd69c3b431f4766440f1b10a8362d2663b86e3d7c139fe7fc98a1d5a4996b8b55ca62e97fb882f9887374b76944d29f9650a07993d98e7be86a804a + languageName: node + linkType: hard + +"delayed-stream@npm:~1.0.0": + version: 1.0.0 + resolution: "delayed-stream@npm:1.0.0" + checksum: d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19 + languageName: node + linkType: hard + +"depd@npm:2.0.0": + version: 2.0.0 + resolution: "depd@npm:2.0.0" + checksum: 58bd06ec20e19529b06f7ad07ddab60e504d9e0faca4bd23079fac2d279c3594334d736508dc350e06e510aba5e22e4594483b3a6562ce7c17dd797f4cc4ad2c + languageName: node + linkType: hard + +"depd@npm:~1.1.2": + version: 1.1.2 + resolution: "depd@npm:1.1.2" + checksum: acb24aaf936ef9a227b6be6d495f0d2eb20108a9a6ad40585c5bda1a897031512fef6484e4fdbb80bd249fdaa82841fa1039f416ece03188e677ba11bcfda249 + languageName: node + linkType: hard + +"dequal@npm:^2.0.0, dequal@npm:^2.0.3": + version: 2.0.3 + resolution: "dequal@npm:2.0.3" + checksum: f98860cdf58b64991ae10205137c0e97d384c3a4edc7f807603887b7c4b850af1224a33d88012009f150861cbee4fa2d322c4cc04b9313bee312e47f6ecaa888 + languageName: node + linkType: hard + +"des.js@npm:^1.0.0": + version: 1.1.0 + resolution: "des.js@npm:1.1.0" + dependencies: + inherits: "npm:^2.0.1" + minimalistic-assert: "npm:^1.0.0" + checksum: 671354943ad67493e49eb4c555480ab153edd7cee3a51c658082fcde539d2690ed2a4a0b5d1f401f9cde822edf3939a6afb2585f32c091f2d3a1b1665cd45236 + languageName: node + linkType: hard + +"destroy@npm:1.2.0": + version: 1.2.0 + resolution: "destroy@npm:1.2.0" + checksum: bd7633942f57418f5a3b80d5cb53898127bcf53e24cdf5d5f4396be471417671f0fee48a4ebe9a1e9defbde2a31280011af58a57e090ff822f589b443ed4e643 + languageName: node + linkType: hard + +"detect-kerning@npm:^2.1.2": + version: 2.1.2 + resolution: "detect-kerning@npm:2.1.2" + checksum: 290f31729f4fc900fc0755a1dd5c5b210b03845b7b0b4ebe2ee29a19a905d7aac1d17adfb700e5ee3ea632cb248cc0acab3280a513b82633c1089daebdcf064d + languageName: node + linkType: hard + +"detect-libc@npm:^2.0.0, detect-libc@npm:^2.0.1": + version: 2.0.1 + resolution: "detect-libc@npm:2.0.1" + checksum: 153009d0ce4073ea885a97641aa1cc0327ff168b971fa3c770958345ad3ead4618f3747334435dc8edff32c0f56d8ba16dcf5271543c99b24af532b1cf84a61d + languageName: node + linkType: hard + +"detect-newline@npm:^3.0.0": + version: 3.1.0 + resolution: "detect-newline@npm:3.1.0" + checksum: c38cfc8eeb9fda09febb44bcd85e467c970d4e3bf526095394e5a4f18bc26dd0cf6b22c69c1fa9969261521c593836db335c2795218f6d781a512aea2fb8209d + languageName: node + linkType: hard + +"detect-node@npm:^2.0.4": + version: 2.1.0 + resolution: "detect-node@npm:2.1.0" + checksum: f039f601790f2e9d4654e499913259a798b1f5246ae24f86ab5e8bd4aaf3bce50484234c494f11fb00aecb0c6e2733aa7b1cf3f530865640b65fbbd65b2c4e09 + languageName: node + linkType: hard + +"detect-port-alt@npm:^1.1.6": + version: 1.1.6 + resolution: "detect-port-alt@npm:1.1.6" + dependencies: + address: "npm:^1.0.1" + debug: "npm:^2.6.0" + bin: + detect: ./bin/detect-port + detect-port: ./bin/detect-port + checksum: 7269e6aef7b782d98c77505c07a7a0f5e2ee98a9607dc791035fc0192fc58aa03cc833fae605e10eaf239a2a5a55cd938e0bb141dea764ac6180ca082fd62b23 + languageName: node + linkType: hard + +"devlop@npm:^1.0.0, devlop@npm:^1.1.0": + version: 1.1.0 + resolution: "devlop@npm:1.1.0" + dependencies: + dequal: "npm:^2.0.0" + checksum: e0928ab8f94c59417a2b8389c45c55ce0a02d9ac7fd74ef62d01ba48060129e1d594501b77de01f3eeafc7cb00773819b0df74d96251cf20b31c5b3071f45c0e + languageName: node + linkType: hard + +"didyoumean@npm:^1.2.2": + version: 1.2.2 + resolution: "didyoumean@npm:1.2.2" + checksum: 95d0b53d23b851aacff56dfadb7ecfedce49da4232233baecfeecb7710248c4aa03f0aa8995062f0acafaf925adf8536bd7044a2e68316fd7d411477599bc27b + languageName: node + linkType: hard + +"diff-sequences@npm:^27.5.1": + version: 27.5.1 + resolution: "diff-sequences@npm:27.5.1" + checksum: a52566d891b89a666f48ba69f54262fa8293ae6264ae04da82c7bf3b6661cba75561de0729f18463179d56003cc0fd69aa09845f2c2cd7a353b1ec1e1a96beb9 + languageName: node + linkType: hard + +"diff-sequences@npm:^29.4.3": + version: 29.4.3 + resolution: "diff-sequences@npm:29.4.3" + checksum: 183800b9fd8523a05a3a50ade0fafe81d4b8a8ac113b077d2bc298052ccdc081e3b896f19bf65768b536daebd8169a493c4764cb70a2195e14c442c12538d121 + languageName: node + linkType: hard + +"diffie-hellman@npm:^5.0.0": + version: 5.0.3 + resolution: "diffie-hellman@npm:5.0.3" + dependencies: + bn.js: "npm:^4.1.0" + miller-rabin: "npm:^4.0.0" + randombytes: "npm:^2.0.0" + checksum: ce53ccafa9ca544b7fc29b08a626e23a9b6562efc2a98559a0c97b4718937cebaa9b5d7d0a05032cc9c1435e9b3c1532b9e9bf2e0ede868525922807ad6e1ecf + languageName: node + linkType: hard + +"dir-glob@npm:^3.0.1": + version: 3.0.1 + resolution: "dir-glob@npm:3.0.1" + dependencies: + path-type: "npm:^4.0.0" + checksum: dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c + languageName: node + linkType: hard + +"dlv@npm:^1.1.3": + version: 1.1.3 + resolution: "dlv@npm:1.1.3" + checksum: 03eb4e769f19a027fd5b43b59e8a05e3fd2100ac239ebb0bf9a745de35d449e2f25cfaf3aa3934664551d72856f4ae8b7822016ce5c42c2d27c18ae79429ec42 + languageName: node + linkType: hard + +"dns-equal@npm:^1.0.0": + version: 1.0.0 + resolution: "dns-equal@npm:1.0.0" + checksum: da966e5275ac50546e108af6bc29aaae2164d2ae96d60601b333c4a3aff91f50b6ca14929cf91f20a9cad1587b356323e300cea3ff6588a6a816988485f445f1 + languageName: node + linkType: hard + +"dns-packet@npm:^5.2.2": + version: 5.6.0 + resolution: "dns-packet@npm:5.6.0" + dependencies: + "@leichtgewicht/ip-codec": "npm:^2.0.1" + checksum: b458d9c8c9f346fdf1d6e88998dc29815f1eac51c05061510b903b9b882d48cac95b132c5c33eeb330665a7c85227a922767a3eb72ce7be143964a1cce63b770 + languageName: node + linkType: hard + +"doctrine@npm:^2.1.0": + version: 2.1.0 + resolution: "doctrine@npm:2.1.0" + dependencies: + esutils: "npm:^2.0.2" + checksum: b6416aaff1f380bf56c3b552f31fdf7a69b45689368deca72d28636f41c16bb28ec3ebc40ace97db4c1afc0ceeb8120e8492fe0046841c94c2933b2e30a7d5ac + languageName: node + linkType: hard + +"doctrine@npm:^3.0.0": + version: 3.0.0 + resolution: "doctrine@npm:3.0.0" + dependencies: + esutils: "npm:^2.0.2" + checksum: c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 + languageName: node + linkType: hard + +"dom-accessibility-api@npm:^0.5.6, dom-accessibility-api@npm:^0.5.9": + version: 0.5.16 + resolution: "dom-accessibility-api@npm:0.5.16" + checksum: b2c2eda4fae568977cdac27a9f0c001edf4f95a6a6191dfa611e3721db2478d1badc01db5bb4fa8a848aeee13e442a6c2a4386d65ec65a1436f24715a2f8d053 + languageName: node + linkType: hard + +"dom-converter@npm:^0.2.0": + version: 0.2.0 + resolution: "dom-converter@npm:0.2.0" + dependencies: + utila: "npm:~0.4" + checksum: e96aa63bd8c6ee3cd9ce19c3aecfc2c42e50a460e8087114794d4f5ecf3a4f052b34ea3bf2d73b5d80b4da619073b49905e6d7d788ceb7814ca4c29be5354a11 + languageName: node + linkType: hard + +"dom-helpers@npm:^5.0.1, dom-helpers@npm:^5.1.3": + version: 5.2.1 + resolution: "dom-helpers@npm:5.2.1" + dependencies: + "@babel/runtime": "npm:^7.8.7" + csstype: "npm:^3.0.2" + checksum: f735074d66dd759b36b158fa26e9d00c9388ee0e8c9b16af941c38f014a37fc80782de83afefd621681b19ac0501034b4f1c4a3bff5caa1b8667f0212b5e124c + languageName: node + linkType: hard + +"dom-serializer@npm:0": + version: 0.2.2 + resolution: "dom-serializer@npm:0.2.2" + dependencies: + domelementtype: "npm:^2.0.1" + entities: "npm:^2.0.0" + checksum: 5cb595fb77e1a23eca56742f47631e6f4af66ce1982c7ed28b3d0ef21f1f50304c067adc29d3eaf824c572be022cee88627d0ac9b929408f24e923f3c7bed37b + languageName: node + linkType: hard + +"dom-serializer@npm:^1.0.1": + version: 1.4.1 + resolution: "dom-serializer@npm:1.4.1" + dependencies: + domelementtype: "npm:^2.0.1" + domhandler: "npm:^4.2.0" + entities: "npm:^2.0.0" + checksum: 67d775fa1ea3de52035c98168ddcd59418356943b5eccb80e3c8b3da53adb8e37edb2cc2f885802b7b1765bf5022aec21dfc32910d7f9e6de4c3148f095ab5e0 + languageName: node + linkType: hard + +"domain-browser@npm:^4.22.0": + version: 4.22.0 + resolution: "domain-browser@npm:4.22.0" + checksum: 2ef7eda6d2161038fda0c9aa4c9e18cc7a0baa89ea6be975d449527c2eefd4b608425db88508e2859acc472f46f402079274b24bd75e3fb506f28c5dba203129 + languageName: node + linkType: hard + +"domelementtype@npm:1": + version: 1.3.1 + resolution: "domelementtype@npm:1.3.1" + checksum: 6d4f5761060a21eaf3c96545501e9d188745c7e1c31b8d141bf15d8748feeadba868f4ea32877751b8678b286fb1afbe6ae905ca3fb8f0214d8322e482cdbec0 + languageName: node + linkType: hard + +"domelementtype@npm:^2.0.1, domelementtype@npm:^2.2.0": + version: 2.3.0 + resolution: "domelementtype@npm:2.3.0" + checksum: 686f5a9ef0fff078c1412c05db73a0dce096190036f33e400a07e2a4518e9f56b1e324f5c576a0a747ef0e75b5d985c040b0d51945ce780c0dd3c625a18cd8c9 + languageName: node + linkType: hard + +"domexception@npm:^2.0.1": + version: 2.0.1 + resolution: "domexception@npm:2.0.1" + dependencies: + webidl-conversions: "npm:^5.0.0" + checksum: 24a3a07b85420671bc805ead7305e0f2ec9e55f104889b64c5a9fa7d93681e514f05c65f947bd9401b3da67f77b92fe7861bd15f4d0d418c4d32e34a2cd55d38 + languageName: node + linkType: hard + +"domhandler@npm:^4.0.0, domhandler@npm:^4.2.0, domhandler@npm:^4.3.1": + version: 4.3.1 + resolution: "domhandler@npm:4.3.1" + dependencies: + domelementtype: "npm:^2.2.0" + checksum: 5c199c7468cb052a8b5ab80b13528f0db3d794c64fc050ba793b574e158e67c93f8336e87fd81e9d5ee43b0e04aea4d8b93ed7be4899cb726a1601b3ba18538b + languageName: node + linkType: hard + +"dompurify@npm:^3.0.8": + version: 3.0.8 + resolution: "dompurify@npm:3.0.8" + checksum: e89e03d3dbd99abd64cd90705ce2cdfbc60ee9726ee53f9860e8a2d91b828ef2c173e7031529f9a3aa169ad0fbb76115c6a6683b545bf1ac5d94cc6176fb2a50 + languageName: node + linkType: hard + +"domutils@npm:^1.7.0": + version: 1.7.0 + resolution: "domutils@npm:1.7.0" + dependencies: + dom-serializer: "npm:0" + domelementtype: "npm:1" + checksum: 437fcd2d6d6be03f488152e73c6f953e289c58496baa22be9626b2b46f9cfd40486ae77d144487ff6b102929a3231cdb9a8bf8ef485fb7b7c30c985daedc77eb + languageName: node + linkType: hard + +"domutils@npm:^2.5.2, domutils@npm:^2.8.0": + version: 2.8.0 + resolution: "domutils@npm:2.8.0" + dependencies: + dom-serializer: "npm:^1.0.1" + domelementtype: "npm:^2.2.0" + domhandler: "npm:^4.2.0" + checksum: d58e2ae01922f0dd55894e61d18119924d88091837887bf1438f2327f32c65eb76426bd9384f81e7d6dcfb048e0f83c19b222ad7101176ad68cdc9c695b563db + languageName: node + linkType: hard + +"dot-case@npm:^3.0.4": + version: 3.0.4 + resolution: "dot-case@npm:3.0.4" + dependencies: + no-case: "npm:^3.0.4" + tslib: "npm:^2.0.3" + checksum: 5b859ea65097a7ea870e2c91b5768b72ddf7fa947223fd29e167bcdff58fe731d941c48e47a38ec8aa8e43044c8fbd15cd8fa21689a526bc34b6548197cd5b05 + languageName: node + linkType: hard + +"dotenv-expand@npm:^5.1.0": + version: 5.1.0 + resolution: "dotenv-expand@npm:5.1.0" + checksum: 24ac633de853ef474d0421cc639328b7134109c8dc2baaa5e3afb7495af5e9237136d7e6971e55668e4dce915487eb140967cdd2b3e99aa439e0f6bf8b56faeb + languageName: node + linkType: hard + +"dotenv@npm:^10.0.0": + version: 10.0.0 + resolution: "dotenv@npm:10.0.0" + checksum: 2d8d4ba64bfaff7931402aa5e8cbb8eba0acbc99fe9ae442300199af021079eafa7171ce90e150821a5cb3d74f0057721fbe7ec201a6044b68c8a7615f8c123f + languageName: node + linkType: hard + +"draft-js-custom-styles@npm:^2.1.1": + version: 2.1.1 + resolution: "draft-js-custom-styles@npm:2.1.1" + dependencies: + lodash.camelcase: "npm:^4.3.0" + lodash.snakecase: "npm:^4.1.1" + peerDependencies: + draft-js: 0.10.x + immutable: ^3.x + checksum: dd02dc40369c08535838ed378537b7a15fe1636640369afe352aea0e313fdf6074c204771a6be6a9a7f652352ca29a8c98db3c231cf9a7ccd46d7789ce331264 + languageName: node + linkType: hard + +"draft-js@npm:^0.11.7": + version: 0.11.7 + resolution: "draft-js@npm:0.11.7" + dependencies: + fbjs: "npm:^2.0.0" + immutable: "npm:~3.7.4" + object-assign: "npm:^4.1.1" + peerDependencies: + react: ">=0.14.0" + react-dom: ">=0.14.0" + checksum: 25943c73cbacf7e00e3ee6bef3496feffe14f09c436cec9233a4fc1bb2b4302f2bcf5fc66f4a5f8e3a9135808d20783aff75e42659da3b21d50f63185bedf557 + languageName: node + linkType: hard + +"draw-svg-path@npm:^1.0.0": + version: 1.0.0 + resolution: "draw-svg-path@npm:1.0.0" + dependencies: + abs-svg-path: "npm:~0.1.1" + normalize-svg-path: "npm:~0.1.0" + checksum: 659482ae77a013940002292d25a42ff6a4817031ae705e1e9682c7c0b81616081c2ff4a982cd52fba2fbd8f3814aea0875c2831b91a73a85f631b9db1c3fc83d + languageName: node + linkType: hard + +"dtype@npm:^2.0.0": + version: 2.0.0 + resolution: "dtype@npm:2.0.0" + checksum: f1478e537d4e90b8d99f0c4b4f28daf588f9b1a9a314eb137a582ab407e64e4867382cbd73cd87892f81c9f195e519d03b9017a3c47bba2cff3e706b9e6a18e5 + languageName: node + linkType: hard + +"dup@npm:^1.0.0": + version: 1.0.0 + resolution: "dup@npm:1.0.0" + checksum: 990cde73bbecf90ff58101d2fd96016930fbefd03f047a041a3cc83fcfa22e04c7a02ee4747707b5dabe87fc3a78814d95a9b20d9e6dc98738bd2388efde6f64 + languageName: node + linkType: hard + +"duplexer@npm:^0.1.2": + version: 0.1.2 + resolution: "duplexer@npm:0.1.2" + checksum: c57bcd4bdf7e623abab2df43a7b5b23d18152154529d166c1e0da6bee341d84c432d157d7e97b32fecb1bf3a8b8857dd85ed81a915789f550637ed25b8e64fc2 + languageName: node + linkType: hard + +"duplexify@npm:^3.4.5": + version: 3.7.1 + resolution: "duplexify@npm:3.7.1" + dependencies: + end-of-stream: "npm:^1.0.0" + inherits: "npm:^2.0.1" + readable-stream: "npm:^2.0.0" + stream-shift: "npm:^1.0.0" + checksum: 59d1440c1b4e3a4db35ae96933392703ce83518db1828d06b9b6322920d6cbbf0b7159e88be120385fe459e77f1eb0c7622f26e9ec1f47c9ff05c2b35747dbd3 + languageName: node + linkType: hard + +"earcut@npm:^2.1.5, earcut@npm:^2.2.2": + version: 2.2.4 + resolution: "earcut@npm:2.2.4" + checksum: 01ca51830edd2787819f904ae580087d37351f6048b4565e7add4b3da8a86b7bc19262ab2aa7fdc64129ab03af2d9cec8cccee4d230c82275f97ef285c79aafb + languageName: node + linkType: hard + +"eastasianwidth@npm:^0.2.0": + version: 0.2.0 + resolution: "eastasianwidth@npm:0.2.0" + checksum: 26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 + languageName: node + linkType: hard + +"ee-first@npm:1.1.1": + version: 1.1.1 + resolution: "ee-first@npm:1.1.1" + checksum: b5bb125ee93161bc16bfe6e56c6b04de5ad2aa44234d8f644813cc95d861a6910903132b05093706de2b706599367c4130eb6d170f6b46895686b95f87d017b7 + languageName: node + linkType: hard + +"ejs@npm:^3.1.6": + version: 3.1.9 + resolution: "ejs@npm:3.1.9" + dependencies: + jake: "npm:^10.8.5" + bin: + ejs: bin/cli.js + checksum: f0e249c79128810f5f6d5cbf347fc906d86bb9384263db0b2a9004aea649f2bc2d112736de5716c509c80afb4721c47281bd5b57c757d3b63f1bf5ac5f885893 + languageName: node + linkType: hard + +"electron-to-chromium@npm:^1.4.431": + version: 1.4.454 + resolution: "electron-to-chromium@npm:1.4.454" + checksum: a8f2b99eb8a90b5038bd100289c17e1ae5c7a3597214650eeb8aafd94fbb139a8749e358666ded0d37454c08d2857c9f0103cc621b630f9de493db6544bc8003 + languageName: node + linkType: hard + +"element-closest-polyfill@npm:^1.0.2": + version: 1.0.6 + resolution: "element-closest-polyfill@npm:1.0.6" + checksum: ffc53c2d77e346e09088fe59facba54e1f89c29eab23ba1f060eda5fbc38afc0948189964beb7d6ca7c3fef1a9ddc82132c50394b65150b7806c98ba27e715d0 + languageName: node + linkType: hard + +"element-size@npm:^1.1.1": + version: 1.1.1 + resolution: "element-size@npm:1.1.1" + checksum: 517560f4e0b2dbd0adfe5660bb2572625f605a6268e7983cf96c7584538bef8733fd34e213dc5f653eaea9db5c38069d6e7a3ab960f03c460bcd51e42ee1554d + languageName: node + linkType: hard + +"elementary-circuits-directed-graph@npm:^1.0.4": + version: 1.3.1 + resolution: "elementary-circuits-directed-graph@npm:1.3.1" + dependencies: + strongly-connected-components: "npm:^1.0.1" + checksum: a6e8ee9e5724b8d15841e8d456340b25a46c2a501cef2b60a46f1a1808dfade47f2027c4a5e37be6ddafd31a78c3b58e01b12a4f6166649f89e2c9a52507d481 + languageName: node + linkType: hard + +"elliptic@npm:^6.5.3": + version: 6.5.4 + resolution: "elliptic@npm:6.5.4" + dependencies: + bn.js: "npm:^4.11.9" + brorand: "npm:^1.1.0" + hash.js: "npm:^1.0.0" + hmac-drbg: "npm:^1.0.1" + inherits: "npm:^2.0.4" + minimalistic-assert: "npm:^1.0.1" + minimalistic-crypto-utils: "npm:^1.0.1" + checksum: 5f361270292c3b27cf0843e84526d11dec31652f03c2763c6c2b8178548175ff5eba95341dd62baff92b2265d1af076526915d8af6cc9cb7559c44a62f8ca6e2 + languageName: node + linkType: hard + +"emittery@npm:^0.10.2": + version: 0.10.2 + resolution: "emittery@npm:0.10.2" + checksum: 2caeea7501a0cca9b0e9d8d0a84d7d059cd2319ab02016bb6f81ae8bc2f3353c6734ed50a5fe0e4e2b96ebcc1623c1344b6beec51a4feda34b121942dd50ba55 + languageName: node + linkType: hard + +"emittery@npm:^0.8.1": + version: 0.8.1 + resolution: "emittery@npm:0.8.1" + checksum: 1302868b6e258909964339f28569b97658d75c1030271024ac2f50f84957eab6a6a04278861a9c1d47131b9dfb50f25a5d017750d1c99cd86763e19a93b838bf + languageName: node + linkType: hard + +"emoji-regex@npm:^8.0.0": + version: 8.0.0 + resolution: "emoji-regex@npm:8.0.0" + checksum: b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 + languageName: node + linkType: hard + +"emoji-regex@npm:^9.2.2": + version: 9.2.2 + resolution: "emoji-regex@npm:9.2.2" + checksum: af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 + languageName: node + linkType: hard + +"emojis-list@npm:^3.0.0": + version: 3.0.0 + resolution: "emojis-list@npm:3.0.0" + checksum: 7dc4394b7b910444910ad64b812392159a21e1a7ecc637c775a440227dcb4f80eff7fe61f4453a7d7603fa23d23d30cc93fe9e4b5ed985b88d6441cd4a35117b + languageName: node + linkType: hard + +"encodeurl@npm:~1.0.2": + version: 1.0.2 + resolution: "encodeurl@npm:1.0.2" + checksum: f6c2387379a9e7c1156c1c3d4f9cb7bb11cf16dd4c1682e1f6746512564b053df5781029b6061296832b59fb22f459dbe250386d217c2f6e203601abb2ee0bec + languageName: node + linkType: hard + +"encoding@npm:^0.1.13": + version: 0.1.13 + resolution: "encoding@npm:0.1.13" + dependencies: + iconv-lite: "npm:^0.6.2" + checksum: 36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039 + languageName: node + linkType: hard + +"end-of-stream@npm:^1.0.0, end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1": + version: 1.4.4 + resolution: "end-of-stream@npm:1.4.4" + dependencies: + once: "npm:^1.4.0" + checksum: 870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975 + languageName: node + linkType: hard + +"enhanced-resolve@npm:^5.15.0": + version: 5.15.0 + resolution: "enhanced-resolve@npm:5.15.0" + dependencies: + graceful-fs: "npm:^4.2.4" + tapable: "npm:^2.2.0" + checksum: 69984a7990913948b4150855aed26a84afb4cb1c5a94fb8e3a65bd00729a73fc2eaff6871fb8e345377f294831afe349615c93560f2f54d61b43cdfdf668f19a + languageName: node + linkType: hard + +"entities@npm:^2.0.0": + version: 2.2.0 + resolution: "entities@npm:2.2.0" + checksum: 7fba6af1f116300d2ba1c5673fc218af1961b20908638391b4e1e6d5850314ee2ac3ec22d741b3a8060479911c99305164aed19b6254bde75e7e6b1b2c3f3aa3 + languageName: node + linkType: hard + +"entities@npm:^4.4.0": + version: 4.5.0 + resolution: "entities@npm:4.5.0" + checksum: 5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250 + languageName: node + linkType: hard + +"env-paths@npm:^2.2.0": + version: 2.2.1 + resolution: "env-paths@npm:2.2.1" + checksum: 285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 + languageName: node + linkType: hard + +"err-code@npm:^2.0.2": + version: 2.0.3 + resolution: "err-code@npm:2.0.3" + checksum: b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66 + languageName: node + linkType: hard + +"error-ex@npm:^1.3.1": + version: 1.3.2 + resolution: "error-ex@npm:1.3.2" + dependencies: + is-arrayish: "npm:^0.2.1" + checksum: ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce + languageName: node + linkType: hard + +"error-stack-parser@npm:^2.0.6": + version: 2.1.4 + resolution: "error-stack-parser@npm:2.1.4" + dependencies: + stackframe: "npm:^1.3.4" + checksum: 7679b780043c98b01fc546725484e0cfd3071bf5c906bbe358722972f04abf4fc3f0a77988017665bab367f6ef3fc2d0185f7528f45966b83e7c99c02d5509b9 + languageName: node + linkType: hard + +"es-abstract@npm:^1.17.2, es-abstract@npm:^1.19.0, es-abstract@npm:^1.20.4, es-abstract@npm:^1.21.2": + version: 1.21.2 + resolution: "es-abstract@npm:1.21.2" + dependencies: + array-buffer-byte-length: "npm:^1.0.0" + available-typed-arrays: "npm:^1.0.5" + call-bind: "npm:^1.0.2" + es-set-tostringtag: "npm:^2.0.1" + es-to-primitive: "npm:^1.2.1" + function.prototype.name: "npm:^1.1.5" + get-intrinsic: "npm:^1.2.0" + get-symbol-description: "npm:^1.0.0" + globalthis: "npm:^1.0.3" + gopd: "npm:^1.0.1" + has: "npm:^1.0.3" + has-property-descriptors: "npm:^1.0.0" + has-proto: "npm:^1.0.1" + has-symbols: "npm:^1.0.3" + internal-slot: "npm:^1.0.5" + is-array-buffer: "npm:^3.0.2" + is-callable: "npm:^1.2.7" + is-negative-zero: "npm:^2.0.2" + is-regex: "npm:^1.1.4" + is-shared-array-buffer: "npm:^1.0.2" + is-string: "npm:^1.0.7" + is-typed-array: "npm:^1.1.10" + is-weakref: "npm:^1.0.2" + object-inspect: "npm:^1.12.3" + object-keys: "npm:^1.1.1" + object.assign: "npm:^4.1.4" + regexp.prototype.flags: "npm:^1.4.3" + safe-regex-test: "npm:^1.0.0" + string.prototype.trim: "npm:^1.2.7" + string.prototype.trimend: "npm:^1.0.6" + string.prototype.trimstart: "npm:^1.0.6" + typed-array-length: "npm:^1.0.4" + unbox-primitive: "npm:^1.0.2" + which-typed-array: "npm:^1.1.9" + checksum: 7dc2c882bafbb13609b9c35c29f0717ebf5a4dbde23a73803be821f349aa38d55f324318ccebb6da83c074260622f11d0a7f4cd1e0e19f52cc03b6b5386693fb + languageName: node + linkType: hard + +"es-array-method-boxes-properly@npm:^1.0.0": + version: 1.0.0 + resolution: "es-array-method-boxes-properly@npm:1.0.0" + checksum: 4b7617d3fbd460d6f051f684ceca6cf7e88e6724671d9480388d3ecdd72119ddaa46ca31f2c69c5426a82e4b3091c1e81867c71dcdc453565cd90005ff2c382d + languageName: node + linkType: hard + +"es-get-iterator@npm:^1.1.3": + version: 1.1.3 + resolution: "es-get-iterator@npm:1.1.3" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.1.3" + has-symbols: "npm:^1.0.3" + is-arguments: "npm:^1.1.1" + is-map: "npm:^2.0.2" + is-set: "npm:^2.0.2" + is-string: "npm:^1.0.7" + isarray: "npm:^2.0.5" + stop-iteration-iterator: "npm:^1.0.0" + checksum: ebd11effa79851ea75d7f079405f9d0dc185559fd65d986c6afea59a0ff2d46c2ed8675f19f03dce7429d7f6c14ff9aede8d121fbab78d75cfda6a263030bac0 + languageName: node + linkType: hard + +"es-module-lexer@npm:^1.2.1": + version: 1.3.0 + resolution: "es-module-lexer@npm:1.3.0" + checksum: cbd9bdc65458d4c4bd0d22a1c792926bfdf7bb6a96a9ed04da7d31f317159bd4945d2dbeb318717f9214f9695ee85a8fae64a5d25bf360baa82b58079032fc7a + languageName: node + linkType: hard + +"es-set-tostringtag@npm:^2.0.1": + version: 2.0.1 + resolution: "es-set-tostringtag@npm:2.0.1" + dependencies: + get-intrinsic: "npm:^1.1.3" + has: "npm:^1.0.3" + has-tostringtag: "npm:^1.0.0" + checksum: 9af096365e3861bb29755cc5f76f15f66a7eab0e83befca396129090c1d9737e54090278b8e5357e97b5f0a5b0459fca07c40c6740884c2659cbf90ef8e508cc + languageName: node + linkType: hard + +"es-shim-unscopables@npm:^1.0.0": + version: 1.0.0 + resolution: "es-shim-unscopables@npm:1.0.0" + dependencies: + has: "npm:^1.0.3" + checksum: d54a66239fbd19535b3e50333913260394f14d2d7adb136a95396a13ca584bab400cf9cb2ffd9232f3fe2f0362540bd3a708240c493e46e13fe0b90cfcfedc3d + languageName: node + linkType: hard + +"es-to-primitive@npm:^1.2.1": + version: 1.2.1 + resolution: "es-to-primitive@npm:1.2.1" + dependencies: + is-callable: "npm:^1.1.4" + is-date-object: "npm:^1.0.1" + is-symbol: "npm:^1.0.2" + checksum: 0886572b8dc075cb10e50c0af62a03d03a68e1e69c388bd4f10c0649ee41b1fbb24840a1b7e590b393011b5cdbe0144b776da316762653685432df37d6de60f1 + languageName: node + linkType: hard + +"es5-ext@npm:^0.10.35, es5-ext@npm:^0.10.46, es5-ext@npm:^0.10.50": + version: 0.10.62 + resolution: "es5-ext@npm:0.10.62" + dependencies: + es6-iterator: "npm:^2.0.3" + es6-symbol: "npm:^3.1.3" + next-tick: "npm:^1.1.0" + checksum: 72dfbec5e4bce24754be9f2c2a1c67c01de3fe000103c115f52891f6a51f44a59674c40a1f6bd2390fcd43987746dccb76efafea91c7bb6295bdca8d63ba3db4 + languageName: node + linkType: hard + +"es6-iterator@npm:^2.0.3": + version: 2.0.3 + resolution: "es6-iterator@npm:2.0.3" + dependencies: + d: "npm:1" + es5-ext: "npm:^0.10.35" + es6-symbol: "npm:^3.1.1" + checksum: 91f20b799dba28fb05bf623c31857fc1524a0f1c444903beccaf8929ad196c8c9ded233e5ac7214fc63a92b3f25b64b7f2737fcca8b1f92d2d96cf3ac902f5d8 + languageName: node + linkType: hard + +"es6-object-assign@npm:^1.1.0": + version: 1.1.0 + resolution: "es6-object-assign@npm:1.1.0" + checksum: 11c165ae16866aca897dee9b689402f0e871589e859809343ef9e0fdd067133684db16fd15abdba2a99e7319222b9f43e6b747baabb909cee9d0ecbac8deebee + languageName: node + linkType: hard + +"es6-symbol@npm:^3.1.1, es6-symbol@npm:^3.1.3": + version: 3.1.3 + resolution: "es6-symbol@npm:3.1.3" + dependencies: + d: "npm:^1.0.1" + ext: "npm:^1.1.2" + checksum: 22982f815f00df553a89f4fb74c5048fed85df598482b4bd38dbd173174247949c72982a7d7132a58b147525398400e5f182db59b0916cb49f1e245fb0e22233 + languageName: node + linkType: hard + +"es6-weak-map@npm:^2.0.3": + version: 2.0.3 + resolution: "es6-weak-map@npm:2.0.3" + dependencies: + d: "npm:1" + es5-ext: "npm:^0.10.46" + es6-iterator: "npm:^2.0.3" + es6-symbol: "npm:^3.1.1" + checksum: 460932be9542473dbbddd183e21c15a66cfec1b2c17dae2b514e190d6fb2896b7eb683783d4b36da036609d2e1c93d2815f21b374dfccaf02a8978694c2f7b67 + languageName: node + linkType: hard + +"esbuild@npm:^0.18.10": + version: 0.18.11 + resolution: "esbuild@npm:0.18.11" + dependencies: + "@esbuild/android-arm": "npm:0.18.11" + "@esbuild/android-arm64": "npm:0.18.11" + "@esbuild/android-x64": "npm:0.18.11" + "@esbuild/darwin-arm64": "npm:0.18.11" + "@esbuild/darwin-x64": "npm:0.18.11" + "@esbuild/freebsd-arm64": "npm:0.18.11" + "@esbuild/freebsd-x64": "npm:0.18.11" + "@esbuild/linux-arm": "npm:0.18.11" + "@esbuild/linux-arm64": "npm:0.18.11" + "@esbuild/linux-ia32": "npm:0.18.11" + "@esbuild/linux-loong64": "npm:0.18.11" + "@esbuild/linux-mips64el": "npm:0.18.11" + "@esbuild/linux-ppc64": "npm:0.18.11" + "@esbuild/linux-riscv64": "npm:0.18.11" + "@esbuild/linux-s390x": "npm:0.18.11" + "@esbuild/linux-x64": "npm:0.18.11" + "@esbuild/netbsd-x64": "npm:0.18.11" + "@esbuild/openbsd-x64": "npm:0.18.11" + "@esbuild/sunos-x64": "npm:0.18.11" + "@esbuild/win32-arm64": "npm:0.18.11" + "@esbuild/win32-ia32": "npm:0.18.11" + "@esbuild/win32-x64": "npm:0.18.11" + dependenciesMeta: + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: f038043facb479fc26e14eef203c8ddda2aeffeb18e82af74d0eb3daea0c3d6184d343ab62c86e5b036b3a7ae87e02388f4c60379777bf1e8f3e26156c906802 + languageName: node + linkType: hard + +"escalade@npm:^3.1.1": + version: 3.1.1 + resolution: "escalade@npm:3.1.1" + checksum: afd02e6ca91ffa813e1108b5e7756566173d6bc0d1eb951cb44d6b21702ec17c1cf116cfe75d4a2b02e05acb0b808a7a9387d0d1ca5cf9c04ad03a8445c3e46d + languageName: node + linkType: hard + +"escape-html@npm:~1.0.3": + version: 1.0.3 + resolution: "escape-html@npm:1.0.3" + checksum: 524c739d776b36c3d29fa08a22e03e8824e3b2fd57500e5e44ecf3cc4707c34c60f9ca0781c0e33d191f2991161504c295e98f68c78fe7baa6e57081ec6ac0a3 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^1.0.5": + version: 1.0.5 + resolution: "escape-string-regexp@npm:1.0.5" + checksum: a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^2.0.0": + version: 2.0.0 + resolution: "escape-string-regexp@npm:2.0.0" + checksum: 2530479fe8db57eace5e8646c9c2a9c80fa279614986d16dcc6bcaceb63ae77f05a851ba6c43756d816c61d7f4534baf56e3c705e3e0d884818a46808811c507 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-string-regexp@npm:4.0.0" + checksum: 9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^5.0.0": + version: 5.0.0 + resolution: "escape-string-regexp@npm:5.0.0" + checksum: 6366f474c6f37a802800a435232395e04e9885919873e382b157ab7e8f0feb8fed71497f84a6f6a81a49aab41815522f5839112bd38026d203aea0c91622df95 + languageName: node + linkType: hard + +"escodegen@npm:^1.11.1": + version: 1.14.3 + resolution: "escodegen@npm:1.14.3" + dependencies: + esprima: "npm:^4.0.1" + estraverse: "npm:^4.2.0" + esutils: "npm:^2.0.2" + optionator: "npm:^0.8.1" + source-map: "npm:~0.6.1" + dependenciesMeta: + source-map: + optional: true + bin: + escodegen: bin/escodegen.js + esgenerate: bin/esgenerate.js + checksum: 30d337803e8f44308c90267bf6192399e4b44792497c77a7506b68ab802ba6a48ebbe1ce77b219aba13dfd2de5f5e1c267e35be1ed87b2a9c3315e8b283e302a + languageName: node + linkType: hard + +"escodegen@npm:^2.0.0": + version: 2.1.0 + resolution: "escodegen@npm:2.1.0" + dependencies: + esprima: "npm:^4.0.1" + estraverse: "npm:^5.2.0" + esutils: "npm:^2.0.2" + source-map: "npm:~0.6.1" + dependenciesMeta: + source-map: + optional: true + bin: + escodegen: bin/escodegen.js + esgenerate: bin/esgenerate.js + checksum: e1450a1f75f67d35c061bf0d60888b15f62ab63aef9df1901cffc81cffbbb9e8b3de237c5502cf8613a017c1df3a3003881307c78835a1ab54d8c8d2206e01d3 + languageName: node + linkType: hard + +"eslint-config-react-app@npm:^7.0.1": + version: 7.0.1 + resolution: "eslint-config-react-app@npm:7.0.1" + dependencies: + "@babel/core": "npm:^7.16.0" + "@babel/eslint-parser": "npm:^7.16.3" + "@rushstack/eslint-patch": "npm:^1.1.0" + "@typescript-eslint/eslint-plugin": "npm:^5.5.0" + "@typescript-eslint/parser": "npm:^5.5.0" + babel-preset-react-app: "npm:^10.0.1" + confusing-browser-globals: "npm:^1.0.11" + eslint-plugin-flowtype: "npm:^8.0.3" + eslint-plugin-import: "npm:^2.25.3" + eslint-plugin-jest: "npm:^25.3.0" + eslint-plugin-jsx-a11y: "npm:^6.5.1" + eslint-plugin-react: "npm:^7.27.1" + eslint-plugin-react-hooks: "npm:^4.3.0" + eslint-plugin-testing-library: "npm:^5.0.1" + peerDependencies: + eslint: ^8.0.0 + checksum: be290ec0cd5a2c0bb0b85cb1645e8734769cae77f101cd453631d77a60fa4894ee8b5b1e080ee8c21e01af0d0fc22367a2882931a549691b5ab801abb985cbba + languageName: node + linkType: hard + +"eslint-import-resolver-node@npm:^0.3.7": + version: 0.3.7 + resolution: "eslint-import-resolver-node@npm:0.3.7" + dependencies: + debug: "npm:^3.2.7" + is-core-module: "npm:^2.11.0" + resolve: "npm:^1.22.1" + checksum: 39c562b59ec8dfd6b85ffa52273dbf0edb661b616463e2c453c60b2398b0a76f268f15f949a1648046c9c996d29599b57f6266df4b5d3562bff1088ded3672d5 + languageName: node + linkType: hard + +"eslint-module-utils@npm:^2.7.4": + version: 2.8.0 + resolution: "eslint-module-utils@npm:2.8.0" + dependencies: + debug: "npm:^3.2.7" + peerDependenciesMeta: + eslint: + optional: true + checksum: c7a8d1a58d76ec8217a8fea49271ec8132d1b9390965a75f6a4ecbc9e5983d742195b46d2e4378231d2186801439fe1aa5700714b0bfd4eb17aac6e1b65309df + languageName: node + linkType: hard + +"eslint-plugin-flowtype@npm:^8.0.3": + version: 8.0.3 + resolution: "eslint-plugin-flowtype@npm:8.0.3" + dependencies: + lodash: "npm:^4.17.21" + string-natural-compare: "npm:^3.0.1" + peerDependencies: + "@babel/plugin-syntax-flow": ^7.14.5 + "@babel/plugin-transform-react-jsx": ^7.14.9 + eslint: ^8.1.0 + checksum: a4596ba1cb80c19a06f1ddef6c36e6a671769da8d056d4a8f3482a2c46f475c547e78f82c3233099dba3759dc9a29e36d0ca07019cf6deb666db17f49d8f566d + languageName: node + linkType: hard + +"eslint-plugin-import@npm:^2.25.3": + version: 2.27.5 + resolution: "eslint-plugin-import@npm:2.27.5" + dependencies: + array-includes: "npm:^3.1.6" + array.prototype.flat: "npm:^1.3.1" + array.prototype.flatmap: "npm:^1.3.1" + debug: "npm:^3.2.7" + doctrine: "npm:^2.1.0" + eslint-import-resolver-node: "npm:^0.3.7" + eslint-module-utils: "npm:^2.7.4" + has: "npm:^1.0.3" + is-core-module: "npm:^2.11.0" + is-glob: "npm:^4.0.3" + minimatch: "npm:^3.1.2" + object.values: "npm:^1.1.6" + resolve: "npm:^1.22.1" + semver: "npm:^6.3.0" + tsconfig-paths: "npm:^3.14.1" + peerDependencies: + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + checksum: e561e79889ad3c662e305ca9a9b273a5baf8f492dad8198e42987efc4f0532c0d49caee206e78e057cec3365b36f9cef8340915e9f08adec5f29c9d631e6f691 + languageName: node + linkType: hard + +"eslint-plugin-jest@npm:^25.3.0": + version: 25.7.0 + resolution: "eslint-plugin-jest@npm:25.7.0" + dependencies: + "@typescript-eslint/experimental-utils": "npm:^5.0.0" + peerDependencies: + "@typescript-eslint/eslint-plugin": ^4.0.0 || ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + "@typescript-eslint/eslint-plugin": + optional: true + jest: + optional: true + checksum: 72dad05323d54e815c2bb10235bd5b77423796ef2e2940f7dba28bdb6cfac5a578793d3f0c7ac74618c41f9d8d6f345097a2a1f89f41aeec27bb873cb66ab270 + languageName: node + linkType: hard + +"eslint-plugin-jsx-a11y@npm:^6.5.1": + version: 6.7.1 + resolution: "eslint-plugin-jsx-a11y@npm:6.7.1" + dependencies: + "@babel/runtime": "npm:^7.20.7" + aria-query: "npm:^5.1.3" + array-includes: "npm:^3.1.6" + array.prototype.flatmap: "npm:^1.3.1" + ast-types-flow: "npm:^0.0.7" + axe-core: "npm:^4.6.2" + axobject-query: "npm:^3.1.1" + damerau-levenshtein: "npm:^1.0.8" + emoji-regex: "npm:^9.2.2" + has: "npm:^1.0.3" + jsx-ast-utils: "npm:^3.3.3" + language-tags: "npm:=1.0.5" + minimatch: "npm:^3.1.2" + object.entries: "npm:^1.1.6" + object.fromentries: "npm:^2.0.6" + semver: "npm:^6.3.0" + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + checksum: 41ad3d0c8036b36cd475685c1ad639157f403b16e8ac23c07f1dbe0226ccf8458f2805cbd5cc8e56856a5d8a356f3276e3139274d819476ccad80c41b9245502 + languageName: node + linkType: hard + +"eslint-plugin-react-hooks@npm:^4.3.0": + version: 4.6.0 + resolution: "eslint-plugin-react-hooks@npm:4.6.0" + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + checksum: 58c7e10ea5792c33346fcf5cb4024e14837035ce412ff99c2dcb7c4f903dc9b17939078f80bfef826301ce326582c396c00e8e0ac9d10ac2cde2b42d33763c65 + languageName: node + linkType: hard + +"eslint-plugin-react@npm:^7.27.1": + version: 7.32.2 + resolution: "eslint-plugin-react@npm:7.32.2" + dependencies: + array-includes: "npm:^3.1.6" + array.prototype.flatmap: "npm:^1.3.1" + array.prototype.tosorted: "npm:^1.1.1" + doctrine: "npm:^2.1.0" + estraverse: "npm:^5.3.0" + jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" + minimatch: "npm:^3.1.2" + object.entries: "npm:^1.1.6" + object.fromentries: "npm:^2.0.6" + object.hasown: "npm:^1.1.2" + object.values: "npm:^1.1.6" + prop-types: "npm:^15.8.1" + resolve: "npm:^2.0.0-next.4" + semver: "npm:^6.3.0" + string.prototype.matchall: "npm:^4.0.8" + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + checksum: 9ddd5cfc508555a5cb3edbdcc9138dd472d269d3a45da0be3e267ea2b3fa1b5990823675208c0e11376c9c55e46aaad5b7a5f46c965eb4dcf6f1eebcebf174c3 + languageName: node + linkType: hard + +"eslint-plugin-testing-library@npm:^5.0.1": + version: 5.11.0 + resolution: "eslint-plugin-testing-library@npm:5.11.0" + dependencies: + "@typescript-eslint/utils": "npm:^5.58.0" + peerDependencies: + eslint: ^7.5.0 || ^8.0.0 + checksum: 0c99bdd5e0933de4e48d73def10f458ceaade4b7c7d3046ddd90b4a24950042ca2408507e29fbab1fcd8adcbc7a33e7c962cfff964f299e30d4a1e5a6ca0785b + languageName: node + linkType: hard + +"eslint-scope@npm:5.1.1, eslint-scope@npm:^5.1.1": + version: 5.1.1 + resolution: "eslint-scope@npm:5.1.1" + dependencies: + esrecurse: "npm:^4.3.0" + estraverse: "npm:^4.1.1" + checksum: d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a + languageName: node + linkType: hard + +"eslint-scope@npm:^7.2.0": + version: 7.2.0 + resolution: "eslint-scope@npm:7.2.0" + dependencies: + esrecurse: "npm:^4.3.0" + estraverse: "npm:^5.2.0" + checksum: 5b48a3cc2485a3a58ca0bdecfb557c349009308a9b2afb24d070b1c0c254d445ee86d78bfee2c4ed6d1b8944307604a987c92f6d7e611e29de5d06256747a0ff + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^2.1.0": + version: 2.1.0 + resolution: "eslint-visitor-keys@npm:2.1.0" + checksum: 9f0e3a2db751d84067d15977ac4b4472efd6b303e369e6ff241a99feac04da758f46d5add022c33d06b53596038dbae4b4aceb27c7e68b8dfc1055b35e495787 + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1": + version: 3.4.1 + resolution: "eslint-visitor-keys@npm:3.4.1" + checksum: b4ebd35aed5426cd81b1fb92487825f1acf47a31e91d76597a3ee0664d69627140c4dafaf9b319cfeb1f48c1113a393e21a734c669e6565a72e6fcc311bd9911 + languageName: node + linkType: hard + +"eslint-webpack-plugin@npm:^3.1.1": + version: 3.2.0 + resolution: "eslint-webpack-plugin@npm:3.2.0" + dependencies: + "@types/eslint": "npm:^7.29.0 || ^8.4.1" + jest-worker: "npm:^28.0.2" + micromatch: "npm:^4.0.5" + normalize-path: "npm:^3.0.0" + schema-utils: "npm:^4.0.0" + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: ^5.0.0 + checksum: e2e11e6743df9e65e73f4d0b6de832a47a17568b2a4b03b86acfa3458bb2db50a7809c835b64613320f5fd5e1b1395dd2abe08d7f5c466c77234c500a087cad2 + languageName: node + linkType: hard + +"eslint@npm:^8.3.0": + version: 8.44.0 + resolution: "eslint@npm:8.44.0" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.2.0" + "@eslint-community/regexpp": "npm:^4.4.0" + "@eslint/eslintrc": "npm:^2.1.0" + "@eslint/js": "npm:8.44.0" + "@humanwhocodes/config-array": "npm:^0.11.10" + "@humanwhocodes/module-importer": "npm:^1.0.1" + "@nodelib/fs.walk": "npm:^1.2.8" + ajv: "npm:^6.10.0" + chalk: "npm:^4.0.0" + cross-spawn: "npm:^7.0.2" + debug: "npm:^4.3.2" + doctrine: "npm:^3.0.0" + escape-string-regexp: "npm:^4.0.0" + eslint-scope: "npm:^7.2.0" + eslint-visitor-keys: "npm:^3.4.1" + espree: "npm:^9.6.0" + esquery: "npm:^1.4.2" + esutils: "npm:^2.0.2" + fast-deep-equal: "npm:^3.1.3" + file-entry-cache: "npm:^6.0.1" + find-up: "npm:^5.0.0" + glob-parent: "npm:^6.0.2" + globals: "npm:^13.19.0" + graphemer: "npm:^1.4.0" + ignore: "npm:^5.2.0" + import-fresh: "npm:^3.0.0" + imurmurhash: "npm:^0.1.4" + is-glob: "npm:^4.0.0" + is-path-inside: "npm:^3.0.3" + js-yaml: "npm:^4.1.0" + json-stable-stringify-without-jsonify: "npm:^1.0.1" + levn: "npm:^0.4.1" + lodash.merge: "npm:^4.6.2" + minimatch: "npm:^3.1.2" + natural-compare: "npm:^1.4.0" + optionator: "npm:^0.9.3" + strip-ansi: "npm:^6.0.1" + strip-json-comments: "npm:^3.1.0" + text-table: "npm:^0.2.0" + bin: + eslint: bin/eslint.js + checksum: a31ca4571a67012629936d891141a4a5747d5902fb7f4e10119a5acd632e0976b9ba1b761d8c81cff8a9cc3e796df2c56f86c02535fd977de962a98ce585624a + languageName: node + linkType: hard + +"espree@npm:^9.6.0": + version: 9.6.0 + resolution: "espree@npm:9.6.0" + dependencies: + acorn: "npm:^8.9.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^3.4.1" + checksum: f064a43bcf7f435d34e600c056320dde1c15b3eeb5da24e7585ed6cf83adcbbeafb4fa4d062ff14281b0d246b0a9645dd9d3796a638099f19595004eee4ac8be + languageName: node + linkType: hard + +"esprima@npm:^4.0.0, esprima@npm:^4.0.1": + version: 4.0.1 + resolution: "esprima@npm:4.0.1" + bin: + esparse: ./bin/esparse.js + esvalidate: ./bin/esvalidate.js + checksum: ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3 + languageName: node + linkType: hard + +"esquery@npm:^1.4.2": + version: 1.5.0 + resolution: "esquery@npm:1.5.0" + dependencies: + estraverse: "npm:^5.1.0" + checksum: a084bd049d954cc88ac69df30534043fb2aee5555b56246493f42f27d1e168f00d9e5d4192e46f10290d312dc30dc7d58994d61a609c579c1219d636996f9213 + languageName: node + linkType: hard + +"esrecurse@npm:^4.3.0": + version: 4.3.0 + resolution: "esrecurse@npm:4.3.0" + dependencies: + estraverse: "npm:^5.2.0" + checksum: 81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 + languageName: node + linkType: hard + +"estraverse@npm:^4.1.1, estraverse@npm:^4.2.0": + version: 4.3.0 + resolution: "estraverse@npm:4.3.0" + checksum: 9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d + languageName: node + linkType: hard + +"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": + version: 5.3.0 + resolution: "estraverse@npm:5.3.0" + checksum: 1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 + languageName: node + linkType: hard + +"estree-util-is-identifier-name@npm:^3.0.0": + version: 3.0.0 + resolution: "estree-util-is-identifier-name@npm:3.0.0" + checksum: d1881c6ed14bd588ebd508fc90bf2a541811dbb9ca04dec2f39d27dcaa635f85b5ed9bbbe7fc6fb1ddfca68744a5f7c70456b4b7108b6c4c52780631cc787c5b + languageName: node + linkType: hard + +"estree-walker@npm:^1.0.1": + version: 1.0.1 + resolution: "estree-walker@npm:1.0.1" + checksum: fa9e5f8c1bbe8d01e314c0f03067b64a4f22d4c58410fc5237060d0c15b81e58c23921c41acc60abbdab490f1fdfcbd6408ede2d03ca704454272e0244d61a55 + languageName: node + linkType: hard + +"estree-walker@npm:^2.0.2": + version: 2.0.2 + resolution: "estree-walker@npm:2.0.2" + checksum: 53a6c54e2019b8c914dc395890153ffdc2322781acf4bd7d1a32d7aedc1710807bdcd866ac133903d5629ec601fbb50abe8c2e5553c7f5a0afdd9b6af6c945af + languageName: node + linkType: hard + +"esutils@npm:^2.0.2": + version: 2.0.3 + resolution: "esutils@npm:2.0.3" + checksum: 9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 + languageName: node + linkType: hard + +"etag@npm:~1.8.1": + version: 1.8.1 + resolution: "etag@npm:1.8.1" + checksum: 12be11ef62fb9817314d790089a0a49fae4e1b50594135dcb8076312b7d7e470884b5100d249b28c18581b7fd52f8b485689ffae22a11ed9ec17377a33a08f84 + languageName: node + linkType: hard + +"eve-raphael@npm:0.5.0": + version: 0.5.0 + resolution: "eve-raphael@npm:0.5.0" + checksum: 59e85704181c63c38fc084f478e64bc92771c444391162b8407bf72a65bb5f1b8c7ba03364bfd28dae5b9bce0eb4c970758c66bd9f6d9411f035d138a7bf5518 + languageName: node + linkType: hard + +"eventemitter3@npm:^4.0.0": + version: 4.0.7 + resolution: "eventemitter3@npm:4.0.7" + checksum: 5f6d97cbcbac47be798e6355e3a7639a84ee1f7d9b199a07017f1d2f1e2fe236004d14fa5dfaeba661f94ea57805385e326236a6debbc7145c8877fbc0297c6b + languageName: node + linkType: hard + +"events@npm:^3.0.0, events@npm:^3.2.0": + version: 3.3.0 + resolution: "events@npm:3.3.0" + checksum: d6b6f2adbccbcda74ddbab52ed07db727ef52e31a61ed26db9feb7dc62af7fc8e060defa65e5f8af9449b86b52cc1a1f6a79f2eafcf4e62add2b7a1fa4a432f6 + languageName: node + linkType: hard + +"evp_bytestokey@npm:^1.0.0, evp_bytestokey@npm:^1.0.3": + version: 1.0.3 + resolution: "evp_bytestokey@npm:1.0.3" + dependencies: + md5.js: "npm:^1.3.4" + node-gyp: "npm:latest" + safe-buffer: "npm:^5.1.1" + checksum: 77fbe2d94a902a80e9b8f5a73dcd695d9c14899c5e82967a61b1fc6cbbb28c46552d9b127cff47c45fcf684748bdbcfa0a50410349109de87ceb4b199ef6ee99 + languageName: node + linkType: hard + +"execa@npm:^5.0.0, execa@npm:^5.1.1": + version: 5.1.1 + resolution: "execa@npm:5.1.1" + dependencies: + cross-spawn: "npm:^7.0.3" + get-stream: "npm:^6.0.0" + human-signals: "npm:^2.1.0" + is-stream: "npm:^2.0.0" + merge-stream: "npm:^2.0.0" + npm-run-path: "npm:^4.0.1" + onetime: "npm:^5.1.2" + signal-exit: "npm:^3.0.3" + strip-final-newline: "npm:^2.0.0" + checksum: c8e615235e8de4c5addf2fa4c3da3e3aa59ce975a3e83533b4f6a71750fb816a2e79610dc5f1799b6e28976c9ae86747a36a606655bf8cb414a74d8d507b304f + languageName: node + linkType: hard + +"exit@npm:^0.1.2": + version: 0.1.2 + resolution: "exit@npm:0.1.2" + checksum: 71d2ad9b36bc25bb8b104b17e830b40a08989be7f7d100b13269aaae7c3784c3e6e1e88a797e9e87523993a25ba27c8958959a554535370672cfb4d824af8989 + languageName: node + linkType: hard + +"expand-template@npm:^2.0.3": + version: 2.0.3 + resolution: "expand-template@npm:2.0.3" + checksum: 1c9e7afe9acadf9d373301d27f6a47b34e89b3391b1ef38b7471d381812537ef2457e620ae7f819d2642ce9c43b189b3583813ec395e2938319abe356a9b2f51 + languageName: node + linkType: hard + +"expect@npm:^27.5.1": + version: 27.5.1 + resolution: "expect@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + jest-get-type: "npm:^27.5.1" + jest-matcher-utils: "npm:^27.5.1" + jest-message-util: "npm:^27.5.1" + checksum: 020e237c7191a584bc25a98181c3969cdd62fa1c044e4d81d5968e24075f39bc2349fcee48de82431033823b525e7cf5ac410b253b3115392f1026cb27258811 + languageName: node + linkType: hard + +"expect@npm:^29.0.0": + version: 29.6.1 + resolution: "expect@npm:29.6.1" + dependencies: + "@jest/expect-utils": "npm:^29.6.1" + "@types/node": "npm:*" + jest-get-type: "npm:^29.4.3" + jest-matcher-utils: "npm:^29.6.1" + jest-message-util: "npm:^29.6.1" + jest-util: "npm:^29.6.1" + checksum: 8ffdd2c8c09d6d632ae85a1172a7e785e75f187ac0009330fa5bcb00e07a06d781b8016579952a1f0ef43e1604068fcdaade3029c8b5ffb99931f79bff57e778 + languageName: node + linkType: hard + +"exponential-backoff@npm:^3.1.1": + version: 3.1.1 + resolution: "exponential-backoff@npm:3.1.1" + checksum: 160456d2d647e6019640bd07111634d8c353038d9fa40176afb7cd49b0548bdae83b56d05e907c2cce2300b81cae35d800ef92fefb9d0208e190fa3b7d6bb579 + languageName: node + linkType: hard + +"express@npm:^4.17.3": + version: 4.18.2 + resolution: "express@npm:4.18.2" + dependencies: + accepts: "npm:~1.3.8" + array-flatten: "npm:1.1.1" + body-parser: "npm:1.20.1" + content-disposition: "npm:0.5.4" + content-type: "npm:~1.0.4" + cookie: "npm:0.5.0" + cookie-signature: "npm:1.0.6" + debug: "npm:2.6.9" + depd: "npm:2.0.0" + encodeurl: "npm:~1.0.2" + escape-html: "npm:~1.0.3" + etag: "npm:~1.8.1" + finalhandler: "npm:1.2.0" + fresh: "npm:0.5.2" + http-errors: "npm:2.0.0" + merge-descriptors: "npm:1.0.1" + methods: "npm:~1.1.2" + on-finished: "npm:2.4.1" + parseurl: "npm:~1.3.3" + path-to-regexp: "npm:0.1.7" + proxy-addr: "npm:~2.0.7" + qs: "npm:6.11.0" + range-parser: "npm:~1.2.1" + safe-buffer: "npm:5.2.1" + send: "npm:0.18.0" + serve-static: "npm:1.15.0" + setprototypeof: "npm:1.2.0" + statuses: "npm:2.0.1" + type-is: "npm:~1.6.18" + utils-merge: "npm:1.0.1" + vary: "npm:~1.1.2" + checksum: 75af556306b9241bc1d7bdd40c9744b516c38ce50ae3210658efcbf96e3aed4ab83b3432f06215eae5610c123bc4136957dc06e50dfc50b7d4d775af56c4c59c + languageName: node + linkType: hard + +"ext@npm:^1.1.2": + version: 1.7.0 + resolution: "ext@npm:1.7.0" + dependencies: + type: "npm:^2.7.2" + checksum: a8e5f34e12214e9eee3a4af3b5c9d05ba048f28996450975b369fc86e5d0ef13b6df0615f892f5396a9c65d616213c25ec5b0ad17ef42eac4a500512a19da6c7 + languageName: node + linkType: hard + +"extend@npm:^3.0.0": + version: 3.0.2 + resolution: "extend@npm:3.0.2" + checksum: 73bf6e27406e80aa3e85b0d1c4fd987261e628064e170ca781125c0b635a3dabad5e05adbf07595ea0cf1e6c5396cacb214af933da7cbaf24fe75ff14818e8f9 + languageName: node + linkType: hard + +"falafel@npm:^2.1.0": + version: 2.2.5 + resolution: "falafel@npm:2.2.5" + dependencies: + acorn: "npm:^7.1.1" + isarray: "npm:^2.0.1" + checksum: 8c65a82d6b1d84928373bd1f4ba7452bce2936b3761558d770163b637930db70a9f79f296caaf6b3c63262cb0c9501a727061ee75224fb7a5a9334dadd1ff787 + languageName: node + linkType: hard + +"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": + version: 3.1.3 + resolution: "fast-deep-equal@npm:3.1.3" + checksum: 40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 + languageName: node + linkType: hard + +"fast-glob@npm:^3.2.12, fast-glob@npm:^3.2.9": + version: 3.3.0 + resolution: "fast-glob@npm:3.3.0" + dependencies: + "@nodelib/fs.stat": "npm:^2.0.2" + "@nodelib/fs.walk": "npm:^1.2.3" + glob-parent: "npm:^5.1.2" + merge2: "npm:^1.3.0" + micromatch: "npm:^4.0.4" + checksum: 4700063a2d7c9aae178f575648580bee1fc3f02ab3f358236d77811f52332bc10a398e75c6d5ecde61216996f3308247b37d70e2ee605a0748abe147f01b8f64 + languageName: node + linkType: hard + +"fast-isnumeric@npm:^1.1.4": + version: 1.1.4 + resolution: "fast-isnumeric@npm:1.1.4" + dependencies: + is-string-blank: "npm:^1.0.1" + checksum: 595da81fcabe7bebd62429a4fcc5b150aa576a744209e769c9c8cd2a1f0d2db546ab71df9de6f50a41768fa2daf35171b8270a0c3aa25235022a10ebda7dcec8 + languageName: node + linkType: hard + +"fast-json-stable-stringify@npm:^2.0.0, fast-json-stable-stringify@npm:^2.1.0": + version: 2.1.0 + resolution: "fast-json-stable-stringify@npm:2.1.0" + checksum: 7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b + languageName: node + linkType: hard + +"fast-levenshtein@npm:^2.0.6, fast-levenshtein@npm:~2.0.6": + version: 2.0.6 + resolution: "fast-levenshtein@npm:2.0.6" + checksum: 111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4 + languageName: node + linkType: hard + +"fast-url-parser@npm:1.1.3": + version: 1.1.3 + resolution: "fast-url-parser@npm:1.1.3" + dependencies: + punycode: "npm:^1.3.2" + checksum: d85c5c409cf0215417380f98a2d29c23a95004d93ff0d8bdf1af5f1a9d1fc608ac89ac6ffe863783d2c73efb3850dd35390feb1de3296f49877bfee0392eb5d3 + languageName: node + linkType: hard + +"fastq@npm:^1.6.0": + version: 1.15.0 + resolution: "fastq@npm:1.15.0" + dependencies: + reusify: "npm:^1.0.4" + checksum: 5ce4f83afa5f88c9379e67906b4d31bc7694a30826d6cc8d0f0473c966929017fda65c2174b0ec89f064ede6ace6c67f8a4fe04cef42119b6a55b0d465554c24 + languageName: node + linkType: hard + +"faye-websocket@npm:^0.11.3": + version: 0.11.4 + resolution: "faye-websocket@npm:0.11.4" + dependencies: + websocket-driver: "npm:>=0.5.1" + checksum: c6052a0bb322778ce9f89af92890f6f4ce00d5ec92418a35e5f4c6864a4fe736fec0bcebd47eac7c0f0e979b01530746b1c85c83cb04bae789271abf19737420 + languageName: node + linkType: hard + +"fb-watchman@npm:^2.0.0": + version: 2.0.2 + resolution: "fb-watchman@npm:2.0.2" + dependencies: + bser: "npm:2.1.1" + checksum: feae89ac148adb8f6ae8ccd87632e62b13563e6fb114cacb5265c51f585b17e2e268084519fb2edd133872f1d47a18e6bfd7e5e08625c0d41b93149694187581 + languageName: node + linkType: hard + +"fbjs-css-vars@npm:^1.0.0": + version: 1.0.2 + resolution: "fbjs-css-vars@npm:1.0.2" + checksum: dfb64116b125a64abecca9e31477b5edb9a2332c5ffe74326fe36e0a72eef7fc8a49b86adf36c2c293078d79f4524f35e80f5e62546395f53fb7c9e69821f54f + languageName: node + linkType: hard + +"fbjs@npm:^2.0.0": + version: 2.0.0 + resolution: "fbjs@npm:2.0.0" + dependencies: + core-js: "npm:^3.6.4" + cross-fetch: "npm:^3.0.4" + fbjs-css-vars: "npm:^1.0.0" + loose-envify: "npm:^1.0.0" + object-assign: "npm:^4.1.0" + promise: "npm:^7.1.1" + setimmediate: "npm:^1.0.5" + ua-parser-js: "npm:^0.7.18" + checksum: 543544198ec6db0be64d0be80cc6386cdc015cf9b9fe3af54f2a861026fe75db1fae38fb6a7b2f1047d733f47ee68d11ecad6d0fbb67b200e56d265d967c4467 + languageName: node + linkType: hard + +"file-entry-cache@npm:^6.0.1": + version: 6.0.1 + resolution: "file-entry-cache@npm:6.0.1" + dependencies: + flat-cache: "npm:^3.0.4" + checksum: 58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd + languageName: node + linkType: hard + +"file-loader@npm:^6.2.0": + version: 6.2.0 + resolution: "file-loader@npm:6.2.0" + dependencies: + loader-utils: "npm:^2.0.0" + schema-utils: "npm:^3.0.0" + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + checksum: e176a57c2037ab0f78e5755dbf293a6b7f0f8392350a120bd03cc2ce2525bea017458ba28fea14ca535ff1848055e86d1a3a216bdb2561ef33395b27260a1dd3 + languageName: node + linkType: hard + +"file-saver@npm:^2.0.2": + version: 2.0.5 + resolution: "file-saver@npm:2.0.5" + checksum: 0a361f683786c34b2574aea53744cb70d0a6feb0fa5e3af00f2fcb6c9d40d3049cc1470e38c6c75df24219f247f6fb3076f86943958f580e62ee2ffe897af8b1 + languageName: node + linkType: hard + +"file-selector@npm:^0.4.0": + version: 0.4.0 + resolution: "file-selector@npm:0.4.0" + dependencies: + tslib: "npm:^2.0.3" + checksum: 2c55019ea5db84c0c27a5337028604d8a9fe9a53551eb20f4ad44541dfdfdda6bb576e950ac51d11fc3791247c9407734043a9c68a7fe473925631ffc03442e4 + languageName: node + linkType: hard + +"filelist@npm:^1.0.4": + version: 1.0.4 + resolution: "filelist@npm:1.0.4" + dependencies: + minimatch: "npm:^5.0.1" + checksum: 426b1de3944a3d153b053f1c0ebfd02dccd0308a4f9e832ad220707a6d1f1b3c9784d6cadf6b2f68f09a57565f63ebc7bcdc913ccf8012d834f472c46e596f41 + languageName: node + linkType: hard + +"filesize@npm:^8.0.6": + version: 8.0.7 + resolution: "filesize@npm:8.0.7" + checksum: 82072d94816484df5365d4d5acbb2327a65dc49704c64e403e8c40d8acb7364de1cf1e65cb512c77a15d353870f73e4fed46dad5c6153d0618d9ce7a64d09cfc + languageName: node + linkType: hard + +"fill-range@npm:^7.0.1": + version: 7.0.1 + resolution: "fill-range@npm:7.0.1" + dependencies: + to-regex-range: "npm:^5.0.1" + checksum: 7cdad7d426ffbaadf45aeb5d15ec675bbd77f7597ad5399e3d2766987ed20bda24d5fac64b3ee79d93276f5865608bb22344a26b9b1ae6c4d00bd94bf611623f + languageName: node + linkType: hard + +"finalhandler@npm:1.2.0": + version: 1.2.0 + resolution: "finalhandler@npm:1.2.0" + dependencies: + debug: "npm:2.6.9" + encodeurl: "npm:~1.0.2" + escape-html: "npm:~1.0.3" + on-finished: "npm:2.4.1" + parseurl: "npm:~1.3.3" + statuses: "npm:2.0.1" + unpipe: "npm:~1.0.0" + checksum: 64b7e5ff2ad1fcb14931cd012651631b721ce657da24aedb5650ddde9378bf8e95daa451da43398123f5de161a81e79ff5affe4f9f2a6d2df4a813d6d3e254b7 + languageName: node + linkType: hard + +"find-cache-dir@npm:^3.3.1": + version: 3.3.2 + resolution: "find-cache-dir@npm:3.3.2" + dependencies: + commondir: "npm:^1.0.1" + make-dir: "npm:^3.0.2" + pkg-dir: "npm:^4.1.0" + checksum: 92747cda42bff47a0266b06014610981cfbb71f55d60f2c8216bc3108c83d9745507fb0b14ecf6ab71112bed29cd6fb1a137ee7436179ea36e11287e3159e587 + languageName: node + linkType: hard + +"find-root@npm:^1.1.0": + version: 1.1.0 + resolution: "find-root@npm:1.1.0" + checksum: 1abc7f3bf2f8d78ff26d9e00ce9d0f7b32e5ff6d1da2857bcdf4746134c422282b091c672cde0572cac3840713487e0a7a636af9aa1b74cb11894b447a521efa + languageName: node + linkType: hard + +"find-up@npm:^3.0.0": + version: 3.0.0 + resolution: "find-up@npm:3.0.0" + dependencies: + locate-path: "npm:^3.0.0" + checksum: 2c2e7d0a26db858e2f624f39038c74739e38306dee42b45f404f770db357947be9d0d587f1cac72d20c114deb38aa57316e879eb0a78b17b46da7dab0a3bd6e3 + languageName: node + linkType: hard + +"find-up@npm:^4.0.0, find-up@npm:^4.1.0": + version: 4.1.0 + resolution: "find-up@npm:4.1.0" + dependencies: + locate-path: "npm:^5.0.0" + path-exists: "npm:^4.0.0" + checksum: 0406ee89ebeefa2d507feb07ec366bebd8a6167ae74aa4e34fb4c4abd06cf782a3ce26ae4194d70706f72182841733f00551c209fe575cb00bd92104056e78c1 + languageName: node + linkType: hard + +"find-up@npm:^5.0.0": + version: 5.0.0 + resolution: "find-up@npm:5.0.0" + dependencies: + locate-path: "npm:^6.0.0" + path-exists: "npm:^4.0.0" + checksum: 062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a + languageName: node + linkType: hard + +"flat-cache@npm:^3.0.4": + version: 3.0.4 + resolution: "flat-cache@npm:3.0.4" + dependencies: + flatted: "npm:^3.1.0" + rimraf: "npm:^3.0.2" + checksum: f274dcbadb09ad8d7b6edf2ee9b034bc40bf0c12638f6c4084e9f1d39208cb104a5ebbb24b398880ef048200eaa116852f73d2d8b72e8c9627aba8c3e27ca057 + languageName: node + linkType: hard + +"flatted@npm:^3.1.0": + version: 3.2.7 + resolution: "flatted@npm:3.2.7" + checksum: 207a87c7abfc1ea6928ea16bac84f9eaa6d44d365620ece419e5c41cf44a5e9902b4c1f59c9605771b10e4565a0cb46e99d78e0464e8aabb42c97de880642257 + languageName: node + linkType: hard + +"flatten-vertex-data@npm:^1.0.2": + version: 1.0.2 + resolution: "flatten-vertex-data@npm:1.0.2" + dependencies: + dtype: "npm:^2.0.0" + checksum: ef4e03483da4cc839f9f30f9ad419143ace7b9867fbfc55d87c62dfbd613ce99388628995f14580230292d38147c48e1b41cd4d574b2cd86ad63c6ca18e955bf + languageName: node + linkType: hard + +"follow-redirects@npm:^1.0.0": + version: 1.15.2 + resolution: "follow-redirects@npm:1.15.2" + peerDependenciesMeta: + debug: + optional: true + checksum: da5932b70e63944d38eecaa16954bac4347036f08303c913d166eda74809d8797d38386e3a0eb1d2fe37d2aaff2764cce8e9dbd99459d860cf2cdfa237923b5f + languageName: node + linkType: hard + +"font-atlas@npm:^2.1.0": + version: 2.1.0 + resolution: "font-atlas@npm:2.1.0" + dependencies: + css-font: "npm:^1.0.0" + checksum: b012db553a168de977fbdebd3bd36f29fc7686d2382198ec84c81e45f55356002736f05045ed35acebc6c1277688f4322f7c979e9a58a3aecf3cfb681eac5665 + languageName: node + linkType: hard + +"font-face-observer@npm:^1.0.0": + version: 1.0.0 + resolution: "font-face-observer@npm:1.0.0" + dependencies: + promise: "npm:^6.1.0" + checksum: 8b97697a462a83088ec2bcfca469ef7be1155d0d301a2a87af9888cce51b6bfdaaa1f7c267d9b67a890882313e27b5016d54794e59134d05aa210bb3e3cf8b98 + languageName: node + linkType: hard + +"font-measure@npm:^1.2.2": + version: 1.2.2 + resolution: "font-measure@npm:1.2.2" + dependencies: + css-font: "npm:^1.2.0" + checksum: 97c4590b91078cce928a6ba4b8762b5a3fb6eedf4ecf59aeccd93c0031f3a952360221622802ee41e737d720c8f385520d4467c650a7d682924085bc782af8d5 + languageName: node + linkType: hard + +"for-each@npm:^0.3.3": + version: 0.3.3 + resolution: "for-each@npm:0.3.3" + dependencies: + is-callable: "npm:^1.1.3" + checksum: 22330d8a2db728dbf003ec9182c2d421fbcd2969b02b4f97ec288721cda63eb28f2c08585ddccd0f77cb2930af8d958005c9e72f47141dc51816127a118f39aa + languageName: node + linkType: hard + +"foreground-child@npm:^3.1.0": + version: 3.1.1 + resolution: "foreground-child@npm:3.1.1" + dependencies: + cross-spawn: "npm:^7.0.0" + signal-exit: "npm:^4.0.1" + checksum: 9700a0285628abaeb37007c9a4d92bd49f67210f09067638774338e146c8e9c825c5c877f072b2f75f41dc6a2d0be8664f79ffc03f6576649f54a84fb9b47de0 + languageName: node + linkType: hard + +"fork-ts-checker-webpack-plugin@npm:^6.5.0": + version: 6.5.3 + resolution: "fork-ts-checker-webpack-plugin@npm:6.5.3" + dependencies: + "@babel/code-frame": "npm:^7.8.3" + "@types/json-schema": "npm:^7.0.5" + chalk: "npm:^4.1.0" + chokidar: "npm:^3.4.2" + cosmiconfig: "npm:^6.0.0" + deepmerge: "npm:^4.2.2" + fs-extra: "npm:^9.0.0" + glob: "npm:^7.1.6" + memfs: "npm:^3.1.2" + minimatch: "npm:^3.0.4" + schema-utils: "npm:2.7.0" + semver: "npm:^7.3.2" + tapable: "npm:^1.0.0" + peerDependencies: + eslint: ">= 6" + typescript: ">= 2.7" + vue-template-compiler: "*" + webpack: ">= 4" + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + checksum: 0885ea75474de011d4068ca3e2d3ca6e4cd318f5cfa018e28ff8fef23ef3a1f1c130160ef192d3e5d31ef7b6fe9f8fb1d920eab5e9e449fb30ce5cc96647245c + languageName: node + linkType: hard + +"form-data@npm:^3.0.0": + version: 3.0.1 + resolution: "form-data@npm:3.0.1" + dependencies: + asynckit: "npm:^0.4.0" + combined-stream: "npm:^1.0.8" + mime-types: "npm:^2.1.12" + checksum: 1ccc3ae064a080a799923f754d49fcebdd90515a8924f0f54de557540b50e7f1fe48ba5f2bd0435a5664aa2d49729107e6aaf2155a9abf52339474c5638b4485 + languageName: node + linkType: hard + +"forwarded@npm:0.2.0": + version: 0.2.0 + resolution: "forwarded@npm:0.2.0" + checksum: 9b67c3fac86acdbc9ae47ba1ddd5f2f81526fa4c8226863ede5600a3f7c7416ef451f6f1e240a3cc32d0fd79fcfe6beb08fd0da454f360032bde70bf80afbb33 + languageName: node + linkType: hard + +"fraction.js@npm:^4.2.0": + version: 4.2.0 + resolution: "fraction.js@npm:4.2.0" + checksum: b16c0a6a7f045b3416c1afbb174b7afca73bd7eb0c62598a0c734a8b1f888cb375684174daf170abfba314da9f366b7d6445e396359d5fae640883bdb2ed18cb + languageName: node + linkType: hard + +"fresh@npm:0.5.2": + version: 0.5.2 + resolution: "fresh@npm:0.5.2" + checksum: c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a + languageName: node + linkType: hard + +"from2@npm:^2.3.0": + version: 2.3.0 + resolution: "from2@npm:2.3.0" + dependencies: + inherits: "npm:^2.0.1" + readable-stream: "npm:^2.0.0" + checksum: f87f7a2e4513244d551454a7f8324ef1f7837864a8701c536417286ec19ff4915606b1dfa8909a21b7591ebd8440ffde3642f7c303690b9a4d7c832d62248aa1 + languageName: node + linkType: hard + +"frontend@workspace:.": + version: 0.0.0-use.local + resolution: "frontend@workspace:." + dependencies: + "@emotion/react": "npm:^11.10.4" + "@emotion/styled": "npm:^11.10.4" + "@mui/icons-material": "npm:^5.10.3" + "@mui/material": "npm:^5.10.5" + "@mui/x-data-grid": "npm:^6.5.0" + "@testing-library/jest-dom": "npm:^5.14.1" + "@testing-library/react": "npm:^13.0.0" + "@testing-library/user-event": "npm:^13.2.1" + "@vitejs/plugin-react": "npm:^4.0.2" + cors: "npm:^2.8.5" + dompurify: "npm:^3.0.8" + ketcher-core: "npm:^2.8.0" + ketcher-react: "npm:^2.10.0" + ketcher-standalone: "npm:^2.8.0" + miew: "npm:^0.10.1" + ngl: "npm:^2.1.1" + plotly.js: "npm:^2.14.0" + react: "npm:^18.2.0" + react-dom: "npm:^18.2.0" + react-markdown: "npm:^9.0.1" + react-plotly.js: "npm:^2.6.0" + react-router-dom: "npm:^6.4.1" + react-scripts: "npm:^5.0.1" + rehype-raw: "npm:^7.0.0" + remark-gfm: "npm:^4.0.0" + serve: "npm:^14.2.0" + vite: "npm:^4.4.2" + vite-plugin-node-polyfills: "npm:^0.9.0" + vite-plugin-svgr: "npm:^3.2.0" + vite-tsconfig-paths: "npm:^4.2.0" + web-vitals: "npm:^2.1.0" + languageName: unknown + linkType: soft + +"fs-constants@npm:^1.0.0": + version: 1.0.0 + resolution: "fs-constants@npm:1.0.0" + checksum: a0cde99085f0872f4d244e83e03a46aa387b74f5a5af750896c6b05e9077fac00e9932fdf5aef84f2f16634cd473c63037d7a512576da7d5c2b9163d1909f3a8 + languageName: node + linkType: hard + +"fs-extra@npm:^10.0.0": + version: 10.1.0 + resolution: "fs-extra@npm:10.1.0" + dependencies: + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^6.0.1" + universalify: "npm:^2.0.0" + checksum: 5f579466e7109719d162a9249abbeffe7f426eb133ea486e020b89bc6d67a741134076bf439983f2eb79276ceaf6bd7b7c1e43c3fd67fe889863e69072fb0a5e + languageName: node + linkType: hard + +"fs-extra@npm:^8.1.0": + version: 8.1.0 + resolution: "fs-extra@npm:8.1.0" + dependencies: + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^4.0.0" + universalify: "npm:^0.1.0" + checksum: 259f7b814d9e50d686899550c4f9ded85c46c643f7fe19be69504888e007fcbc08f306fae8ec495b8b998635e997c9e3e175ff2eeed230524ef1c1684cc96423 + languageName: node + linkType: hard + +"fs-extra@npm:^9.0.0, fs-extra@npm:^9.0.1": + version: 9.1.0 + resolution: "fs-extra@npm:9.1.0" + dependencies: + at-least-node: "npm:^1.0.0" + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^6.0.1" + universalify: "npm:^2.0.0" + checksum: 9b808bd884beff5cb940773018179a6b94a966381d005479f00adda6b44e5e3d4abf765135773d849cc27efe68c349e4a7b86acd7d3306d5932c14f3a4b17a92 + languageName: node + linkType: hard + +"fs-minipass@npm:^2.0.0": + version: 2.1.0 + resolution: "fs-minipass@npm:2.1.0" + dependencies: + minipass: "npm:^3.0.0" + checksum: 703d16522b8282d7299337539c3ed6edddd1afe82435e4f5b76e34a79cd74e488a8a0e26a636afc2440e1a23b03878e2122e3a2cfe375a5cf63c37d92b86a004 + languageName: node + linkType: hard + +"fs-minipass@npm:^3.0.0": + version: 3.0.3 + resolution: "fs-minipass@npm:3.0.3" + dependencies: + minipass: "npm:^7.0.3" + checksum: 63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 + languageName: node + linkType: hard + +"fs-monkey@npm:^1.0.4": + version: 1.0.4 + resolution: "fs-monkey@npm:1.0.4" + checksum: eeb2457ec50f7202c44273de2a42b50868c8e6b2ab4825d517947143d4e727c028e24f6d0f46e6f3e7a149a1c9e7d8b3ca28243c3b10366d280a08016483e829 + languageName: node + linkType: hard + +"fs.realpath@npm:^1.0.0": + version: 1.0.0 + resolution: "fs.realpath@npm:1.0.0" + checksum: 444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948 + languageName: node + linkType: hard + +"fsevents@npm:^2.3.2, fsevents@npm:~2.3.2": + version: 2.3.2 + resolution: "fsevents@npm:2.3.2" + dependencies: + node-gyp: "npm:latest" + checksum: be78a3efa3e181cda3cf7a4637cb527bcebb0bd0ea0440105a3bb45b86f9245b307dc10a2507e8f4498a7d4ec349d1910f4d73e4d4495b16103106e07eee735b + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin": + version: 2.3.2 + resolution: "fsevents@patch:fsevents@npm%3A2.3.2#optional!builtin::version=2.3.2&hash=df0bf1" + dependencies: + node-gyp: "npm:latest" + conditions: os=darwin + languageName: node + linkType: hard + +"function-bind@npm:^1.1.1": + version: 1.1.1 + resolution: "function-bind@npm:1.1.1" + checksum: 60b74b2407e1942e1ed7f8c284f8ef714d0689dcfce5319985a5b7da3fc727f40b4a59ec72dc55aa83365ad7b8fa4fac3a30d93c850a2b452f29ae03dbc10a1e + languageName: node + linkType: hard + +"function.prototype.name@npm:^1.1.5": + version: 1.1.5 + resolution: "function.prototype.name@npm:1.1.5" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.3" + es-abstract: "npm:^1.19.0" + functions-have-names: "npm:^1.2.2" + checksum: b75fb8c5261f03a54f7cb53a8c99e0c40297efc3cf750c51d3a2e56f6741701c14eda51986d30c24063136a4c32d1643df9d1dd2f2a14b64fa011edd3e7117ae + languageName: node + linkType: hard + +"functions-have-names@npm:^1.2.2, functions-have-names@npm:^1.2.3": + version: 1.2.3 + resolution: "functions-have-names@npm:1.2.3" + checksum: 33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca + languageName: node + linkType: hard + +"gensync@npm:^1.0.0-beta.2": + version: 1.0.0-beta.2 + resolution: "gensync@npm:1.0.0-beta.2" + checksum: 782aba6cba65b1bb5af3b095d96249d20edbe8df32dbf4696fd49be2583faf676173bf4809386588828e4dd76a3354fcbeb577bab1c833ccd9fc4577f26103f8 + languageName: node + linkType: hard + +"geojson-vt@npm:^3.2.1": + version: 3.2.1 + resolution: "geojson-vt@npm:3.2.1" + checksum: db2fc1a452067ee8436fa86e5a138f6ebd3d64893e0af097bc1cc960ec63d67c0ce77444711e9583036192d6bf9ce754bf9b56a76789684fc0fea4d52321fffc + languageName: node + linkType: hard + +"get-caller-file@npm:^2.0.1, get-caller-file@npm:^2.0.5": + version: 2.0.5 + resolution: "get-caller-file@npm:2.0.5" + checksum: c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde + languageName: node + linkType: hard + +"get-canvas-context@npm:^1.0.1": + version: 1.0.2 + resolution: "get-canvas-context@npm:1.0.2" + checksum: bfb1eefb3ecce1ffcc7b5bffd729c5b7c9873e8cd52ac1f9c3592a11d08e4ffae296a2dfb69039df91a687233b4e989729e888754ab7a1d10d14b269caea463b + languageName: node + linkType: hard + +"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0": + version: 1.2.1 + resolution: "get-intrinsic@npm:1.2.1" + dependencies: + function-bind: "npm:^1.1.1" + has: "npm:^1.0.3" + has-proto: "npm:^1.0.1" + has-symbols: "npm:^1.0.3" + checksum: 49eab47f9de8f1a4f9b458b8b74ee5199fb2614414a91973eb175e07db56b52b6df49b255cc7ff704cb0786490fb93bfe8f2ad138b590a8de09b47116a366bc9 + languageName: node + linkType: hard + +"get-own-enumerable-property-symbols@npm:^3.0.0": + version: 3.0.2 + resolution: "get-own-enumerable-property-symbols@npm:3.0.2" + checksum: 103999855f3d1718c631472437161d76962cbddcd95cc642a34c07bfb661ed41b6c09a9c669ccdff89ee965beb7126b80eec7b2101e20e31e9cc6c4725305e10 + languageName: node + linkType: hard + +"get-package-type@npm:^0.1.0": + version: 0.1.0 + resolution: "get-package-type@npm:0.1.0" + checksum: e34cdf447fdf1902a1f6d5af737eaadf606d2ee3518287abde8910e04159368c268568174b2e71102b87b26c2020486f126bfca9c4fb1ceb986ff99b52ecd1be + languageName: node + linkType: hard + +"get-stream@npm:^6.0.0, get-stream@npm:^6.0.1": + version: 6.0.1 + resolution: "get-stream@npm:6.0.1" + checksum: 49825d57d3fd6964228e6200a58169464b8e8970489b3acdc24906c782fb7f01f9f56f8e6653c4a50713771d6658f7cfe051e5eb8c12e334138c9c918b296341 + languageName: node + linkType: hard + +"get-symbol-description@npm:^1.0.0": + version: 1.0.0 + resolution: "get-symbol-description@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.1.1" + checksum: 23bc3b44c221cdf7669a88230c62f4b9e30393b61eb21ba4400cb3e346801bd8f95fe4330ee78dbae37aecd874646d53e3e76a17a654d0c84c77f6690526d6bb + languageName: node + linkType: hard + +"github-from-package@npm:0.0.0": + version: 0.0.0 + resolution: "github-from-package@npm:0.0.0" + checksum: 737ee3f52d0a27e26332cde85b533c21fcdc0b09fb716c3f8e522cfaa9c600d4a631dec9fcde179ec9d47cca89017b7848ed4d6ae6b6b78f936c06825b1fcc12 + languageName: node + linkType: hard + +"gl-mat4@npm:^1.2.0": + version: 1.2.0 + resolution: "gl-mat4@npm:1.2.0" + checksum: 0cbff006c65bf2b72fae325a10f9940ebf8d1f4c92337efb10c0322a61e03a1921ec5a8f330738fe06fe66f8757e12df0c914fd05155436b9ab5263ccc8b0f66 + languageName: node + linkType: hard + +"gl-matrix@npm:^3.2.1": + version: 3.4.3 + resolution: "gl-matrix@npm:3.4.3" + checksum: c8ee6e2ce2d089b4ba4ae13ec9d4cb99bf2abe5f68f0cb08d94bbd8bafbec13aacc7230b86539ce5ca01b79226ea8c3194f971f5ca0c81838bc5e4e619dc398e + languageName: node + linkType: hard + +"gl-text@npm:^1.3.1": + version: 1.3.1 + resolution: "gl-text@npm:1.3.1" + dependencies: + bit-twiddle: "npm:^1.0.2" + color-normalize: "npm:^1.5.0" + css-font: "npm:^1.2.0" + detect-kerning: "npm:^2.1.2" + es6-weak-map: "npm:^2.0.3" + flatten-vertex-data: "npm:^1.0.2" + font-atlas: "npm:^2.1.0" + font-measure: "npm:^1.2.2" + gl-util: "npm:^3.1.2" + is-plain-obj: "npm:^1.1.0" + object-assign: "npm:^4.1.1" + parse-rect: "npm:^1.2.0" + parse-unit: "npm:^1.0.1" + pick-by-alias: "npm:^1.2.0" + regl: "npm:^2.0.0" + to-px: "npm:^1.0.1" + typedarray-pool: "npm:^1.1.0" + checksum: 2bffa1cf6264d6211b7dcc8da7016850d985b4d46d8bba1f38edbdbf379b5f150610ff9449ef9561c274d07f34659bd66ab8dc2e3470c2e59a697cc29a6acc9b + languageName: node + linkType: hard + +"gl-util@npm:^3.1.2": + version: 3.1.3 + resolution: "gl-util@npm:3.1.3" + dependencies: + is-browser: "npm:^2.0.1" + is-firefox: "npm:^1.0.3" + is-plain-obj: "npm:^1.1.0" + number-is-integer: "npm:^1.0.1" + object-assign: "npm:^4.1.0" + pick-by-alias: "npm:^1.2.0" + weak-map: "npm:^1.0.5" + checksum: 4cff7edbf447d5d6e2260769a46dd9037f631fb6413d0de609d6efe7519b683d3f022f03ee5031079bdf11f276bd2c17c130baffe69a73162fe5f44c88a19d77 + languageName: node + linkType: hard + +"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2": + version: 5.1.2 + resolution: "glob-parent@npm:5.1.2" + dependencies: + is-glob: "npm:^4.0.1" + checksum: cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee + languageName: node + linkType: hard + +"glob-parent@npm:^6.0.2": + version: 6.0.2 + resolution: "glob-parent@npm:6.0.2" + dependencies: + is-glob: "npm:^4.0.3" + checksum: 317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8 + languageName: node + linkType: hard + +"glob-to-regexp@npm:^0.4.1": + version: 0.4.1 + resolution: "glob-to-regexp@npm:0.4.1" + checksum: 0486925072d7a916f052842772b61c3e86247f0a80cc0deb9b5a3e8a1a9faad5b04fb6f58986a09f34d3e96cd2a22a24b7e9882fb1cf904c31e9a310de96c429 + languageName: node + linkType: hard + +"glob@npm:7.1.6": + version: 7.1.6 + resolution: "glob@npm:7.1.6" + dependencies: + fs.realpath: "npm:^1.0.0" + inflight: "npm:^1.0.4" + inherits: "npm:2" + minimatch: "npm:^3.0.4" + once: "npm:^1.3.0" + path-is-absolute: "npm:^1.0.0" + checksum: 2575cce9306ac534388db751f0aa3e78afedb6af8f3b529ac6b2354f66765545145dba8530abf7bff49fb399a047d3f9b6901c38ee4c9503f592960d9af67763 + languageName: node + linkType: hard + +"glob@npm:^10.2.2, glob@npm:^10.3.10": + version: 10.3.10 + resolution: "glob@npm:10.3.10" + dependencies: + foreground-child: "npm:^3.1.0" + jackspeak: "npm:^2.3.5" + minimatch: "npm:^9.0.1" + minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry: "npm:^1.10.1" + bin: + glob: dist/esm/bin.mjs + checksum: 13d8a1feb7eac7945f8c8480e11cd4a44b24d26503d99a8d8ac8d5aefbf3e9802a2b6087318a829fad04cb4e829f25c5f4f1110c68966c498720dd261c7e344d + languageName: node + linkType: hard + +"glob@npm:^7.1.1, glob@npm:^7.1.2, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6": + version: 7.2.3 + resolution: "glob@npm:7.2.3" + dependencies: + fs.realpath: "npm:^1.0.0" + inflight: "npm:^1.0.4" + inherits: "npm:2" + minimatch: "npm:^3.1.1" + once: "npm:^1.3.0" + path-is-absolute: "npm:^1.0.0" + checksum: 65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe + languageName: node + linkType: hard + +"global-modules@npm:^2.0.0": + version: 2.0.0 + resolution: "global-modules@npm:2.0.0" + dependencies: + global-prefix: "npm:^3.0.0" + checksum: 43b770fe24aa6028f4b9770ea583a47f39750be15cf6e2578f851e4ccc9e4fa674b8541928c0b09c21461ca0763f0d36e4068cec86c914b07fd6e388e66ba5b9 + languageName: node + linkType: hard + +"global-prefix@npm:^3.0.0": + version: 3.0.0 + resolution: "global-prefix@npm:3.0.0" + dependencies: + ini: "npm:^1.3.5" + kind-of: "npm:^6.0.2" + which: "npm:^1.3.1" + checksum: 510f489fb68d1cc7060f276541709a0ee6d41356ef852de48f7906c648ac223082a1cc8fce86725ca6c0e032bcdc1189ae77b4744a624b29c34a9d0ece498269 + languageName: node + linkType: hard + +"globals@npm:^11.1.0": + version: 11.12.0 + resolution: "globals@npm:11.12.0" + checksum: 758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 + languageName: node + linkType: hard + +"globals@npm:^13.19.0": + version: 13.20.0 + resolution: "globals@npm:13.20.0" + dependencies: + type-fest: "npm:^0.20.2" + checksum: 9a028f136f1e7a3574689f430f7d57faa0d699c4c7e92ade00b02882a892be31c314d50dff07b48e607283013117bb8a997406d03a1f7ab4a33a005eb16efd6c + languageName: node + linkType: hard + +"globalthis@npm:^1.0.3": + version: 1.0.3 + resolution: "globalthis@npm:1.0.3" + dependencies: + define-properties: "npm:^1.1.3" + checksum: 0db6e9af102a5254630351557ac15e6909bc7459d3e3f6b001e59fe784c96d31108818f032d9095739355a88467459e6488ff16584ee6250cd8c27dec05af4b0 + languageName: node + linkType: hard + +"globby@npm:^11.0.4, globby@npm:^11.1.0": + version: 11.1.0 + resolution: "globby@npm:11.1.0" + dependencies: + array-union: "npm:^2.1.0" + dir-glob: "npm:^3.0.1" + fast-glob: "npm:^3.2.9" + ignore: "npm:^5.2.0" + merge2: "npm:^1.4.1" + slash: "npm:^3.0.0" + checksum: b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189 + languageName: node + linkType: hard + +"globrex@npm:^0.1.2": + version: 0.1.2 + resolution: "globrex@npm:0.1.2" + checksum: a54c029520cf58bda1d8884f72bd49b4cd74e977883268d931fd83bcbd1a9eb96d57c7dbd4ad80148fb9247467ebfb9b215630b2ed7563b2a8de02e1ff7f89d1 + languageName: node + linkType: hard + +"glsl-inject-defines@npm:^1.0.1": + version: 1.0.3 + resolution: "glsl-inject-defines@npm:1.0.3" + dependencies: + glsl-token-inject-block: "npm:^1.0.0" + glsl-token-string: "npm:^1.0.1" + glsl-tokenizer: "npm:^2.0.2" + checksum: a91217705737773ec33123627c679992b085ca810c3b02943834801d8cbbaa892c4a8ae6d44047685fdd0d6c871accca2c64e68c998c10e236c27ea1d5af8fb3 + languageName: node + linkType: hard + +"glsl-resolve@npm:0.0.1": + version: 0.0.1 + resolution: "glsl-resolve@npm:0.0.1" + dependencies: + resolve: "npm:^0.6.1" + xtend: "npm:^2.1.2" + checksum: 2ae3220dc55af84bd21e4014c4cb0118381221d13419750fd0651e08c1a69d5b0c14c7b3c4362594ab8dcd3a0ae103d206c465b67304e2774ad7e5a7ef382655 + languageName: node + linkType: hard + +"glsl-token-assignments@npm:^2.0.0": + version: 2.0.2 + resolution: "glsl-token-assignments@npm:2.0.2" + checksum: da50a255b2c8ced68154a6451e1bb4b9c898399e7751c2084a8f942fd96596701b2281976dec974187c27b5b17ec18affe5fd74ecc4a2e119b427fa07593a4e9 + languageName: node + linkType: hard + +"glsl-token-defines@npm:^1.0.0": + version: 1.0.0 + resolution: "glsl-token-defines@npm:1.0.0" + dependencies: + glsl-tokenizer: "npm:^2.0.0" + checksum: a1282c01186ea93a6a398c0af74f8857e82ead6e2d7201353edb88a6e7fd5852a575cc49a5d0e7cf116ca346c32569bb64419a8697cf9be878f5d070ca07bd60 + languageName: node + linkType: hard + +"glsl-token-depth@npm:^1.1.0, glsl-token-depth@npm:^1.1.1": + version: 1.1.2 + resolution: "glsl-token-depth@npm:1.1.2" + checksum: e9a476fee487080c2247bb5edde34ee15d027dfe66802ec1cb501d5a0a99964faaa06f2643e575089acd931a917735d3d10045743f0c3e5f1c482de94cb9bd6c + languageName: node + linkType: hard + +"glsl-token-descope@npm:^1.0.2": + version: 1.0.2 + resolution: "glsl-token-descope@npm:1.0.2" + dependencies: + glsl-token-assignments: "npm:^2.0.0" + glsl-token-depth: "npm:^1.1.0" + glsl-token-properties: "npm:^1.0.0" + glsl-token-scope: "npm:^1.1.0" + checksum: 7018b13194d5cec87d97c3ce0dd64c554fd9d6b547854bc1789dad407c079b5d53445649d930b18c9a1eb8704666c37821ccc796b865fc751ff66c7e5cf04413 + languageName: node + linkType: hard + +"glsl-token-inject-block@npm:^1.0.0": + version: 1.1.0 + resolution: "glsl-token-inject-block@npm:1.1.0" + checksum: d5ed326f2b8e016997e201316bca7f02bf38cc75e5b6a965819e0819d67aadd1b5c5f236acacabb125e2c3383b5a9f096ad9aed3fb469bbc5014bc7990797641 + languageName: node + linkType: hard + +"glsl-token-properties@npm:^1.0.0": + version: 1.0.1 + resolution: "glsl-token-properties@npm:1.0.1" + checksum: fa63c248648861bb1fde5d49cb000f930c8a3864c02cdc2f7d62ff669a4fdb1458f3ea4fceac993a94440d8a4883395698d225e8d7b18c01a42bf95c997667d4 + languageName: node + linkType: hard + +"glsl-token-scope@npm:^1.1.0, glsl-token-scope@npm:^1.1.1": + version: 1.1.2 + resolution: "glsl-token-scope@npm:1.1.2" + checksum: 5b5dd2cb78d63ec7c52d3134aabcdf3a0d0e7b1f3d42f6a45169485ff3b31ecba0ec374ceb59a6ebb16e0d5e3b24b2e247faa7bda4e7c56faea02c44110e0ef4 + languageName: node + linkType: hard + +"glsl-token-string@npm:^1.0.1": + version: 1.0.1 + resolution: "glsl-token-string@npm:1.0.1" + checksum: 01ff4fbfa02956d5b10e96f98ab1066937993b2ff9a2c24d23bf72fd417b59d9849cd856815c84d6170d3715bd064c4fbd1cff540a0e315c1fa9b20f2f3306e6 + languageName: node + linkType: hard + +"glsl-token-whitespace-trim@npm:^1.0.0": + version: 1.0.0 + resolution: "glsl-token-whitespace-trim@npm:1.0.0" + checksum: 319dd8ff0db0c0109914711845e9fd3eda403ad53c9d499ea5a83167b277390186669242b2d1ca791efa7334ffc7fac58fe2d5172859cd79e51e12df909e5416 + languageName: node + linkType: hard + +"glsl-tokenizer@npm:^2.0.0, glsl-tokenizer@npm:^2.0.2": + version: 2.1.5 + resolution: "glsl-tokenizer@npm:2.1.5" + dependencies: + through2: "npm:^0.6.3" + checksum: 5bcc4491afb0b09032702af83f0afa8acadfa0f5c94a7a0d7c3498396cc35722e1915c976c8efef80a1a9ef0976ecb8ce4e044a34b16d7d537ae4c80f346ad19 + languageName: node + linkType: hard + +"glslify-bundle@npm:^5.0.0": + version: 5.1.1 + resolution: "glslify-bundle@npm:5.1.1" + dependencies: + glsl-inject-defines: "npm:^1.0.1" + glsl-token-defines: "npm:^1.0.0" + glsl-token-depth: "npm:^1.1.1" + glsl-token-descope: "npm:^1.0.2" + glsl-token-scope: "npm:^1.1.1" + glsl-token-string: "npm:^1.0.1" + glsl-token-whitespace-trim: "npm:^1.0.0" + glsl-tokenizer: "npm:^2.0.2" + murmurhash-js: "npm:^1.0.0" + shallow-copy: "npm:0.0.1" + checksum: a3e79b5cd1f7aec444d29b855612ed6884a23b28bdc1656e180cdbc04ab0aad5e5f77a1c776bed335d4e9a0c781fd39295f045fa6c34e358fe7ccbe3606e8d8d + languageName: node + linkType: hard + +"glslify-deps@npm:^1.2.5": + version: 1.3.2 + resolution: "glslify-deps@npm:1.3.2" + dependencies: + "@choojs/findup": "npm:^0.2.0" + events: "npm:^3.2.0" + glsl-resolve: "npm:0.0.1" + glsl-tokenizer: "npm:^2.0.0" + graceful-fs: "npm:^4.1.2" + inherits: "npm:^2.0.1" + map-limit: "npm:0.0.1" + resolve: "npm:^1.0.0" + checksum: d89d9ca0bcccb1eb0c2f31d21a0fad9592df5faa30fa63416064cfc4776a3ea38c9e0da2425d2ac5a5a5625012baac95a0bd056e3a525bbf1d149894c140b00f + languageName: node + linkType: hard + +"glslify@npm:^7.0.0, glslify@npm:^7.1.1": + version: 7.1.1 + resolution: "glslify@npm:7.1.1" + dependencies: + bl: "npm:^2.2.1" + concat-stream: "npm:^1.5.2" + duplexify: "npm:^3.4.5" + falafel: "npm:^2.1.0" + from2: "npm:^2.3.0" + glsl-resolve: "npm:0.0.1" + glsl-token-whitespace-trim: "npm:^1.0.0" + glslify-bundle: "npm:^5.0.0" + glslify-deps: "npm:^1.2.5" + minimist: "npm:^1.2.5" + resolve: "npm:^1.1.5" + stack-trace: "npm:0.0.9" + static-eval: "npm:^2.0.5" + through2: "npm:^2.0.1" + xtend: "npm:^4.0.0" + bin: + glslify: bin.js + checksum: ccf277220047752ee9ddfb8e1398846a747ca8eb6601a71c4e34278b2e15845affbb52d4ef0023cb21bb0f52785b585c5af9189cc2f0abfca1ffab15c1b3f6f6 + languageName: node + linkType: hard + +"gopd@npm:^1.0.1": + version: 1.0.1 + resolution: "gopd@npm:1.0.1" + dependencies: + get-intrinsic: "npm:^1.1.3" + checksum: 505c05487f7944c552cee72087bf1567debb470d4355b1335f2c262d218ebbff805cd3715448fe29b4b380bae6912561d0467233e4165830efd28da241418c63 + languageName: node + linkType: hard + +"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: 386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 + languageName: node + linkType: hard + +"graphemer@npm:^1.4.0": + version: 1.4.0 + resolution: "graphemer@npm:1.4.0" + checksum: e951259d8cd2e0d196c72ec711add7115d42eb9a8146c8eeda5b8d3ac91e5dd816b9cd68920726d9fd4490368e7ed86e9c423f40db87e2d8dfafa00fa17c3a31 + languageName: node + linkType: hard + +"grid-index@npm:^1.1.0": + version: 1.1.0 + resolution: "grid-index@npm:1.1.0" + checksum: 0ba2a622a52badc86642a002abee79b48c207092347e869528253e634573b9b55494db649fbd1779122d797aaa3b59e284023a96a7a5c666c7375f0e320f8f57 + languageName: node + linkType: hard + +"gzip-size@npm:^6.0.0": + version: 6.0.0 + resolution: "gzip-size@npm:6.0.0" + dependencies: + duplexer: "npm:^0.1.2" + checksum: 4ccb924626c82125897a997d1c84f2377846a6ef57fbee38f7c0e6b41387fba4d00422274440747b58008b5d60114bac2349c2908e9aba55188345281af40a3f + languageName: node + linkType: hard + +"handle-thing@npm:^2.0.0": + version: 2.0.1 + resolution: "handle-thing@npm:2.0.1" + checksum: 7ae34ba286a3434f1993ebd1cc9c9e6b6d8ea672182db28b1afc0a7119229552fa7031e3e5f3cd32a76430ece4e94b7da6f12af2eb39d6239a7693e4bd63a998 + languageName: node + linkType: hard + +"harmony-reflect@npm:^1.4.6": + version: 1.6.2 + resolution: "harmony-reflect@npm:1.6.2" + checksum: fa5b251fbeff0e2d925f0bfb5ffe39e0627639e998c453562d6a39e41789c15499649dc022178c807cf99bfb97e7b974bbbc031ba82078a26be7b098b9bc2b1a + languageName: node + linkType: hard + +"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": + version: 1.0.2 + resolution: "has-bigints@npm:1.0.2" + checksum: 724eb1485bfa3cdff6f18d95130aa190561f00b3fcf9f19dc640baf8176b5917c143b81ec2123f8cddb6c05164a198c94b13e1377c497705ccc8e1a80306e83b + languageName: node + linkType: hard + +"has-flag@npm:^3.0.0": + version: 3.0.0 + resolution: "has-flag@npm:3.0.0" + checksum: 1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473 + languageName: node + linkType: hard + +"has-flag@npm:^4.0.0": + version: 4.0.0 + resolution: "has-flag@npm:4.0.0" + checksum: 2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 + languageName: node + linkType: hard + +"has-hover@npm:^1.0.1": + version: 1.0.1 + resolution: "has-hover@npm:1.0.1" + dependencies: + is-browser: "npm:^2.0.1" + checksum: c3abd4be00fc20b3e3ff84def23330174b13c46c76831b712444806421f2d9ac1d7d46c5e94bb207ea893a7b765ce0d5b92b3e1d741fc83d182bdd8e678b4d70 + languageName: node + linkType: hard + +"has-passive-events@npm:^1.0.0": + version: 1.0.0 + resolution: "has-passive-events@npm:1.0.0" + dependencies: + is-browser: "npm:^2.0.1" + checksum: 438e63c0c66274559bc74b2b4f8c1e93e8779caceee27141b59c87b984765b39d5fc5cf0f709a5ecc915cdc1138cf3d206daeece15fcfb41ec1c721ddbae05fc + languageName: node + linkType: hard + +"has-property-descriptors@npm:^1.0.0": + version: 1.0.0 + resolution: "has-property-descriptors@npm:1.0.0" + dependencies: + get-intrinsic: "npm:^1.1.1" + checksum: d4ca882b6960d6257bd28baa3ddfa21f068d260411004a093b30ca357c740e11e985771c85216a6d1eef4161e862657f48c4758ec8ab515223b3895200ad164b + languageName: node + linkType: hard + +"has-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "has-proto@npm:1.0.1" + checksum: c8a8fe411f810b23a564bd5546a8f3f0fff6f1b692740eb7a2fdc9df716ef870040806891e2f23ff4653f1083e3895bf12088703dd1a0eac3d9202d3a4768cd0 + languageName: node + linkType: hard + +"has-symbols@npm:^1.0.1, has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": + version: 1.0.3 + resolution: "has-symbols@npm:1.0.3" + checksum: e6922b4345a3f37069cdfe8600febbca791c94988c01af3394d86ca3360b4b93928bbf395859158f88099cb10b19d98e3bbab7c9ff2c1bd09cf665ee90afa2c3 + languageName: node + linkType: hard + +"has-tostringtag@npm:^1.0.0": + version: 1.0.0 + resolution: "has-tostringtag@npm:1.0.0" + dependencies: + has-symbols: "npm:^1.0.2" + checksum: 1cdba76b7d13f65198a92b8ca1560ba40edfa09e85d182bf436d928f3588a9ebd260451d569f0ed1b849c4bf54f49c862aa0d0a77f9552b1855bb6deb526c011 + languageName: node + linkType: hard + +"has@npm:^1.0.3": + version: 1.0.3 + resolution: "has@npm:1.0.3" + dependencies: + function-bind: "npm:^1.1.1" + checksum: e1da0d2bd109f116b632f27782cf23182b42f14972ca9540e4c5aa7e52647407a0a4a76937334fddcb56befe94a3494825ec22b19b51f5e5507c3153fd1a5e1b + languageName: node + linkType: hard + +"hash-base@npm:^3.0.0": + version: 3.1.0 + resolution: "hash-base@npm:3.1.0" + dependencies: + inherits: "npm:^2.0.4" + readable-stream: "npm:^3.6.0" + safe-buffer: "npm:^5.2.0" + checksum: 663eabcf4173326fbb65a1918a509045590a26cc7e0964b754eef248d281305c6ec9f6b31cb508d02ffca383ab50028180ce5aefe013e942b44a903ac8dc80d0 + languageName: node + linkType: hard + +"hash.js@npm:^1.0.0, hash.js@npm:^1.0.3": + version: 1.1.7 + resolution: "hash.js@npm:1.1.7" + dependencies: + inherits: "npm:^2.0.3" + minimalistic-assert: "npm:^1.0.1" + checksum: 41ada59494eac5332cfc1ce6b7ebdd7b88a3864a6d6b08a3ea8ef261332ed60f37f10877e0c825aaa4bddebf164fbffa618286aeeec5296675e2671cbfa746c4 + languageName: node + linkType: hard + +"hast-util-from-parse5@npm:^8.0.0": + version: 8.0.1 + resolution: "hast-util-from-parse5@npm:8.0.1" + dependencies: + "@types/hast": "npm:^3.0.0" + "@types/unist": "npm:^3.0.0" + devlop: "npm:^1.0.0" + hastscript: "npm:^8.0.0" + property-information: "npm:^6.0.0" + vfile: "npm:^6.0.0" + vfile-location: "npm:^5.0.0" + web-namespaces: "npm:^2.0.0" + checksum: 4a30bb885cff1f0e023c429ae3ece73fe4b03386f07234bf23f5555ca087c2573ff4e551035b417ed7615bde559f394cdaf1db2b91c3b7f0575f3563cd238969 + languageName: node + linkType: hard + +"hast-util-parse-selector@npm:^4.0.0": + version: 4.0.0 + resolution: "hast-util-parse-selector@npm:4.0.0" + dependencies: + "@types/hast": "npm:^3.0.0" + checksum: 5e98168cb44470dc274aabf1a28317e4feb09b1eaf7a48bbaa8c1de1b43a89cd195cb1284e535698e658e3ec26ad91bc5e52c9563c36feb75abbc68aaf68fb9f + languageName: node + linkType: hard + +"hast-util-raw@npm:^9.0.0": + version: 9.0.1 + resolution: "hast-util-raw@npm:9.0.1" + dependencies: + "@types/hast": "npm:^3.0.0" + "@types/unist": "npm:^3.0.0" + "@ungap/structured-clone": "npm:^1.0.0" + hast-util-from-parse5: "npm:^8.0.0" + hast-util-to-parse5: "npm:^8.0.0" + html-void-elements: "npm:^3.0.0" + mdast-util-to-hast: "npm:^13.0.0" + parse5: "npm:^7.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit: "npm:^5.0.0" + vfile: "npm:^6.0.0" + web-namespaces: "npm:^2.0.0" + zwitch: "npm:^2.0.0" + checksum: 60ee6495681f020930380649af58b2a6ca081bec1abd1089f58b0ee892eac2c87dc2077fb30370e51848734b58d2d539e3cde5148c18aa70a89f2c7285e57c91 + languageName: node + linkType: hard + +"hast-util-to-jsx-runtime@npm:^2.0.0": + version: 2.3.0 + resolution: "hast-util-to-jsx-runtime@npm:2.3.0" + dependencies: + "@types/estree": "npm:^1.0.0" + "@types/hast": "npm:^3.0.0" + "@types/unist": "npm:^3.0.0" + comma-separated-tokens: "npm:^2.0.0" + devlop: "npm:^1.0.0" + estree-util-is-identifier-name: "npm:^3.0.0" + hast-util-whitespace: "npm:^3.0.0" + mdast-util-mdx-expression: "npm:^2.0.0" + mdast-util-mdx-jsx: "npm:^3.0.0" + mdast-util-mdxjs-esm: "npm:^2.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + style-to-object: "npm:^1.0.0" + unist-util-position: "npm:^5.0.0" + vfile-message: "npm:^4.0.0" + checksum: df7a36dcc792df7667a54438f044b721753d5e09692606d23bf7336bf4651670111fe7728eebbf9f0e4f96ab3346a05bb23037fa1b1d115482b3bc5bde8b6912 + languageName: node + linkType: hard + +"hast-util-to-parse5@npm:^8.0.0": + version: 8.0.0 + resolution: "hast-util-to-parse5@npm:8.0.0" + dependencies: + "@types/hast": "npm:^3.0.0" + comma-separated-tokens: "npm:^2.0.0" + devlop: "npm:^1.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + web-namespaces: "npm:^2.0.0" + zwitch: "npm:^2.0.0" + checksum: 3c0c7fba026e0c4be4675daf7277f9ff22ae6da801435f1b7104f7740de5422576f1c025023c7b3df1d0a161e13a04c6ab8f98ada96eb50adb287b537849a2bd + languageName: node + linkType: hard + +"hast-util-whitespace@npm:^3.0.0": + version: 3.0.0 + resolution: "hast-util-whitespace@npm:3.0.0" + dependencies: + "@types/hast": "npm:^3.0.0" + checksum: b898bc9fe27884b272580d15260b6bbdabe239973a147e97fa98c45fa0ffec967a481aaa42291ec34fb56530dc2d484d473d7e2bae79f39c83f3762307edfea8 + languageName: node + linkType: hard + +"hastscript@npm:^8.0.0": + version: 8.0.0 + resolution: "hastscript@npm:8.0.0" + dependencies: + "@types/hast": "npm:^3.0.0" + comma-separated-tokens: "npm:^2.0.0" + hast-util-parse-selector: "npm:^4.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + checksum: f0b54bbdd710854b71c0f044612db0fe1b5e4d74fa2001633dc8c535c26033269f04f536f9fd5b03f234de1111808f9e230e9d19493bf919432bb24d541719e0 + languageName: node + linkType: hard + +"he@npm:^1.2.0": + version: 1.2.0 + resolution: "he@npm:1.2.0" + bin: + he: bin/he + checksum: a27d478befe3c8192f006cdd0639a66798979dfa6e2125c6ac582a19a5ebfec62ad83e8382e6036170d873f46e4536a7e795bf8b95bf7c247f4cc0825ccc8c17 + languageName: node + linkType: hard + +"hmac-drbg@npm:^1.0.1": + version: 1.0.1 + resolution: "hmac-drbg@npm:1.0.1" + dependencies: + hash.js: "npm:^1.0.3" + minimalistic-assert: "npm:^1.0.0" + minimalistic-crypto-utils: "npm:^1.0.1" + checksum: f3d9ba31b40257a573f162176ac5930109816036c59a09f901eb2ffd7e5e705c6832bedfff507957125f2086a0ab8f853c0df225642a88bf1fcaea945f20600d + languageName: node + linkType: hard + +"hoist-non-react-statics@npm:^3.3.0, hoist-non-react-statics@npm:^3.3.1, hoist-non-react-statics@npm:^3.3.2": + version: 3.3.2 + resolution: "hoist-non-react-statics@npm:3.3.2" + dependencies: + react-is: "npm:^16.7.0" + checksum: fe0889169e845d738b59b64badf5e55fa3cf20454f9203d1eb088df322d49d4318df774828e789898dcb280e8a5521bb59b3203385662ca5e9218a6ca5820e74 + languageName: node + linkType: hard + +"hoopy@npm:^0.1.4": + version: 0.1.4 + resolution: "hoopy@npm:0.1.4" + checksum: 4ef749e1a13d46cae52014b9de452635637086c333fc67245369a1262dee806386354a4ed845d507e59e5a0d3aef55246c0ec66f5bf2908d40eb77e7dff2a254 + languageName: node + linkType: hard + +"hpack.js@npm:^2.1.6": + version: 2.1.6 + resolution: "hpack.js@npm:2.1.6" + dependencies: + inherits: "npm:^2.0.1" + obuf: "npm:^1.0.0" + readable-stream: "npm:^2.0.1" + wbuf: "npm:^1.1.0" + checksum: 55b9e824430bab82a19d079cb6e33042d7d0640325678c9917fcc020c61d8a08ca671b6c942c7f0aae9bb6e4b67ffb50734a72f9e21d66407c3138c1983b70f0 + languageName: node + linkType: hard + +"hsluv@npm:^0.0.3": + version: 0.0.3 + resolution: "hsluv@npm:0.0.3" + checksum: 5855c9dec7d82f5da11769adcf035bdccc025ade9e8f58601bdd7541fc33ef6a2a14dcaa89db097775d028db1bf80b5b4f6167140b61fac3957906401823bb4d + languageName: node + linkType: hard + +"html-encoding-sniffer@npm:^2.0.1": + version: 2.0.1 + resolution: "html-encoding-sniffer@npm:2.0.1" + dependencies: + whatwg-encoding: "npm:^1.0.5" + checksum: 6dc3aa2d35a8f0c8c7906ffb665dd24a88f7004f913fafdd3541d24a4da6182ab30c4a0a81387649a1234ecb90182c4136220ed12ae3dc1a57ed68e533dea416 + languageName: node + linkType: hard + +"html-entities@npm:^2.1.0, html-entities@npm:^2.3.2": + version: 2.4.0 + resolution: "html-entities@npm:2.4.0" + checksum: 42bbd5d91f451625d7e35aaed41c8cd110054c0d0970764cb58df467b3f27f20199e8cf7b4aebc8d4eeaf17a27c0d1fb165f2852db85de200995d0f009c9011d + languageName: node + linkType: hard + +"html-escaper@npm:^2.0.0": + version: 2.0.2 + resolution: "html-escaper@npm:2.0.2" + checksum: 208e8a12de1a6569edbb14544f4567e6ce8ecc30b9394fcaa4e7bb1e60c12a7c9a1ed27e31290817157e8626f3a4f29e76c8747030822eb84a6abb15c255f0a0 + languageName: node + linkType: hard + +"html-minifier-terser@npm:^6.0.2": + version: 6.1.0 + resolution: "html-minifier-terser@npm:6.1.0" + dependencies: + camel-case: "npm:^4.1.2" + clean-css: "npm:^5.2.2" + commander: "npm:^8.3.0" + he: "npm:^1.2.0" + param-case: "npm:^3.0.4" + relateurl: "npm:^0.2.7" + terser: "npm:^5.10.0" + bin: + html-minifier-terser: cli.js + checksum: 1aa4e4f01cf7149e3ac5ea84fb7a1adab86da40d38d77a6fff42852b5ee3daccb78b615df97264e3a6a5c33e57f0c77f471d607ca1e1debd1dab9b58286f4b5a + languageName: node + linkType: hard + +"html-url-attributes@npm:^3.0.0": + version: 3.0.0 + resolution: "html-url-attributes@npm:3.0.0" + checksum: af300ae1f3b9cf90aba0d95a165c3f4066ec2b3ee2f36a885a8d842e68675e4133896b00bde42d18ac799d0ce678fa1695baec3f865b01a628922d737c0d035c + languageName: node + linkType: hard + +"html-void-elements@npm:^3.0.0": + version: 3.0.0 + resolution: "html-void-elements@npm:3.0.0" + checksum: a8b9ec5db23b7c8053876dad73a0336183e6162bf6d2677376d8b38d654fdc59ba74fdd12f8812688f7db6fad451210c91b300e472afc0909224e0a44c8610d2 + languageName: node + linkType: hard + +"html-webpack-plugin@npm:^5.5.0": + version: 5.5.3 + resolution: "html-webpack-plugin@npm:5.5.3" + dependencies: + "@types/html-minifier-terser": "npm:^6.0.0" + html-minifier-terser: "npm:^6.0.2" + lodash: "npm:^4.17.21" + pretty-error: "npm:^4.0.0" + tapable: "npm:^2.0.0" + peerDependencies: + webpack: ^5.20.0 + checksum: 7ba0d0f87d08f5c4c51f821842d736ec1762940bc39798932528adaec1e9cca8f52944987b88789007f5706d15110edbdfa30df445d61c6628b02ebe163c4f42 + languageName: node + linkType: hard + +"htmlparser2@npm:^6.1.0": + version: 6.1.0 + resolution: "htmlparser2@npm:6.1.0" + dependencies: + domelementtype: "npm:^2.0.1" + domhandler: "npm:^4.0.0" + domutils: "npm:^2.5.2" + entities: "npm:^2.0.0" + checksum: 3058499c95634f04dc66be8c2e0927cd86799413b2d6989d8ae542ca4dbf5fa948695d02c27d573acf44843af977aec6d9a7bdd0f6faa6b2d99e2a729b2a31b6 + languageName: node + linkType: hard + +"http-cache-semantics@npm:^4.1.1": + version: 4.1.1 + resolution: "http-cache-semantics@npm:4.1.1" + checksum: ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc + languageName: node + linkType: hard + +"http-deceiver@npm:^1.2.7": + version: 1.2.7 + resolution: "http-deceiver@npm:1.2.7" + checksum: 8bb9b716f5fc55f54a451da7f49b9c695c3e45498a789634daec26b61e4add7c85613a4a9e53726c39d09de7a163891ecd6eb5809adb64500a840fd86fe81d03 + languageName: node + linkType: hard + +"http-errors@npm:2.0.0": + version: 2.0.0 + resolution: "http-errors@npm:2.0.0" + dependencies: + depd: "npm:2.0.0" + inherits: "npm:2.0.4" + setprototypeof: "npm:1.2.0" + statuses: "npm:2.0.1" + toidentifier: "npm:1.0.1" + checksum: fc6f2715fe188d091274b5ffc8b3657bd85c63e969daa68ccb77afb05b071a4b62841acb7a21e417b5539014dff2ebf9550f0b14a9ff126f2734a7c1387f8e19 + languageName: node + linkType: hard + +"http-errors@npm:~1.6.2": + version: 1.6.3 + resolution: "http-errors@npm:1.6.3" + dependencies: + depd: "npm:~1.1.2" + inherits: "npm:2.0.3" + setprototypeof: "npm:1.1.0" + statuses: "npm:>= 1.4.0 < 2" + checksum: 17ec4046ee974477778bfdd525936c254b872054703ec2caa4d6f099566b8adade636ae6aeeacb39302c5cd6e28fb407ebd937f500f5010d0b6850750414ff78 + languageName: node + linkType: hard + +"http-parser-js@npm:>=0.5.1": + version: 0.5.8 + resolution: "http-parser-js@npm:0.5.8" + checksum: 4ed89f812c44f84c4ae5d43dd3a0c47942b875b63be0ed2ccecbe6b0018af867d806495fc6e12474aff868721163699c49246585bddea4f0ecc6d2b02e19faf1 + languageName: node + linkType: hard + +"http-proxy-agent@npm:^4.0.1": + version: 4.0.1 + resolution: "http-proxy-agent@npm:4.0.1" + dependencies: + "@tootallnate/once": "npm:1" + agent-base: "npm:6" + debug: "npm:4" + checksum: 4fa4774d65b5331814b74ac05cefea56854fc0d5989c80b13432c1b0d42a14c9f4342ca3ad9f0359a52e78da12b1744c9f8a28e50042136ea9171675d972a5fd + languageName: node + linkType: hard + +"http-proxy-agent@npm:^7.0.0": + version: 7.0.0 + resolution: "http-proxy-agent@npm:7.0.0" + dependencies: + agent-base: "npm:^7.1.0" + debug: "npm:^4.3.4" + checksum: a11574ff39436cee3c7bc67f259444097b09474605846ddd8edf0bf4ad8644be8533db1aa463426e376865047d05dc22755e638632819317c0c2f1b2196657c8 + languageName: node + linkType: hard + +"http-proxy-middleware@npm:^2.0.3": + version: 2.0.6 + resolution: "http-proxy-middleware@npm:2.0.6" + dependencies: + "@types/http-proxy": "npm:^1.17.8" + http-proxy: "npm:^1.18.1" + is-glob: "npm:^4.0.1" + is-plain-obj: "npm:^3.0.0" + micromatch: "npm:^4.0.2" + peerDependencies: + "@types/express": ^4.17.13 + peerDependenciesMeta: + "@types/express": + optional: true + checksum: 25a0e550dd1900ee5048a692e0e9b2b6339d06d487a705d90c47e359e9c6561d648cd7862d001d090e651c9efffa1b6e5160fcf1f299b5fa4935f76e9754eb11 + languageName: node + linkType: hard + +"http-proxy@npm:^1.18.1": + version: 1.18.1 + resolution: "http-proxy@npm:1.18.1" + dependencies: + eventemitter3: "npm:^4.0.0" + follow-redirects: "npm:^1.0.0" + requires-port: "npm:^1.0.0" + checksum: 148dfa700a03fb421e383aaaf88ac1d94521dfc34072f6c59770528c65250983c2e4ec996f2f03aa9f3fe46cd1270a593126068319311e3e8d9e610a37533e94 + languageName: node + linkType: hard + +"https-browserify@npm:^1.0.0": + version: 1.0.0 + resolution: "https-browserify@npm:1.0.0" + checksum: e17b6943bc24ea9b9a7da5714645d808670af75a425f29baffc3284962626efdc1eb3aa9bbffaa6e64028a6ad98af5b09fabcb454a8f918fb686abfdc9e9b8ae + languageName: node + linkType: hard + +"https-proxy-agent@npm:^5.0.0": + version: 5.0.1 + resolution: "https-proxy-agent@npm:5.0.1" + dependencies: + agent-base: "npm:6" + debug: "npm:4" + checksum: 6dd639f03434003577c62b27cafdb864784ef19b2de430d8ae2a1d45e31c4fd60719e5637b44db1a88a046934307da7089e03d6089ec3ddacc1189d8de8897d1 + languageName: node + linkType: hard + +"https-proxy-agent@npm:^7.0.1": + version: 7.0.2 + resolution: "https-proxy-agent@npm:7.0.2" + dependencies: + agent-base: "npm:^7.0.2" + debug: "npm:4" + checksum: 7735eb90073db087e7e79312e3d97c8c04baf7ea7ca7b013382b6a45abbaa61b281041a98f4e13c8c80d88f843785bcc84ba189165b4b4087b1e3496ba656d77 + languageName: node + linkType: hard + +"human-signals@npm:^2.1.0": + version: 2.1.0 + resolution: "human-signals@npm:2.1.0" + checksum: 695edb3edfcfe9c8b52a76926cd31b36978782062c0ed9b1192b36bebc75c4c87c82e178dfcb0ed0fc27ca59d434198aac0bd0be18f5781ded775604db22304a + languageName: node + linkType: hard + +"iconv-lite@npm:0.4.24, iconv-lite@npm:^0.4.4": + version: 0.4.24 + resolution: "iconv-lite@npm:0.4.24" + dependencies: + safer-buffer: "npm:>= 2.1.2 < 3" + checksum: c6886a24cc00f2a059767440ec1bc00d334a89f250db8e0f7feb4961c8727118457e27c495ba94d082e51d3baca378726cd110aaf7ded8b9bbfd6a44760cf1d4 + languageName: node + linkType: hard + +"iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": + version: 0.6.3 + resolution: "iconv-lite@npm:0.6.3" + dependencies: + safer-buffer: "npm:>= 2.1.2 < 3.0.0" + checksum: 98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 + languageName: node + linkType: hard + +"icss-utils@npm:^5.0.0, icss-utils@npm:^5.1.0": + version: 5.1.0 + resolution: "icss-utils@npm:5.1.0" + peerDependencies: + postcss: ^8.1.0 + checksum: 39c92936fabd23169c8611d2b5cc39e39d10b19b0d223352f20a7579f75b39d5f786114a6b8fc62bee8c5fed59ba9e0d38f7219a4db383e324fb3061664b043d + languageName: node + linkType: hard + +"idb@npm:^7.0.1": + version: 7.1.1 + resolution: "idb@npm:7.1.1" + checksum: 72418e4397638797ee2089f97b45fc29f937b830bc0eb4126f4a9889ecf10320ceacf3a177fe5d7ffaf6b4fe38b20bbd210151549bfdc881db8081eed41c870d + languageName: node + linkType: hard + +"identity-obj-proxy@npm:^3.0.0": + version: 3.0.0 + resolution: "identity-obj-proxy@npm:3.0.0" + dependencies: + harmony-reflect: "npm:^1.4.6" + checksum: a3fc4de0042d7b45bf8652d5596c80b42139d8625c9cd6a8834e29e1b6dce8fccabd1228e08744b78677a19ceed7201a32fed8ca3dc3e4852e8fee24360a6cfc + languageName: node + linkType: hard + +"ieee754@npm:^1.1.12, ieee754@npm:^1.1.13": + version: 1.2.1 + resolution: "ieee754@npm:1.2.1" + checksum: b0782ef5e0935b9f12883a2e2aa37baa75da6e66ce6515c168697b42160807d9330de9a32ec1ed73149aea02e0d822e572bca6f1e22bdcbd2149e13b050b17bb + languageName: node + linkType: hard + +"ignore@npm:^5.2.0": + version: 5.2.4 + resolution: "ignore@npm:5.2.4" + checksum: 7c7cd90edd9fea6e037f9b9da4b01bf0a86b198ce78345f9bbd983929d68ff14830be31111edc5d70c264921f4962404d75b7262b4d9cc3bc12381eccbd03096 + languageName: node + linkType: hard + +"immer@npm:^9.0.21, immer@npm:^9.0.7": + version: 9.0.21 + resolution: "immer@npm:9.0.21" + checksum: 03ea3ed5d4d72e8bd428df4a38ad7e483ea8308e9a113d3b42e0ea2cc0cc38340eb0a6aca69592abbbf047c685dbda04e3d34bf2ff438ab57339ed0a34cc0a05 + languageName: node + linkType: hard + +"immutable@npm:~3.7.4": + version: 3.7.6 + resolution: "immutable@npm:3.7.6" + checksum: efe2bbb2620aa897afbb79545b9eda4dd3dc072e05ae7004895a7efb43187e4265612a88f8723f391eb1c87c46c52fd11e2d1968e42404450c63e49558d7ca4e + languageName: node + linkType: hard + +"import-fresh@npm:^3.0.0, import-fresh@npm:^3.1.0, import-fresh@npm:^3.2.1": + version: 3.3.0 + resolution: "import-fresh@npm:3.3.0" + dependencies: + parent-module: "npm:^1.0.0" + resolve-from: "npm:^4.0.0" + checksum: 7f882953aa6b740d1f0e384d0547158bc86efbf2eea0f1483b8900a6f65c5a5123c2cf09b0d542cc419d0b98a759ecaeb394237e97ea427f2da221dc3cd80cc3 + languageName: node + linkType: hard + +"import-local@npm:^3.0.2": + version: 3.1.0 + resolution: "import-local@npm:3.1.0" + dependencies: + pkg-dir: "npm:^4.2.0" + resolve-cwd: "npm:^3.0.0" + bin: + import-local-fixture: fixtures/cli.js + checksum: c67ecea72f775fe8684ca3d057e54bdb2ae28c14bf261d2607c269c18ea0da7b730924c06262eca9aed4b8ab31e31d65bc60b50e7296c85908a56e2f7d41ecd2 + languageName: node + linkType: hard + +"imurmurhash@npm:^0.1.4": + version: 0.1.4 + resolution: "imurmurhash@npm:0.1.4" + checksum: 8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 + languageName: node + linkType: hard + +"indent-string@npm:^4.0.0": + version: 4.0.0 + resolution: "indent-string@npm:4.0.0" + checksum: 1e1904ddb0cb3d6cce7cd09e27a90184908b7a5d5c21b92e232c93579d314f0b83c246ffb035493d0504b1e9147ba2c9b21df0030f48673fba0496ecd698161f + languageName: node + linkType: hard + +"indigo-ketcher@npm:1.11.0-rc.1": + version: 1.11.0-rc.1 + resolution: "indigo-ketcher@npm:1.11.0-rc.1" + dependencies: + looks-same: "npm:^8.1.0" + checksum: 76ee21c78cc11891c9924a1cd9e02e1fbc3e4bc02072c9927e4f6bd08fc34566ddb524205f870fa88a134640d8e329fa4eba81bff9458f67de2118225aa6cdef + languageName: node + linkType: hard + +"inflight@npm:^1.0.4": + version: 1.0.6 + resolution: "inflight@npm:1.0.6" + dependencies: + once: "npm:^1.3.0" + wrappy: "npm:1" + checksum: 7faca22584600a9dc5b9fca2cd5feb7135ac8c935449837b315676b4c90aa4f391ec4f42240178244b5a34e8bede1948627fda392ca3191522fc46b34e985ab2 + languageName: node + linkType: hard + +"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.1, inherits@npm:~2.0.3, inherits@npm:~2.0.4": + version: 2.0.4 + resolution: "inherits@npm:2.0.4" + checksum: 4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 + languageName: node + linkType: hard + +"inherits@npm:2.0.3": + version: 2.0.3 + resolution: "inherits@npm:2.0.3" + checksum: 6e56402373149ea076a434072671f9982f5fad030c7662be0332122fe6c0fa490acb3cc1010d90b6eff8d640b1167d77674add52dfd1bb85d545cf29e80e73e7 + languageName: node + linkType: hard + +"ini@npm:^1.3.5, ini@npm:~1.3.0": + version: 1.3.8 + resolution: "ini@npm:1.3.8" + checksum: ec93838d2328b619532e4f1ff05df7909760b6f66d9c9e2ded11e5c1897d6f2f9980c54dd638f88654b00919ce31e827040631eab0a3969e4d1abefa0719516a + languageName: node + linkType: hard + +"inline-style-parser@npm:0.2.2": + version: 0.2.2 + resolution: "inline-style-parser@npm:0.2.2" + checksum: 82099645fd99451301ff243706f70917c066e3033d32bdb1074a54eb1909e08d1cafb48c426a643facbe8248cff362082e90ca14760b3d44e09a858fe668b3fe + languageName: node + linkType: hard + +"internal-slot@npm:^1.0.3, internal-slot@npm:^1.0.4, internal-slot@npm:^1.0.5": + version: 1.0.5 + resolution: "internal-slot@npm:1.0.5" + dependencies: + get-intrinsic: "npm:^1.2.0" + has: "npm:^1.0.3" + side-channel: "npm:^1.0.4" + checksum: 66d8a66b4b5310c042e8ad00ce895dc55cb25165a3a7da0d7862ca18d69d3b1ba86511b4bf3baf4273d744d3f6e9154574af45189ef11135a444945309e39e4a + languageName: node + linkType: hard + +"intersection-observer@npm:^0.12.0": + version: 0.12.2 + resolution: "intersection-observer@npm:0.12.2" + checksum: 9591f46b2b742f5801ed69dbc8860f487771b4af8361e7a5dcb28a377beff2ba56336a2b090af261825430d225dae9417121496d2e6925e000e4a469958843ff + languageName: node + linkType: hard + +"ip@npm:^2.0.0": + version: 2.0.0 + resolution: "ip@npm:2.0.0" + checksum: 8d186cc5585f57372847ae29b6eba258c68862055e18a75cc4933327232cb5c107f89800ce29715d542eef2c254fbb68b382e780a7414f9ee7caf60b7a473958 + languageName: node + linkType: hard + +"ipaddr.js@npm:1.9.1": + version: 1.9.1 + resolution: "ipaddr.js@npm:1.9.1" + checksum: 0486e775047971d3fdb5fb4f063829bac45af299ae0b82dcf3afa2145338e08290563a2a70f34b732d795ecc8311902e541a8530eeb30d75860a78ff4e94ce2a + languageName: node + linkType: hard + +"ipaddr.js@npm:^2.0.1": + version: 2.1.0 + resolution: "ipaddr.js@npm:2.1.0" + checksum: 9aa43ff99771e3d14ab3683df3909b3b033fe81337646bc63780b00ec9bc51d4a696a047c0b261c05867c0a25086ab03f0ce32ea444a6b39e10fac1315d53cab + languageName: node + linkType: hard + +"is-alphabetical@npm:^1.0.0": + version: 1.0.4 + resolution: "is-alphabetical@npm:1.0.4" + checksum: 1505b1de5a1fd74022c05fb21b0e683a8f5229366bac8dc4d34cf6935bcfd104d1125a5e6b083fb778847629f76e5bdac538de5367bdf2b927a1356164e23985 + languageName: node + linkType: hard + +"is-alphabetical@npm:^2.0.0": + version: 2.0.1 + resolution: "is-alphabetical@npm:2.0.1" + checksum: 932367456f17237533fd1fc9fe179df77957271020b83ea31da50e5cc472d35ef6b5fb8147453274ffd251134472ce24eb6f8d8398d96dee98237cdb81a6c9a7 + languageName: node + linkType: hard + +"is-alphanumerical@npm:^1.0.0": + version: 1.0.4 + resolution: "is-alphanumerical@npm:1.0.4" + dependencies: + is-alphabetical: "npm:^1.0.0" + is-decimal: "npm:^1.0.0" + checksum: d623abae7130a7015c6bf33d99151d4e7005572fd170b86568ff4de5ae86ac7096608b87dd4a1d4dbbd497e392b6396930ba76c9297a69455909cebb68005905 + languageName: node + linkType: hard + +"is-alphanumerical@npm:^2.0.0": + version: 2.0.1 + resolution: "is-alphanumerical@npm:2.0.1" + dependencies: + is-alphabetical: "npm:^2.0.0" + is-decimal: "npm:^2.0.0" + checksum: 4b35c42b18e40d41378293f82a3ecd9de77049b476f748db5697c297f686e1e05b072a6aaae2d16f54d2a57f85b00cbbe755c75f6d583d1c77d6657bd0feb5a2 + languageName: node + linkType: hard + +"is-arguments@npm:^1.0.4, is-arguments@npm:^1.1.1": + version: 1.1.1 + resolution: "is-arguments@npm:1.1.1" + dependencies: + call-bind: "npm:^1.0.2" + has-tostringtag: "npm:^1.0.0" + checksum: 5ff1f341ee4475350adfc14b2328b38962564b7c2076be2f5bac7bd9b61779efba99b9f844a7b82ba7654adccf8e8eb19d1bb0cc6d1c1a085e498f6793d4328f + languageName: node + linkType: hard + +"is-array-buffer@npm:^3.0.1, is-array-buffer@npm:^3.0.2": + version: 3.0.2 + resolution: "is-array-buffer@npm:3.0.2" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.0" + is-typed-array: "npm:^1.1.10" + checksum: 40ed13a5f5746ac3ae2f2e463687d9b5a3f5fd0086f970fb4898f0253c2a5ec2e3caea2d664dd8f54761b1c1948609702416921a22faebe160c7640a9217c80e + languageName: node + linkType: hard + +"is-arrayish@npm:^0.2.1": + version: 0.2.1 + resolution: "is-arrayish@npm:0.2.1" + checksum: e7fb686a739068bb70f860b39b67afc62acc62e36bb61c5f965768abce1873b379c563e61dd2adad96ebb7edf6651111b385e490cf508378959b0ed4cac4e729 + languageName: node + linkType: hard + +"is-arrayish@npm:^0.3.1": + version: 0.3.2 + resolution: "is-arrayish@npm:0.3.2" + checksum: f59b43dc1d129edb6f0e282595e56477f98c40278a2acdc8b0a5c57097c9eff8fe55470493df5775478cf32a4dc8eaf6d3a749f07ceee5bc263a78b2434f6a54 + languageName: node + linkType: hard + +"is-bigint@npm:^1.0.1": + version: 1.0.4 + resolution: "is-bigint@npm:1.0.4" + dependencies: + has-bigints: "npm:^1.0.1" + checksum: eb9c88e418a0d195ca545aff2b715c9903d9b0a5033bc5922fec600eb0c3d7b1ee7f882dbf2e0d5a6e694e42391be3683e4368737bd3c4a77f8ac293e7773696 + languageName: node + linkType: hard + +"is-binary-path@npm:~2.1.0": + version: 2.1.0 + resolution: "is-binary-path@npm:2.1.0" + dependencies: + binary-extensions: "npm:^2.0.0" + checksum: a16eaee59ae2b315ba36fad5c5dcaf8e49c3e27318f8ab8fa3cdb8772bf559c8d1ba750a589c2ccb096113bb64497084361a25960899cb6172a6925ab6123d38 + languageName: node + linkType: hard + +"is-boolean-object@npm:^1.1.0": + version: 1.1.2 + resolution: "is-boolean-object@npm:1.1.2" + dependencies: + call-bind: "npm:^1.0.2" + has-tostringtag: "npm:^1.0.0" + checksum: 6090587f8a8a8534c0f816da868bc94f32810f08807aa72fa7e79f7e11c466d281486ffe7a788178809c2aa71fe3e700b167fe80dd96dad68026bfff8ebf39f7 + languageName: node + linkType: hard + +"is-browser@npm:^2.0.1": + version: 2.1.0 + resolution: "is-browser@npm:2.1.0" + checksum: 107cb5211009823df2c3001e419bd9806472f9f2ca81e87b2e60b36c0a4ac709dc5f093d415c372d37758a39f22c98fd5bff060c1d0cfbb74c694b41d3df75c9 + languageName: node + linkType: hard + +"is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": + version: 1.2.7 + resolution: "is-callable@npm:1.2.7" + checksum: ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f + languageName: node + linkType: hard + +"is-core-module@npm:^2.11.0, is-core-module@npm:^2.9.0": + version: 2.12.1 + resolution: "is-core-module@npm:2.12.1" + dependencies: + has: "npm:^1.0.3" + checksum: ff1d0dfc0b7851310d289398e416eb92ae8a9ac7ea8b8b9737fa8c0725f5a78c5f3db6edd4dff38c9ed731f3aaa1f6410a320233fcb52a2c8f1cf58eebf10a4b + languageName: node + linkType: hard + +"is-date-object@npm:^1.0.1, is-date-object@npm:^1.0.5": + version: 1.0.5 + resolution: "is-date-object@npm:1.0.5" + dependencies: + has-tostringtag: "npm:^1.0.0" + checksum: eed21e5dcc619c48ccef804dfc83a739dbb2abee6ca202838ee1bd5f760fe8d8a93444f0d49012ad19bb7c006186e2884a1b92f6e1c056da7fd23d0a9ad5992e + languageName: node + linkType: hard + +"is-decimal@npm:^1.0.0": + version: 1.0.4 + resolution: "is-decimal@npm:1.0.4" + checksum: a4ad53c4c5c4f5a12214e7053b10326711f6a71f0c63ba1314a77bd71df566b778e4ebd29f9fb6815f07a4dc50c3767fb19bd6fc9fa05e601410f1d64ffeac48 + languageName: node + linkType: hard + +"is-decimal@npm:^2.0.0": + version: 2.0.1 + resolution: "is-decimal@npm:2.0.1" + checksum: 8085dd66f7d82f9de818fba48b9e9c0429cb4291824e6c5f2622e96b9680b54a07a624cfc663b24148b8e853c62a1c987cfe8b0b5a13f5156991afaf6736e334 + languageName: node + linkType: hard + +"is-docker@npm:^2.0.0, is-docker@npm:^2.1.1": + version: 2.2.1 + resolution: "is-docker@npm:2.2.1" + bin: + is-docker: cli.js + checksum: e828365958d155f90c409cdbe958f64051d99e8aedc2c8c4cd7c89dcf35329daed42f7b99346f7828df013e27deb8f721cf9408ba878c76eb9e8290235fbcdcc + languageName: node + linkType: hard + +"is-extglob@npm:^2.1.1": + version: 2.1.1 + resolution: "is-extglob@npm:2.1.1" + checksum: 5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912 + languageName: node + linkType: hard + +"is-finite@npm:^1.0.1": + version: 1.1.0 + resolution: "is-finite@npm:1.1.0" + checksum: ca6bc7a0321b339f098e657bd4cbf4bb2410f5a11f1b9adb1a1a9ab72288b64368e8251326cb1f74e985f2779299cec3e1f1e558b68ce7e1e2c9be17b7cfd626 + languageName: node + linkType: hard + +"is-firefox@npm:^1.0.3": + version: 1.0.3 + resolution: "is-firefox@npm:1.0.3" + checksum: 05acae8ad7f836088dd735f78c2da298f6b5bf2141498b214a370f4a99a22f837a130ebb3bce2320ecfcd68783f0eda231a04b3b5015b5894a5a297b16357bc2 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^3.0.0": + version: 3.0.0 + resolution: "is-fullwidth-code-point@npm:3.0.0" + checksum: bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc + languageName: node + linkType: hard + +"is-generator-fn@npm:^2.0.0": + version: 2.1.0 + resolution: "is-generator-fn@npm:2.1.0" + checksum: 2957cab387997a466cd0bf5c1b6047bd21ecb32bdcfd8996b15747aa01002c1c88731802f1b3d34ac99f4f6874b626418bd118658cf39380fe5fff32a3af9c4d + languageName: node + linkType: hard + +"is-generator-function@npm:^1.0.7": + version: 1.0.10 + resolution: "is-generator-function@npm:1.0.10" + dependencies: + has-tostringtag: "npm:^1.0.0" + checksum: df03514df01a6098945b5a0cfa1abff715807c8e72f57c49a0686ad54b3b74d394e2d8714e6f709a71eb00c9630d48e73ca1796c1ccc84ac95092c1fecc0d98b + languageName: node + linkType: hard + +"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": + version: 4.0.3 + resolution: "is-glob@npm:4.0.3" + dependencies: + is-extglob: "npm:^2.1.1" + checksum: 17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a + languageName: node + linkType: hard + +"is-hexadecimal@npm:^1.0.0": + version: 1.0.4 + resolution: "is-hexadecimal@npm:1.0.4" + checksum: ec4c64e5624c0f240922324bc697e166554f09d3ddc7633fc526084502626445d0a871fbd8cae52a9844e83bd0bb414193cc5a66806d7b2867907003fc70c5ea + languageName: node + linkType: hard + +"is-hexadecimal@npm:^2.0.0": + version: 2.0.1 + resolution: "is-hexadecimal@npm:2.0.1" + checksum: 3eb60fe2f1e2bbc760b927dcad4d51eaa0c60138cf7fc671803f66353ad90c301605b502c7ea4c6bb0548e1c7e79dfd37b73b632652e3b76030bba603a7e9626 + languageName: node + linkType: hard + +"is-iexplorer@npm:^1.0.0": + version: 1.0.0 + resolution: "is-iexplorer@npm:1.0.0" + checksum: f1e9483fe0675b0a8424f0d4e07fe33508452760f221bad609ff28c8834e8decbdaa080727bb54da8414e0420c5184f761267d86cdddad3897062701f31eb49d + languageName: node + linkType: hard + +"is-lambda@npm:^1.0.1": + version: 1.0.1 + resolution: "is-lambda@npm:1.0.1" + checksum: 85fee098ae62ba6f1e24cf22678805473c7afd0fb3978a3aa260e354cb7bcb3a5806cf0a98403188465efedec41ab4348e8e4e79305d409601323855b3839d4d + languageName: node + linkType: hard + +"is-map@npm:^2.0.1, is-map@npm:^2.0.2": + version: 2.0.2 + resolution: "is-map@npm:2.0.2" + checksum: 119ff9137a37fd131a72fab3f4ab8c9d6a24b0a1ee26b4eff14dc625900d8675a97785eea5f4174265e2006ed076cc24e89f6e57ebd080a48338d914ec9168a5 + languageName: node + linkType: hard + +"is-mobile@npm:^4.0.0": + version: 4.0.0 + resolution: "is-mobile@npm:4.0.0" + checksum: 7d1f1c9ead3f140728318df7b1d6f2f19f28d96bf09c3a9016fe473ccccd32c4d03a01aeec68b612d48f1c0f776e7f1f18a1d83a7e95fb8199b4eb8536db01bc + languageName: node + linkType: hard + +"is-module@npm:^1.0.0": + version: 1.0.0 + resolution: "is-module@npm:1.0.0" + checksum: 795a3914bcae7c26a1c23a1e5574c42eac13429625045737bf3e324ce865c0601d61aee7a5afbca1bee8cb300c7d9647e7dc98860c9bdbc3b7fdc51d8ac0bffc + languageName: node + linkType: hard + +"is-nan@npm:^1.2.1": + version: 1.3.2 + resolution: "is-nan@npm:1.3.2" + dependencies: + call-bind: "npm:^1.0.0" + define-properties: "npm:^1.1.3" + checksum: 8bfb286f85763f9c2e28ea32e9127702fe980ffd15fa5d63ade3be7786559e6e21355d3625dd364c769c033c5aedf0a2ed3d4025d336abf1b9241e3d9eddc5b0 + languageName: node + linkType: hard + +"is-negative-zero@npm:^2.0.2": + version: 2.0.2 + resolution: "is-negative-zero@npm:2.0.2" + checksum: eda024c158f70f2017f3415e471b818d314da5ef5be68f801b16314d4a4b6304a74cbed778acf9e2f955bb9c1c5f2935c1be0c7c99e1ad12286f45366217b6a3 + languageName: node + linkType: hard + +"is-number-object@npm:^1.0.4": + version: 1.0.7 + resolution: "is-number-object@npm:1.0.7" + dependencies: + has-tostringtag: "npm:^1.0.0" + checksum: aad266da1e530f1804a2b7bd2e874b4869f71c98590b3964f9d06cc9869b18f8d1f4778f838ecd2a11011bce20aeecb53cb269ba916209b79c24580416b74b1b + languageName: node + linkType: hard + +"is-number@npm:^7.0.0": + version: 7.0.0 + resolution: "is-number@npm:7.0.0" + checksum: b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811 + languageName: node + linkType: hard + +"is-obj@npm:^1.0.1": + version: 1.0.1 + resolution: "is-obj@npm:1.0.1" + checksum: 5003acba0af7aa47dfe0760e545a89bbac89af37c12092c3efadc755372cdaec034f130e7a3653a59eb3c1843cfc72ca71eaf1a6c3bafe5a0bab3611a47f9945 + languageName: node + linkType: hard + +"is-path-inside@npm:^3.0.3": + version: 3.0.3 + resolution: "is-path-inside@npm:3.0.3" + checksum: cf7d4ac35fb96bab6a1d2c3598fe5ebb29aafb52c0aaa482b5a3ed9d8ba3edc11631e3ec2637660c44b3ce0e61a08d54946e8af30dec0b60a7c27296c68ffd05 + languageName: node + linkType: hard + +"is-plain-obj@npm:^1.1.0": + version: 1.1.0 + resolution: "is-plain-obj@npm:1.1.0" + checksum: daaee1805add26f781b413fdf192fc91d52409583be30ace35c82607d440da63cc4cac0ac55136716688d6c0a2c6ef3edb2254fecbd1fe06056d6bd15975ee8c + languageName: node + linkType: hard + +"is-plain-obj@npm:^3.0.0": + version: 3.0.0 + resolution: "is-plain-obj@npm:3.0.0" + checksum: 8e6483bfb051d42ec9c704c0ede051a821c6b6f9a6c7a3e3b55aa855e00981b0580c8f3b1f5e2e62649b39179b1abfee35d6f8086d999bfaa32c1908d29b07bc + languageName: node + linkType: hard + +"is-plain-obj@npm:^4.0.0": + version: 4.1.0 + resolution: "is-plain-obj@npm:4.1.0" + checksum: 32130d651d71d9564dc88ba7e6fda0e91a1010a3694648e9f4f47bb6080438140696d3e3e15c741411d712e47ac9edc1a8a9de1fe76f3487b0d90be06ac9975e + languageName: node + linkType: hard + +"is-port-reachable@npm:4.0.0": + version: 4.0.0 + resolution: "is-port-reachable@npm:4.0.0" + checksum: f0fddd9b5c082f7c32356faab38c3c6eab5ea5b54491184f5688f3189d482017d2142c648927ee5964299e4a62da83d41ee52a1d73bf1f700325c370c9ed0cef + languageName: node + linkType: hard + +"is-potential-custom-element-name@npm:^1.0.1": + version: 1.0.1 + resolution: "is-potential-custom-element-name@npm:1.0.1" + checksum: b73e2f22bc863b0939941d369486d308b43d7aef1f9439705e3582bfccaa4516406865e32c968a35f97a99396dac84e2624e67b0a16b0a15086a785e16ce7db9 + languageName: node + linkType: hard + +"is-regex@npm:^1.1.4": + version: 1.1.4 + resolution: "is-regex@npm:1.1.4" + dependencies: + call-bind: "npm:^1.0.2" + has-tostringtag: "npm:^1.0.0" + checksum: bb72aae604a69eafd4a82a93002058c416ace8cde95873589a97fc5dac96a6c6c78a9977d487b7b95426a8f5073969124dd228f043f9f604f041f32fcc465fc1 + languageName: node + linkType: hard + +"is-regexp@npm:^1.0.0": + version: 1.0.0 + resolution: "is-regexp@npm:1.0.0" + checksum: 34cacda1901e00f6e44879378f1d2fa96320ea956c1bec27713130aaf1d44f6e7bd963eed28945bfe37e600cb27df1cf5207302680dad8bdd27b9baff8ecf611 + languageName: node + linkType: hard + +"is-root@npm:^2.1.0": + version: 2.1.0 + resolution: "is-root@npm:2.1.0" + checksum: 83d3f5b052c3f28fbdbdf0d564bdd34fa14933f5694c78704f85cd1871255bc017fbe3fe2bc2fff2d227c6be5927ad2149b135c0a7c0060e7ac4e610d81a4f01 + languageName: node + linkType: hard + +"is-set@npm:^2.0.1, is-set@npm:^2.0.2": + version: 2.0.2 + resolution: "is-set@npm:2.0.2" + checksum: 5f8bd1880df8c0004ce694e315e6e1e47a3452014be792880bb274a3b2cdb952fdb60789636ca6e084c7947ca8b7ae03ccaf54c93a7fcfed228af810559e5432 + languageName: node + linkType: hard + +"is-shared-array-buffer@npm:^1.0.2": + version: 1.0.2 + resolution: "is-shared-array-buffer@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.2" + checksum: cfeee6f171f1b13e6cbc6f3b6cc44e192b93df39f3fcb31aa66ffb1d2df3b91e05664311659f9701baba62f5e98c83b0673c628e7adc30f55071c4874fcdccec + languageName: node + linkType: hard + +"is-stream@npm:^2.0.0": + version: 2.0.1 + resolution: "is-stream@npm:2.0.1" + checksum: 7c284241313fc6efc329b8d7f08e16c0efeb6baab1b4cd0ba579eb78e5af1aa5da11e68559896a2067cd6c526bd29241dda4eb1225e627d5aa1a89a76d4635a5 + languageName: node + linkType: hard + +"is-string-blank@npm:^1.0.1": + version: 1.0.1 + resolution: "is-string-blank@npm:1.0.1" + checksum: 2e664a061fb9354f6eccffdd7d662051d19ce951f59ae25392b871f796e06dc82659fb68560b267ccc81b700c1078c0fb8e31959955d759c2f3713015ccfb60f + languageName: node + linkType: hard + +"is-string@npm:^1.0.5, is-string@npm:^1.0.7": + version: 1.0.7 + resolution: "is-string@npm:1.0.7" + dependencies: + has-tostringtag: "npm:^1.0.0" + checksum: 905f805cbc6eedfa678aaa103ab7f626aac9ebbdc8737abb5243acaa61d9820f8edc5819106b8fcd1839e33db21de9f0116ae20de380c8382d16dc2a601921f6 + languageName: node + linkType: hard + +"is-svg-path@npm:^1.0.1": + version: 1.0.2 + resolution: "is-svg-path@npm:1.0.2" + checksum: 59596bdb3e3a748e654c9c2362a55234ff7350131de235c49b9794e8bbdbeab57f2f06803ec5dbfb5e65a023967ff1322cc75135b841fa82f88f032e1cb407d5 + languageName: node + linkType: hard + +"is-symbol@npm:^1.0.2, is-symbol@npm:^1.0.3": + version: 1.0.4 + resolution: "is-symbol@npm:1.0.4" + dependencies: + has-symbols: "npm:^1.0.2" + checksum: 9381dd015f7c8906154dbcbf93fad769de16b4b961edc94f88d26eb8c555935caa23af88bda0c93a18e65560f6d7cca0fd5a3f8a8e1df6f1abbb9bead4502ef7 + languageName: node + linkType: hard + +"is-typed-array@npm:^1.1.10, is-typed-array@npm:^1.1.3, is-typed-array@npm:^1.1.9": + version: 1.1.10 + resolution: "is-typed-array@npm:1.1.10" + dependencies: + available-typed-arrays: "npm:^1.0.5" + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-tostringtag: "npm:^1.0.0" + checksum: b71268a2e5f493f2b95af4cbfe7a65254a822f07d57f20c18f084347cd45f11810915fe37d7a6831fe4b81def24621a042fd1169ec558c50f830b591bc8c1f66 + languageName: node + linkType: hard + +"is-typedarray@npm:^1.0.0": + version: 1.0.0 + resolution: "is-typedarray@npm:1.0.0" + checksum: 4c096275ba041a17a13cca33ac21c16bc4fd2d7d7eb94525e7cd2c2f2c1a3ab956e37622290642501ff4310601e413b675cf399ad6db49855527d2163b3eeeec + languageName: node + linkType: hard + +"is-weakmap@npm:^2.0.1": + version: 2.0.1 + resolution: "is-weakmap@npm:2.0.1" + checksum: 9c9fec9efa7bf5030a4a927f33fff2a6976b93646259f92b517d3646c073cc5b98283a162ce75c412b060a46de07032444b530f0a4c9b6e012ef8f1741c3a987 + languageName: node + linkType: hard + +"is-weakref@npm:^1.0.2": + version: 1.0.2 + resolution: "is-weakref@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.2" + checksum: 1545c5d172cb690c392f2136c23eec07d8d78a7f57d0e41f10078aa4f5daf5d7f57b6513a67514ab4f073275ad00c9822fc8935e00229d0a2089e1c02685d4b1 + languageName: node + linkType: hard + +"is-weakset@npm:^2.0.1": + version: 2.0.2 + resolution: "is-weakset@npm:2.0.2" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.1.1" + checksum: ef5136bd446ae4603229b897f73efd0720c6ab3ec6cc05c8d5c4b51aa9f95164713c4cad0a22ff1fedf04865ff86cae4648bc1d5eead4b6388e1150525af1cc1 + languageName: node + linkType: hard + +"is-wsl@npm:^2.2.0": + version: 2.2.0 + resolution: "is-wsl@npm:2.2.0" + dependencies: + is-docker: "npm:^2.0.0" + checksum: a6fa2d370d21be487c0165c7a440d567274fbba1a817f2f0bfa41cc5e3af25041d84267baa22df66696956038a43973e72fca117918c91431920bdef490fa25e + languageName: node + linkType: hard + +"isarray@npm:0.0.1": + version: 0.0.1 + resolution: "isarray@npm:0.0.1" + checksum: ed1e62da617f71fe348907c71743b5ed550448b455f8d269f89a7c7ddb8ae6e962de3dab6a74a237b06f5eb7f6ece7a45ada8ce96d87fe972926530f91ae3311 + languageName: node + linkType: hard + +"isarray@npm:^2.0.1, isarray@npm:^2.0.5": + version: 2.0.5 + resolution: "isarray@npm:2.0.5" + checksum: 4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd + languageName: node + linkType: hard + +"isarray@npm:~1.0.0": + version: 1.0.0 + resolution: "isarray@npm:1.0.0" + checksum: 18b5be6669be53425f0b84098732670ed4e727e3af33bc7f948aac01782110eb9a18b3b329c5323bcdd3acdaae547ee077d3951317e7f133bff7105264b3003d + languageName: node + linkType: hard + +"isexe@npm:^2.0.0": + version: 2.0.0 + resolution: "isexe@npm:2.0.0" + checksum: 228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d + languageName: node + linkType: hard + +"isexe@npm:^3.1.1": + version: 3.1.1 + resolution: "isexe@npm:3.1.1" + checksum: 9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 + languageName: node + linkType: hard + +"isomorphic-timers-promises@npm:^1.0.1": + version: 1.0.1 + resolution: "isomorphic-timers-promises@npm:1.0.1" + checksum: 3b4761d0012ebe6b6382246079fc667f3513f36fe4042638f2bfb7db1557e4f1acd33a9c9907706c04270890ec6434120f132f3f300161a42a7dd8628926c8a4 + languageName: node + linkType: hard + +"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0": + version: 3.2.0 + resolution: "istanbul-lib-coverage@npm:3.2.0" + checksum: 10ecb00a50cac2f506af8231ce523ffa1ac1310db0435c8ffaabb50c1d72539906583aa13c84f8835dc103998b9989edc3c1de989d2e2a96a91a9ba44e5db6b9 + languageName: node + linkType: hard + +"istanbul-lib-instrument@npm:^5.0.4, istanbul-lib-instrument@npm:^5.1.0": + version: 5.2.1 + resolution: "istanbul-lib-instrument@npm:5.2.1" + dependencies: + "@babel/core": "npm:^7.12.3" + "@babel/parser": "npm:^7.14.7" + "@istanbuljs/schema": "npm:^0.1.2" + istanbul-lib-coverage: "npm:^3.2.0" + semver: "npm:^6.3.0" + checksum: 8a1bdf3e377dcc0d33ec32fe2b6ecacdb1e4358fd0eb923d4326bb11c67622c0ceb99600a680f3dad5d29c66fc1991306081e339b4d43d0b8a2ab2e1d910a6ee + languageName: node + linkType: hard + +"istanbul-lib-report@npm:^3.0.0": + version: 3.0.0 + resolution: "istanbul-lib-report@npm:3.0.0" + dependencies: + istanbul-lib-coverage: "npm:^3.0.0" + make-dir: "npm:^3.0.0" + supports-color: "npm:^7.1.0" + checksum: 81b0d5187c7603ed71bdea0b701a7329f8146549ca19aa26d91b4a163aea756f9d55c1a6dc1dcd087e24dfcb99baa69e266a68644fbfd5dc98107d6f6f5948d2 + languageName: node + linkType: hard + +"istanbul-lib-source-maps@npm:^4.0.0": + version: 4.0.1 + resolution: "istanbul-lib-source-maps@npm:4.0.1" + dependencies: + debug: "npm:^4.1.1" + istanbul-lib-coverage: "npm:^3.0.0" + source-map: "npm:^0.6.1" + checksum: 19e4cc405016f2c906dff271a76715b3e881fa9faeb3f09a86cb99b8512b3a5ed19cadfe0b54c17ca0e54c1142c9c6de9330d65506e35873994e06634eebeb66 + languageName: node + linkType: hard + +"istanbul-reports@npm:^3.1.3": + version: 3.1.5 + resolution: "istanbul-reports@npm:3.1.5" + dependencies: + html-escaper: "npm:^2.0.0" + istanbul-lib-report: "npm:^3.0.0" + checksum: 3a147171bffdbd3034856410b6ec81637871d17d10986513328fec23df6b666f66bd08ea480f5b7a5b9f7e8abc30f3e3c2e7d1b661fc57cdc479aaaa677b1011 + languageName: node + linkType: hard + +"jackspeak@npm:^2.3.5": + version: 2.3.6 + resolution: "jackspeak@npm:2.3.6" + dependencies: + "@isaacs/cliui": "npm:^8.0.2" + "@pkgjs/parseargs": "npm:^0.11.0" + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: f01d8f972d894cd7638bc338e9ef5ddb86f7b208ce177a36d718eac96ec86638a6efa17d0221b10073e64b45edc2ce15340db9380b1f5d5c5d000cbc517dc111 + languageName: node + linkType: hard + +"jake@npm:^10.8.5": + version: 10.8.7 + resolution: "jake@npm:10.8.7" + dependencies: + async: "npm:^3.2.3" + chalk: "npm:^4.0.2" + filelist: "npm:^1.0.4" + minimatch: "npm:^3.1.2" + bin: + jake: bin/cli.js + checksum: 89326d01a8bc110d02d973729a66394c79a34b34461116f5c530a2a2dbc30265683fe6737928f75df9178e9d369ff1442f5753fb983d525e740eefdadc56a103 + languageName: node + linkType: hard + +"jest-changed-files@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-changed-files@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + execa: "npm:^5.0.0" + throat: "npm:^6.0.1" + checksum: ee2e663da669a1f8a1452626c71b9691a34cc6789bbf6cb04ef4430a63301db806039e93dd5c9cc6c0caa3d3f250ff18ed51e058fc3533a71f73e24f41b5d1bd + languageName: node + linkType: hard + +"jest-circus@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-circus@npm:27.5.1" + dependencies: + "@jest/environment": "npm:^27.5.1" + "@jest/test-result": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + co: "npm:^4.6.0" + dedent: "npm:^0.7.0" + expect: "npm:^27.5.1" + is-generator-fn: "npm:^2.0.0" + jest-each: "npm:^27.5.1" + jest-matcher-utils: "npm:^27.5.1" + jest-message-util: "npm:^27.5.1" + jest-runtime: "npm:^27.5.1" + jest-snapshot: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + pretty-format: "npm:^27.5.1" + slash: "npm:^3.0.0" + stack-utils: "npm:^2.0.3" + throat: "npm:^6.0.1" + checksum: 195b88ff6c74a1ad0f2386bea25700e884f32e05be9211bc197b960e7553a952ab38aff9aafb057c6a92eaa85bde2804e01244278a477b80a99e11f890ee15d9 + languageName: node + linkType: hard + +"jest-cli@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-cli@npm:27.5.1" + dependencies: + "@jest/core": "npm:^27.5.1" + "@jest/test-result": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + chalk: "npm:^4.0.0" + exit: "npm:^0.1.2" + graceful-fs: "npm:^4.2.9" + import-local: "npm:^3.0.2" + jest-config: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + jest-validate: "npm:^27.5.1" + prompts: "npm:^2.0.1" + yargs: "npm:^16.2.0" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + bin: + jest: bin/jest.js + checksum: 45abaafbe1a01ea4c48953c85d42c961b6e33ef5847e10642713cde97761611b0af56d5a0dcb82abf19c500c6e9b680222a7f953b437e5760ba584521b74f9ea + languageName: node + linkType: hard + +"jest-config@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-config@npm:27.5.1" + dependencies: + "@babel/core": "npm:^7.8.0" + "@jest/test-sequencer": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + babel-jest: "npm:^27.5.1" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + deepmerge: "npm:^4.2.2" + glob: "npm:^7.1.1" + graceful-fs: "npm:^4.2.9" + jest-circus: "npm:^27.5.1" + jest-environment-jsdom: "npm:^27.5.1" + jest-environment-node: "npm:^27.5.1" + jest-get-type: "npm:^27.5.1" + jest-jasmine2: "npm:^27.5.1" + jest-regex-util: "npm:^27.5.1" + jest-resolve: "npm:^27.5.1" + jest-runner: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + jest-validate: "npm:^27.5.1" + micromatch: "npm:^4.0.4" + parse-json: "npm:^5.2.0" + pretty-format: "npm:^27.5.1" + slash: "npm:^3.0.0" + strip-json-comments: "npm:^3.1.1" + peerDependencies: + ts-node: ">=9.0.0" + peerDependenciesMeta: + ts-node: + optional: true + checksum: 28867b165f0e25b711a2ade5f261a1b1606b476704ff68a50688eaf3b9c853f69542645cc7e0dab38079ed74e3acc99e38628faf736c1739e44fc869c62c6051 + languageName: node + linkType: hard + +"jest-diff@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-diff@npm:27.5.1" + dependencies: + chalk: "npm:^4.0.0" + diff-sequences: "npm:^27.5.1" + jest-get-type: "npm:^27.5.1" + pretty-format: "npm:^27.5.1" + checksum: 48f008c7b4ea7794108319eb61050315b1723e7391cb01e4377c072cadcab10a984cb09d2a6876cb65f100d06c970fd932996192e092b26006f885c00945e7ad + languageName: node + linkType: hard + +"jest-diff@npm:^29.6.1": + version: 29.6.1 + resolution: "jest-diff@npm:29.6.1" + dependencies: + chalk: "npm:^4.0.0" + diff-sequences: "npm:^29.4.3" + jest-get-type: "npm:^29.4.3" + pretty-format: "npm:^29.6.1" + checksum: f067d977937744df7dd8a269e2948620e4bcb35ff70d9ea1d0fe75a47fa603ce3edc350961b671c94f8de5adb65d6bdeb0002569b59983fba56f02dd4b47d171 + languageName: node + linkType: hard + +"jest-docblock@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-docblock@npm:27.5.1" + dependencies: + detect-newline: "npm:^3.0.0" + checksum: 0ce3661a9152497b3a766996eda42edeab51f676fa57ec414a0168fef2a9b1784d056879281c22bca2875c9e63d41327cac0749a8c6e205330e13fcfe0e40316 + languageName: node + linkType: hard + +"jest-each@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-each@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + chalk: "npm:^4.0.0" + jest-get-type: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + pretty-format: "npm:^27.5.1" + checksum: e382f677e69c15aa906ec0ae2d3d944aa948ce338b2bbcb480b76c16eb12cc2141d78edda48c510363e3b2c507cc2140569c3a163c64ffa34e14cc6a8b37fb81 + languageName: node + linkType: hard + +"jest-environment-jsdom@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-environment-jsdom@npm:27.5.1" + dependencies: + "@jest/environment": "npm:^27.5.1" + "@jest/fake-timers": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + jest-mock: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + jsdom: "npm:^16.6.0" + checksum: ea759ffa43e96d773983a4172c32c1a3774907723564a30a001c8a85d22d9ed82f6c45329a514152744e8916379c1c4cf9e527297ecfa1e8a4cc4888141b38fd + languageName: node + linkType: hard + +"jest-environment-node@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-environment-node@npm:27.5.1" + dependencies: + "@jest/environment": "npm:^27.5.1" + "@jest/fake-timers": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + jest-mock: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + checksum: 3bbc31545436c6bb4a18841241e62036382a7261b9bb8cdc2823ec942a8a3053f98219b3ec2a4a7920bfba347602c16dd16767d9fece915134aee2e30091165c + languageName: node + linkType: hard + +"jest-get-type@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-get-type@npm:27.5.1" + checksum: 42ee0101336bccfc3c1cff598b603c6006db7876b6117e5bd4a9fb7ffaadfb68febdb9ae68d1c47bc3a4174b070153fc6cfb59df995dcd054e81ace5028a7269 + languageName: node + linkType: hard + +"jest-get-type@npm:^29.4.3": + version: 29.4.3 + resolution: "jest-get-type@npm:29.4.3" + checksum: 874b0ced6b1cc677ff7fcf0dc86d02674617a7d0b73d47097604fb3ca460178d16104efdd3837e8b8bf0520ad5d210838c07483b058802b457b8413e60628fd0 + languageName: node + linkType: hard + +"jest-haste-map@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-haste-map@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + "@types/graceful-fs": "npm:^4.1.2" + "@types/node": "npm:*" + anymatch: "npm:^3.0.3" + fb-watchman: "npm:^2.0.0" + fsevents: "npm:^2.3.2" + graceful-fs: "npm:^4.2.9" + jest-regex-util: "npm:^27.5.1" + jest-serializer: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + jest-worker: "npm:^27.5.1" + micromatch: "npm:^4.0.4" + walker: "npm:^1.0.7" + dependenciesMeta: + fsevents: + optional: true + checksum: 831ae476fddc6babe64ea3e7f91b4ccee0371c03ec88af5a615023711866abdd496b51344f47c4d02b6b47b433367ca41e9e42d79527b39afec767e8be9e8a63 + languageName: node + linkType: hard + +"jest-jasmine2@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-jasmine2@npm:27.5.1" + dependencies: + "@jest/environment": "npm:^27.5.1" + "@jest/source-map": "npm:^27.5.1" + "@jest/test-result": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + co: "npm:^4.6.0" + expect: "npm:^27.5.1" + is-generator-fn: "npm:^2.0.0" + jest-each: "npm:^27.5.1" + jest-matcher-utils: "npm:^27.5.1" + jest-message-util: "npm:^27.5.1" + jest-runtime: "npm:^27.5.1" + jest-snapshot: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + pretty-format: "npm:^27.5.1" + throat: "npm:^6.0.1" + checksum: 028172d5d65abf7e8da89c30894112efdd18007a934f30b89e3f35def3764824a9680917996d5e551caa2087589a372a2539777d5554fa3bae6c7e36afec6d4c + languageName: node + linkType: hard + +"jest-leak-detector@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-leak-detector@npm:27.5.1" + dependencies: + jest-get-type: "npm:^27.5.1" + pretty-format: "npm:^27.5.1" + checksum: 33ec88ab7d76931ae0a03b18186234114e42a4e9fae748f8a197f7f85b884c2e92ea692c06704b8a469ac26b9c6411a7a1bbc8d34580ed56672a7f6be2681aee + languageName: node + linkType: hard + +"jest-matcher-utils@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-matcher-utils@npm:27.5.1" + dependencies: + chalk: "npm:^4.0.0" + jest-diff: "npm:^27.5.1" + jest-get-type: "npm:^27.5.1" + pretty-format: "npm:^27.5.1" + checksum: a2f082062e8bedc9cfe2654177a894ca43768c6db4c0f4efc0d6ec195e305a99e3d868ff54cc61bcd7f1c810d8ee28c9ac6374de21715dc52f136876de739a73 + languageName: node + linkType: hard + +"jest-matcher-utils@npm:^29.6.1": + version: 29.6.1 + resolution: "jest-matcher-utils@npm:29.6.1" + dependencies: + chalk: "npm:^4.0.0" + jest-diff: "npm:^29.6.1" + jest-get-type: "npm:^29.4.3" + pretty-format: "npm:^29.6.1" + checksum: 4425bcb900bd25dbd679c220ef978f80aab11a7b6bed0e178cf8fe3c7167ecefdb6f522e3cf3e877a622160f781cea02aac43a3e243dc8afca917e90418434b8 + languageName: node + linkType: hard + +"jest-message-util@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-message-util@npm:27.5.1" + dependencies: + "@babel/code-frame": "npm:^7.12.13" + "@jest/types": "npm:^27.5.1" + "@types/stack-utils": "npm:^2.0.0" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + micromatch: "npm:^4.0.4" + pretty-format: "npm:^27.5.1" + slash: "npm:^3.0.0" + stack-utils: "npm:^2.0.3" + checksum: 447c99061006949bd0c5ac3fcf4dfad11e763712ada1b3df1c1f276d1d4f55b3f7a8bee27591cd1fe23b56220830b2a74f321925d345374d1b7cf9cd536f19b5 + languageName: node + linkType: hard + +"jest-message-util@npm:^28.1.3": + version: 28.1.3 + resolution: "jest-message-util@npm:28.1.3" + dependencies: + "@babel/code-frame": "npm:^7.12.13" + "@jest/types": "npm:^28.1.3" + "@types/stack-utils": "npm:^2.0.0" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + micromatch: "npm:^4.0.4" + pretty-format: "npm:^28.1.3" + slash: "npm:^3.0.0" + stack-utils: "npm:^2.0.3" + checksum: 9f56a11b4171e43e2375446e624eec86f82820d9a35de3cd8b065b5ce2d7f65d2bbbdfc0ffe5fa358ff866693a68ec4f6b0cb8ad953fd6f35f9895eb370c6ed7 + languageName: node + linkType: hard + +"jest-message-util@npm:^29.6.1": + version: 29.6.1 + resolution: "jest-message-util@npm:29.6.1" + dependencies: + "@babel/code-frame": "npm:^7.12.13" + "@jest/types": "npm:^29.6.1" + "@types/stack-utils": "npm:^2.0.0" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + micromatch: "npm:^4.0.4" + pretty-format: "npm:^29.6.1" + slash: "npm:^3.0.0" + stack-utils: "npm:^2.0.3" + checksum: 7a34c7ee4efada36aa385a07e1d22f8b6183dda37f7bca15fcf2e9575e9b91ce6ea88429a0b749bc59d934327492e622913d7cd9ab23ca78c29353184795a68d + languageName: node + linkType: hard + +"jest-mock@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-mock@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + checksum: 6ad58454b37ee3f726930b07efbf40a7c79d2d2d9c7b226708b4b550bc0904de93bcacf714105d11952a5c0bc855e5d59145c8c9dbbb4e69b46e7367abf53b52 + languageName: node + linkType: hard + +"jest-pnp-resolver@npm:^1.2.2": + version: 1.2.3 + resolution: "jest-pnp-resolver@npm:1.2.3" + peerDependencies: + jest-resolve: "*" + peerDependenciesMeta: + jest-resolve: + optional: true + checksum: 86eec0c78449a2de733a6d3e316d49461af6a858070e113c97f75fb742a48c2396ea94150cbca44159ffd4a959f743a47a8b37a792ef6fdad2cf0a5cba973fac + languageName: node + linkType: hard + +"jest-regex-util@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-regex-util@npm:27.5.1" + checksum: f9790d417b667b38155c4bbd58f2afc0ad9f774381e5358776df02df3f29564069d4773c7ba050db6826bad8a4cc7ef82c3b4c65bfa508e419fdd063a9682c42 + languageName: node + linkType: hard + +"jest-regex-util@npm:^28.0.0": + version: 28.0.2 + resolution: "jest-regex-util@npm:28.0.2" + checksum: d79d255b8a2217bdb0b638cbb5e61a41ab788e62a6217fce5276ab9763c1327b9e0a4f10ebdb230c76848125aa9cc97c8751cfad15db7ec0441d44acfbaf5084 + languageName: node + linkType: hard + +"jest-resolve-dependencies@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-resolve-dependencies@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + jest-regex-util: "npm:^27.5.1" + jest-snapshot: "npm:^27.5.1" + checksum: 06ba847f9386b0c198bb033a2041fac141dec443ae3c60acdc3426c1844aa4c942770f8f272a1f54686979894e389bc7774d4123bb3a0fbfabe02b7deef9ef62 + languageName: node + linkType: hard + +"jest-resolve@npm:^27.4.2, jest-resolve@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-resolve@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^27.5.1" + jest-pnp-resolver: "npm:^1.2.2" + jest-util: "npm:^27.5.1" + jest-validate: "npm:^27.5.1" + resolve: "npm:^1.20.0" + resolve.exports: "npm:^1.1.0" + slash: "npm:^3.0.0" + checksum: 5f9577e424346881964683f22472bd12bd9cfd70e49cb1800ccd31f2e88b0985ed353ca5cc7fb02de9093be2c733ab32de526c99a1192455ddb167afe916efd1 + languageName: node + linkType: hard + +"jest-runner@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-runner@npm:27.5.1" + dependencies: + "@jest/console": "npm:^27.5.1" + "@jest/environment": "npm:^27.5.1" + "@jest/test-result": "npm:^27.5.1" + "@jest/transform": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + emittery: "npm:^0.8.1" + graceful-fs: "npm:^4.2.9" + jest-docblock: "npm:^27.5.1" + jest-environment-jsdom: "npm:^27.5.1" + jest-environment-node: "npm:^27.5.1" + jest-haste-map: "npm:^27.5.1" + jest-leak-detector: "npm:^27.5.1" + jest-message-util: "npm:^27.5.1" + jest-resolve: "npm:^27.5.1" + jest-runtime: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + jest-worker: "npm:^27.5.1" + source-map-support: "npm:^0.5.6" + throat: "npm:^6.0.1" + checksum: b79962003c641eaabe4fa8855ee2127009c48f929dfca67f7fbdbc3fe84ea827964d5cbfcfd791405448011014172ea8c4faffe3669a148824ef4fac37838fe8 + languageName: node + linkType: hard + +"jest-runtime@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-runtime@npm:27.5.1" + dependencies: + "@jest/environment": "npm:^27.5.1" + "@jest/fake-timers": "npm:^27.5.1" + "@jest/globals": "npm:^27.5.1" + "@jest/source-map": "npm:^27.5.1" + "@jest/test-result": "npm:^27.5.1" + "@jest/transform": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + chalk: "npm:^4.0.0" + cjs-module-lexer: "npm:^1.0.0" + collect-v8-coverage: "npm:^1.0.0" + execa: "npm:^5.0.0" + glob: "npm:^7.1.3" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^27.5.1" + jest-message-util: "npm:^27.5.1" + jest-mock: "npm:^27.5.1" + jest-regex-util: "npm:^27.5.1" + jest-resolve: "npm:^27.5.1" + jest-snapshot: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + slash: "npm:^3.0.0" + strip-bom: "npm:^4.0.0" + checksum: 22ec24f4b928bdbdb7415ae7470ef523a6379812b8d0500d4d2f2124107d3af2c8fb99842352e320e79a47508a017dd5ab4b713270ad04ba9144c1961672ce29 + languageName: node + linkType: hard + +"jest-serializer@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-serializer@npm:27.5.1" + dependencies: + "@types/node": "npm:*" + graceful-fs: "npm:^4.2.9" + checksum: 7a2b634a5a044b3ccf912a17032338309c90b50831a2e500f963b25e9a4ce9b550a1af1fb64f7c9a271ed6a1f951fca37bd0d61a0b286aefe197812193b0d825 + languageName: node + linkType: hard + +"jest-snapshot@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-snapshot@npm:27.5.1" + dependencies: + "@babel/core": "npm:^7.7.2" + "@babel/generator": "npm:^7.7.2" + "@babel/plugin-syntax-typescript": "npm:^7.7.2" + "@babel/traverse": "npm:^7.7.2" + "@babel/types": "npm:^7.0.0" + "@jest/transform": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/babel__traverse": "npm:^7.0.4" + "@types/prettier": "npm:^2.1.5" + babel-preset-current-node-syntax: "npm:^1.0.0" + chalk: "npm:^4.0.0" + expect: "npm:^27.5.1" + graceful-fs: "npm:^4.2.9" + jest-diff: "npm:^27.5.1" + jest-get-type: "npm:^27.5.1" + jest-haste-map: "npm:^27.5.1" + jest-matcher-utils: "npm:^27.5.1" + jest-message-util: "npm:^27.5.1" + jest-util: "npm:^27.5.1" + natural-compare: "npm:^1.4.0" + pretty-format: "npm:^27.5.1" + semver: "npm:^7.3.2" + checksum: 819ed445a749065efdfb7c3a5befb9331e550930acdcb8cbe49d5e64a1f05451a91094550aae6840e17afeeefc3660f205f2a7ba780fa0d0ebfa5dcfb1345f15 + languageName: node + linkType: hard + +"jest-util@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-util@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + graceful-fs: "npm:^4.2.9" + picomatch: "npm:^2.2.3" + checksum: 0f60cd2a2e09a6646ccd4ff489f1970282c0694724104979e897bd5164f91204726f5408572bf5e759d09e59d5c4e4dc65a643d2b630e06a10402bba07bf2a2e + languageName: node + linkType: hard + +"jest-util@npm:^28.1.3": + version: 28.1.3 + resolution: "jest-util@npm:28.1.3" + dependencies: + "@jest/types": "npm:^28.1.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + graceful-fs: "npm:^4.2.9" + picomatch: "npm:^2.2.3" + checksum: 7d4946424032a2ccb2ad669905debb44b0bf040dff7a1fe82d283c679ae4638a86ca48d6a276d65a76451252338ad84e76ef2cfde03f577f091fe2b3102aedc9 + languageName: node + linkType: hard + +"jest-util@npm:^29.6.1": + version: 29.6.1 + resolution: "jest-util@npm:29.6.1" + dependencies: + "@jest/types": "npm:^29.6.1" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + graceful-fs: "npm:^4.2.9" + picomatch: "npm:^2.2.3" + checksum: c4765afe8769239aef6a76aa69d9c98d383e171e4745eb65c4abb2e776f7965ab762c758f740bf726ebab428bc52b099c23f37e93dc30cf1ec46b915543f80af + languageName: node + linkType: hard + +"jest-validate@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-validate@npm:27.5.1" + dependencies: + "@jest/types": "npm:^27.5.1" + camelcase: "npm:^6.2.0" + chalk: "npm:^4.0.0" + jest-get-type: "npm:^27.5.1" + leven: "npm:^3.1.0" + pretty-format: "npm:^27.5.1" + checksum: ac5aa45b3ce798e450eda33764fa6d8c75f8794f92005e596928a78847b6013c5a6198ca2c2b4097a9315befb3868d12a52fbe7e6945cc85f81cb824d87c5c59 + languageName: node + linkType: hard + +"jest-watch-typeahead@npm:^1.0.0": + version: 1.1.0 + resolution: "jest-watch-typeahead@npm:1.1.0" + dependencies: + ansi-escapes: "npm:^4.3.1" + chalk: "npm:^4.0.0" + jest-regex-util: "npm:^28.0.0" + jest-watcher: "npm:^28.0.0" + slash: "npm:^4.0.0" + string-length: "npm:^5.0.1" + strip-ansi: "npm:^7.0.1" + peerDependencies: + jest: ^27.0.0 || ^28.0.0 + checksum: d7929332dc43ab76a84d4f90edc589c108e1357d5570bd095563f02e0ec59ae5a9daf555dda94cde010cff7e1e82bcc37f1d54a3b3df87dafd333a664bbc0cef + languageName: node + linkType: hard + +"jest-watcher@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-watcher@npm:27.5.1" + dependencies: + "@jest/test-result": "npm:^27.5.1" + "@jest/types": "npm:^27.5.1" + "@types/node": "npm:*" + ansi-escapes: "npm:^4.2.1" + chalk: "npm:^4.0.0" + jest-util: "npm:^27.5.1" + string-length: "npm:^4.0.1" + checksum: e42f5e38bc4da56bde6ccec4b13b7646460a3d6b567934e0ca96d72c2ce837223ffbb84a2f8428197da4323870c03f00969237f9b40f83a3072111a8cd66cc4b + languageName: node + linkType: hard + +"jest-watcher@npm:^28.0.0": + version: 28.1.3 + resolution: "jest-watcher@npm:28.1.3" + dependencies: + "@jest/test-result": "npm:^28.1.3" + "@jest/types": "npm:^28.1.3" + "@types/node": "npm:*" + ansi-escapes: "npm:^4.2.1" + chalk: "npm:^4.0.0" + emittery: "npm:^0.10.2" + jest-util: "npm:^28.1.3" + string-length: "npm:^4.0.1" + checksum: c61da8c35f8fc74224335471675649966787b12ae4469b5049cb46facafb30f16b63a52d0d1137701b651cd514abcae005680bfc542d85979ddbae4dbc6c10ad + languageName: node + linkType: hard + +"jest-worker@npm:^26.2.1": + version: 26.6.2 + resolution: "jest-worker@npm:26.6.2" + dependencies: + "@types/node": "npm:*" + merge-stream: "npm:^2.0.0" + supports-color: "npm:^7.0.0" + checksum: 07e4dba650381604cda253ab6d5837fe0279c8d68c25884995b45bfe149a7a1e1b5a97f304b4518f257dac2a9ddc1808d57d650649c3ab855e9e60cf824d2970 + languageName: node + linkType: hard + +"jest-worker@npm:^27.0.2, jest-worker@npm:^27.4.5, jest-worker@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-worker@npm:27.5.1" + dependencies: + "@types/node": "npm:*" + merge-stream: "npm:^2.0.0" + supports-color: "npm:^8.0.0" + checksum: 8c4737ffd03887b3c6768e4cc3ca0269c0336c1e4b1b120943958ddb035ed2a0fc6acab6dc99631720a3720af4e708ff84fb45382ad1e83c27946adf3623969b + languageName: node + linkType: hard + +"jest-worker@npm:^28.0.2": + version: 28.1.3 + resolution: "jest-worker@npm:28.1.3" + dependencies: + "@types/node": "npm:*" + merge-stream: "npm:^2.0.0" + supports-color: "npm:^8.0.0" + checksum: d6715268fd6c9fd8431987d42e4ae0981dc6352fd7a5c90aadb9c67562dc6161486a98960f5d1bd36dbafb202d8d98a6fdb181711acbc5e55ee6ab85fa94c931 + languageName: node + linkType: hard + +"jest@npm:^27.4.3": + version: 27.5.1 + resolution: "jest@npm:27.5.1" + dependencies: + "@jest/core": "npm:^27.5.1" + import-local: "npm:^3.0.2" + jest-cli: "npm:^27.5.1" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + bin: + jest: bin/jest.js + checksum: c013d07e911e423612756bc42d376e578b8721d847db38d94344f9cdf8fdaa0241b0a5c2fe1aad7b7758d415e0b9517c1098312f0d03760f123958d5b6cf5597 + languageName: node + linkType: hard + +"jiti@npm:^1.18.2": + version: 1.19.1 + resolution: "jiti@npm:1.19.1" + bin: + jiti: bin/jiti.js + checksum: c09f15b3ef81f0fcda45f96aaecd130213c81d8a9b8a92f5eb4f8d21972b833b2ef494db8fb3e819b258ceb569b9d5cfa3facbd2d786ecf0bc0fd0e98cc862f7 + languageName: node + linkType: hard + +"js-graph-algorithms@npm:1.0.18": + version: 1.0.18 + resolution: "js-graph-algorithms@npm:1.0.18" + bin: + js-graphs: ./src/jsgraphs.js + checksum: d5ee2b39d4c57776847b38f9194d55429ffbd6b5b41d7bae821abb8d6f27ed0e03516944ddb17cfa351dff5f083678c6400d24aeb7deb4b71075a3ec5372833b + languageName: node + linkType: hard + +"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": + version: 4.0.0 + resolution: "js-tokens@npm:4.0.0" + checksum: e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed + languageName: node + linkType: hard + +"js-yaml@npm:^3.13.1": + version: 3.14.1 + resolution: "js-yaml@npm:3.14.1" + dependencies: + argparse: "npm:^1.0.7" + esprima: "npm:^4.0.0" + bin: + js-yaml: bin/js-yaml.js + checksum: 6746baaaeac312c4db8e75fa22331d9a04cccb7792d126ed8ce6a0bbcfef0cedaddd0c5098fade53db067c09fe00aa1c957674b4765610a8b06a5a189e46433b + languageName: node + linkType: hard + +"js-yaml@npm:^4.1.0": + version: 4.1.0 + resolution: "js-yaml@npm:4.1.0" + dependencies: + argparse: "npm:^2.0.1" + bin: + js-yaml: bin/js-yaml.js + checksum: 184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f + languageName: node + linkType: hard + +"jsdom@npm:^16.6.0": + version: 16.7.0 + resolution: "jsdom@npm:16.7.0" + dependencies: + abab: "npm:^2.0.5" + acorn: "npm:^8.2.4" + acorn-globals: "npm:^6.0.0" + cssom: "npm:^0.4.4" + cssstyle: "npm:^2.3.0" + data-urls: "npm:^2.0.0" + decimal.js: "npm:^10.2.1" + domexception: "npm:^2.0.1" + escodegen: "npm:^2.0.0" + form-data: "npm:^3.0.0" + html-encoding-sniffer: "npm:^2.0.1" + http-proxy-agent: "npm:^4.0.1" + https-proxy-agent: "npm:^5.0.0" + is-potential-custom-element-name: "npm:^1.0.1" + nwsapi: "npm:^2.2.0" + parse5: "npm:6.0.1" + saxes: "npm:^5.0.1" + symbol-tree: "npm:^3.2.4" + tough-cookie: "npm:^4.0.0" + w3c-hr-time: "npm:^1.0.2" + w3c-xmlserializer: "npm:^2.0.0" + webidl-conversions: "npm:^6.1.0" + whatwg-encoding: "npm:^1.0.5" + whatwg-mimetype: "npm:^2.3.0" + whatwg-url: "npm:^8.5.0" + ws: "npm:^7.4.6" + xml-name-validator: "npm:^3.0.0" + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + checksum: e9ba6ea5f5e0d18647ccedec16bc3c69c8c739732ffcb27c66ffd3cc3f876add291ca4f0b9c209ace939ce2aa3ba9e4d67b7f05317921a4d3eab02fe1cc164ef + languageName: node + linkType: hard + +"jsesc@npm:^2.5.1": + version: 2.5.2 + resolution: "jsesc@npm:2.5.2" + bin: + jsesc: bin/jsesc + checksum: dbf59312e0ebf2b4405ef413ec2b25abb5f8f4d9bc5fb8d9f90381622ebca5f2af6a6aa9a8578f65903f9e33990a6dc798edd0ce5586894bf0e9e31803a1de88 + languageName: node + linkType: hard + +"jsesc@npm:~0.5.0": + version: 0.5.0 + resolution: "jsesc@npm:0.5.0" + bin: + jsesc: bin/jsesc + checksum: f93792440ae1d80f091b65f8ceddf8e55c4bb7f1a09dee5dcbdb0db5612c55c0f6045625aa6b7e8edb2e0a4feabd80ee48616dbe2d37055573a84db3d24f96d9 + languageName: node + linkType: hard + +"json-parse-even-better-errors@npm:^2.3.0, json-parse-even-better-errors@npm:^2.3.1": + version: 2.3.1 + resolution: "json-parse-even-better-errors@npm:2.3.1" + checksum: 140932564c8f0b88455432e0f33c4cb4086b8868e37524e07e723f4eaedb9425bdc2bafd71bd1d9765bd15fd1e2d126972bc83990f55c467168c228c24d665f3 + languageName: node + linkType: hard + +"json-schema-traverse@npm:^0.4.1": + version: 0.4.1 + resolution: "json-schema-traverse@npm:0.4.1" + checksum: 108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce + languageName: node + linkType: hard + +"json-schema-traverse@npm:^1.0.0": + version: 1.0.0 + resolution: "json-schema-traverse@npm:1.0.0" + checksum: 71e30015d7f3d6dc1c316d6298047c8ef98a06d31ad064919976583eb61e1018a60a0067338f0f79cabc00d84af3fcc489bd48ce8a46ea165d9541ba17fb30c6 + languageName: node + linkType: hard + +"json-schema@npm:^0.4.0": + version: 0.4.0 + resolution: "json-schema@npm:0.4.0" + checksum: d4a637ec1d83544857c1c163232f3da46912e971d5bf054ba44fdb88f07d8d359a462b4aec46f2745efbc57053365608d88bc1d7b1729f7b4fc3369765639ed3 + languageName: node + linkType: hard + +"json-stable-stringify-without-jsonify@npm:^1.0.1": + version: 1.0.1 + resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" + checksum: cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5 + languageName: node + linkType: hard + +"json5@npm:^1.0.2": + version: 1.0.2 + resolution: "json5@npm:1.0.2" + dependencies: + minimist: "npm:^1.2.0" + bin: + json5: lib/cli.js + checksum: 9ee316bf21f000b00752e6c2a3b79ecf5324515a5c60ee88983a1910a45426b643a4f3461657586e8aeca87aaf96f0a519b0516d2ae527a6c3e7eed80f68717f + languageName: node + linkType: hard + +"json5@npm:^2.1.2, json5@npm:^2.2.0, json5@npm:^2.2.2": + version: 2.2.3 + resolution: "json5@npm:2.2.3" + bin: + json5: lib/cli.js + checksum: 5a04eed94810fa55c5ea138b2f7a5c12b97c3750bc63d11e511dcecbfef758003861522a070c2272764ee0f4e3e323862f386945aeb5b85b87ee43f084ba586c + languageName: node + linkType: hard + +"jsonfile@npm:^4.0.0": + version: 4.0.0 + resolution: "jsonfile@npm:4.0.0" + dependencies: + graceful-fs: "npm:^4.1.6" + dependenciesMeta: + graceful-fs: + optional: true + checksum: 7dc94b628d57a66b71fb1b79510d460d662eb975b5f876d723f81549c2e9cd316d58a2ddf742b2b93a4fa6b17b2accaf1a738a0e2ea114bdfb13a32e5377e480 + languageName: node + linkType: hard + +"jsonfile@npm:^6.0.1": + version: 6.1.0 + resolution: "jsonfile@npm:6.1.0" + dependencies: + graceful-fs: "npm:^4.1.6" + universalify: "npm:^2.0.0" + dependenciesMeta: + graceful-fs: + optional: true + checksum: 4f95b5e8a5622b1e9e8f33c96b7ef3158122f595998114d1e7f03985649ea99cb3cd99ce1ed1831ae94c8c8543ab45ebd044207612f31a56fd08462140e46865 + languageName: node + linkType: hard + +"jsonpointer@npm:^5.0.0": + version: 5.0.1 + resolution: "jsonpointer@npm:5.0.1" + checksum: 89929e58b400fcb96928c0504fcf4fc3f919d81e9543ceb055df125538470ee25290bb4984251e172e6ef8fcc55761eb998c118da763a82051ad89d4cb073fe7 + languageName: node + linkType: hard + +"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.3": + version: 3.3.4 + resolution: "jsx-ast-utils@npm:3.3.4" + dependencies: + array-includes: "npm:^3.1.6" + array.prototype.flat: "npm:^1.3.1" + object.assign: "npm:^4.1.4" + object.values: "npm:^1.1.6" + checksum: 6761ccd830deab6a4cb8ca182c7b3627f4478138b6f4e2b680afc2b5e954635feb460ff75218b67f8694a9f8a0da6f0833a013e34961a16fbe4457fb34a0a7b2 + languageName: node + linkType: hard + +"kdbush@npm:^3.0.0": + version: 3.0.0 + resolution: "kdbush@npm:3.0.0" + checksum: 3fc8795870bd04f60627e7345b26fd0644beb91bc4164912c9d9378b39c674ba01c31db68ecaf6266d51c9ad81bf5b770b7effa51eeee37553d38293a094a686 + languageName: node + linkType: hard + +"ketcher-core@npm:*, ketcher-core@npm:^2.8.0": + version: 2.10.0 + resolution: "ketcher-core@npm:2.10.0" + dependencies: + "@babel/runtime": "npm:^7.17.9" + ajv: "npm:^8.10.0" + assert: "npm:^2.0.0" + lodash: "npm:^4.17.21" + raphael: "npm:^2.3.0" + svgpath: "npm:^2.3.1" + checksum: 0d93e30cff4878e73fa1ab568b81c18608ba549a1d6e4a62805561b6801a7bcc2a888c7c0c2d640870f619dac2dc045566e631ca64e11dd6f11baa96cf3e5193 + languageName: node + linkType: hard + +"ketcher-react@npm:^2.10.0": + version: 2.10.0 + resolution: "ketcher-react@npm:2.10.0" + dependencies: + "@babel/runtime": "npm:^7.17.9" + "@emotion/react": "npm:^11.7.1" + "@emotion/styled": "npm:^11.6.0" + "@mui/material": "npm:^5.2.4" + ajv: "npm:^8.10.0" + clsx: "npm:^1.1.1" + draft-js: "npm:^0.11.7" + draft-js-custom-styles: "npm:^2.1.1" + element-closest-polyfill: "npm:^1.0.2" + file-saver: "npm:^2.0.2" + font-face-observer: "npm:^1.0.0" + hoist-non-react-statics: "npm:^3.3.2" + intersection-observer: "npm:^0.12.0" + ketcher-core: "npm:*" + lodash: "npm:^4.17.21" + miew-react: "npm:^1.0.0" + react-colorful: "npm:^5.4.0" + react-contexify: "npm:^6.0.0" + react-device-detect: "npm:^2.2.2" + react-dropzone: "npm:^11.7.1" + react-intersection-observer: "npm:^8.32.1" + react-redux: "npm:^7.2.1" + react-virtualized: "npm:^9.22.3" + redux: "npm:^4.0.5" + redux-logger: "npm:^3.0.6" + redux-thunk: "npm:^2.3.0" + regenerator-runtime: "npm:^0.13.7" + remark-gfm: "npm:^1.0.0" + remark-parse: "npm:^9.0.0" + replace: "npm:^1.2.0" + reselect: "npm:^4.0.0" + subscription: "npm:^3.0.0" + url-search-params-polyfill: "npm:^8.1.1" + use-resize-observer: "npm:^7.0.0" + w3c-keyname: "npm:^2.2.4" + whatwg-fetch: "npm:^3.4.1" + peerDependencies: + react: ^18.2.0 + react-dom: ^18.2.0 + checksum: ca916d2d103919a3574cd060a39228ebc391883b63a2954c395cbc4e9dfb7b69bf59b0ed171b4393f233bd9b80b3d9ca2ba81e9a18e60ec921f599e27c8d36ef + languageName: node + linkType: hard + +"ketcher-standalone@npm:^2.8.0": + version: 2.10.0 + resolution: "ketcher-standalone@npm:2.10.0" + dependencies: + "@babel/runtime": "npm:^7.17.9" + indigo-ketcher: "npm:1.11.0-rc.1" + ketcher-core: "npm:*" + checksum: 70347a613c28e4d343d26de542c04b078b568aa2ebcd5b1bb29c0f0fece9004102e7bb6ee777892d5757e51a128b3277b3eed3e603844dd9123f986df3bdcfc0 + languageName: node + linkType: hard + +"kind-of@npm:^6.0.2": + version: 6.0.3 + resolution: "kind-of@npm:6.0.3" + checksum: 61cdff9623dabf3568b6445e93e31376bee1cdb93f8ba7033d86022c2a9b1791a1d9510e026e6465ebd701a6dd2f7b0808483ad8838341ac52f003f512e0b4c4 + languageName: node + linkType: hard + +"kleur@npm:^3.0.3": + version: 3.0.3 + resolution: "kleur@npm:3.0.3" + checksum: cd3a0b8878e7d6d3799e54340efe3591ca787d9f95f109f28129bdd2915e37807bf8918bb295ab86afb8c82196beec5a1adcaf29042ce3f2bd932b038fe3aa4b + languageName: node + linkType: hard + +"klona@npm:^2.0.4, klona@npm:^2.0.5": + version: 2.0.6 + resolution: "klona@npm:2.0.6" + checksum: 94eed2c6c2ce99f409df9186a96340558897b3e62a85afdc1ee39103954d2ebe1c1c4e9fe2b0952771771fa96d70055ede8b27962a7021406374fdb695fd4d01 + languageName: node + linkType: hard + +"language-subtag-registry@npm:~0.3.2": + version: 0.3.22 + resolution: "language-subtag-registry@npm:0.3.22" + checksum: d1e09971260a7cd3b9fdeb190d33af0b6e99c8697013537d9aaa15f7856d9d83aee128ba8078e219df0a7cf4b8dd18d1a0c188f6543b500d92a2689d2d114b70 + languageName: node + linkType: hard + +"language-tags@npm:=1.0.5": + version: 1.0.5 + resolution: "language-tags@npm:1.0.5" + dependencies: + language-subtag-registry: "npm:~0.3.2" + checksum: 04215e821af9a8f1bc6c99ab5aa0a316c3fe1912ca3337eb28596316064bddd8edd22f2883d866069ebdf01b2002e504a760a336b2c728b6d30514e86744f76c + languageName: node + linkType: hard + +"launch-editor@npm:^2.6.0": + version: 2.6.0 + resolution: "launch-editor@npm:2.6.0" + dependencies: + picocolors: "npm:^1.0.0" + shell-quote: "npm:^1.7.3" + checksum: 4802b9569d8a1d477f8279a994094b415d89eb39dadbc568193bc366d64ac13827c8860539ee336fa6135a06596a9b8c8265cebac35c3fa36a2214d0eea38890 + languageName: node + linkType: hard + +"leven@npm:^3.1.0": + version: 3.1.0 + resolution: "leven@npm:3.1.0" + checksum: cd778ba3fbab0f4d0500b7e87d1f6e1f041507c56fdcd47e8256a3012c98aaee371d4c15e0a76e0386107af2d42e2b7466160a2d80688aaa03e66e49949f42df + languageName: node + linkType: hard + +"levn@npm:^0.4.1": + version: 0.4.1 + resolution: "levn@npm:0.4.1" + dependencies: + prelude-ls: "npm:^1.2.1" + type-check: "npm:~0.4.0" + checksum: effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e + languageName: node + linkType: hard + +"levn@npm:~0.3.0": + version: 0.3.0 + resolution: "levn@npm:0.3.0" + dependencies: + prelude-ls: "npm:~1.1.2" + type-check: "npm:~0.3.2" + checksum: e440df9de4233da0b389cd55bd61f0f6aaff766400bebbccd1231b81801f6dbc1d816c676ebe8d70566394b749fa624b1ed1c68070e9c94999f0bdecc64cb676 + languageName: node + linkType: hard + +"lilconfig@npm:^2.0.3, lilconfig@npm:^2.0.5, lilconfig@npm:^2.1.0": + version: 2.1.0 + resolution: "lilconfig@npm:2.1.0" + checksum: 64645641aa8d274c99338e130554abd6a0190533c0d9eb2ce7ebfaf2e05c7d9961f3ffe2bfa39efd3b60c521ba3dd24fa236fe2775fc38501bf82bf49d4678b8 + languageName: node + linkType: hard + +"lines-and-columns@npm:^1.1.6": + version: 1.2.4 + resolution: "lines-and-columns@npm:1.2.4" + checksum: 3da6ee62d4cd9f03f5dc90b4df2540fb85b352081bee77fe4bbcd12c9000ead7f35e0a38b8d09a9bb99b13223446dd8689ff3c4959807620726d788701a83d2d + languageName: node + linkType: hard + +"loader-runner@npm:^4.2.0": + version: 4.3.0 + resolution: "loader-runner@npm:4.3.0" + checksum: a44d78aae0907a72f73966fe8b82d1439c8c485238bd5a864b1b9a2a3257832effa858790241e6b37876b5446a78889adf2fcc8dd897ce54c089ecc0a0ce0bf0 + languageName: node + linkType: hard + +"loader-utils@npm:^2.0.0, loader-utils@npm:^2.0.4": + version: 2.0.4 + resolution: "loader-utils@npm:2.0.4" + dependencies: + big.js: "npm:^5.2.2" + emojis-list: "npm:^3.0.0" + json5: "npm:^2.1.2" + checksum: d5654a77f9d339ec2a03d88221a5a695f337bf71eb8dea031b3223420bb818964ba8ed0069145c19b095f6c8b8fd386e602a3fc7ca987042bd8bb1dcc90d7100 + languageName: node + linkType: hard + +"loader-utils@npm:^3.2.0": + version: 3.2.1 + resolution: "loader-utils@npm:3.2.1" + checksum: d3e1f217d160e8e894a0385a33500d4ce14065e8ffb250f5a81ae65bc2c3baa50625ec34182ba4417b46b4ac6725aed64429e1104d6401e074af2aa1dd018394 + languageName: node + linkType: hard + +"locate-path@npm:^3.0.0": + version: 3.0.0 + resolution: "locate-path@npm:3.0.0" + dependencies: + p-locate: "npm:^3.0.0" + path-exists: "npm:^3.0.0" + checksum: 3db394b7829a7fe2f4fbdd25d3c4689b85f003c318c5da4052c7e56eed697da8f1bce5294f685c69ff76e32cba7a33629d94396976f6d05fb7f4c755c5e2ae8b + languageName: node + linkType: hard + +"locate-path@npm:^5.0.0": + version: 5.0.0 + resolution: "locate-path@npm:5.0.0" + dependencies: + p-locate: "npm:^4.1.0" + checksum: 33a1c5247e87e022f9713e6213a744557a3e9ec32c5d0b5efb10aa3a38177615bf90221a5592674857039c1a0fd2063b82f285702d37b792d973e9e72ace6c59 + languageName: node + linkType: hard + +"locate-path@npm:^6.0.0": + version: 6.0.0 + resolution: "locate-path@npm:6.0.0" + dependencies: + p-locate: "npm:^5.0.0" + checksum: d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3 + languageName: node + linkType: hard + +"lodash.camelcase@npm:^4.3.0": + version: 4.3.0 + resolution: "lodash.camelcase@npm:4.3.0" + checksum: fcba15d21a458076dd309fce6b1b4bf611d84a0ec252cb92447c948c533ac250b95d2e00955801ebc367e5af5ed288b996d75d37d2035260a937008e14eaf432 + languageName: node + linkType: hard + +"lodash.debounce@npm:^4.0.8": + version: 4.0.8 + resolution: "lodash.debounce@npm:4.0.8" + checksum: 762998a63e095412b6099b8290903e0a8ddcb353ac6e2e0f2d7e7d03abd4275fe3c689d88960eb90b0dde4f177554d51a690f22a343932ecbc50a5d111849987 + languageName: node + linkType: hard + +"lodash.memoize@npm:^4.1.2": + version: 4.1.2 + resolution: "lodash.memoize@npm:4.1.2" + checksum: c8713e51eccc650422716a14cece1809cfe34bc5ab5e242b7f8b4e2241c2483697b971a604252807689b9dd69bfe3a98852e19a5b89d506b000b4187a1285df8 + languageName: node + linkType: hard + +"lodash.merge@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.merge@npm:4.6.2" + checksum: 402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506 + languageName: node + linkType: hard + +"lodash.snakecase@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.snakecase@npm:4.1.1" + checksum: f0b3f2497eb20eea1a1cfc22d645ecaeb78ac14593eb0a40057977606d2f35f7aaff0913a06553c783b535aafc55b718f523f9eb78f8d5293f492af41002eaf9 + languageName: node + linkType: hard + +"lodash.sortby@npm:^4.7.0": + version: 4.7.0 + resolution: "lodash.sortby@npm:4.7.0" + checksum: fc48fb54ff7669f33bb32997cab9460757ee99fafaf72400b261c3e10fde21538e47d8cfcbe6a25a31bcb5b7b727c27d52626386fc2de24eb059a6d64a89cdf5 + languageName: node + linkType: hard + +"lodash.uniq@npm:^4.5.0": + version: 4.5.0 + resolution: "lodash.uniq@npm:4.5.0" + checksum: 262d400bb0952f112162a320cc4a75dea4f66078b9e7e3075ffbc9c6aa30b3e9df3cf20e7da7d566105e1ccf7804e4fbd7d804eee0b53de05d83f16ffbf41c5e + languageName: node + linkType: hard + +"lodash@npm:^4.17.15, lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.3, lodash@npm:^4.7.0": + version: 4.17.21 + resolution: "lodash@npm:4.17.21" + checksum: d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c + languageName: node + linkType: hard + +"longest-streak@npm:^2.0.0": + version: 2.0.4 + resolution: "longest-streak@npm:2.0.4" + checksum: 918fb5104cde537757f44431776d6d828bc091a63ca38a3b3e59a08b88498b4421bf5fd9823ef22b4d186f0234d9943087fa96bd6117d26dedcf6008480fd46a + languageName: node + linkType: hard + +"longest-streak@npm:^3.0.0": + version: 3.1.0 + resolution: "longest-streak@npm:3.1.0" + checksum: 7c2f02d0454b52834d1bcedef79c557bd295ee71fdabb02d041ff3aa9da48a90b5df7c0409156dedbc4df9b65da18742652aaea4759d6ece01f08971af6a7eaa + languageName: node + linkType: hard + +"looks-same@npm:^8.1.0": + version: 8.1.0 + resolution: "looks-same@npm:8.1.0" + dependencies: + color-diff: "npm:^1.1.0" + fs-extra: "npm:^8.1.0" + js-graph-algorithms: "npm:1.0.18" + lodash: "npm:^4.17.3" + nested-error-stacks: "npm:^2.1.0" + parse-color: "npm:^1.0.0" + sharp: "npm:~0.30.7" + checksum: 875998b2f4a918d5ea58880696bb32f50f2e7acc9333baaa88705066b1d4d5a857bae65428765867f02d22ae6ed04453ce4e37d674d84f556901b77dc55ca199 + languageName: node + linkType: hard + +"loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": + version: 1.4.0 + resolution: "loose-envify@npm:1.4.0" + dependencies: + js-tokens: "npm:^3.0.0 || ^4.0.0" + bin: + loose-envify: cli.js + checksum: 655d110220983c1a4b9c0c679a2e8016d4b67f6e9c7b5435ff5979ecdb20d0813f4dec0a08674fcbdd4846a3f07edbb50a36811fd37930b94aaa0d9daceb017e + languageName: node + linkType: hard + +"lower-case@npm:^2.0.2": + version: 2.0.2 + resolution: "lower-case@npm:2.0.2" + dependencies: + tslib: "npm:^2.0.3" + checksum: 3d925e090315cf7dc1caa358e0477e186ffa23947740e4314a7429b6e62d72742e0bbe7536a5ae56d19d7618ce998aba05caca53c2902bd5742fdca5fc57fd7b + languageName: node + linkType: hard + +"lru-cache@npm:^10.0.1, lru-cache@npm:^9.1.1 || ^10.0.0": + version: 10.1.0 + resolution: "lru-cache@npm:10.1.0" + checksum: 778bc8b2626daccd75f24c4b4d10632496e21ba064b126f526c626fbdbc5b28c472013fccd45d7646b9e1ef052444824854aed617b59cd570d01a8b7d651fc1e + languageName: node + linkType: hard + +"lru-cache@npm:^5.1.1": + version: 5.1.1 + resolution: "lru-cache@npm:5.1.1" + dependencies: + yallist: "npm:^3.0.2" + checksum: 89b2ef2ef45f543011e38737b8a8622a2f8998cddf0e5437174ef8f1f70a8b9d14a918ab3e232cb3ba343b7abddffa667f0b59075b2b80e6b4d63c3de6127482 + languageName: node + linkType: hard + +"lru-cache@npm:^6.0.0": + version: 6.0.0 + resolution: "lru-cache@npm:6.0.0" + dependencies: + yallist: "npm:^4.0.0" + checksum: cb53e582785c48187d7a188d3379c181b5ca2a9c78d2bce3e7dee36f32761d1c42983da3fe12b55cb74e1779fa94cdc2e5367c028a9b35317184ede0c07a30a9 + languageName: node + linkType: hard + +"lz-string@npm:^1.5.0": + version: 1.5.0 + resolution: "lz-string@npm:1.5.0" + bin: + lz-string: bin/bin.js + checksum: 36128e4de34791838abe979b19927c26e67201ca5acf00880377af7d765b38d1c60847e01c5ec61b1a260c48029084ab3893a3925fd6e48a04011364b089991b + languageName: node + linkType: hard + +"magic-string@npm:^0.25.0, magic-string@npm:^0.25.7": + version: 0.25.9 + resolution: "magic-string@npm:0.25.9" + dependencies: + sourcemap-codec: "npm:^1.4.8" + checksum: 37f5e01a7e8b19a072091f0b45ff127cda676232d373ce2c551a162dd4053c575ec048b9cbb4587a1f03adb6c5d0fd0dd49e8ab070cd2c83a4992b2182d9cb56 + languageName: node + linkType: hard + +"magic-string@npm:^0.27.0": + version: 0.27.0 + resolution: "magic-string@npm:0.27.0" + dependencies: + "@jridgewell/sourcemap-codec": "npm:^1.4.13" + checksum: cddacfea14441ca57ae8a307bc3cf90bac69efaa4138dd9a80804cffc2759bf06f32da3a293fb13eaa96334b7d45b7768a34f1d226afae25d2f05b05a3bb37d8 + languageName: node + linkType: hard + +"make-dir@npm:^3.0.0, make-dir@npm:^3.0.2, make-dir@npm:^3.1.0": + version: 3.1.0 + resolution: "make-dir@npm:3.1.0" + dependencies: + semver: "npm:^6.0.0" + checksum: 56aaafefc49c2dfef02c5c95f9b196c4eb6988040cf2c712185c7fe5c99b4091591a7fc4d4eafaaefa70ff763a26f6ab8c3ff60b9e75ea19876f49b18667ecaa + languageName: node + linkType: hard + +"make-fetch-happen@npm:^13.0.0": + version: 13.0.0 + resolution: "make-fetch-happen@npm:13.0.0" + dependencies: + "@npmcli/agent": "npm:^2.0.0" + cacache: "npm:^18.0.0" + http-cache-semantics: "npm:^4.1.1" + is-lambda: "npm:^1.0.1" + minipass: "npm:^7.0.2" + minipass-fetch: "npm:^3.0.0" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + negotiator: "npm:^0.6.3" + promise-retry: "npm:^2.0.1" + ssri: "npm:^10.0.0" + checksum: 43b9f6dcbc6fe8b8604cb6396957c3698857a15ba4dbc38284f7f0e61f248300585ef1eb8cc62df54e9c724af977e45b5cdfd88320ef7f53e45070ed3488da55 + languageName: node + linkType: hard + +"makeerror@npm:1.0.12": + version: 1.0.12 + resolution: "makeerror@npm:1.0.12" + dependencies: + tmpl: "npm:1.0.5" + checksum: b0e6e599780ce6bab49cc413eba822f7d1f0dfebd1c103eaa3785c59e43e22c59018323cf9e1708f0ef5329e94a745d163fcbb6bff8e4c6742f9be9e86f3500c + languageName: node + linkType: hard + +"map-limit@npm:0.0.1": + version: 0.0.1 + resolution: "map-limit@npm:0.0.1" + dependencies: + once: "npm:~1.3.0" + checksum: b83e5c24b07596f65ce3a09592932ae1b9c91658587d339e9700121bae79c212d91fe60dde7f2ef976309522dae50b04858b8c06f30b770303900fdbee37239c + languageName: node + linkType: hard + +"mapbox-gl@npm:1.10.1": + version: 1.10.1 + resolution: "mapbox-gl@npm:1.10.1" + dependencies: + "@mapbox/geojson-rewind": "npm:^0.5.0" + "@mapbox/geojson-types": "npm:^1.0.2" + "@mapbox/jsonlint-lines-primitives": "npm:^2.0.2" + "@mapbox/mapbox-gl-supported": "npm:^1.5.0" + "@mapbox/point-geometry": "npm:^0.1.0" + "@mapbox/tiny-sdf": "npm:^1.1.1" + "@mapbox/unitbezier": "npm:^0.0.0" + "@mapbox/vector-tile": "npm:^1.3.1" + "@mapbox/whoots-js": "npm:^3.1.0" + csscolorparser: "npm:~1.0.3" + earcut: "npm:^2.2.2" + geojson-vt: "npm:^3.2.1" + gl-matrix: "npm:^3.2.1" + grid-index: "npm:^1.1.0" + minimist: "npm:^1.2.5" + murmurhash-js: "npm:^1.0.0" + pbf: "npm:^3.2.1" + potpack: "npm:^1.0.1" + quickselect: "npm:^2.0.0" + rw: "npm:^1.3.3" + supercluster: "npm:^7.0.0" + tinyqueue: "npm:^2.0.3" + vt-pbf: "npm:^3.1.1" + checksum: 35d797c69407ac0c3fa6d8a57d337eda61f23476cac72b55c5a2dd1215d19761e02083d51b0e1874d92fcd431e569c2c67a1e75e1619469ef69355f15a6babdd + languageName: node + linkType: hard + +"markdown-table@npm:^2.0.0": + version: 2.0.0 + resolution: "markdown-table@npm:2.0.0" + dependencies: + repeat-string: "npm:^1.0.0" + checksum: f257e0781ea50eb946919df84bdee4ba61f983971b277a369ca7276f89740fd0e2749b9b187163a42df4c48682b71962d4007215ce3523480028f06c11ddc2e6 + languageName: node + linkType: hard + +"markdown-table@npm:^3.0.0": + version: 3.0.3 + resolution: "markdown-table@npm:3.0.3" + checksum: 47433a3f31e4637a184e38e873ab1d2fadfb0106a683d466fec329e99a2d8dfa09f091fa42202c6f13ec94aef0199f449a684b28042c636f2edbc1b7e1811dcd + languageName: node + linkType: hard + +"math-log2@npm:^1.0.1": + version: 1.0.1 + resolution: "math-log2@npm:1.0.1" + checksum: 6bd247d50f526d4521bceb23c8adff5f93bc60df7e073cf14ea1a45be7e53ff2d24779b3bf22f174831a33ff33a9026022bde314b6fe77ee89cd2444489ae9e3 + languageName: node + linkType: hard + +"md5.js@npm:^1.3.4": + version: 1.3.5 + resolution: "md5.js@npm:1.3.5" + dependencies: + hash-base: "npm:^3.0.0" + inherits: "npm:^2.0.1" + safe-buffer: "npm:^5.1.2" + checksum: b7bd75077f419c8e013fc4d4dada48be71882e37d69a44af65a2f2804b91e253441eb43a0614423a1c91bb830b8140b0dc906bc797245e2e275759584f4efcc5 + languageName: node + linkType: hard + +"mdast-util-find-and-replace@npm:^1.1.0": + version: 1.1.1 + resolution: "mdast-util-find-and-replace@npm:1.1.1" + dependencies: + escape-string-regexp: "npm:^4.0.0" + unist-util-is: "npm:^4.0.0" + unist-util-visit-parents: "npm:^3.0.0" + checksum: 4b9da583e858146a6553155795ef2f0d37b72b8d20487f75895e01fd240a483fbdb97f5aecd218e8ce598be24edb742c5bcbcba2896d172101529376ef390633 + languageName: node + linkType: hard + +"mdast-util-find-and-replace@npm:^3.0.0": + version: 3.0.1 + resolution: "mdast-util-find-and-replace@npm:3.0.1" + dependencies: + "@types/mdast": "npm:^4.0.0" + escape-string-regexp: "npm:^5.0.0" + unist-util-is: "npm:^6.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 1faca98c4ee10a919f23b8cc6d818e5bb6953216a71dfd35f51066ed5d51ef86e5063b43dcfdc6061cd946e016a9f0d44a1dccadd58452cf4ed14e39377f00cb + languageName: node + linkType: hard + +"mdast-util-from-markdown@npm:^0.8.0": + version: 0.8.5 + resolution: "mdast-util-from-markdown@npm:0.8.5" + dependencies: + "@types/mdast": "npm:^3.0.0" + mdast-util-to-string: "npm:^2.0.0" + micromark: "npm:~2.11.0" + parse-entities: "npm:^2.0.0" + unist-util-stringify-position: "npm:^2.0.0" + checksum: 86e7589e574378817c180f10ab602db844b6b71b7b1769314947a02ef42ac5c1435f5163d02a975ae8cdab8b6e6176acbd9188da1848ddd5f0d5e09d0291c870 + languageName: node + linkType: hard + +"mdast-util-from-markdown@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-from-markdown@npm:2.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + decode-named-character-reference: "npm:^1.0.0" + devlop: "npm:^1.0.0" + mdast-util-to-string: "npm:^4.0.0" + micromark: "npm:^4.0.0" + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" + micromark-util-decode-string: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + unist-util-stringify-position: "npm:^4.0.0" + checksum: fb66e917f66e33fc60d6964264c4abd519fd8829a4a58ff9c61b2ba5c337554fb954b9ec31ca1c34e83c1163a73f310c39072d656f9a2d3184fe39c87cbba65a + languageName: node + linkType: hard + +"mdast-util-gfm-autolink-literal@npm:^0.1.0": + version: 0.1.3 + resolution: "mdast-util-gfm-autolink-literal@npm:0.1.3" + dependencies: + ccount: "npm:^1.0.0" + mdast-util-find-and-replace: "npm:^1.1.0" + micromark: "npm:^2.11.3" + checksum: 155665a88a9b11fb5f8b6c5bff1a1e9d30f7381ff8c1864c7ede1eab4e312c51cef1e92e113cda174ebad40181350e555c303fa3293a1dc60b8945818d0af39a + languageName: node + linkType: hard + +"mdast-util-gfm-autolink-literal@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-gfm-autolink-literal@npm:2.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + ccount: "npm:^2.0.0" + devlop: "npm:^1.0.0" + mdast-util-find-and-replace: "npm:^3.0.0" + micromark-util-character: "npm:^2.0.0" + checksum: 821ef91db108f05b321c54fdf4436df9d6badb33e18f714d8d52c0e70f988f5b6b118cdd4d607b4cb3bef1718304ce7e9fb25fa580622c3d20d68c1489c64875 + languageName: node + linkType: hard + +"mdast-util-gfm-footnote@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-gfm-footnote@npm:2.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.1.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + checksum: c673b22bea24740235e74cfd66765b41a2fa540334f7043fa934b94938b06b7d3c93f2d3b33671910c5492b922c0cc98be833be3b04cfed540e0679650a6d2de + languageName: node + linkType: hard + +"mdast-util-gfm-strikethrough@npm:^0.2.0": + version: 0.2.3 + resolution: "mdast-util-gfm-strikethrough@npm:0.2.3" + dependencies: + mdast-util-to-markdown: "npm:^0.6.0" + checksum: 1de00913769c252add1f48fea547121d971ef7a8bfe6a89b775dea38aa319e6b10b6f514b492586aa7e660f8880b5c2390e411302a0b2386ed793f914b9eca71 + languageName: node + linkType: hard + +"mdast-util-gfm-strikethrough@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-gfm-strikethrough@npm:2.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: b053e93d62c7545019bd914271ea9e5667ad3b3b57d16dbf68e56fea39a7e19b4a345e781312714eb3d43fdd069ff7ee22a3ca7f6149dfa774554f19ce3ac056 + languageName: node + linkType: hard + +"mdast-util-gfm-table@npm:^0.1.0": + version: 0.1.6 + resolution: "mdast-util-gfm-table@npm:0.1.6" + dependencies: + markdown-table: "npm:^2.0.0" + mdast-util-to-markdown: "npm:~0.6.0" + checksum: a3b3fa2f91a44054dbe7e8a4cba1bcaa35255633da7850ad2688c60d1e1825d5d668774f31689d018d9f04cadc68f6055349048192c89a0e6c2ccb91a7ae7d1f + languageName: node + linkType: hard + +"mdast-util-gfm-table@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-gfm-table@npm:2.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + markdown-table: "npm:^3.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: 128af47c503a53bd1c79f20642561e54a510ad5e2db1e418d28fefaf1294ab839e6c838e341aef5d7e404f9170b9ca3d1d89605f234efafde93ee51174a6e31e + languageName: node + linkType: hard + +"mdast-util-gfm-task-list-item@npm:^0.1.0": + version: 0.1.6 + resolution: "mdast-util-gfm-task-list-item@npm:0.1.6" + dependencies: + mdast-util-to-markdown: "npm:~0.6.0" + checksum: 6b5b5239f031b630cd433cfd0bb30b7258dfac7d49c86a2c937127bc00fda186f798cf2a671507bcfad00f075d2d8779be9c109549052d98f1b4927e6e12d8be + languageName: node + linkType: hard + +"mdast-util-gfm-task-list-item@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-gfm-task-list-item@npm:2.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: 258d725288482b636c0a376c296431390c14b4f29588675297cb6580a8598ed311fc73ebc312acfca12cc8546f07a3a285a53a3b082712e2cbf5c190d677d834 + languageName: node + linkType: hard + +"mdast-util-gfm@npm:^0.1.0": + version: 0.1.2 + resolution: "mdast-util-gfm@npm:0.1.2" + dependencies: + mdast-util-gfm-autolink-literal: "npm:^0.1.0" + mdast-util-gfm-strikethrough: "npm:^0.2.0" + mdast-util-gfm-table: "npm:^0.1.0" + mdast-util-gfm-task-list-item: "npm:^0.1.0" + mdast-util-to-markdown: "npm:^0.6.1" + checksum: 109c5f3e3340c25ecec5fb0b9b1a4137fb0948ffbc38ed4b85d477f3da471c2a475a84f2cb2569663768d6967aedf0f3a18b936ea907d0e34374f4eeaed18c5a + languageName: node + linkType: hard + +"mdast-util-gfm@npm:^3.0.0": + version: 3.0.0 + resolution: "mdast-util-gfm@npm:3.0.0" + dependencies: + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-gfm-autolink-literal: "npm:^2.0.0" + mdast-util-gfm-footnote: "npm:^2.0.0" + mdast-util-gfm-strikethrough: "npm:^2.0.0" + mdast-util-gfm-table: "npm:^2.0.0" + mdast-util-gfm-task-list-item: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: 91596fe9bf3e4a0c546d0c57f88106c17956d9afbe88ceb08308e4da2388aff64489d649ddad599caecfdf755fc3ae4c9b82c219b85281bc0586b67599881fca + languageName: node + linkType: hard + +"mdast-util-mdx-expression@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-mdx-expression@npm:2.0.0" + dependencies: + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: 512848cbc44b9dc7cffc1bb3f95f7e67f0d6562870e56a67d25647f475d411e136b915ba417c8069fb36eac1839d0209fb05fb323d377f35626a82fcb0879363 + languageName: node + linkType: hard + +"mdast-util-mdx-jsx@npm:^3.0.0": + version: 3.0.0 + resolution: "mdast-util-mdx-jsx@npm:3.0.0" + dependencies: + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + ccount: "npm:^2.0.0" + devlop: "npm:^1.1.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + parse-entities: "npm:^4.0.0" + stringify-entities: "npm:^4.0.0" + unist-util-remove-position: "npm:^5.0.0" + unist-util-stringify-position: "npm:^4.0.0" + vfile-message: "npm:^4.0.0" + checksum: c14fc72587acd482086be56bb809a142b4d732833593c9a14c1ebb863e549aafbc9391507b177eac8788b2a9de624b8665a2092c75243bbe80f808728ffa421a + languageName: node + linkType: hard + +"mdast-util-mdxjs-esm@npm:^2.0.0": + version: 2.0.1 + resolution: "mdast-util-mdxjs-esm@npm:2.0.1" + dependencies: + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: 5bda92fc154141705af2b804a534d891f28dac6273186edf1a4c5e3f045d5b01dbcac7400d27aaf91b7e76e8dce007c7b2fdf136c11ea78206ad00bdf9db46bc + languageName: node + linkType: hard + +"mdast-util-phrasing@npm:^4.0.0": + version: 4.0.0 + resolution: "mdast-util-phrasing@npm:4.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + unist-util-is: "npm:^6.0.0" + checksum: bf281d159d1a9a9705ed8fdbadb70c9633d1c25716ff2c282b6c2ecbc1f05cff10f73e5280d754ed833b09d42b00260c4b8d0a5fed4ce3236d4cffb5230b50cf + languageName: node + linkType: hard + +"mdast-util-to-hast@npm:^13.0.0": + version: 13.0.2 + resolution: "mdast-util-to-hast@npm:13.0.2" + dependencies: + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + "@ungap/structured-clone": "npm:^1.0.0" + devlop: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + trim-lines: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit: "npm:^5.0.0" + checksum: f6e9a5b1ab94483ce1cf2ef229578fde4fe7d085f8b9d88a048823da5f93f9469adc98839e8db73f7475e8128a6df30eccad9cd0f9ee0a1d410e74db19b82d8c + languageName: node + linkType: hard + +"mdast-util-to-markdown@npm:^0.6.0, mdast-util-to-markdown@npm:^0.6.1, mdast-util-to-markdown@npm:~0.6.0": + version: 0.6.5 + resolution: "mdast-util-to-markdown@npm:0.6.5" + dependencies: + "@types/unist": "npm:^2.0.0" + longest-streak: "npm:^2.0.0" + mdast-util-to-string: "npm:^2.0.0" + parse-entities: "npm:^2.0.0" + repeat-string: "npm:^1.0.0" + zwitch: "npm:^1.0.0" + checksum: 716035b75a50394298eb31acee60a20d06310c7ebf83a3009908714d8c4058d636344932c9c054f1a26e8c6c20e2aafda3b87e003c16037b3e16b2d260a87463 + languageName: node + linkType: hard + +"mdast-util-to-markdown@npm:^2.0.0": + version: 2.1.0 + resolution: "mdast-util-to-markdown@npm:2.1.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + longest-streak: "npm:^3.0.0" + mdast-util-phrasing: "npm:^4.0.0" + mdast-util-to-string: "npm:^4.0.0" + micromark-util-decode-string: "npm:^2.0.0" + unist-util-visit: "npm:^5.0.0" + zwitch: "npm:^2.0.0" + checksum: 8bd37a9627a438ef6418d6642661904d0cc03c5c732b8b018a8e238ef5cc82fe8aef1940b19c6f563245e58b9659f35e527209bd3fe145f3c723ba14d18fc3e6 + languageName: node + linkType: hard + +"mdast-util-to-string@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-to-string@npm:2.0.0" + checksum: a4231085133cdfec24644b694c13661e5a01d26716be0105b6792889faa04b8030e4abbf72d4be3363098b2b38b2b98f1f1f1f0858eb6580dc04e2aca1436a37 + languageName: node + linkType: hard + +"mdast-util-to-string@npm:^4.0.0": + version: 4.0.0 + resolution: "mdast-util-to-string@npm:4.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + checksum: 2d3c1af29bf3fe9c20f552ee9685af308002488f3b04b12fa66652c9718f66f41a32f8362aa2d770c3ff464c034860b41715902ada2306bb0a055146cef064d7 + languageName: node + linkType: hard + +"mdn-data@npm:2.0.14": + version: 2.0.14 + resolution: "mdn-data@npm:2.0.14" + checksum: 67241f8708c1e665a061d2b042d2d243366e93e5bf1f917693007f6d55111588b952dcbfd3ea9c2d0969fb754aad81b30fdcfdcc24546495fc3b24336b28d4bd + languageName: node + linkType: hard + +"mdn-data@npm:2.0.4": + version: 2.0.4 + resolution: "mdn-data@npm:2.0.4" + checksum: a935c4530b938407481f7d0ccb82119ae618d9c673d2ee78bb10dcba8bd0ccbe2e2c7fe850ddc60b67e08f4c9d97f50b900993f6c2f2926e64a52ed6baa00b3a + languageName: node + linkType: hard + +"media-typer@npm:0.3.0": + version: 0.3.0 + resolution: "media-typer@npm:0.3.0" + checksum: d160f31246907e79fed398470285f21bafb45a62869dc469b1c8877f3f064f5eabc4bcc122f9479b8b605bc5c76187d7871cf84c4ee3ecd3e487da1993279928 + languageName: node + linkType: hard + +"memfs@npm:^3.1.2, memfs@npm:^3.4.3": + version: 3.6.0 + resolution: "memfs@npm:3.6.0" + dependencies: + fs-monkey: "npm:^1.0.4" + checksum: af567f9038bbb5bbacf100b35d5839e90a89f882d191d8a1c7002faeb224c6cfcebd0e97c0150e9af8be95ec7b5b75a52af56fcd109d0bc18807c1f4e004f053 + languageName: node + linkType: hard + +"merge-descriptors@npm:1.0.1": + version: 1.0.1 + resolution: "merge-descriptors@npm:1.0.1" + checksum: b67d07bd44cfc45cebdec349bb6e1f7b077ee2fd5beb15d1f7af073849208cb6f144fe403e29a36571baf3f4e86469ac39acf13c318381e958e186b2766f54ec + languageName: node + linkType: hard + +"merge-stream@npm:^2.0.0": + version: 2.0.0 + resolution: "merge-stream@npm:2.0.0" + checksum: 867fdbb30a6d58b011449b8885601ec1690c3e41c759ecd5a9d609094f7aed0096c37823ff4a7190ef0b8f22cc86beb7049196ff68c016e3b3c671d0dac91ce5 + languageName: node + linkType: hard + +"merge2@npm:^1.3.0, merge2@npm:^1.4.1": + version: 1.4.1 + resolution: "merge2@npm:1.4.1" + checksum: 254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb + languageName: node + linkType: hard + +"methods@npm:~1.1.2": + version: 1.1.2 + resolution: "methods@npm:1.1.2" + checksum: bdf7cc72ff0a33e3eede03708c08983c4d7a173f91348b4b1e4f47d4cdbf734433ad971e7d1e8c77247d9e5cd8adb81ea4c67b0a2db526b758b2233d7814b8b2 + languageName: node + linkType: hard + +"micromark-core-commonmark@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-core-commonmark@npm:2.0.0" + dependencies: + decode-named-character-reference: "npm:^1.0.0" + devlop: "npm:^1.0.0" + micromark-factory-destination: "npm:^2.0.0" + micromark-factory-label: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-factory-title: "npm:^2.0.0" + micromark-factory-whitespace: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-classify-character: "npm:^2.0.0" + micromark-util-html-tag-name: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-subtokenize: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: e087824b98d1f1d0db34791ac53945b0d68fb5e541c6c9da6700cc3db54d6b697d8110d3120d5d30e2fb39443aabddccd3e2bbf684795359f38b5a696fdc5913 + languageName: node + linkType: hard + +"micromark-extension-gfm-autolink-literal@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-extension-gfm-autolink-literal@npm:2.0.0" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 9349b8a4c45ad6375d85f196ef6ffc7472311bf0e7493dc387cb6e37498c2fa56f0b670f54ae54f0c6bbbed3b22997643f05057ffcc58457ca56368f7a636319 + languageName: node + linkType: hard + +"micromark-extension-gfm-autolink-literal@npm:~0.5.0": + version: 0.5.7 + resolution: "micromark-extension-gfm-autolink-literal@npm:0.5.7" + dependencies: + micromark: "npm:~2.11.3" + checksum: 4e56021641200cd88a9e05be531405bba007db9187554e06d0dfb5d8c49df67991322f2f952d6a25bbe3972ef0543a08d7ea00dff7b8577f8f3ca196c6544114 + languageName: node + linkType: hard + +"micromark-extension-gfm-footnote@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-extension-gfm-footnote@npm:2.0.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-core-commonmark: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 59958d8a6e28a16470937de69a01476cd9766f310a892655cb6bcd32b0833ffaa8accddb77e031b1c710c856fc943174e1b0f8f2c60dfa542743f4ba7cff6f15 + languageName: node + linkType: hard + +"micromark-extension-gfm-strikethrough@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-extension-gfm-strikethrough@npm:2.0.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-classify-character: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: b1c4f0e12935e1ffa3981a256de38c5c347f91a015cc1002c0bcdbab476fa97a5992f0d5a9788b2437a96bc94fe4c32d5f539d84b2d699a36dafe31b81b41eb1 + languageName: node + linkType: hard + +"micromark-extension-gfm-strikethrough@npm:~0.6.5": + version: 0.6.5 + resolution: "micromark-extension-gfm-strikethrough@npm:0.6.5" + dependencies: + micromark: "npm:~2.11.0" + checksum: c14e953b833718f56a71a650e9c2958fdb2b91093d7304043443eb64a8287cb8ff776d3cec0d40ca00ccd69357438f3dcac2cc40d3f16e47230cfbce72a1cf51 + languageName: node + linkType: hard + +"micromark-extension-gfm-table@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-extension-gfm-table@npm:2.0.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 3777b5074054d97888ffdcb8e383399adc9066a755ad7197423fda16e09769a18d7e713d969c204228d9abf1e18fef19c7b04790698afc973418ea5f75015f72 + languageName: node + linkType: hard + +"micromark-extension-gfm-table@npm:~0.4.0": + version: 0.4.3 + resolution: "micromark-extension-gfm-table@npm:0.4.3" + dependencies: + micromark: "npm:~2.11.0" + checksum: 0f4be3a1206024845bbc2495ea3b2a255bf5287af3747733d398adf962bfcf6f0c452dc66e268ab84f41b64a2f8113028887034045450bad43a48a8b5583bc14 + languageName: node + linkType: hard + +"micromark-extension-gfm-tagfilter@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-extension-gfm-tagfilter@npm:2.0.0" + dependencies: + micromark-util-types: "npm:^2.0.0" + checksum: 995558843fff137ae4e46aecb878d8a4691cdf23527dcf1e2f0157d66786be9f7bea0109c52a8ef70e68e3f930af811828ba912239438e31a9cfb9981f44d34d + languageName: node + linkType: hard + +"micromark-extension-gfm-tagfilter@npm:~0.3.0": + version: 0.3.0 + resolution: "micromark-extension-gfm-tagfilter@npm:0.3.0" + checksum: 5a81cffbcad7f314ddb3b761c5e2db5a5286e231e68559861da821ee748838cc9323fd22af5cbbe68569e826fa8159f2f2b0d53dc8aecc458ef48b2503a071fb + languageName: node + linkType: hard + +"micromark-extension-gfm-task-list-item@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-extension-gfm-task-list-item@npm:2.0.1" + dependencies: + devlop: "npm:^1.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 16a55040a1697339eeeeebaabbbe28dc9e8281979cdeec343a58dc97f7b447365d3e37329f394455c5d17902639b786c7669dbbc4ea558cf8680eb7808330598 + languageName: node + linkType: hard + +"micromark-extension-gfm-task-list-item@npm:~0.3.0": + version: 0.3.3 + resolution: "micromark-extension-gfm-task-list-item@npm:0.3.3" + dependencies: + micromark: "npm:~2.11.0" + checksum: e94e02eb2509a6ced49a6b296a7c503068488da79b5d3a3e4dfe5dcd5abdb95a1f305c087abb4ca3f7c90112ae29d628b30edeadaf53d3eec9dfe338bb678650 + languageName: node + linkType: hard + +"micromark-extension-gfm@npm:^0.3.0": + version: 0.3.3 + resolution: "micromark-extension-gfm@npm:0.3.3" + dependencies: + micromark: "npm:~2.11.0" + micromark-extension-gfm-autolink-literal: "npm:~0.5.0" + micromark-extension-gfm-strikethrough: "npm:~0.6.5" + micromark-extension-gfm-table: "npm:~0.4.0" + micromark-extension-gfm-tagfilter: "npm:~0.3.0" + micromark-extension-gfm-task-list-item: "npm:~0.3.0" + checksum: 6ed94c6213687b84c7b2dbacf8a50b078c60fd960bc9ddb3ec742fc298b8f7d5dcd8e9ab2a73fb8b423a0b11bf0a1565bc24bf45b45009f2693690277a7675df + languageName: node + linkType: hard + +"micromark-extension-gfm@npm:^3.0.0": + version: 3.0.0 + resolution: "micromark-extension-gfm@npm:3.0.0" + dependencies: + micromark-extension-gfm-autolink-literal: "npm:^2.0.0" + micromark-extension-gfm-footnote: "npm:^2.0.0" + micromark-extension-gfm-strikethrough: "npm:^2.0.0" + micromark-extension-gfm-table: "npm:^2.0.0" + micromark-extension-gfm-tagfilter: "npm:^2.0.0" + micromark-extension-gfm-task-list-item: "npm:^2.0.0" + micromark-util-combine-extensions: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 970e28df6ebdd7c7249f52a0dda56e0566fbfa9ae56c8eeeb2445d77b6b89d44096880cd57a1c01e7821b1f4e31009109fbaca4e89731bff7b83b8519690e5d9 + languageName: node + linkType: hard + +"micromark-factory-destination@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-destination@npm:2.0.0" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: b73492f687d41a6a379159c2f3acbf813042346bcea523d9041d0cc6124e6715f0779dbb2a0b3422719e9764c3b09f9707880aa159557e3cb4aeb03b9d274915 + languageName: node + linkType: hard + +"micromark-factory-label@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-label@npm:2.0.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 8ffad00487a7891941b1d1f51d53a33c7a659dcf48617edb7a4008dad7aff67ec316baa16d55ca98ae3d75ce1d81628dbf72fedc7c6f108f740dec0d5d21c8ee + languageName: node + linkType: hard + +"micromark-factory-space@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-space@npm:2.0.0" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 103ca954dade963d4ff1d2f27d397833fe855ddc72590205022832ef68b775acdea67949000cee221708e376530b1de78c745267b0bf8366740840783eb37122 + languageName: node + linkType: hard + +"micromark-factory-title@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-title@npm:2.0.0" + dependencies: + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 2b2188e7a011b1b001faf8c860286d246d5c3485ef8819270c60a5808f4c7613e49d4e481dbdff62600ef7acdba0f5100be2d125cbd2a15e236c26b3668a8ebd + languageName: node + linkType: hard + +"micromark-factory-whitespace@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-whitespace@npm:2.0.0" + dependencies: + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 4e91baab0cc71873095134bd0e225d01d9786cde352701402d71b72d317973954754e8f9f1849901f165530e6421202209f4d97c460a27bb0808ec5a3fc3148c + languageName: node + linkType: hard + +"micromark-util-character@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-character@npm:2.0.1" + dependencies: + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 5b91c90f29c8873a9f2f2385bbeb70f481b0e56c26092451d1796cd323257927a69eccca19b079d83d5751ec6fc92964214a3c868114555f87631426631df6b9 + languageName: node + linkType: hard + +"micromark-util-chunked@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-chunked@npm:2.0.0" + dependencies: + micromark-util-symbol: "npm:^2.0.0" + checksum: 043b5f2abc8c13a1e2e4c378ead191d1a47ed9e0cd6d0fa5a0a430b2df9e17ada9d5de5a20688a000bbc5932507e746144acec60a9589d9a79fa60918e029203 + languageName: node + linkType: hard + +"micromark-util-classify-character@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-classify-character@npm:2.0.0" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 2bf5fa5050faa9b69f6c7e51dbaaf02329ab70fabad8229984381b356afbbf69db90f4617bec36d814a7d285fb7cad8e3c4e38d1daf4387dc9e240aa7f9a292a + languageName: node + linkType: hard + +"micromark-util-combine-extensions@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-combine-extensions@npm:2.0.0" + dependencies: + micromark-util-chunked: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: cd4c8d1a85255527facb419ff3b3cc3d7b7f27005c5ef5fa7ef2c4d0e57a9129534fc292a188ec2d467c2c458642d369c5f894bc8a9e142aed6696cc7989d3ea + languageName: node + linkType: hard + +"micromark-util-decode-numeric-character-reference@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-decode-numeric-character-reference@npm:2.0.1" + dependencies: + micromark-util-symbol: "npm:^2.0.0" + checksum: 3f6d684ee8f317c67806e19b3e761956256cb936a2e0533aad6d49ac5604c6536b2041769c6febdd387ab7175b7b7e551851bf2c1f78da943e7a3671ca7635ac + languageName: node + linkType: hard + +"micromark-util-decode-string@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-decode-string@npm:2.0.0" + dependencies: + decode-named-character-reference: "npm:^1.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + checksum: f5413bebb21bdb686cfa1bcfa7e9c93093a523d1b42443ead303b062d2d680a94e5e8424549f57b8ba9d786a758e5a26a97f56068991bbdbca5d1885b3aa7227 + languageName: node + linkType: hard + +"micromark-util-encode@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-encode@npm:2.0.0" + checksum: ebdaafff23100bbf4c74e63b4b1612a9ddf94cd7211d6a076bc6fb0bc32c1b48d6fb615aa0953e607c62c97d849f97f1042260d3eb135259d63d372f401bbbb2 + languageName: node + linkType: hard + +"micromark-util-html-tag-name@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-html-tag-name@npm:2.0.0" + checksum: 988aa26367449bd345b627ae32cf605076daabe2dc1db71b578a8a511a47123e14af466bcd6dcbdacec60142f07bc2723ec5f7a0eed0f5319ce83b5e04825429 + languageName: node + linkType: hard + +"micromark-util-normalize-identifier@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-normalize-identifier@npm:2.0.0" + dependencies: + micromark-util-symbol: "npm:^2.0.0" + checksum: 93bf8789b8449538f22cf82ac9b196363a5f3b2f26efd98aef87c4c1b1f8c05be3ef6391ff38316ff9b03c1a6fd077342567598019ddd12b9bd923dacc556333 + languageName: node + linkType: hard + +"micromark-util-resolve-all@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-resolve-all@npm:2.0.0" + dependencies: + micromark-util-types: "npm:^2.0.0" + checksum: 3b912e88453dcefe728a9080c8934a75ac4732056d6576ceecbcaf97f42c5d6fa2df66db8abdc8427eb167c5ffddefe26713728cfe500bc0e314ed260d6e2746 + languageName: node + linkType: hard + +"micromark-util-sanitize-uri@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-sanitize-uri@npm:2.0.0" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-encode: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + checksum: 74763ca1c927dd520d3ab8fd9856a19740acf76fc091f0a1f5d4e99c8cd5f1b81c5a0be3efb564941a071fb6d85fd951103f2760eb6cff77b5ab3abe08341309 + languageName: node + linkType: hard + +"micromark-util-subtokenize@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-subtokenize@npm:2.0.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 1907c56c4974d430b984c50b3eb0930241112d931e611f178dee17d58f2976614950631b70f4e9c7e49dbccf21f91654ee61f250e028bf2f2b0f3d3aeb168da8 + languageName: node + linkType: hard + +"micromark-util-symbol@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-symbol@npm:2.0.0" + checksum: 4e76186c185ce4cefb9cea8584213d9ffacd77099d1da30c0beb09fa21f46f66f6de4c84c781d7e34ff763fe3a06b530e132fa9004882afab9e825238d0aa8b3 + languageName: node + linkType: hard + +"micromark-util-types@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-types@npm:2.0.0" + checksum: d74e913b9b61268e0d6939f4209e3abe9dada640d1ee782419b04fd153711112cfaaa3c4d5f37225c9aee1e23c3bb91a1f5223e1e33ba92d33e83956a53e61de + languageName: node + linkType: hard + +"micromark@npm:^2.11.3, micromark@npm:~2.11.0, micromark@npm:~2.11.3": + version: 2.11.4 + resolution: "micromark@npm:2.11.4" + dependencies: + debug: "npm:^4.0.0" + parse-entities: "npm:^2.0.0" + checksum: 67307cbacae621ab1eb23e333a5addc7600cf97d3b40cad22fc1c2d03d734d6d9cbc3f5a7e5d655a8c0862a949abe590ab7cfa96be366bfe09e239a94e6eea55 + languageName: node + linkType: hard + +"micromark@npm:^4.0.0": + version: 4.0.0 + resolution: "micromark@npm:4.0.0" + dependencies: + "@types/debug": "npm:^4.0.0" + debug: "npm:^4.0.0" + decode-named-character-reference: "npm:^1.0.0" + devlop: "npm:^1.0.0" + micromark-core-commonmark: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-combine-extensions: "npm:^2.0.0" + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" + micromark-util-encode: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + micromark-util-subtokenize: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 7e91c8d19ff27bc52964100853f1b3b32bb5b2ece57470a34ba1b2f09f4e2a183d90106c4ae585c9f2046969ee088576fed79b2f7061cba60d16652ccc2c64fd + languageName: node + linkType: hard + +"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5": + version: 4.0.5 + resolution: "micromatch@npm:4.0.5" + dependencies: + braces: "npm:^3.0.2" + picomatch: "npm:^2.3.1" + checksum: 3d6505b20f9fa804af5d8c596cb1c5e475b9b0cd05f652c5b56141cf941bd72adaeb7a436fda344235cef93a7f29b7472efc779fcdb83b478eab0867b95cdeff + languageName: node + linkType: hard + +"miew-react@npm:^1.0.0": + version: 1.0.0 + resolution: "miew-react@npm:1.0.0" + dependencies: + "@babel/runtime": "npm:^7.12.5" + "@emotion/react": "npm:^11.7.1" + "@emotion/styled": "npm:^11.6.0" + "@mui/material": "npm:^5.2.5" + "@reduxjs/toolkit": "npm:^1.7.1" + clsx: "npm:^1.1.1" + lodash: "npm:^4.17.21" + miew: "npm:0.10.1" + react-redux: "npm:^7.2.6" + redux: "npm:^4.1.2" + redux-saga: "npm:^1.1.3" + use-resize-observer: "npm:^7.0.0" + peerDependencies: + react: ^17.0.2 + react-dom: ^17.0.2 + checksum: 8d609a3bfc95741c1fb8b45e9d04329c7c278e789300e7e8638b0ccca6de80f4a383fdd1e0941b7a3d24ef6328efd8a7164138d7c6558a399b4be62dff5b49d1 + languageName: node + linkType: hard + +"miew@npm:0.10.1, miew@npm:^0.10.1": + version: 0.10.1 + resolution: "miew@npm:0.10.1" + dependencies: + lodash: "npm:^4.17.21" + three: "npm:0.131.3" + checksum: 68c698d70335a5a6d089b721f657b01abfb3aaa9ce4ea32ec3920825a96b2355290110dad23f56e5c25345a69c480c28219b02f9db46eca489ff7adfcc54a538 + languageName: node + linkType: hard + +"miller-rabin@npm:^4.0.0": + version: 4.0.1 + resolution: "miller-rabin@npm:4.0.1" + dependencies: + bn.js: "npm:^4.0.0" + brorand: "npm:^1.0.1" + bin: + miller-rabin: bin/miller-rabin + checksum: 26b2b96f6e49dbcff7faebb78708ed2f5f9ae27ac8cbbf1d7c08f83cf39bed3d418c0c11034dce997da70d135cc0ff6f3a4c15dc452f8e114c11986388a64346 + languageName: node + linkType: hard + +"mime-db@npm:1.52.0, mime-db@npm:>= 1.43.0 < 2": + version: 1.52.0 + resolution: "mime-db@npm:1.52.0" + checksum: 0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa + languageName: node + linkType: hard + +"mime-db@npm:~1.33.0": + version: 1.33.0 + resolution: "mime-db@npm:1.33.0" + checksum: 79172ce5468c8503b49dddfdddc18d3f5fe2599f9b5fe1bc321a8cbee14c96730fc6db22f907b23701b05b2936f865795f62ec3a78a7f3c8cb2450bb68c6763e + languageName: node + linkType: hard + +"mime-types@npm:2.1.18": + version: 2.1.18 + resolution: "mime-types@npm:2.1.18" + dependencies: + mime-db: "npm:~1.33.0" + checksum: a96a8d12f4bb98bc7bfac6a8ccbd045f40368fc1030d9366050c3613825d3715d1c1f393e10a75a885d2cdc1a26cd6d5e11f3a2a0d5c4d361f00242139430a0f + languageName: node + linkType: hard + +"mime-types@npm:^2.1.12, mime-types@npm:^2.1.27, mime-types@npm:^2.1.31, mime-types@npm:~2.1.17, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34": + version: 2.1.35 + resolution: "mime-types@npm:2.1.35" + dependencies: + mime-db: "npm:1.52.0" + checksum: 82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2 + languageName: node + linkType: hard + +"mime@npm:1.6.0": + version: 1.6.0 + resolution: "mime@npm:1.6.0" + bin: + mime: cli.js + checksum: b92cd0adc44888c7135a185bfd0dddc42c32606401c72896a842ae15da71eb88858f17669af41e498b463cd7eb998f7b48939a25b08374c7924a9c8a6f8a81b0 + languageName: node + linkType: hard + +"mimic-fn@npm:^2.1.0": + version: 2.1.0 + resolution: "mimic-fn@npm:2.1.0" + checksum: b26f5479d7ec6cc2bce275a08f146cf78f5e7b661b18114e2506dd91ec7ec47e7a25bf4360e5438094db0560bcc868079fb3b1fb3892b833c1ecbf63f80c95a4 + languageName: node + linkType: hard + +"mimic-response@npm:^3.1.0": + version: 3.1.0 + resolution: "mimic-response@npm:3.1.0" + checksum: 0d6f07ce6e03e9e4445bee655202153bdb8a98d67ee8dc965ac140900d7a2688343e6b4c9a72cfc9ef2f7944dfd76eef4ab2482eb7b293a68b84916bac735362 + languageName: node + linkType: hard + +"min-indent@npm:^1.0.0": + version: 1.0.1 + resolution: "min-indent@npm:1.0.1" + checksum: 7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c + languageName: node + linkType: hard + +"mini-css-extract-plugin@npm:^2.4.5": + version: 2.7.6 + resolution: "mini-css-extract-plugin@npm:2.7.6" + dependencies: + schema-utils: "npm:^4.0.0" + peerDependencies: + webpack: ^5.0.0 + checksum: 4862da928f52c18b37daa52d548c9f2a1ac65c900a48b63f7faa3354d8cfcd21618c049696559e73e2e27fc12d46748e6a490e0b885e54276429607d0d08c156 + languageName: node + linkType: hard + +"minimalistic-assert@npm:^1.0.0, minimalistic-assert@npm:^1.0.1": + version: 1.0.1 + resolution: "minimalistic-assert@npm:1.0.1" + checksum: 96730e5601cd31457f81a296f521eb56036e6f69133c0b18c13fe941109d53ad23a4204d946a0d638d7f3099482a0cec8c9bb6d642604612ce43ee536be3dddd + languageName: node + linkType: hard + +"minimalistic-crypto-utils@npm:^1.0.1": + version: 1.0.1 + resolution: "minimalistic-crypto-utils@npm:1.0.1" + checksum: 790ecec8c5c73973a4fbf2c663d911033e8494d5fb0960a4500634766ab05d6107d20af896ca2132e7031741f19888154d44b2408ada0852446705441383e9f8 + languageName: node + linkType: hard + +"minimatch@npm:3.0.5": + version: 3.0.5 + resolution: "minimatch@npm:3.0.5" + dependencies: + brace-expansion: "npm:^1.1.7" + checksum: f398652d0d260137c289c270a4ac98ebe0a27cd316fa0fac72b096e96cbdc89f71d80d47ac7065c716ba3b0b730783b19180bd85a35f9247535d2adfe96bba76 + languageName: node + linkType: hard + +"minimatch@npm:3.1.2, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": + version: 3.1.2 + resolution: "minimatch@npm:3.1.2" + dependencies: + brace-expansion: "npm:^1.1.7" + checksum: 0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 + languageName: node + linkType: hard + +"minimatch@npm:^5.0.1": + version: 5.1.6 + resolution: "minimatch@npm:5.1.6" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 3defdfd230914f22a8da203747c42ee3c405c39d4d37ffda284dac5e45b7e1f6c49aa8be606509002898e73091ff2a3bbfc59c2c6c71d4660609f63aa92f98e3 + languageName: node + linkType: hard + +"minimatch@npm:^9.0.1": + version: 9.0.3 + resolution: "minimatch@npm:9.0.3" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 85f407dcd38ac3e180f425e86553911d101455ca3ad5544d6a7cec16286657e4f8a9aa6695803025c55e31e35a91a2252b5dc8e7d527211278b8b65b4dbd5eac + languageName: node + linkType: hard + +"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.5, minimist@npm:^1.2.6": + version: 1.2.8 + resolution: "minimist@npm:1.2.8" + checksum: 19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 + languageName: node + linkType: hard + +"minipass-collect@npm:^2.0.1": + version: 2.0.1 + resolution: "minipass-collect@npm:2.0.1" + dependencies: + minipass: "npm:^7.0.3" + checksum: 5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e + languageName: node + linkType: hard + +"minipass-fetch@npm:^3.0.0": + version: 3.0.4 + resolution: "minipass-fetch@npm:3.0.4" + dependencies: + encoding: "npm:^0.1.13" + minipass: "npm:^7.0.3" + minipass-sized: "npm:^1.0.3" + minizlib: "npm:^2.1.2" + dependenciesMeta: + encoding: + optional: true + checksum: 1b63c1f3313e88eeac4689f1b71c9f086598db9a189400e3ee960c32ed89e06737fa23976c9305c2d57464fb3fcdc12749d3378805c9d6176f5569b0d0ee8a75 + languageName: node + linkType: hard + +"minipass-flush@npm:^1.0.5": + version: 1.0.5 + resolution: "minipass-flush@npm:1.0.5" + dependencies: + minipass: "npm:^3.0.0" + checksum: 2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd + languageName: node + linkType: hard + +"minipass-pipeline@npm:^1.2.4": + version: 1.2.4 + resolution: "minipass-pipeline@npm:1.2.4" + dependencies: + minipass: "npm:^3.0.0" + checksum: cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 + languageName: node + linkType: hard + +"minipass-sized@npm:^1.0.3": + version: 1.0.3 + resolution: "minipass-sized@npm:1.0.3" + dependencies: + minipass: "npm:^3.0.0" + checksum: 298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb + languageName: node + linkType: hard + +"minipass@npm:^3.0.0": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" + dependencies: + yallist: "npm:^4.0.0" + checksum: a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c + languageName: node + linkType: hard + +"minipass@npm:^5.0.0": + version: 5.0.0 + resolution: "minipass@npm:5.0.0" + checksum: a91d8043f691796a8ac88df039da19933ef0f633e3d7f0d35dcd5373af49131cf2399bfc355f41515dc495e3990369c3858cd319e5c2722b4753c90bf3152462 + languageName: node + linkType: hard + +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3": + version: 7.0.4 + resolution: "minipass@npm:7.0.4" + checksum: 6c7370a6dfd257bf18222da581ba89a5eaedca10e158781232a8b5542a90547540b4b9b7e7f490e4cda43acfbd12e086f0453728ecf8c19e0ef6921bc5958ac5 + languageName: node + linkType: hard + +"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": + version: 2.1.2 + resolution: "minizlib@npm:2.1.2" + dependencies: + minipass: "npm:^3.0.0" + yallist: "npm:^4.0.0" + checksum: 64fae024e1a7d0346a1102bb670085b17b7f95bf6cfdf5b128772ec8faf9ea211464ea4add406a3a6384a7d87a0cd1a96263692134323477b4fb43659a6cab78 + languageName: node + linkType: hard + +"mkdirp-classic@npm:^0.5.2, mkdirp-classic@npm:^0.5.3": + version: 0.5.3 + resolution: "mkdirp-classic@npm:0.5.3" + checksum: 95371d831d196960ddc3833cc6907e6b8f67ac5501a6582f47dfae5eb0f092e9f8ce88e0d83afcae95d6e2b61a01741ba03714eeafb6f7a6e9dcc158ac85b168 + languageName: node + linkType: hard + +"mkdirp@npm:^1.0.3": + version: 1.0.4 + resolution: "mkdirp@npm:1.0.4" + bin: + mkdirp: bin/cmd.js + checksum: 46ea0f3ffa8bc6a5bc0c7081ffc3907777f0ed6516888d40a518c5111f8366d97d2678911ad1a6882bf592fa9de6c784fea32e1687bb94e1f4944170af48a5cf + languageName: node + linkType: hard + +"mkdirp@npm:~0.5.1": + version: 0.5.6 + resolution: "mkdirp@npm:0.5.6" + dependencies: + minimist: "npm:^1.2.6" + bin: + mkdirp: bin/cmd.js + checksum: e2e2be789218807b58abced04e7b49851d9e46e88a2f9539242cc8a92c9b5c3a0b9bab360bd3014e02a140fc4fbc58e31176c408b493f8a2a6f4986bd7527b01 + languageName: node + linkType: hard + +"mouse-change@npm:^1.4.0": + version: 1.4.0 + resolution: "mouse-change@npm:1.4.0" + dependencies: + mouse-event: "npm:^1.0.0" + checksum: e500b88fe23cceaee41d2e5120b91776b983767303ec307b113e88590b414638408dfc692e31a1b64f7bddc211e5b6c74fc9a3af8067ae7ca52202c7b42f2926 + languageName: node + linkType: hard + +"mouse-event-offset@npm:^3.0.2": + version: 3.0.2 + resolution: "mouse-event-offset@npm:3.0.2" + checksum: 999a9f85082258fbd5a0478f54dbe4e6f064c13dae486e6fb39e5ebf73d81ee339f919c9ff7eb14819b6fd0e0f440f77506115e783582889f05549b2d9a1d2ef + languageName: node + linkType: hard + +"mouse-event@npm:^1.0.0": + version: 1.0.5 + resolution: "mouse-event@npm:1.0.5" + checksum: b8da3570537a08279ae19f5f4417b7814de0271c89ea4d5746d97f3de50abd62dd4499c0fca6c5ca2af7f8ddb79986493dfd2082669aab87783558adf2d56761 + languageName: node + linkType: hard + +"mouse-wheel@npm:^1.2.0": + version: 1.2.0 + resolution: "mouse-wheel@npm:1.2.0" + dependencies: + right-now: "npm:^1.0.0" + signum: "npm:^1.0.0" + to-px: "npm:^1.0.1" + checksum: a5710b0fa46d7465ad22146b5c43ab4475567eaee7d697936c6be751e05dad3e3433a069735bcdcd09b44de9f1cfd2223eb3e28a7a71e83ecfc3fdbeb3f064d7 + languageName: node + linkType: hard + +"ms@npm:2.0.0": + version: 2.0.0 + resolution: "ms@npm:2.0.0" + checksum: f8fda810b39fd7255bbdc451c46286e549794fcc700dc9cd1d25658bbc4dc2563a5de6fe7c60f798a16a60c6ceb53f033cb353f493f0cf63e5199b702943159d + languageName: node + linkType: hard + +"ms@npm:2.1.2": + version: 2.1.2 + resolution: "ms@npm:2.1.2" + checksum: a437714e2f90dbf881b5191d35a6db792efbca5badf112f87b9e1c712aace4b4b9b742dd6537f3edf90fd6f684de897cec230abde57e87883766712ddda297cc + languageName: node + linkType: hard + +"ms@npm:2.1.3, ms@npm:^2.1.1": + version: 2.1.3 + resolution: "ms@npm:2.1.3" + checksum: d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 + languageName: node + linkType: hard + +"multicast-dns@npm:^7.2.5": + version: 7.2.5 + resolution: "multicast-dns@npm:7.2.5" + dependencies: + dns-packet: "npm:^5.2.2" + thunky: "npm:^1.0.2" + bin: + multicast-dns: cli.js + checksum: 5120171d4bdb1577764c5afa96e413353bff530d1b37081cb29cccc747f989eb1baf40574fe8e27060fc1aef72b59c042f72b9b208413de33bcf411343c69057 + languageName: node + linkType: hard + +"mumath@npm:^3.3.4": + version: 3.3.4 + resolution: "mumath@npm:3.3.4" + dependencies: + almost-equal: "npm:^1.1.0" + checksum: 92b07302674e903b9c2ee0117e04b6783b1619d6bf6c5149d34346e51ce1fb91ab389f30b7f49baa1a9337201afe8f4522120ef8fb7a45bf221f5c1c49da849b + languageName: node + linkType: hard + +"murmurhash-js@npm:^1.0.0": + version: 1.0.0 + resolution: "murmurhash-js@npm:1.0.0" + checksum: f8569e16db0ba6f953bf88286e97cf737f1efe97b224e537c9308566ab963a067c7eca5b636fb473d6413c4cc3b79690b78ff7ab0f290e75db91c6fde0df92b4 + languageName: node + linkType: hard + +"mz@npm:^2.7.0": + version: 2.7.0 + resolution: "mz@npm:2.7.0" + dependencies: + any-promise: "npm:^1.0.0" + object-assign: "npm:^4.0.1" + thenify-all: "npm:^1.0.0" + checksum: 103114e93f87362f0b56ab5b2e7245051ad0276b646e3902c98397d18bb8f4a77f2ea4a2c9d3ad516034ea3a56553b60d3f5f78220001ca4c404bd711bd0af39 + languageName: node + linkType: hard + +"nanoid@npm:^3.3.6": + version: 3.3.6 + resolution: "nanoid@npm:3.3.6" + bin: + nanoid: bin/nanoid.cjs + checksum: 606b355960d0fcbe3d27924c4c52ef7d47d3b57208808ece73279420d91469b01ec1dce10fae512b6d4a8c5a5432b352b228336a8b2202a6ea68e67fa348e2ee + languageName: node + linkType: hard + +"napi-build-utils@npm:^1.0.1": + version: 1.0.2 + resolution: "napi-build-utils@npm:1.0.2" + checksum: 37fd2cd0ff2ad20073ce78d83fd718a740d568b225924e753ae51cb69d68f330c80544d487e5e5bd18e28702ed2ca469c2424ad948becd1862c1b0209542b2e9 + languageName: node + linkType: hard + +"native-promise-only@npm:^0.8.1": + version: 0.8.1 + resolution: "native-promise-only@npm:0.8.1" + checksum: c1b41128ca9806818e12d0b84f7c71e88b1fa00f0f4857767d96206dbdd0af6755305103f55c583b045533185ffca863b0c34116ade507ff7ba2e417e076a5ac + languageName: node + linkType: hard + +"natural-compare-lite@npm:^1.4.0": + version: 1.4.0 + resolution: "natural-compare-lite@npm:1.4.0" + checksum: f6cef26f5044515754802c0fc475d81426f3b90fe88c20fabe08771ce1f736ce46e0397c10acb569a4dd0acb84c7f1ee70676122f95d5bfdd747af3a6c6bbaa8 + languageName: node + linkType: hard + +"natural-compare@npm:^1.4.0": + version: 1.4.0 + resolution: "natural-compare@npm:1.4.0" + checksum: f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447 + languageName: node + linkType: hard + +"needle@npm:^2.5.2": + version: 2.9.1 + resolution: "needle@npm:2.9.1" + dependencies: + debug: "npm:^3.2.6" + iconv-lite: "npm:^0.4.4" + sax: "npm:^1.2.4" + bin: + needle: ./bin/needle + checksum: 65a7eaeaf4ca3410de492957474592af9838e02875273d9232ff6cff331393c58a95e48c592bd9a05f575e5bb9b08543d6cfd19eb96595dbd3d7da2c5fe1accb + languageName: node + linkType: hard + +"negotiator@npm:0.6.3, negotiator@npm:^0.6.3": + version: 0.6.3 + resolution: "negotiator@npm:0.6.3" + checksum: 3ec9fd413e7bf071c937ae60d572bc67155262068ed522cf4b3be5edbe6ddf67d095ec03a3a14ebf8fc8e95f8e1d61be4869db0dbb0de696f6b837358bd43fc2 + languageName: node + linkType: hard + +"neo-async@npm:^2.6.2": + version: 2.6.2 + resolution: "neo-async@npm:2.6.2" + checksum: c2f5a604a54a8ec5438a342e1f356dff4bc33ccccdb6dc668d94fe8e5eccfc9d2c2eea6064b0967a767ba63b33763f51ccf2cd2441b461a7322656c1f06b3f5d + languageName: node + linkType: hard + +"nested-error-stacks@npm:^2.1.0": + version: 2.1.1 + resolution: "nested-error-stacks@npm:2.1.1" + checksum: feec00417e4778661cfbbe657e6add6ca9918dcc026cd697ac330b4a56a79e4882b36dde8abc138167566b1ce4c5baa17d2d4df727a96f8b96aebace1c3ffca7 + languageName: node + linkType: hard + +"next-tick@npm:^1.1.0": + version: 1.1.0 + resolution: "next-tick@npm:1.1.0" + checksum: 3ba80dd805fcb336b4f52e010992f3e6175869c8d88bf4ff0a81d5d66e6049f89993463b28211613e58a6b7fe93ff5ccbba0da18d4fa574b96289e8f0b577f28 + languageName: node + linkType: hard + +"ngl@npm:^2.1.1": + version: 2.1.1 + resolution: "ngl@npm:2.1.1" + dependencies: + chroma-js: "npm:^1.3.7" + promise-polyfill: "npm:^8.0.0" + signals: "npm:^1.0.0" + sprintf-js: "npm:^1.1.2" + three: "npm:^0.118.0" + checksum: 23930903a9bd1a8c045532f8d36cf3860cde8e534088854f7b1508eeb0fc8e6a2c303bae16ef5bb155f76d752eae8a854d175f924724525cebd8d8470b5def78 + languageName: node + linkType: hard + +"no-case@npm:^3.0.4": + version: 3.0.4 + resolution: "no-case@npm:3.0.4" + dependencies: + lower-case: "npm:^2.0.2" + tslib: "npm:^2.0.3" + checksum: 8ef545f0b3f8677c848f86ecbd42ca0ff3cd9dd71c158527b344c69ba14710d816d8489c746b6ca225e7b615108938a0bda0a54706f8c255933703ac1cf8e703 + languageName: node + linkType: hard + +"node-abi@npm:^3.3.0": + version: 3.45.0 + resolution: "node-abi@npm:3.45.0" + dependencies: + semver: "npm:^7.3.5" + checksum: 36517006fe413b0c76ea60603201a81e7a931d70fe1e27914e86228e0e7e9746f1b4292d89082c8a736f2f1824a4aedb2a4357502d0a38aab5ccbc7486bb33db + languageName: node + linkType: hard + +"node-addon-api@npm:^5.0.0": + version: 5.1.0 + resolution: "node-addon-api@npm:5.1.0" + dependencies: + node-gyp: "npm:latest" + checksum: 0eb269786124ba6fad9df8007a149e03c199b3e5a3038125dfb3e747c2d5113d406a4e33f4de1ea600aa2339be1f137d55eba1a73ee34e5fff06c52a5c296d1d + languageName: node + linkType: hard + +"node-fetch@npm:^2.6.12": + version: 2.6.12 + resolution: "node-fetch@npm:2.6.12" + dependencies: + whatwg-url: "npm:^5.0.0" + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + checksum: 10372e4b5ee07acadc15e6b2bc6fd8940582eea7b9b2a331f4e3665fdcd968498c1656f79f2fa572080ebb37ea80e1474a6478b3b36057ef901b63f4be8fd899 + languageName: node + linkType: hard + +"node-forge@npm:^1": + version: 1.3.1 + resolution: "node-forge@npm:1.3.1" + checksum: e882819b251a4321f9fc1d67c85d1501d3004b4ee889af822fd07f64de3d1a8e272ff00b689570af0465d65d6bf5074df9c76e900e0aff23e60b847f2a46fbe8 + languageName: node + linkType: hard + +"node-gyp@npm:latest": + version: 10.0.1 + resolution: "node-gyp@npm:10.0.1" + dependencies: + env-paths: "npm:^2.2.0" + exponential-backoff: "npm:^3.1.1" + glob: "npm:^10.3.10" + graceful-fs: "npm:^4.2.6" + make-fetch-happen: "npm:^13.0.0" + nopt: "npm:^7.0.0" + proc-log: "npm:^3.0.0" + semver: "npm:^7.3.5" + tar: "npm:^6.1.2" + which: "npm:^4.0.0" + bin: + node-gyp: bin/node-gyp.js + checksum: abddfff7d873312e4ed4a5fb75ce893a5c4fb69e7fcb1dfa71c28a6b92a7f1ef6b62790dffb39181b5a82728ba8f2f32d229cf8cbe66769fe02cea7db4a555aa + languageName: node + linkType: hard + +"node-int64@npm:^0.4.0": + version: 0.4.0 + resolution: "node-int64@npm:0.4.0" + checksum: a6a4d8369e2f2720e9c645255ffde909c0fbd41c92ea92a5607fc17055955daac99c1ff589d421eee12a0d24e99f7bfc2aabfeb1a4c14742f6c099a51863f31a + languageName: node + linkType: hard + +"node-releases@npm:^2.0.12": + version: 2.0.13 + resolution: "node-releases@npm:2.0.13" + checksum: 2fb44bf70fc949d27f3a48a7fd1a9d1d603ddad4ccd091f26b3fb8b1da976605d919330d7388ccd55ca2ade0dc8b2e12841ba19ef249c8bb29bf82532d401af7 + languageName: node + linkType: hard + +"node-stdlib-browser@npm:^1.2.0": + version: 1.2.0 + resolution: "node-stdlib-browser@npm:1.2.0" + dependencies: + assert: "npm:^2.0.0" + browser-resolve: "npm:^2.0.0" + browserify-zlib: "npm:^0.2.0" + buffer: "npm:^5.7.1" + console-browserify: "npm:^1.1.0" + constants-browserify: "npm:^1.0.0" + create-require: "npm:^1.1.1" + crypto-browserify: "npm:^3.11.0" + domain-browser: "npm:^4.22.0" + events: "npm:^3.0.0" + https-browserify: "npm:^1.0.0" + isomorphic-timers-promises: "npm:^1.0.1" + os-browserify: "npm:^0.3.0" + path-browserify: "npm:^1.0.1" + pkg-dir: "npm:^5.0.0" + process: "npm:^0.11.10" + punycode: "npm:^1.4.1" + querystring-es3: "npm:^0.2.1" + readable-stream: "npm:^3.6.0" + stream-browserify: "npm:^3.0.0" + stream-http: "npm:^3.2.0" + string_decoder: "npm:^1.0.0" + timers-browserify: "npm:^2.0.4" + tty-browserify: "npm:0.0.1" + url: "npm:^0.11.0" + util: "npm:^0.12.4" + vm-browserify: "npm:^1.0.1" + checksum: 4da239ebabcba68e09b2620aaae02dd589045b101441beb90988bc60f1af3d286e9fab0c334503eaf74986e583923e7648a8fa081edc4981e4d738636773f32e + languageName: node + linkType: hard + +"nopt@npm:^7.0.0": + version: 7.2.0 + resolution: "nopt@npm:7.2.0" + dependencies: + abbrev: "npm:^2.0.0" + bin: + nopt: bin/nopt.js + checksum: 9bd7198df6f16eb29ff16892c77bcf7f0cc41f9fb5c26280ac0def2cf8cf319f3b821b3af83eba0e74c85807cc430a16efe0db58fe6ae1f41e69519f585b6aff + languageName: node + linkType: hard + +"normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0": + version: 3.0.0 + resolution: "normalize-path@npm:3.0.0" + checksum: e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046 + languageName: node + linkType: hard + +"normalize-range@npm:^0.1.2": + version: 0.1.2 + resolution: "normalize-range@npm:0.1.2" + checksum: bf39b73a63e0a42ad1a48c2bd1bda5a07ede64a7e2567307a407674e595bcff0fa0d57e8e5f1e7fa5e91000797c7615e13613227aaaa4d6d6e87f5bd5cc95de6 + languageName: node + linkType: hard + +"normalize-svg-path@npm:^1.0.0": + version: 1.1.0 + resolution: "normalize-svg-path@npm:1.1.0" + dependencies: + svg-arc-to-cubic-bezier: "npm:^3.0.0" + checksum: 2e24e1d0a9ca7f172cec161d9c14fef616c57040664d82f6077d97c42e6e8a113f288dc0cb55e19fc4873baa0c5ddc7857d24d4a1b6df594924451d1adbb1b41 + languageName: node + linkType: hard + +"normalize-svg-path@npm:~0.1.0": + version: 0.1.0 + resolution: "normalize-svg-path@npm:0.1.0" + checksum: a693092f83e1f1836d0dac2d36c9d13455552987f31e42a91e1d96a94c2aaca6c4e3fea3348acb9b78380ec6f5fc7573176438f614c9c359c384ce03a1d7856d + languageName: node + linkType: hard + +"normalize-url@npm:^6.0.1": + version: 6.1.0 + resolution: "normalize-url@npm:6.1.0" + checksum: 95d948f9bdd2cfde91aa786d1816ae40f8262946e13700bf6628105994fe0ff361662c20af3961161c38a119dc977adeb41fc0b41b1745eb77edaaf9cb22db23 + languageName: node + linkType: hard + +"npm-run-path@npm:^4.0.1": + version: 4.0.1 + resolution: "npm-run-path@npm:4.0.1" + dependencies: + path-key: "npm:^3.0.0" + checksum: 6f9353a95288f8455cf64cbeb707b28826a7f29690244c1e4bb61ec573256e021b6ad6651b394eb1ccfd00d6ec50147253aba2c5fe58a57ceb111fad62c519ac + languageName: node + linkType: hard + +"nth-check@npm:^1.0.2": + version: 1.0.2 + resolution: "nth-check@npm:1.0.2" + dependencies: + boolbase: "npm:~1.0.0" + checksum: 1a67ce53a99e276eea672f892d712b29f3e6802bbbef7285ffab72ecea4f972e8244defac1ebded0daffabf459def31355bb9c64e5657ac2ab032c13f185d0fd + languageName: node + linkType: hard + +"nth-check@npm:^2.0.1": + version: 2.1.1 + resolution: "nth-check@npm:2.1.1" + dependencies: + boolbase: "npm:^1.0.0" + checksum: 5fee7ff309727763689cfad844d979aedd2204a817fbaaf0e1603794a7c20db28548d7b024692f953557df6ce4a0ee4ae46cd8ebd9b36cfb300b9226b567c479 + languageName: node + linkType: hard + +"number-is-integer@npm:^1.0.1": + version: 1.0.1 + resolution: "number-is-integer@npm:1.0.1" + dependencies: + is-finite: "npm:^1.0.1" + checksum: 8108530e1d6321f1f62855343d7cb02235b76b1127bc2665420d65a8ce0804c3b33441228d40a320bc870ddb6feeece5c9486bae883868eb771b03c3597ba939 + languageName: node + linkType: hard + +"nwsapi@npm:^2.2.0": + version: 2.2.7 + resolution: "nwsapi@npm:2.2.7" + checksum: 44be198adae99208487a1c886c0a3712264f7bbafa44368ad96c003512fed2753d4e22890ca1e6edb2690c3456a169f2a3c33bfacde1905cf3bf01c7722464db + languageName: node + linkType: hard + +"object-assign@npm:^4, object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1": + version: 4.1.1 + resolution: "object-assign@npm:4.1.1" + checksum: 1f4df9945120325d041ccf7b86f31e8bcc14e73d29171e37a7903050e96b81323784ec59f93f102ec635bcf6fa8034ba3ea0a8c7e69fa202b87ae3b6cec5a414 + languageName: node + linkType: hard + +"object-hash@npm:^3.0.0": + version: 3.0.0 + resolution: "object-hash@npm:3.0.0" + checksum: a06844537107b960c1c8b96cd2ac8592a265186bfa0f6ccafe0d34eabdb526f6fa81da1f37c43df7ed13b12a4ae3457a16071603bcd39d8beddb5f08c37b0f47 + languageName: node + linkType: hard + +"object-inspect@npm:^1.12.3, object-inspect@npm:^1.9.0": + version: 1.12.3 + resolution: "object-inspect@npm:1.12.3" + checksum: 752bb5f4dc595e214157ea8f442adb77bdb850ace762b078d151d8b6486331ab12364997a89ee6509be1023b15adf2b3774437a7105f8a5043dfda11ed622411 + languageName: node + linkType: hard + +"object-is@npm:^1.0.1, object-is@npm:^1.1.5": + version: 1.1.5 + resolution: "object-is@npm:1.1.5" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.3" + checksum: 8c263fb03fc28f1ffb54b44b9147235c5e233dc1ca23768e7d2569740b5d860154d7cc29a30220fe28ed6d8008e2422aefdebfe987c103e1c5d190cf02d9d886 + languageName: node + linkType: hard + +"object-keys@npm:^1.1.1": + version: 1.1.1 + resolution: "object-keys@npm:1.1.1" + checksum: b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d + languageName: node + linkType: hard + +"object.assign@npm:^4.1.4": + version: 4.1.4 + resolution: "object.assign@npm:4.1.4" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + has-symbols: "npm:^1.0.3" + object-keys: "npm:^1.1.1" + checksum: 2f286118c023e557757620e647b02e7c88d3d417e0c568fca0820de8ec9cca68928304854d5b03e99763eddad6e78a6716e2930f7e6372e4b9b843f3fd3056f3 + languageName: node + linkType: hard + +"object.entries@npm:^1.1.6": + version: 1.1.6 + resolution: "object.entries@npm:1.1.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 8782c71db3a068ccbae9e0541e6b4ac2c25dc67c63f97b7e6ad3c88271d7820197e7398e37747f96542ed47c27f0b81148cdf14c42df15dc22f64818ae7bb5bf + languageName: node + linkType: hard + +"object.fromentries@npm:^2.0.6": + version: 2.0.6 + resolution: "object.fromentries@npm:2.0.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: db6759ea68131cbdb70b1152f9984b49db03e81de4f6de079b39929bebd8b45501e5333ca2351991e07ee56f4651606c023396644e8f25c0806fa39a26c4c6e6 + languageName: node + linkType: hard + +"object.getownpropertydescriptors@npm:^2.1.0": + version: 2.1.6 + resolution: "object.getownpropertydescriptors@npm:2.1.6" + dependencies: + array.prototype.reduce: "npm:^1.0.5" + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.2.0" + es-abstract: "npm:^1.21.2" + safe-array-concat: "npm:^1.0.0" + checksum: 9c401557a1cd47d873810b8df61dba350bc39848753180a2c7bdc8b9a67907b7c12e5aa9318fde7fe68d3b62c88b9cbd729b3cc8bbdf02655619b9d2a99b5c2a + languageName: node + linkType: hard + +"object.hasown@npm:^1.1.2": + version: 1.1.2 + resolution: "object.hasown@npm:1.1.2" + dependencies: + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 419fc1c74a2aea7ebb4d49b79d5b1599a010b26c18eae35bd061ccdd013ccb749c499d8dd6ee21a91e6d7264ccc592573d0f13562970f76e25fc844d8c1b02ce + languageName: node + linkType: hard + +"object.values@npm:^1.1.0, object.values@npm:^1.1.6": + version: 1.1.6 + resolution: "object.values@npm:1.1.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 3381204390f10c9f653a4875a50d221c67b5c16cb80a6ac06c706fc82a7cad8400857d4c7a0731193b0abb56b84fe803eabcf7addcf32de76397bbf207e68c66 + languageName: node + linkType: hard + +"obuf@npm:^1.0.0, obuf@npm:^1.1.2": + version: 1.1.2 + resolution: "obuf@npm:1.1.2" + checksum: 520aaac7ea701618eacf000fc96ae458e20e13b0569845800fc582f81b386731ab22d55354b4915d58171db00e79cfcd09c1638c02f89577ef092b38c65b7d81 + languageName: node + linkType: hard + +"on-finished@npm:2.4.1": + version: 2.4.1 + resolution: "on-finished@npm:2.4.1" + dependencies: + ee-first: "npm:1.1.1" + checksum: 46fb11b9063782f2d9968863d9cbba33d77aa13c17f895f56129c274318b86500b22af3a160fe9995aa41317efcd22941b6eba747f718ced08d9a73afdb087b4 + languageName: node + linkType: hard + +"on-headers@npm:~1.0.2": + version: 1.0.2 + resolution: "on-headers@npm:1.0.2" + checksum: f649e65c197bf31505a4c0444875db0258e198292f34b884d73c2f751e91792ef96bb5cf89aa0f4fecc2e4dc662461dda606b1274b0e564f539cae5d2f5fc32f + languageName: node + linkType: hard + +"once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0": + version: 1.4.0 + resolution: "once@npm:1.4.0" + dependencies: + wrappy: "npm:1" + checksum: 5d48aca287dfefabd756621c5dfce5c91a549a93e9fdb7b8246bc4c4790aa2ec17b34a260530474635147aeb631a2dcc8b32c613df0675f96041cbb8244517d0 + languageName: node + linkType: hard + +"once@npm:~1.3.0": + version: 1.3.3 + resolution: "once@npm:1.3.3" + dependencies: + wrappy: "npm:1" + checksum: bb9c0fa8f6420b89fea4e0fc80aac175f025358cd1374a8e7afb92672f58473684f45a784e18f147d07cf87e629cc277f63f35c48fdfdced662edd18779c5876 + languageName: node + linkType: hard + +"onetime@npm:^5.1.2": + version: 5.1.2 + resolution: "onetime@npm:5.1.2" + dependencies: + mimic-fn: "npm:^2.1.0" + checksum: ffcef6fbb2692c3c40749f31ea2e22677a876daea92959b8a80b521d95cca7a668c884d8b2045d1d8ee7d56796aa405c405462af112a1477594cc63531baeb8f + languageName: node + linkType: hard + +"open@npm:^8.0.9, open@npm:^8.4.0": + version: 8.4.2 + resolution: "open@npm:8.4.2" + dependencies: + define-lazy-prop: "npm:^2.0.0" + is-docker: "npm:^2.1.1" + is-wsl: "npm:^2.2.0" + checksum: bb6b3a58401dacdb0aad14360626faf3fb7fba4b77816b373495988b724fb48941cad80c1b65d62bb31a17609b2cd91c41a181602caea597ca80dfbcc27e84c9 + languageName: node + linkType: hard + +"optionator@npm:^0.8.1": + version: 0.8.3 + resolution: "optionator@npm:0.8.3" + dependencies: + deep-is: "npm:~0.1.3" + fast-levenshtein: "npm:~2.0.6" + levn: "npm:~0.3.0" + prelude-ls: "npm:~1.1.2" + type-check: "npm:~0.3.2" + word-wrap: "npm:~1.2.3" + checksum: ad7000ea661792b3ec5f8f86aac28895850988926f483b5f308f59f4607dfbe24c05df2d049532ee227c040081f39401a268cf7bbf3301512f74c4d760dc6dd8 + languageName: node + linkType: hard + +"optionator@npm:^0.9.3": + version: 0.9.3 + resolution: "optionator@npm:0.9.3" + dependencies: + "@aashutoshrathi/word-wrap": "npm:^1.2.3" + deep-is: "npm:^0.1.3" + fast-levenshtein: "npm:^2.0.6" + levn: "npm:^0.4.1" + prelude-ls: "npm:^1.2.1" + type-check: "npm:^0.4.0" + checksum: 66fba794d425b5be51353035cf3167ce6cfa049059cbb93229b819167687e0f48d2bc4603fcb21b091c99acb516aae1083624675b15c4765b2e4693a085e959c + languageName: node + linkType: hard + +"os-browserify@npm:^0.3.0": + version: 0.3.0 + resolution: "os-browserify@npm:0.3.0" + checksum: 6ff32cb1efe2bc6930ad0fd4c50e30c38010aee909eba8d65be60af55efd6cbb48f0287e3649b4e3f3a63dce5a667b23c187c4293a75e557f0d5489d735bcf52 + languageName: node + linkType: hard + +"p-limit@npm:^2.0.0, p-limit@npm:^2.2.0": + version: 2.3.0 + resolution: "p-limit@npm:2.3.0" + dependencies: + p-try: "npm:^2.0.0" + checksum: 8da01ac53efe6a627080fafc127c873da40c18d87b3f5d5492d465bb85ec7207e153948df6b9cbaeb130be70152f874229b8242ee2be84c0794082510af97f12 + languageName: node + linkType: hard + +"p-limit@npm:^3.0.2": + version: 3.1.0 + resolution: "p-limit@npm:3.1.0" + dependencies: + yocto-queue: "npm:^0.1.0" + checksum: 9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a + languageName: node + linkType: hard + +"p-locate@npm:^3.0.0": + version: 3.0.0 + resolution: "p-locate@npm:3.0.0" + dependencies: + p-limit: "npm:^2.0.0" + checksum: 7b7f06f718f19e989ce6280ed4396fb3c34dabdee0df948376483032f9d5ec22fdf7077ec942143a75827bb85b11da72016497fc10dac1106c837ed593969ee8 + languageName: node + linkType: hard + +"p-locate@npm:^4.1.0": + version: 4.1.0 + resolution: "p-locate@npm:4.1.0" + dependencies: + p-limit: "npm:^2.2.0" + checksum: 1b476ad69ad7f6059744f343b26d51ce091508935c1dbb80c4e0a2f397ffce0ca3a1f9f5cd3c7ce19d7929a09719d5c65fe70d8ee289c3f267cd36f2881813e9 + languageName: node + linkType: hard + +"p-locate@npm:^5.0.0": + version: 5.0.0 + resolution: "p-locate@npm:5.0.0" + dependencies: + p-limit: "npm:^3.0.2" + checksum: 2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a + languageName: node + linkType: hard + +"p-map@npm:^4.0.0": + version: 4.0.0 + resolution: "p-map@npm:4.0.0" + dependencies: + aggregate-error: "npm:^3.0.0" + checksum: 592c05bd6262c466ce269ff172bb8de7c6975afca9b50c975135b974e9bdaafbfe80e61aaaf5be6d1200ba08b30ead04b88cfa7e25ff1e3b93ab28c9f62a2c75 + languageName: node + linkType: hard + +"p-retry@npm:^4.5.0": + version: 4.6.2 + resolution: "p-retry@npm:4.6.2" + dependencies: + "@types/retry": "npm:0.12.0" + retry: "npm:^0.13.1" + checksum: d58512f120f1590cfedb4c2e0c42cb3fa66f3cea8a4646632fcb834c56055bb7a6f138aa57b20cc236fb207c9d694e362e0b5c2b14d9b062f67e8925580c73b0 + languageName: node + linkType: hard + +"p-try@npm:^2.0.0": + version: 2.2.0 + resolution: "p-try@npm:2.2.0" + checksum: c36c19907734c904b16994e6535b02c36c2224d433e01a2f1ab777237f4d86e6289fd5fd464850491e940379d4606ed850c03e0f9ab600b0ebddb511312e177f + languageName: node + linkType: hard + +"pako@npm:~1.0.5": + version: 1.0.11 + resolution: "pako@npm:1.0.11" + checksum: 86dd99d8b34c3930345b8bbeb5e1cd8a05f608eeb40967b293f72fe469d0e9c88b783a8777e4cc7dc7c91ce54c5e93d88ff4b4f060e6ff18408fd21030d9ffbe + languageName: node + linkType: hard + +"param-case@npm:^3.0.4": + version: 3.0.4 + resolution: "param-case@npm:3.0.4" + dependencies: + dot-case: "npm:^3.0.4" + tslib: "npm:^2.0.3" + checksum: ccc053f3019f878eca10e70ec546d92f51a592f762917dafab11c8b532715dcff58356118a6f350976e4ab109e321756f05739643ed0ca94298e82291e6f9e76 + languageName: node + linkType: hard + +"parent-module@npm:^1.0.0": + version: 1.0.1 + resolution: "parent-module@npm:1.0.1" + dependencies: + callsites: "npm:^3.0.0" + checksum: c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556 + languageName: node + linkType: hard + +"parenthesis@npm:^3.1.5": + version: 3.1.8 + resolution: "parenthesis@npm:3.1.8" + checksum: 1c0d5dd8b238b7c703db5ff1ca35f41952a7b2597c2e97cd0d32ab345179062611bc4f8a849787ed7f23508e91140d74fea7c0050b6978c56499f707ff54c99c + languageName: node + linkType: hard + +"parse-asn1@npm:^5.0.0, parse-asn1@npm:^5.1.5": + version: 5.1.6 + resolution: "parse-asn1@npm:5.1.6" + dependencies: + asn1.js: "npm:^5.2.0" + browserify-aes: "npm:^1.0.0" + evp_bytestokey: "npm:^1.0.0" + pbkdf2: "npm:^3.0.3" + safe-buffer: "npm:^5.1.1" + checksum: 4ed1d9b9e120c5484d29d67bb90171aac0b73422bc016d6294160aea983275c28a27ab85d862059a36a86a97dd31b7ddd97486802ca9fac67115fe3409e9dcbd + languageName: node + linkType: hard + +"parse-color@npm:^1.0.0": + version: 1.0.0 + resolution: "parse-color@npm:1.0.0" + dependencies: + color-convert: "npm:~0.5.0" + checksum: 53b864bd91f9e3134e8d05b834c42c9ece76c6c3426fe979c36fc0452cfd9c8cbe8c7497cd7ddd8436a5878cd43af982a5eaf85908f69a6de0fe3daf122b65f7 + languageName: node + linkType: hard + +"parse-entities@npm:^2.0.0": + version: 2.0.0 + resolution: "parse-entities@npm:2.0.0" + dependencies: + character-entities: "npm:^1.0.0" + character-entities-legacy: "npm:^1.0.0" + character-reference-invalid: "npm:^1.0.0" + is-alphanumerical: "npm:^1.0.0" + is-decimal: "npm:^1.0.0" + is-hexadecimal: "npm:^1.0.0" + checksum: f85a22c0ea406ff26b53fdc28641f01cc36fa49eb2e3135f02693286c89ef0bcefc2262d99b3688e20aac2a14fd10b75c518583e875c1b9fe3d1f937795e0854 + languageName: node + linkType: hard + +"parse-entities@npm:^4.0.0": + version: 4.0.1 + resolution: "parse-entities@npm:4.0.1" + dependencies: + "@types/unist": "npm:^2.0.0" + character-entities: "npm:^2.0.0" + character-entities-legacy: "npm:^3.0.0" + character-reference-invalid: "npm:^2.0.0" + decode-named-character-reference: "npm:^1.0.0" + is-alphanumerical: "npm:^2.0.0" + is-decimal: "npm:^2.0.0" + is-hexadecimal: "npm:^2.0.0" + checksum: 9dfa3b0dc43a913c2558c4bd625b1abcc2d6c6b38aa5724b141ed988471977248f7ad234eed57e1bc70b694dd15b0d710a04f66c2f7c096e35abd91962b7d926 + languageName: node + linkType: hard + +"parse-json@npm:^5.0.0, parse-json@npm:^5.2.0": + version: 5.2.0 + resolution: "parse-json@npm:5.2.0" + dependencies: + "@babel/code-frame": "npm:^7.0.0" + error-ex: "npm:^1.3.1" + json-parse-even-better-errors: "npm:^2.3.0" + lines-and-columns: "npm:^1.1.6" + checksum: 77947f2253005be7a12d858aedbafa09c9ae39eb4863adf330f7b416ca4f4a08132e453e08de2db46459256fb66afaac5ee758b44fe6541b7cdaf9d252e59585 + languageName: node + linkType: hard + +"parse-rect@npm:^1.2.0": + version: 1.2.0 + resolution: "parse-rect@npm:1.2.0" + dependencies: + pick-by-alias: "npm:^1.2.0" + checksum: 70af64ef6b34a2d460ba54cb09c9f9159536c93278aae2d7878d0557e71d8b648406203a74db3955e68ce4c47f6c10b8d24288985628dbc2877d4390fba1d27c + languageName: node + linkType: hard + +"parse-svg-path@npm:^0.1.2": + version: 0.1.2 + resolution: "parse-svg-path@npm:0.1.2" + checksum: 005af72d535f47bbe4673108e51d657b81cb19dcc4f10ab425dd9f824066ef300ddbc83640607ef318f853a9fce7065114705531dcf88fb87fe58c287b562f2b + languageName: node + linkType: hard + +"parse-unit@npm:^1.0.1": + version: 1.0.1 + resolution: "parse-unit@npm:1.0.1" + checksum: a7e63091ddccfd920ab1b85899ecb6cb0af8069fe36c5f8f6fa80eeb262a52686ab94d21ff02cde821570cb0d9c95e2f454672959a0f39df52ee5d3c95276022 + languageName: node + linkType: hard + +"parse5@npm:6.0.1": + version: 6.0.1 + resolution: "parse5@npm:6.0.1" + checksum: 595821edc094ecbcfb9ddcb46a3e1fe3a718540f8320eff08b8cf6742a5114cce2d46d45f95c26191c11b184dcaf4e2960abcd9c5ed9eb9393ac9a37efcfdecb + languageName: node + linkType: hard + +"parse5@npm:^7.0.0": + version: 7.1.2 + resolution: "parse5@npm:7.1.2" + dependencies: + entities: "npm:^4.4.0" + checksum: 297d7af8224f4b5cb7f6617ecdae98eeaed7f8cbd78956c42785e230505d5a4f07cef352af10d3006fa5c1544b76b57784d3a22d861ae071bbc460c649482bf4 + languageName: node + linkType: hard + +"parseurl@npm:~1.3.2, parseurl@npm:~1.3.3": + version: 1.3.3 + resolution: "parseurl@npm:1.3.3" + checksum: 90dd4760d6f6174adb9f20cf0965ae12e23879b5f5464f38e92fce8073354341e4b3b76fa3d878351efe7d01e617121955284cfd002ab087fba1a0726ec0b4f5 + languageName: node + linkType: hard + +"pascal-case@npm:^3.1.2": + version: 3.1.2 + resolution: "pascal-case@npm:3.1.2" + dependencies: + no-case: "npm:^3.0.4" + tslib: "npm:^2.0.3" + checksum: 05ff7c344809fd272fc5030ae0ee3da8e4e63f36d47a1e0a4855ca59736254192c5a27b5822ed4bae96e54048eec5f6907713cfcfff7cdf7a464eaf7490786d8 + languageName: node + linkType: hard + +"path-browserify@npm:^1.0.1": + version: 1.0.1 + resolution: "path-browserify@npm:1.0.1" + checksum: 8b8c3fd5c66bd340272180590ae4ff139769e9ab79522e2eb82e3d571a89b8117c04147f65ad066dccfb42fcad902e5b7d794b3d35e0fd840491a8ddbedf8c66 + languageName: node + linkType: hard + +"path-exists@npm:^3.0.0": + version: 3.0.0 + resolution: "path-exists@npm:3.0.0" + checksum: 17d6a5664bc0a11d48e2b2127d28a0e58822c6740bde30403f08013da599182289c56518bec89407e3f31d3c2b6b296a4220bc3f867f0911fee6952208b04167 + languageName: node + linkType: hard + +"path-exists@npm:^4.0.0": + version: 4.0.0 + resolution: "path-exists@npm:4.0.0" + checksum: 8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b + languageName: node + linkType: hard + +"path-is-absolute@npm:^1.0.0": + version: 1.0.1 + resolution: "path-is-absolute@npm:1.0.1" + checksum: 127da03c82172a2a50099cddbf02510c1791fc2cc5f7713ddb613a56838db1e8168b121a920079d052e0936c23005562059756d653b7c544c53185efe53be078 + languageName: node + linkType: hard + +"path-is-inside@npm:1.0.2": + version: 1.0.2 + resolution: "path-is-inside@npm:1.0.2" + checksum: 7fdd4b41672c70461cce734fc222b33e7b447fa489c7c4377c95e7e6852d83d69741f307d88ec0cc3b385b41cb4accc6efac3c7c511cd18512e95424f5fa980c + languageName: node + linkType: hard + +"path-key@npm:^3.0.0, path-key@npm:^3.1.0": + version: 3.1.1 + resolution: "path-key@npm:3.1.1" + checksum: 748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c + languageName: node + linkType: hard + +"path-parse@npm:^1.0.7": + version: 1.0.7 + resolution: "path-parse@npm:1.0.7" + checksum: 11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 + languageName: node + linkType: hard + +"path-scurry@npm:^1.10.1": + version: 1.10.1 + resolution: "path-scurry@npm:1.10.1" + dependencies: + lru-cache: "npm:^9.1.1 || ^10.0.0" + minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" + checksum: e5dc78a7348d25eec61ab166317e9e9c7b46818aa2c2b9006c507a6ff48c672d011292d9662527213e558f5652ce0afcc788663a061d8b59ab495681840c0c1e + languageName: node + linkType: hard + +"path-to-regexp@npm:0.1.7": + version: 0.1.7 + resolution: "path-to-regexp@npm:0.1.7" + checksum: 50a1ddb1af41a9e68bd67ca8e331a705899d16fb720a1ea3a41e310480948387daf603abb14d7b0826c58f10146d49050a1291ba6a82b78a382d1c02c0b8f905 + languageName: node + linkType: hard + +"path-to-regexp@npm:2.2.1": + version: 2.2.1 + resolution: "path-to-regexp@npm:2.2.1" + checksum: f4b51090a73dad5ce0720f13ce8528ac77914bc927d72cc4ba05ab32770ad3a8d2e431962734b688b9ed863d4098d858da6ff4746037e4e24259cbd3b2c32b79 + languageName: node + linkType: hard + +"path-type@npm:^4.0.0": + version: 4.0.0 + resolution: "path-type@npm:4.0.0" + checksum: 666f6973f332f27581371efaf303fd6c272cc43c2057b37aa99e3643158c7e4b2626549555d88626e99ea9e046f82f32e41bbde5f1508547e9a11b149b52387c + languageName: node + linkType: hard + +"pbf@npm:^3.2.1": + version: 3.2.1 + resolution: "pbf@npm:3.2.1" + dependencies: + ieee754: "npm:^1.1.12" + resolve-protobuf-schema: "npm:^2.1.0" + bin: + pbf: bin/pbf + checksum: 63b4a27749a9b5a3cf4260d75f9d91ad8d8b326bcdd2bfafd9460a94d0a297a80f80c70d5481213d6c4ebf03c027aca0ac9287c7d8217d327a6d0456f23b9d3c + languageName: node + linkType: hard + +"pbkdf2@npm:^3.0.3": + version: 3.1.2 + resolution: "pbkdf2@npm:3.1.2" + dependencies: + create-hash: "npm:^1.1.2" + create-hmac: "npm:^1.1.4" + ripemd160: "npm:^2.0.1" + safe-buffer: "npm:^5.0.1" + sha.js: "npm:^2.4.8" + checksum: 5a30374e87d33fa080a92734d778cf172542cc7e41b96198c4c88763997b62d7850de3fbda5c3111ddf79805ee7c1da7046881c90ac4920b5e324204518b05fd + languageName: node + linkType: hard + +"performance-now@npm:^2.1.0": + version: 2.1.0 + resolution: "performance-now@npm:2.1.0" + checksum: 22c54de06f269e29f640e0e075207af57de5052a3d15e360c09b9a8663f393f6f45902006c1e71aa8a5a1cdfb1a47fe268826f8496d6425c362f00f5bc3e85d9 + languageName: node + linkType: hard + +"pick-by-alias@npm:^1.2.0": + version: 1.2.0 + resolution: "pick-by-alias@npm:1.2.0" + checksum: 2336088c95a04f50b088986394e35d2d0b63a95d85ffec547dcdb0fe1ccd710ab36569607fcf72d8654bbbf49e1f983a25f2a7c57e8ff2d587cf86070fc669b6 + languageName: node + linkType: hard + +"picocolors@npm:^0.2.1": + version: 0.2.1 + resolution: "picocolors@npm:0.2.1" + checksum: 98a83c77912c80aea0fc518aec184768501bfceafa490714b0f43eda9c52e372b844ce0a591e822bbfe5df16dcf366be7cbdb9534d39cf54a80796340371ee17 + languageName: node + linkType: hard + +"picocolors@npm:^1.0.0": + version: 1.0.0 + resolution: "picocolors@npm:1.0.0" + checksum: 20a5b249e331c14479d94ec6817a182fd7a5680debae82705747b2db7ec50009a5f6648d0621c561b0572703f84dbef0858abcbd5856d3c5511426afcb1961f7 + languageName: node + linkType: hard + +"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.2, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1": + version: 2.3.1 + resolution: "picomatch@npm:2.3.1" + checksum: 26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be + languageName: node + linkType: hard + +"pify@npm:^2.3.0": + version: 2.3.0 + resolution: "pify@npm:2.3.0" + checksum: 551ff8ab830b1052633f59cb8adc9ae8407a436e06b4a9718bcb27dc5844b83d535c3a8512b388b6062af65a98c49bdc0dd523d8b2617b188f7c8fee457158dc + languageName: node + linkType: hard + +"pirates@npm:^4.0.1, pirates@npm:^4.0.4": + version: 4.0.6 + resolution: "pirates@npm:4.0.6" + checksum: 00d5fa51f8dded94d7429700fb91a0c1ead00ae2c7fd27089f0c5b63e6eca36197fe46384631872690a66f390c5e27198e99006ab77ae472692ab9c2ca903f36 + languageName: node + linkType: hard + +"pkg-dir@npm:^4.1.0, pkg-dir@npm:^4.2.0": + version: 4.2.0 + resolution: "pkg-dir@npm:4.2.0" + dependencies: + find-up: "npm:^4.0.0" + checksum: c56bda7769e04907a88423feb320babaed0711af8c436ce3e56763ab1021ba107c7b0cafb11cde7529f669cfc22bffcaebffb573645cbd63842ea9fb17cd7728 + languageName: node + linkType: hard + +"pkg-dir@npm:^5.0.0": + version: 5.0.0 + resolution: "pkg-dir@npm:5.0.0" + dependencies: + find-up: "npm:^5.0.0" + checksum: 793a496d685dc55bbbdbbb22d884535c3b29241e48e3e8d37e448113a71b9e42f5481a61fdc672d7322de12fbb2c584dd3a68bf89b18fffce5c48a390f911bc5 + languageName: node + linkType: hard + +"pkg-up@npm:^3.1.0": + version: 3.1.0 + resolution: "pkg-up@npm:3.1.0" + dependencies: + find-up: "npm:^3.0.0" + checksum: ecb60e1f8e1f611c0bdf1a0b6a474d6dfb51185567dc6f29cdef37c8d480ecba5362e006606bb290519bbb6f49526c403fabea93c3090c20368d98bb90c999ab + languageName: node + linkType: hard + +"plotly.js@npm:^2.14.0": + version: 2.24.3 + resolution: "plotly.js@npm:2.24.3" + dependencies: + "@plotly/d3": "npm:3.8.1" + "@plotly/d3-sankey": "npm:0.7.2" + "@plotly/d3-sankey-circular": "npm:0.33.1" + "@turf/area": "npm:^6.4.0" + "@turf/bbox": "npm:^6.4.0" + "@turf/centroid": "npm:^6.0.2" + canvas-fit: "npm:^1.5.0" + color-alpha: "npm:1.0.4" + color-normalize: "npm:1.5.0" + color-parse: "npm:1.3.8" + color-rgba: "npm:2.1.1" + country-regex: "npm:^1.1.0" + d3-force: "npm:^1.2.1" + d3-format: "npm:^1.4.5" + d3-geo: "npm:^1.12.1" + d3-geo-projection: "npm:^2.9.0" + d3-hierarchy: "npm:^1.1.9" + d3-interpolate: "npm:^3.0.1" + d3-time: "npm:^1.1.0" + d3-time-format: "npm:^2.2.3" + fast-isnumeric: "npm:^1.1.4" + gl-mat4: "npm:^1.2.0" + gl-text: "npm:^1.3.1" + glslify: "npm:^7.1.1" + has-hover: "npm:^1.0.1" + has-passive-events: "npm:^1.0.0" + is-mobile: "npm:^4.0.0" + mapbox-gl: "npm:1.10.1" + mouse-change: "npm:^1.4.0" + mouse-event-offset: "npm:^3.0.2" + mouse-wheel: "npm:^1.2.0" + native-promise-only: "npm:^0.8.1" + parse-svg-path: "npm:^0.1.2" + point-in-polygon: "npm:^1.1.0" + polybooljs: "npm:^1.2.0" + probe-image-size: "npm:^7.2.3" + regl: "npm:@plotly/regl@^2.1.2" + regl-error2d: "npm:^2.0.12" + regl-line2d: "npm:^3.1.2" + regl-scatter2d: "npm:^3.2.9" + regl-splom: "npm:^1.0.14" + strongly-connected-components: "npm:^1.0.1" + superscript-text: "npm:^1.0.0" + svg-path-sdf: "npm:^1.1.3" + tinycolor2: "npm:^1.4.2" + to-px: "npm:1.0.1" + topojson-client: "npm:^3.1.0" + webgl-context: "npm:^2.2.0" + world-calendars: "npm:^1.0.3" + checksum: 0e93837bc9e0c33d297f52e9ed3125446b3e32bfeaa87289d2d54f4095cadad62584b14f384090c6a90e66993f450934348f0a8c7c3c1f8d0abe6c2bc59761ce + languageName: node + linkType: hard + +"point-in-polygon@npm:^1.1.0": + version: 1.1.0 + resolution: "point-in-polygon@npm:1.1.0" + checksum: de00419585ee25555d97585b7a23eeb2464a87ef29404264bee55654ca2ecab5a5a99d33e689c07d045faf80091e838f44a1fd130bdd6134493df53114947343 + languageName: node + linkType: hard + +"polybooljs@npm:^1.2.0": + version: 1.2.0 + resolution: "polybooljs@npm:1.2.0" + checksum: 5b09bb5a29cbb232957d5abe779ba7b51ff997c91daf397988d32c9820c59fbe416c9062a6f899eff987d1ac067831914646d0561578a80e9862b3b236b0a6b9 + languageName: node + linkType: hard + +"postcss-attribute-case-insensitive@npm:^5.0.2": + version: 5.0.2 + resolution: "postcss-attribute-case-insensitive@npm:5.0.2" + dependencies: + postcss-selector-parser: "npm:^6.0.10" + peerDependencies: + postcss: ^8.2 + checksum: 4efdca69aae9b0fa44b4960bcb3d49e37e9a79acf56534c83f925375007baad4b3560a7b0c244ee9956415a6997f84e0d4bd838281d085023afa9f8f96eeb4d2 + languageName: node + linkType: hard + +"postcss-browser-comments@npm:^4": + version: 4.0.0 + resolution: "postcss-browser-comments@npm:4.0.0" + peerDependencies: + browserslist: ">=4" + postcss: ">=8" + checksum: e858e54765efa650363631ae4dc597cf49428f432b98999c12e06d496ab7e2ac0418b5bec49d5dfbd5b78d420f1c343e47a28d2204b59c95b59a3636c80d44c6 + languageName: node + linkType: hard + +"postcss-calc@npm:^8.2.3": + version: 8.2.4 + resolution: "postcss-calc@npm:8.2.4" + dependencies: + postcss-selector-parser: "npm:^6.0.9" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.2 + checksum: 8518a429488c3283ff1560c83a511f6f772329bc61d88875eb7c83e13a8683b7ccbdccaa9946024cf1553da3eacd2f40fcbcebf1095f7fdeb432bf86bc6ba6ba + languageName: node + linkType: hard + +"postcss-clamp@npm:^4.1.0": + version: 4.1.0 + resolution: "postcss-clamp@npm:4.1.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.4.6 + checksum: 701261026b38a4c27b3c3711635fac96005f36d3270adb76dbdb1eebc950fc841db45283ee66068a7121565592e9d7967d5534e15b6e4dd266afcabf9eafa905 + languageName: node + linkType: hard + +"postcss-color-functional-notation@npm:^4.2.4": + version: 4.2.4 + resolution: "postcss-color-functional-notation@npm:4.2.4" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: e80785d10d252512f290c9d5e9436d8ea9e986a4a3f7ccb57ca9a5c2cd7fbff2498287d907c0e887dc6f69de66f6321ba40ebb8dbb7f47dace2050786b04c55e + languageName: node + linkType: hard + +"postcss-color-hex-alpha@npm:^8.0.4": + version: 8.0.4 + resolution: "postcss-color-hex-alpha@npm:8.0.4" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.4 + checksum: c18e1363e36f29b90e1d62d7da0f7adfd20948de3da46ddc468ddad142db3a782c4e153ada8d283cf011d090498976b1f2072973842dae0c3084eda33c0d1add + languageName: node + linkType: hard + +"postcss-color-rebeccapurple@npm:^7.1.1": + version: 7.1.1 + resolution: "postcss-color-rebeccapurple@npm:7.1.1" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 2164b2dc8f91788a60180fbf80368851699a78664115fc9905fe8592da9a600930e7d381656e43c45ee2c8fcd9b5d146cd90f640cea75a534e3bc4d6e8b939dd + languageName: node + linkType: hard + +"postcss-colormin@npm:^5.3.1": + version: 5.3.1 + resolution: "postcss-colormin@npm:5.3.1" + dependencies: + browserslist: "npm:^4.21.4" + caniuse-api: "npm:^3.0.0" + colord: "npm:^2.9.1" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: c4ca6f335dd992dc8e3df24bffc3495c4e504eba8489c81cb6836fdce3203f423cf4c0b640c4b63c586f588c59d82adb5313c3c5d1a68113896d18ed71caa462 + languageName: node + linkType: hard + +"postcss-convert-values@npm:^5.1.3": + version: 5.1.3 + resolution: "postcss-convert-values@npm:5.1.3" + dependencies: + browserslist: "npm:^4.21.4" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: cd10a81781a12487b2921ff84a1a068e948a1956b9539a284c202abecf4cacdd3e106eb026026b22dbf70933f4315c824c111f6b71f56c355e47b842ca9b1dec + languageName: node + linkType: hard + +"postcss-custom-media@npm:^8.0.2": + version: 8.0.2 + resolution: "postcss-custom-media@npm:8.0.2" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.3 + checksum: e60a01983499c85e614cf58ddae92d340f8421d53eea080dadfd822d8299469c34114c511498c8158c7b04eae7f1853ede936c17a22582b5434432efb7878aac + languageName: node + linkType: hard + +"postcss-custom-properties@npm:^12.1.10": + version: 12.1.11 + resolution: "postcss-custom-properties@npm:12.1.11" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 99ad5a9f9a69590141157e447f48d9d6da74f0e83bf552cd5a4e74db7a03222f1e9e37df7ee442a7b97f5c6c824c1018667ee27ac64e0bc6ee7e67e89bc552c5 + languageName: node + linkType: hard + +"postcss-custom-selectors@npm:^6.0.3": + version: 6.0.3 + resolution: "postcss-custom-selectors@npm:6.0.3" + dependencies: + postcss-selector-parser: "npm:^6.0.4" + peerDependencies: + postcss: ^8.3 + checksum: f1dd42b269e57382f48c2e71daf233badafd3e161b70b36140e934c87f9c035cec585ae5b124447d8673644f94adeb9348dfbb8ef5225e085d52ee179090fdbd + languageName: node + linkType: hard + +"postcss-dir-pseudo-class@npm:^6.0.5": + version: 6.0.5 + resolution: "postcss-dir-pseudo-class@npm:6.0.5" + dependencies: + postcss-selector-parser: "npm:^6.0.10" + peerDependencies: + postcss: ^8.2 + checksum: 5b389c3a1e8387a7fb212fb652eb2bc6c2e10a9ebf5bc5917f5bf889779b3dadb64735566a75d16cca3791303e16fb09276b0aebd95c11ef1788120d714c2f95 + languageName: node + linkType: hard + +"postcss-discard-comments@npm:^5.1.2": + version: 5.1.2 + resolution: "postcss-discard-comments@npm:5.1.2" + peerDependencies: + postcss: ^8.2.15 + checksum: cb5ba81623c498e18d406138e7d27d69fc668802a1139a8de69d28e80b3fe222cda7b634940512cae78d04f0c78afcd15d92bcf80e537c6c85fa8ff9cd61d00f + languageName: node + linkType: hard + +"postcss-discard-duplicates@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-discard-duplicates@npm:5.1.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 3d3a49536c56097c06b4f085412e0cda0854fac1c559563ccb922d9fab6305ff13058cd6fee422aa66c1d7e466add4e7672d7ae2ff551a4af6f1a8d2142d471f + languageName: node + linkType: hard + +"postcss-discard-empty@npm:^5.1.1": + version: 5.1.1 + resolution: "postcss-discard-empty@npm:5.1.1" + peerDependencies: + postcss: ^8.2.15 + checksum: 36c8b2197af836dbd93168c72cde4edc1f10fe00e564824119da076d3764909745bb60e4ada04052322e26872d1bce6a37c56815f1c48c813a21adca1a41fbdc + languageName: node + linkType: hard + +"postcss-discard-overridden@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-discard-overridden@npm:5.1.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 7d3fc0b0d90599606fc083327a7c24390f90270a94a0119af4b74815d518948581579281f63b9bfa62e2644edf59bc9e725dc04ea5ba213f697804f3fb4dd8dc + languageName: node + linkType: hard + +"postcss-double-position-gradients@npm:^3.1.2": + version: 3.1.2 + resolution: "postcss-double-position-gradients@npm:3.1.2" + dependencies: + "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 4a2c93c1158773d10a7300e036a323f406e64c082a243ef20bb52d7062c675d754436e5a8b014302a387fc2c2acbee673916f09e4e82287164d13bc032130bf7 + languageName: node + linkType: hard + +"postcss-env-function@npm:^4.0.6": + version: 4.0.6 + resolution: "postcss-env-function@npm:4.0.6" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.4 + checksum: e2dfbfd2c6731a1b482658f6410465f6fa623fc92099c825079c0322d9d68f526cf9c718fe9ac89d166936fb0ed6e14e78028b187f77a27519ac17ed75123f27 + languageName: node + linkType: hard + +"postcss-flexbugs-fixes@npm:^5.0.2": + version: 5.0.2 + resolution: "postcss-flexbugs-fixes@npm:5.0.2" + peerDependencies: + postcss: ^8.1.4 + checksum: b413f73cc3c005f33479df95e1357467c28183e62ba8b25e06b8590b2a69e60d624f07824c0ff85fb1dfdd5bb7dfa321dad0885d42ec3c8f000669960b30894f + languageName: node + linkType: hard + +"postcss-focus-visible@npm:^6.0.4": + version: 6.0.4 + resolution: "postcss-focus-visible@npm:6.0.4" + dependencies: + postcss-selector-parser: "npm:^6.0.9" + peerDependencies: + postcss: ^8.4 + checksum: acc3a2780908d2f4941b1e34ed349a55e965f6dfad066cecad8ad58b6a6ad3576bacb08c0cfa828cea00c2695c8a7b756ec97d40db9104bd9f13b8d172b72698 + languageName: node + linkType: hard + +"postcss-focus-within@npm:^5.0.4": + version: 5.0.4 + resolution: "postcss-focus-within@npm:5.0.4" + dependencies: + postcss-selector-parser: "npm:^6.0.9" + peerDependencies: + postcss: ^8.4 + checksum: e8dacdfcad2a24d1c26693156660f96749178564a9b6b27fba6380418a2253c72c66898cdcea15c5f627527148a30e9000edb25a07245b5b032fc61acd6174fd + languageName: node + linkType: hard + +"postcss-font-variant@npm:^5.0.0": + version: 5.0.0 + resolution: "postcss-font-variant@npm:5.0.0" + peerDependencies: + postcss: ^8.1.0 + checksum: ccc96460cf6a52b5439c26c9a5ea0589882e46161e3c2331d4353de7574448f5feef667d1a68f7f39b9fe3ee75d85957383ae82bbfcf87c3162c7345df4a444e + languageName: node + linkType: hard + +"postcss-gap-properties@npm:^3.0.5": + version: 3.0.5 + resolution: "postcss-gap-properties@npm:3.0.5" + peerDependencies: + postcss: ^8.2 + checksum: 402f830aa6661aa5bd01ae227c189124a5c22ba8e6a95ea0c205148a85732b147c6f5f60c2b67d8a971d0223f5579e891fa9543ea7611470d6fd84729ea0f3bb + languageName: node + linkType: hard + +"postcss-image-set-function@npm:^4.0.7": + version: 4.0.7 + resolution: "postcss-image-set-function@npm:4.0.7" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: ed79dcf62f295c300fce12f09eb498d7016a4ef5739474e6654e454a8627147a4908be56e5316afc2733bf118b95e59bdfedb03c67d0d43c364f76be62806598 + languageName: node + linkType: hard + +"postcss-import@npm:^15.1.0": + version: 15.1.0 + resolution: "postcss-import@npm:15.1.0" + dependencies: + postcss-value-parser: "npm:^4.0.0" + read-cache: "npm:^1.0.0" + resolve: "npm:^1.1.7" + peerDependencies: + postcss: ^8.0.0 + checksum: 518aee5c83ea6940e890b0be675a2588db68b2582319f48c3b4e06535a50ea6ee45f7e63e4309f8754473245c47a0372632378d1d73d901310f295a92f26f17b + languageName: node + linkType: hard + +"postcss-initial@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-initial@npm:4.0.1" + peerDependencies: + postcss: ^8.0.0 + checksum: a1db8350c31c5a23064c1e0d18cf6530bb96a6532d11e9caf1c632796b4ad48cb58ff17331bf0a5e3a360c4be1819e489cd1faeb3afc77711d333a0ee4f07819 + languageName: node + linkType: hard + +"postcss-js@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-js@npm:4.0.1" + dependencies: + camelcase-css: "npm:^2.0.1" + peerDependencies: + postcss: ^8.4.21 + checksum: af35d55cb873b0797d3b42529514f5318f447b134541844285c9ac31a17497297eb72296902967911bb737a75163441695737300ce2794e3bd8c70c13a3b106e + languageName: node + linkType: hard + +"postcss-lab-function@npm:^4.2.1": + version: 4.2.1 + resolution: "postcss-lab-function@npm:4.2.1" + dependencies: + "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 70744444951d95a06a586634e7fa7c77fe4a42c7d15e556a6e7b9a5a60e03a067d371f6d16e8f58274a5e4ebbd2bd505a4bee0b03974d5571459d72ab9fb157c + languageName: node + linkType: hard + +"postcss-load-config@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-load-config@npm:4.0.1" + dependencies: + lilconfig: "npm:^2.0.5" + yaml: "npm:^2.1.1" + peerDependencies: + postcss: ">=8.0.9" + ts-node: ">=9.0.0" + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + checksum: 5f568420c4d758d77d661f26914c08fe8dfb0666c7b779dc4f48d7fd880d131e8aa232a45cc1a8ba3f47f9c5fca572b661ca0103c2212979e9dc00918cff3d5f + languageName: node + linkType: hard + +"postcss-loader@npm:^6.2.1": + version: 6.2.1 + resolution: "postcss-loader@npm:6.2.1" + dependencies: + cosmiconfig: "npm:^7.0.0" + klona: "npm:^2.0.5" + semver: "npm:^7.3.5" + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + checksum: 736a1bf43a3e09e2351b5cc97cc26790a1c3261412c9dee063f3f6f2969a6ff7d8d194d9adcad01cee1afd1de071482318d9699e6157b67d46b3dccf3be1b58b + languageName: node + linkType: hard + +"postcss-logical@npm:^5.0.4": + version: 5.0.4 + resolution: "postcss-logical@npm:5.0.4" + peerDependencies: + postcss: ^8.4 + checksum: 1a49e2123357b85d41e679a30b7450165295e945342ddbb88dbcc48ebe7b69afbe34ff69ebdd6d8adaf1293a7bcecae51152d7f44514194bde9b98221780e494 + languageName: node + linkType: hard + +"postcss-media-minmax@npm:^5.0.0": + version: 5.0.0 + resolution: "postcss-media-minmax@npm:5.0.0" + peerDependencies: + postcss: ^8.1.0 + checksum: ee04b1b9eb5b003dfea344baf14424cc8b2600c784f37fe9af097252d6e35ed786bbf7ce36d19592d632d238ad15b9128a4247653df0cadcabbe1fbc137295fe + languageName: node + linkType: hard + +"postcss-merge-longhand@npm:^5.1.7": + version: 5.1.7 + resolution: "postcss-merge-longhand@npm:5.1.7" + dependencies: + postcss-value-parser: "npm:^4.2.0" + stylehacks: "npm:^5.1.1" + peerDependencies: + postcss: ^8.2.15 + checksum: 4d9f44b03f19522cc81ae4f5b1f2a9ef2db918dbd8b3042d4f1b2461b2230b8ec1269334db6a67a863ba68f64cabd712e6e45340ddb22a3fc03cd34df69d2bf0 + languageName: node + linkType: hard + +"postcss-merge-rules@npm:^5.1.4": + version: 5.1.4 + resolution: "postcss-merge-rules@npm:5.1.4" + dependencies: + browserslist: "npm:^4.21.4" + caniuse-api: "npm:^3.0.0" + cssnano-utils: "npm:^3.1.0" + postcss-selector-parser: "npm:^6.0.5" + peerDependencies: + postcss: ^8.2.15 + checksum: e7686cdda052071bf98810ad381e26145c43a2286f9540f04f97ef93101604b78d478dd555db91e5f73751bb353c283ba75c2fcb16a3751ac7d93dc6a0130c41 + languageName: node + linkType: hard + +"postcss-minify-font-values@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-minify-font-values@npm:5.1.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 7aa4f93a853b657f79a8b28d0e924cafce3720086d9da02ce04b8b2f8de42e18ce32c8f7f1078390fb5ec82468e2d8e771614387cea3563f05fd9fa1798e1c59 + languageName: node + linkType: hard + +"postcss-minify-gradients@npm:^5.1.1": + version: 5.1.1 + resolution: "postcss-minify-gradients@npm:5.1.1" + dependencies: + colord: "npm:^2.9.1" + cssnano-utils: "npm:^3.1.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: bcb2802d7c8f0f76c7cff089884844f26c24b95f35c3ec951d7dec8c212495d1873d6ba62d6225ce264570e8e0668e271f9bc79bb6f5d2429c1f8933f4e3021d + languageName: node + linkType: hard + +"postcss-minify-params@npm:^5.1.4": + version: 5.1.4 + resolution: "postcss-minify-params@npm:5.1.4" + dependencies: + browserslist: "npm:^4.21.4" + cssnano-utils: "npm:^3.1.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: debce6f0f7dd9af69b4bb9e467ea1ccccff2d849b6020461a2b9741c0c137340e6076c245dc2e83880180eb2e82936280fa31dfe8608e5a2e3618f3d864314c5 + languageName: node + linkType: hard + +"postcss-minify-selectors@npm:^5.2.1": + version: 5.2.1 + resolution: "postcss-minify-selectors@npm:5.2.1" + dependencies: + postcss-selector-parser: "npm:^6.0.5" + peerDependencies: + postcss: ^8.2.15 + checksum: f3f4ec110f5f697cfc9dde3e491ff10aa07509bf33cc940aa539e4b5b643d1b9f8bb97f8bb83d05fc96f5eeb220500ebdeffbde513bd176c0671e21c2c96fab9 + languageName: node + linkType: hard + +"postcss-modules-extract-imports@npm:^3.0.0": + version: 3.0.0 + resolution: "postcss-modules-extract-imports@npm:3.0.0" + peerDependencies: + postcss: ^8.1.0 + checksum: f8879d66d8162fb7a3fcd916d37574006c584ea509107b1cfb798a5e090175ef9470f601e46f0a305070d8ff2500e07489a5c1ac381c29a1dc1120e827ca7943 + languageName: node + linkType: hard + +"postcss-modules-local-by-default@npm:^4.0.3": + version: 4.0.3 + resolution: "postcss-modules-local-by-default@npm:4.0.3" + dependencies: + icss-utils: "npm:^5.0.0" + postcss-selector-parser: "npm:^6.0.2" + postcss-value-parser: "npm:^4.1.0" + peerDependencies: + postcss: ^8.1.0 + checksum: be49b86efbfb921f42287e227584aac91af9826fc1083db04958ae283dfe215ca539421bfba71f9da0f0b10651f28e95a64b5faca7166f578a1933b8646051f7 + languageName: node + linkType: hard + +"postcss-modules-scope@npm:^3.0.0": + version: 3.0.0 + resolution: "postcss-modules-scope@npm:3.0.0" + dependencies: + postcss-selector-parser: "npm:^6.0.4" + peerDependencies: + postcss: ^8.1.0 + checksum: 60af503910363689568c2c3701cb019a61b58b3d739391145185eec211bea5d50ccb6ecbe6955b39d856088072fd50ea002e40a52b50e33b181ff5c41da0308a + languageName: node + linkType: hard + +"postcss-modules-values@npm:^4.0.0": + version: 4.0.0 + resolution: "postcss-modules-values@npm:4.0.0" + dependencies: + icss-utils: "npm:^5.0.0" + peerDependencies: + postcss: ^8.1.0 + checksum: dd18d7631b5619fb9921b198c86847a2a075f32e0c162e0428d2647685e318c487a2566cc8cc669fc2077ef38115cde7a068e321f46fb38be3ad49646b639dbc + languageName: node + linkType: hard + +"postcss-nested@npm:^6.0.1": + version: 6.0.1 + resolution: "postcss-nested@npm:6.0.1" + dependencies: + postcss-selector-parser: "npm:^6.0.11" + peerDependencies: + postcss: ^8.2.14 + checksum: 2a50aa36d5d103c2e471954830489f4c024deed94fa066169101db55171368d5f80b32446b584029e0471feee409293d0b6b1d8ede361f6675ba097e477b3cbd + languageName: node + linkType: hard + +"postcss-nesting@npm:^10.2.0": + version: 10.2.0 + resolution: "postcss-nesting@npm:10.2.0" + dependencies: + "@csstools/selector-specificity": "npm:^2.0.0" + postcss-selector-parser: "npm:^6.0.10" + peerDependencies: + postcss: ^8.2 + checksum: 1f44201edeedaab3af8552a7e231cf8530785245ec56e30a7f756076ffa58ec97c12b75a8761327bf278b26aa9903351b2f3324d11784f239b07dc79295e0a77 + languageName: node + linkType: hard + +"postcss-normalize-charset@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-normalize-charset@npm:5.1.0" + peerDependencies: + postcss: ^8.2.15 + checksum: aa481584d4db48e0dbf820f992fa235e6c41ff3d4701a62d349f33c1ad4c5c7dcdea3096db9ff2a5c9497e9bed2186d594ccdb1b42d57b30f58affba5829ad9c + languageName: node + linkType: hard + +"postcss-normalize-display-values@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-normalize-display-values@npm:5.1.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 70b164fda885c097c02c98914fba4cd19b2382ff5f85f77e5315d88a1d477b4803f0f271d95a38e044e2a6c3b781c5c9bfb83222fc577199f2aeb0b8f4254e2f + languageName: node + linkType: hard + +"postcss-normalize-positions@npm:^5.1.1": + version: 5.1.1 + resolution: "postcss-normalize-positions@npm:5.1.1" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 910d58991fd38a7cf6ed6471e6fa4a96349690ad1a99a02e8cac46d76ba5045f2fca453088b68b05ff665afd96dc617c4674c68acaeabbe83f502e4963fb78b1 + languageName: node + linkType: hard + +"postcss-normalize-repeat-style@npm:^5.1.1": + version: 5.1.1 + resolution: "postcss-normalize-repeat-style@npm:5.1.1" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 57c3817a2107ebb17e4ceee3831d230c72a3ccc7650f4d5f12aa54f6ea766777401f4f63b2615b721350b2e8c7ae0b0bbc3f1c5ad4e7fa737c9efb92cfa0cbb0 + languageName: node + linkType: hard + +"postcss-normalize-string@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-normalize-string@npm:5.1.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: a5e9979998f478d385ddff865bdd8a4870af69fa8c91c9398572a299ff39b39a6bda922a48fab0d2cddc639f30159c39baaed880ed7d13cd27cc64eaa9400b3b + languageName: node + linkType: hard + +"postcss-normalize-timing-functions@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-normalize-timing-functions@npm:5.1.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: afb34d8e313004ae8cd92910bf1a6eb9885f29ae803cd9032b6dfe7b67a9ad93f800976f10e55170b2b08fe9484825e9272629971186812c2764c73843268237 + languageName: node + linkType: hard + +"postcss-normalize-unicode@npm:^5.1.1": + version: 5.1.1 + resolution: "postcss-normalize-unicode@npm:5.1.1" + dependencies: + browserslist: "npm:^4.21.4" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: c102888d488d05c53ab10ffcd4e0efb892ef0cc2f9b0abe9c9b175a2d7a9c226981ca6806ed9e5c1b82a8190f2b3a8342a6de800f019b417130661b0787ff6d7 + languageName: node + linkType: hard + +"postcss-normalize-url@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-normalize-url@npm:5.1.0" + dependencies: + normalize-url: "npm:^6.0.1" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: a016cefd1ef80f74ef9dbed50593d3b533101e93aaadfc292896fddd8d6c3eb732a9fc5cb2e0d27f79c1f60f0fdfc40b045a494b514451e9610c6acf9392eb98 + languageName: node + linkType: hard + +"postcss-normalize-whitespace@npm:^5.1.1": + version: 5.1.1 + resolution: "postcss-normalize-whitespace@npm:5.1.1" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: d7b53dd90fe369bfb9838a40096db904a41f50dadfd04247ec07d7ab5588c3d4e70d1c7f930523bd061cb74e6683cef45c6e6c4eb57ea174ee3fc99f3de222d1 + languageName: node + linkType: hard + +"postcss-normalize@npm:^10.0.1": + version: 10.0.1 + resolution: "postcss-normalize@npm:10.0.1" + dependencies: + "@csstools/normalize.css": "npm:*" + postcss-browser-comments: "npm:^4" + sanitize.css: "npm:*" + peerDependencies: + browserslist: ">= 4" + postcss: ">= 8" + checksum: 632f24f5e8cb436f975892221ae1818794053c2a50ef8f51af2a964f88c5e3a4df4a703b882592d9d06c59bf19af69011dfa88a85771119e26ebc616ef9cf2cd + languageName: node + linkType: hard + +"postcss-opacity-percentage@npm:^1.1.2": + version: 1.1.3 + resolution: "postcss-opacity-percentage@npm:1.1.3" + peerDependencies: + postcss: ^8.2 + checksum: 9cd9076561beeadb5c658a17e6fc657396a9497c9e0b0b6267931c6bb729052a150eccbeae33d27db533f5ac3cf806eb068eccb110b65d14a5dfea2e35d0877f + languageName: node + linkType: hard + +"postcss-ordered-values@npm:^5.1.3": + version: 5.1.3 + resolution: "postcss-ordered-values@npm:5.1.3" + dependencies: + cssnano-utils: "npm:^3.1.0" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 55abfbd2c7267eefed62a881ed0b5c0c98409c50a589526a3ebb9f8d879979203e523b8888fa84732bdd1ac887f721287a037002fa70c27c8d33f1bcbae9d9c6 + languageName: node + linkType: hard + +"postcss-overflow-shorthand@npm:^3.0.4": + version: 3.0.4 + resolution: "postcss-overflow-shorthand@npm:3.0.4" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: d95d114fecceb83a2a2385bb073a16824efaa9b2c685d900af22f764c2a8c1de6c267230df870e4d7f98310e92618b86ba6344b76877d6f4d2158c019181f476 + languageName: node + linkType: hard + +"postcss-page-break@npm:^3.0.4": + version: 3.0.4 + resolution: "postcss-page-break@npm:3.0.4" + peerDependencies: + postcss: ^8 + checksum: eaaf4d8922b35f2acd637eb059f7e2510b24d65eb8f31424799dd5a98447b6ef010b41880c26e78f818e00f842295638ec75f89d5d489067f53e3dd3db74a00f + languageName: node + linkType: hard + +"postcss-place@npm:^7.0.5": + version: 7.0.5 + resolution: "postcss-place@npm:7.0.5" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: 149941027e6194f166ab5e7bbddc722c0d18e1f5e8117fe0af3689b216c70df9762052484965ab71271ae1d3a0ec0a7f361ce3b3dfd1f28e0bbfd0d554dd1a11 + languageName: node + linkType: hard + +"postcss-preset-env@npm:^7.0.1": + version: 7.8.3 + resolution: "postcss-preset-env@npm:7.8.3" + dependencies: + "@csstools/postcss-cascade-layers": "npm:^1.1.1" + "@csstools/postcss-color-function": "npm:^1.1.1" + "@csstools/postcss-font-format-keywords": "npm:^1.0.1" + "@csstools/postcss-hwb-function": "npm:^1.0.2" + "@csstools/postcss-ic-unit": "npm:^1.0.1" + "@csstools/postcss-is-pseudo-class": "npm:^2.0.7" + "@csstools/postcss-nested-calc": "npm:^1.0.0" + "@csstools/postcss-normalize-display-values": "npm:^1.0.1" + "@csstools/postcss-oklab-function": "npm:^1.1.1" + "@csstools/postcss-progressive-custom-properties": "npm:^1.3.0" + "@csstools/postcss-stepped-value-functions": "npm:^1.0.1" + "@csstools/postcss-text-decoration-shorthand": "npm:^1.0.0" + "@csstools/postcss-trigonometric-functions": "npm:^1.0.2" + "@csstools/postcss-unset-value": "npm:^1.0.2" + autoprefixer: "npm:^10.4.13" + browserslist: "npm:^4.21.4" + css-blank-pseudo: "npm:^3.0.3" + css-has-pseudo: "npm:^3.0.4" + css-prefers-color-scheme: "npm:^6.0.3" + cssdb: "npm:^7.1.0" + postcss-attribute-case-insensitive: "npm:^5.0.2" + postcss-clamp: "npm:^4.1.0" + postcss-color-functional-notation: "npm:^4.2.4" + postcss-color-hex-alpha: "npm:^8.0.4" + postcss-color-rebeccapurple: "npm:^7.1.1" + postcss-custom-media: "npm:^8.0.2" + postcss-custom-properties: "npm:^12.1.10" + postcss-custom-selectors: "npm:^6.0.3" + postcss-dir-pseudo-class: "npm:^6.0.5" + postcss-double-position-gradients: "npm:^3.1.2" + postcss-env-function: "npm:^4.0.6" + postcss-focus-visible: "npm:^6.0.4" + postcss-focus-within: "npm:^5.0.4" + postcss-font-variant: "npm:^5.0.0" + postcss-gap-properties: "npm:^3.0.5" + postcss-image-set-function: "npm:^4.0.7" + postcss-initial: "npm:^4.0.1" + postcss-lab-function: "npm:^4.2.1" + postcss-logical: "npm:^5.0.4" + postcss-media-minmax: "npm:^5.0.0" + postcss-nesting: "npm:^10.2.0" + postcss-opacity-percentage: "npm:^1.1.2" + postcss-overflow-shorthand: "npm:^3.0.4" + postcss-page-break: "npm:^3.0.4" + postcss-place: "npm:^7.0.5" + postcss-pseudo-class-any-link: "npm:^7.1.6" + postcss-replace-overflow-wrap: "npm:^4.0.0" + postcss-selector-not: "npm:^6.0.1" + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2 + checksum: cb3a12b4d2dadbf4f6850eda19d975cf09d45223c4c33768cc8c1a0f8b27cd44c7bb29376d6995edeea55924481fa317d841b0d59b00beea35b06d4da6fdd802 + languageName: node + linkType: hard + +"postcss-pseudo-class-any-link@npm:^7.1.6": + version: 7.1.6 + resolution: "postcss-pseudo-class-any-link@npm:7.1.6" + dependencies: + postcss-selector-parser: "npm:^6.0.10" + peerDependencies: + postcss: ^8.2 + checksum: 3f5cffbe4d5de7958ce220dc361ca1fb3c0985d0c44d007b2bdc7a780c412e57800a366fe9390218948cc0157697ba363ce9542e36a831c537b05b18a44dcecd + languageName: node + linkType: hard + +"postcss-reduce-initial@npm:^5.1.2": + version: 5.1.2 + resolution: "postcss-reduce-initial@npm:5.1.2" + dependencies: + browserslist: "npm:^4.21.4" + caniuse-api: "npm:^3.0.0" + peerDependencies: + postcss: ^8.2.15 + checksum: ddb2ce61c8d0997184f08200eafdf32b3c67e88228fee960f5e2010c32da0c1d8ea07712585bf2b3aaa15f583066401d45db2c1131527c5116ca6794ebebd865 + languageName: node + linkType: hard + +"postcss-reduce-transforms@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-reduce-transforms@npm:5.1.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.2.15 + checksum: caefaeb78652ad8701b94e91500e38551255e4899fa298a7357519a36cbeebae088eab4535e00f17675a1230f448c4a7077045639d496da4614a46bc41df4add + languageName: node + linkType: hard + +"postcss-replace-overflow-wrap@npm:^4.0.0": + version: 4.0.0 + resolution: "postcss-replace-overflow-wrap@npm:4.0.0" + peerDependencies: + postcss: ^8.0.3 + checksum: 451361b714528cd3632951256ef073769cde725a46cda642a6864f666fb144921fa55e614aec1bcf5946f37d6ffdcca3b932b76f3d997c07b076e8db152b128d + languageName: node + linkType: hard + +"postcss-selector-not@npm:^6.0.1": + version: 6.0.1 + resolution: "postcss-selector-not@npm:6.0.1" + dependencies: + postcss-selector-parser: "npm:^6.0.10" + peerDependencies: + postcss: ^8.2 + checksum: 1984db777cf842655303f83935a4354b638093f7454964fa1146515424c3309934fdc160135b9113b69bc2361017fb3bfc9ba11efc5bfa1235f9f35ddb544f82 + languageName: node + linkType: hard + +"postcss-selector-parser@npm:^6.0.10, postcss-selector-parser@npm:^6.0.11, postcss-selector-parser@npm:^6.0.2, postcss-selector-parser@npm:^6.0.4, postcss-selector-parser@npm:^6.0.5, postcss-selector-parser@npm:^6.0.9": + version: 6.0.13 + resolution: "postcss-selector-parser@npm:6.0.13" + dependencies: + cssesc: "npm:^3.0.0" + util-deprecate: "npm:^1.0.2" + checksum: 51f099b27f7c7198ea1826470ef0adfa58b3bd3f59b390fda123baa0134880a5fa9720137b6009c4c1373357b144f700b0edac73335d0067422063129371444e + languageName: node + linkType: hard + +"postcss-svgo@npm:^5.1.0": + version: 5.1.0 + resolution: "postcss-svgo@npm:5.1.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" + svgo: "npm:^2.7.0" + peerDependencies: + postcss: ^8.2.15 + checksum: 309634a587e38fef244648bc9cd1817e12144868d24f1173d87b1edc14a4a7fca614962b2cb9d93f4801e11bd8d676083986ad40ebab4438cb84731ce1571994 + languageName: node + linkType: hard + +"postcss-unique-selectors@npm:^5.1.1": + version: 5.1.1 + resolution: "postcss-unique-selectors@npm:5.1.1" + dependencies: + postcss-selector-parser: "npm:^6.0.5" + peerDependencies: + postcss: ^8.2.15 + checksum: 484f6409346d6244c134c5cdcd62f4f2751b269742f95222f13d8bac5fb224471ffe04e28a354670cbe0bdc2707778ead034fc1b801b473ffcbea5436807de30 + languageName: node + linkType: hard + +"postcss-value-parser@npm:^4.0.0, postcss-value-parser@npm:^4.1.0, postcss-value-parser@npm:^4.2.0": + version: 4.2.0 + resolution: "postcss-value-parser@npm:4.2.0" + checksum: f4142a4f56565f77c1831168e04e3effd9ffcc5aebaf0f538eee4b2d465adfd4b85a44257bb48418202a63806a7da7fe9f56c330aebb3cac898e46b4cbf49161 + languageName: node + linkType: hard + +"postcss@npm:^7.0.35": + version: 7.0.39 + resolution: "postcss@npm:7.0.39" + dependencies: + picocolors: "npm:^0.2.1" + source-map: "npm:^0.6.1" + checksum: fd27ee808c0d02407582cccfad4729033e2b439d56cd45534fb39aaad308bb35a290f3b7db5f2394980e8756f9381b458a625618550808c5ff01a125f51efc53 + languageName: node + linkType: hard + +"postcss@npm:^8.3.5, postcss@npm:^8.4.21, postcss@npm:^8.4.23, postcss@npm:^8.4.24, postcss@npm:^8.4.4": + version: 8.4.25 + resolution: "postcss@npm:8.4.25" + dependencies: + nanoid: "npm:^3.3.6" + picocolors: "npm:^1.0.0" + source-map-js: "npm:^1.0.2" + checksum: aa2143cb5ed6eef6cb1d38236f158c5fe11bfd1f338c930cf4901f09586874e05fa006e3fd329ca51c61202c7e90d0705379e6310251c9311116e65cb6a08c18 + languageName: node + linkType: hard + +"potpack@npm:^1.0.1": + version: 1.0.2 + resolution: "potpack@npm:1.0.2" + checksum: 670c23898a4257130858b960c2e654d3327c0f6a7e7091ff5846f213e65af8f9476320b995b8ad561a47a4d1c359c7ef347de57d22e7b02597051abb52bc85c4 + languageName: node + linkType: hard + +"prebuild-install@npm:^7.1.1": + version: 7.1.1 + resolution: "prebuild-install@npm:7.1.1" + dependencies: + detect-libc: "npm:^2.0.0" + expand-template: "npm:^2.0.3" + github-from-package: "npm:0.0.0" + minimist: "npm:^1.2.3" + mkdirp-classic: "npm:^0.5.3" + napi-build-utils: "npm:^1.0.1" + node-abi: "npm:^3.3.0" + pump: "npm:^3.0.0" + rc: "npm:^1.2.7" + simple-get: "npm:^4.0.0" + tar-fs: "npm:^2.0.0" + tunnel-agent: "npm:^0.6.0" + bin: + prebuild-install: bin.js + checksum: 6dc70f36b0f4adcb2fe0ed38d874ab28b571fb1a9725d769e8ba3f64a15831e58462de09f3e6e64569bcc4a3e03b9328b56faa0d45fe10ae1574478814536c76 + languageName: node + linkType: hard + +"prelude-ls@npm:^1.2.1": + version: 1.2.1 + resolution: "prelude-ls@npm:1.2.1" + checksum: b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd + languageName: node + linkType: hard + +"prelude-ls@npm:~1.1.2": + version: 1.1.2 + resolution: "prelude-ls@npm:1.1.2" + checksum: 7284270064f74e0bb7f04eb9bff7be677e4146417e599ccc9c1200f0f640f8b11e592d94eb1b18f7aa9518031913bb42bea9c86af07ba69902864e61005d6f18 + languageName: node + linkType: hard + +"pretty-bytes@npm:^5.3.0, pretty-bytes@npm:^5.4.1": + version: 5.6.0 + resolution: "pretty-bytes@npm:5.6.0" + checksum: f69f494dcc1adda98dbe0e4a36d301e8be8ff99bfde7a637b2ee2820e7cb583b0fc0f3a63b0e3752c01501185a5cf38602c7be60da41bdf84ef5b70e89c370f3 + languageName: node + linkType: hard + +"pretty-error@npm:^4.0.0": + version: 4.0.0 + resolution: "pretty-error@npm:4.0.0" + dependencies: + lodash: "npm:^4.17.20" + renderkid: "npm:^3.0.0" + checksum: dc292c087e2857b2e7592784ab31e37a40f3fa918caa11eba51f9fb2853e1d4d6e820b219917e35f5721d833cfd20fdf4f26ae931a90fd1ad0cae2125c345138 + languageName: node + linkType: hard + +"pretty-format@npm:^27.0.2, pretty-format@npm:^27.5.1": + version: 27.5.1 + resolution: "pretty-format@npm:27.5.1" + dependencies: + ansi-regex: "npm:^5.0.1" + ansi-styles: "npm:^5.0.0" + react-is: "npm:^17.0.1" + checksum: 0cbda1031aa30c659e10921fa94e0dd3f903ecbbbe7184a729ad66f2b6e7f17891e8c7d7654c458fa4ccb1a411ffb695b4f17bbcd3fe075fabe181027c4040ed + languageName: node + linkType: hard + +"pretty-format@npm:^28.1.3": + version: 28.1.3 + resolution: "pretty-format@npm:28.1.3" + dependencies: + "@jest/schemas": "npm:^28.1.3" + ansi-regex: "npm:^5.0.1" + ansi-styles: "npm:^5.0.0" + react-is: "npm:^18.0.0" + checksum: 596d8b459b6fdac7dcbd70d40169191e889939c17ffbcc73eebe2a9a6f82cdbb57faffe190274e0a507d9ecdf3affadf8a9b43442a625eecfbd2813b9319660f + languageName: node + linkType: hard + +"pretty-format@npm:^29.0.0, pretty-format@npm:^29.6.1": + version: 29.6.1 + resolution: "pretty-format@npm:29.6.1" + dependencies: + "@jest/schemas": "npm:^29.6.0" + ansi-styles: "npm:^5.0.0" + react-is: "npm:^18.0.0" + checksum: decb4ca86b34e53a08e525d2b50be19ef4bffa4bb4122787740b012c11490311879de53dee8b669a82376b6fec06040ec546831f2c3ce0df963c00d743cce664 + languageName: node + linkType: hard + +"probe-image-size@npm:^7.2.3": + version: 7.2.3 + resolution: "probe-image-size@npm:7.2.3" + dependencies: + lodash.merge: "npm:^4.6.2" + needle: "npm:^2.5.2" + stream-parser: "npm:~0.3.1" + checksum: bebe3b050889794565b66ea9749cb21fee4f3e99fea41a328e39f2929f2432ebb50ac974148c35c66dec5becc849b3185a7a6f39d3ff75247e8be0a2759c9627 + languageName: node + linkType: hard + +"proc-log@npm:^3.0.0": + version: 3.0.0 + resolution: "proc-log@npm:3.0.0" + checksum: f66430e4ff947dbb996058f6fd22de2c66612ae1a89b097744e17fb18a4e8e7a86db99eda52ccf15e53f00b63f4ec0b0911581ff2aac0355b625c8eac509b0dc + languageName: node + linkType: hard + +"process-nextick-args@npm:~2.0.0": + version: 2.0.1 + resolution: "process-nextick-args@npm:2.0.1" + checksum: bec089239487833d46b59d80327a1605e1c5287eaad770a291add7f45fda1bb5e28b38e0e061add0a1d0ee0984788ce74fa394d345eed1c420cacf392c554367 + languageName: node + linkType: hard + +"process@npm:^0.11.10": + version: 0.11.10 + resolution: "process@npm:0.11.10" + checksum: 40c3ce4b7e6d4b8c3355479df77aeed46f81b279818ccdc500124e6a5ab882c0cc81ff7ea16384873a95a74c4570b01b120f287abbdd4c877931460eca6084b3 + languageName: node + linkType: hard + +"promise-polyfill@npm:^8.0.0": + version: 8.3.0 + resolution: "promise-polyfill@npm:8.3.0" + checksum: 97141f07a31a6be135ec9ed53700a3423a771cabec0ba5e08fcb2bf8cfda855479ff70e444fceb938f560be42b450cd032c14f4a940ed2ad1e5b4dcb78368dce + languageName: node + linkType: hard + +"promise-retry@npm:^2.0.1": + version: 2.0.1 + resolution: "promise-retry@npm:2.0.1" + dependencies: + err-code: "npm:^2.0.2" + retry: "npm:^0.12.0" + checksum: 9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96 + languageName: node + linkType: hard + +"promise@npm:^6.1.0": + version: 6.1.0 + resolution: "promise@npm:6.1.0" + dependencies: + asap: "npm:~1.0.0" + checksum: 8607f70fcf1e3cb26a5023232ec4d8d1b437811fdd4dc5a520b308d8c1215f15d39255c86789b2186570ec7c1c86ca4cc2a555f30076f78afbd50dee6f3a6f11 + languageName: node + linkType: hard + +"promise@npm:^7.1.1": + version: 7.3.1 + resolution: "promise@npm:7.3.1" + dependencies: + asap: "npm:~2.0.3" + checksum: 742e5c0cc646af1f0746963b8776299701ad561ce2c70b49365d62c8db8ea3681b0a1bf0d4e2fe07910bf72f02d39e51e8e73dc8d7503c3501206ac908be107f + languageName: node + linkType: hard + +"promise@npm:^8.1.0": + version: 8.3.0 + resolution: "promise@npm:8.3.0" + dependencies: + asap: "npm:~2.0.6" + checksum: 6fccae27a10bcce7442daf090279968086edd2e3f6cebe054b71816403e2526553edf510d13088a4d0f14d7dfa9b9dfb188cab72d6f942e186a4353b6a29c8bf + languageName: node + linkType: hard + +"prompts@npm:^2.0.1, prompts@npm:^2.4.2": + version: 2.4.2 + resolution: "prompts@npm:2.4.2" + dependencies: + kleur: "npm:^3.0.3" + sisteransi: "npm:^1.0.5" + checksum: 16f1ac2977b19fe2cf53f8411cc98db7a3c8b115c479b2ca5c82b5527cd937aa405fa04f9a5960abeb9daef53191b53b4d13e35c1f5d50e8718c76917c5f1ea4 + languageName: node + linkType: hard + +"prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": + version: 15.8.1 + resolution: "prop-types@npm:15.8.1" + dependencies: + loose-envify: "npm:^1.4.0" + object-assign: "npm:^4.1.1" + react-is: "npm:^16.13.1" + checksum: 59ece7ca2fb9838031d73a48d4becb9a7cc1ed10e610517c7d8f19a1e02fa47f7c27d557d8a5702bec3cfeccddc853579832b43f449e54635803f277b1c78077 + languageName: node + linkType: hard + +"property-information@npm:^6.0.0": + version: 6.4.0 + resolution: "property-information@npm:6.4.0" + checksum: 48ba202f12c6abc82d37135452377dd528fae90a151bcffb28582d58d9db6e42ce835c91e2fcb12e875200b32bcaed90de4807dfb37c687f7cccf2597ccb55e1 + languageName: node + linkType: hard + +"protocol-buffers-schema@npm:^3.3.1": + version: 3.6.0 + resolution: "protocol-buffers-schema@npm:3.6.0" + checksum: 23a08612e5cc903f917ae3b680216ccaf2d889c61daa68d224237f455182fa96fff16872ac94b1954b5dd26fc7e8ce7e9360c54d54ea26218d107b2f059fca37 + languageName: node + linkType: hard + +"proxy-addr@npm:~2.0.7": + version: 2.0.7 + resolution: "proxy-addr@npm:2.0.7" + dependencies: + forwarded: "npm:0.2.0" + ipaddr.js: "npm:1.9.1" + checksum: c3eed999781a35f7fd935f398b6d8920b6fb00bbc14287bc6de78128ccc1a02c89b95b56742bf7cf0362cc333c61d138532049c7dedc7a328ef13343eff81210 + languageName: node + linkType: hard + +"psl@npm:^1.1.33": + version: 1.9.0 + resolution: "psl@npm:1.9.0" + checksum: 6a3f805fdab9442f44de4ba23880c4eba26b20c8e8e0830eff1cb31007f6825dace61d17203c58bfe36946842140c97a1ba7f67bc63ca2d88a7ee052b65d97ab + languageName: node + linkType: hard + +"public-encrypt@npm:^4.0.0": + version: 4.0.3 + resolution: "public-encrypt@npm:4.0.3" + dependencies: + bn.js: "npm:^4.1.0" + browserify-rsa: "npm:^4.0.0" + create-hash: "npm:^1.1.0" + parse-asn1: "npm:^5.0.0" + randombytes: "npm:^2.0.1" + safe-buffer: "npm:^5.1.2" + checksum: 6c2cc19fbb554449e47f2175065d6b32f828f9b3badbee4c76585ac28ae8641aafb9bb107afc430c33c5edd6b05dbe318df4f7d6d7712b1093407b11c4280700 + languageName: node + linkType: hard + +"pump@npm:^3.0.0": + version: 3.0.0 + resolution: "pump@npm:3.0.0" + dependencies: + end-of-stream: "npm:^1.1.0" + once: "npm:^1.3.1" + checksum: bbdeda4f747cdf47db97428f3a135728669e56a0ae5f354a9ac5b74556556f5446a46f720a8f14ca2ece5be9b4d5d23c346db02b555f46739934cc6c093a5478 + languageName: node + linkType: hard + +"punycode@npm:^1.3.2, punycode@npm:^1.4.1": + version: 1.4.1 + resolution: "punycode@npm:1.4.1" + checksum: 354b743320518aef36f77013be6e15da4db24c2b4f62c5f1eb0529a6ed02fbaf1cb52925785f6ab85a962f2b590d9cd5ad730b70da72b5f180e2556b8bd3ca08 + languageName: node + linkType: hard + +"punycode@npm:^2.1.0, punycode@npm:^2.1.1": + version: 2.3.0 + resolution: "punycode@npm:2.3.0" + checksum: 8e6f7abdd3a6635820049e3731c623bbef3fedbf63bbc696b0d7237fdba4cefa069bc1fa62f2938b0fbae057550df7b5318f4a6bcece27f1907fc75c54160bee + languageName: node + linkType: hard + +"q@npm:^1.1.2": + version: 1.5.1 + resolution: "q@npm:1.5.1" + checksum: 7855fbdba126cb7e92ef3a16b47ba998c0786ec7fface236e3eb0135b65df36429d91a86b1fff3ab0927b4ac4ee88a2c44527c7c3b8e2a37efbec9fe34803df4 + languageName: node + linkType: hard + +"qs@npm:6.11.0": + version: 6.11.0 + resolution: "qs@npm:6.11.0" + dependencies: + side-channel: "npm:^1.0.4" + checksum: 4e4875e4d7c7c31c233d07a448e7e4650f456178b9dd3766b7cfa13158fdb24ecb8c4f059fa91e820dc6ab9f2d243721d071c9c0378892dcdad86e9e9a27c68f + languageName: node + linkType: hard + +"qs@npm:^6.11.0": + version: 6.11.2 + resolution: "qs@npm:6.11.2" + dependencies: + side-channel: "npm:^1.0.4" + checksum: 4f95d4ff18ed480befcafa3390022817ffd3087fc65f146cceb40fc5edb9fa96cb31f648cae2fa96ca23818f0798bd63ad4ca369a0e22702fcd41379b3ab6571 + languageName: node + linkType: hard + +"querystring-es3@npm:^0.2.1": + version: 0.2.1 + resolution: "querystring-es3@npm:0.2.1" + checksum: 476938c1adb45c141f024fccd2ffd919a3746e79ed444d00e670aad68532977b793889648980e7ca7ff5ffc7bfece623118d0fbadcaf217495eeb7059ae51580 + languageName: node + linkType: hard + +"querystringify@npm:^2.1.1": + version: 2.2.0 + resolution: "querystringify@npm:2.2.0" + checksum: 3258bc3dbdf322ff2663619afe5947c7926a6ef5fb78ad7d384602974c467fadfc8272af44f5eb8cddd0d011aae8fabf3a929a8eee4b86edcc0a21e6bd10f9aa + languageName: node + linkType: hard + +"queue-microtask@npm:^1.2.2": + version: 1.2.3 + resolution: "queue-microtask@npm:1.2.3" + checksum: 900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102 + languageName: node + linkType: hard + +"quickselect@npm:^2.0.0": + version: 2.0.0 + resolution: "quickselect@npm:2.0.0" + checksum: 6c8d591bc73beae4c1996b7b7138233a7dbbbdde29b7b6d822a02d08cd220fd27613f47d6e9635989b12e250d42ef9da3448de1ed12ad962974e207ab3c3562c + languageName: node + linkType: hard + +"raf@npm:^3.4.1": + version: 3.4.1 + resolution: "raf@npm:3.4.1" + dependencies: + performance-now: "npm:^2.1.0" + checksum: 337f0853c9e6a77647b0f499beedafea5d6facfb9f2d488a624f88b03df2be72b8a0e7f9118a3ff811377d534912039a3311815700d2b6d2313f82f736f9eb6e + languageName: node + linkType: hard + +"randombytes@npm:^2.0.0, randombytes@npm:^2.0.1, randombytes@npm:^2.0.5, randombytes@npm:^2.1.0": + version: 2.1.0 + resolution: "randombytes@npm:2.1.0" + dependencies: + safe-buffer: "npm:^5.1.0" + checksum: 50395efda7a8c94f5dffab564f9ff89736064d32addf0cc7e8bf5e4166f09f8ded7a0849ca6c2d2a59478f7d90f78f20d8048bca3cdf8be09d8e8a10790388f3 + languageName: node + linkType: hard + +"randomfill@npm:^1.0.3": + version: 1.0.4 + resolution: "randomfill@npm:1.0.4" + dependencies: + randombytes: "npm:^2.0.5" + safe-buffer: "npm:^5.1.0" + checksum: 11aeed35515872e8f8a2edec306734e6b74c39c46653607f03c68385ab8030e2adcc4215f76b5e4598e028c4750d820afd5c65202527d831d2a5f207fe2bc87c + languageName: node + linkType: hard + +"range-parser@npm:1.2.0": + version: 1.2.0 + resolution: "range-parser@npm:1.2.0" + checksum: c7aef4f6588eb974c475649c157f197d07437d8c6c8ff7e36280a141463fb5ab7a45918417334ebd7b665c6b8321cf31c763f7631dd5f5db9372249261b8b02a + languageName: node + linkType: hard + +"range-parser@npm:^1.2.1, range-parser@npm:~1.2.1": + version: 1.2.1 + resolution: "range-parser@npm:1.2.1" + checksum: 96c032ac2475c8027b7a4e9fe22dc0dfe0f6d90b85e496e0f016fbdb99d6d066de0112e680805075bd989905e2123b3b3d002765149294dce0c1f7f01fcc2ea0 + languageName: node + linkType: hard + +"raphael@npm:^2.3.0": + version: 2.3.0 + resolution: "raphael@npm:2.3.0" + dependencies: + eve-raphael: "npm:0.5.0" + checksum: 187dccb25eefba5680af5e641e73b7e5343532fc1bb7ee3910da519af87867b7d768264e2071ead68800ce1dbec59ab3a1a30fe1f2c2a546d541a16694f083c9 + languageName: node + linkType: hard + +"raw-body@npm:2.5.1": + version: 2.5.1 + resolution: "raw-body@npm:2.5.1" + dependencies: + bytes: "npm:3.1.2" + http-errors: "npm:2.0.0" + iconv-lite: "npm:0.4.24" + unpipe: "npm:1.0.0" + checksum: 5dad5a3a64a023b894ad7ab4e5c7c1ce34d3497fc7138d02f8c88a3781e68d8a55aa7d4fd3a458616fa8647cc228be314a1c03fb430a07521de78b32c4dd09d2 + languageName: node + linkType: hard + +"rc@npm:^1.0.1, rc@npm:^1.1.6, rc@npm:^1.2.7": + version: 1.2.8 + resolution: "rc@npm:1.2.8" + dependencies: + deep-extend: "npm:^0.6.0" + ini: "npm:~1.3.0" + minimist: "npm:^1.2.0" + strip-json-comments: "npm:~2.0.1" + bin: + rc: ./cli.js + checksum: 24a07653150f0d9ac7168e52943cc3cb4b7a22c0e43c7dff3219977c2fdca5a2760a304a029c20811a0e79d351f57d46c9bde216193a0f73978496afc2b85b15 + languageName: node + linkType: hard + +"react-app-polyfill@npm:^3.0.0": + version: 3.0.0 + resolution: "react-app-polyfill@npm:3.0.0" + dependencies: + core-js: "npm:^3.19.2" + object-assign: "npm:^4.1.1" + promise: "npm:^8.1.0" + raf: "npm:^3.4.1" + regenerator-runtime: "npm:^0.13.9" + whatwg-fetch: "npm:^3.6.2" + checksum: 7079c81717f4707d078943ab507771c3e80333e6c2c80c8d9a02e4a5661974e9bb196aea9f56336f559214a23f495c5f3907937d13a070e701019ae7a9d53c26 + languageName: node + linkType: hard + +"react-colorful@npm:^5.4.0": + version: 5.6.1 + resolution: "react-colorful@npm:5.6.1" + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + checksum: 48eb73cf71e10841c2a61b6b06ab81da9fffa9876134c239bfdebcf348ce2a47e56b146338e35dfb03512c85966bfc9a53844fc56bc50154e71f8daee59ff6f0 + languageName: node + linkType: hard + +"react-contexify@npm:^6.0.0": + version: 6.0.0 + resolution: "react-contexify@npm:6.0.0" + dependencies: + clsx: "npm:^1.2.1" + peerDependencies: + react: ">=16" + react-dom: ">=16" + checksum: f43ece394e0d398941bdc46930759582a447372b48fac06a382acfb447ca6f359d8c882f8bfd25d38d951966dcb19a566d9bd00d157e81a32a15f77a771ef45d + languageName: node + linkType: hard + +"react-dev-utils@npm:^12.0.1": + version: 12.0.1 + resolution: "react-dev-utils@npm:12.0.1" + dependencies: + "@babel/code-frame": "npm:^7.16.0" + address: "npm:^1.1.2" + browserslist: "npm:^4.18.1" + chalk: "npm:^4.1.2" + cross-spawn: "npm:^7.0.3" + detect-port-alt: "npm:^1.1.6" + escape-string-regexp: "npm:^4.0.0" + filesize: "npm:^8.0.6" + find-up: "npm:^5.0.0" + fork-ts-checker-webpack-plugin: "npm:^6.5.0" + global-modules: "npm:^2.0.0" + globby: "npm:^11.0.4" + gzip-size: "npm:^6.0.0" + immer: "npm:^9.0.7" + is-root: "npm:^2.1.0" + loader-utils: "npm:^3.2.0" + open: "npm:^8.4.0" + pkg-up: "npm:^3.1.0" + prompts: "npm:^2.4.2" + react-error-overlay: "npm:^6.0.11" + recursive-readdir: "npm:^2.2.2" + shell-quote: "npm:^1.7.3" + strip-ansi: "npm:^6.0.1" + text-table: "npm:^0.2.0" + checksum: 94bc4ee5014290ca47a025e53ab2205c5dc0299670724d46a0b1bacbdd48904827b5ae410842d0a3a92481509097ae032e4a9dc7ca70db437c726eaba6411e82 + languageName: node + linkType: hard + +"react-device-detect@npm:^2.2.2": + version: 2.2.3 + resolution: "react-device-detect@npm:2.2.3" + dependencies: + ua-parser-js: "npm:^1.0.33" + peerDependencies: + react: ">= 0.14.0" + react-dom: ">= 0.14.0" + checksum: 396bbeeab0cb21da084c67434d204c9cf502fad6c683903313084d3f6487950a36a34f9bf67ccf5c1772a1bb5b79a2a4403fcfe6b51d93877db4c2d9f3a3a925 + languageName: node + linkType: hard + +"react-dom@npm:^18.2.0": + version: 18.2.0 + resolution: "react-dom@npm:18.2.0" + dependencies: + loose-envify: "npm:^1.1.0" + scheduler: "npm:^0.23.0" + peerDependencies: + react: ^18.2.0 + checksum: 66dfc5f93e13d0674e78ef41f92ed21dfb80f9c4ac4ac25a4b51046d41d4d2186abc915b897f69d3d0ebbffe6184e7c5876f2af26bfa956f179225d921be713a + languageName: node + linkType: hard + +"react-dropzone@npm:^11.7.1": + version: 11.7.1 + resolution: "react-dropzone@npm:11.7.1" + dependencies: + attr-accept: "npm:^2.2.2" + file-selector: "npm:^0.4.0" + prop-types: "npm:^15.8.1" + peerDependencies: + react: ">= 16.8" + checksum: 81443f64dad24592f64ac804128df8e8875a54b10497b7690e8bae4525478e61b707e0a31129f0199829bc6ab05ff1c52070883e19cbf6f96e18ffc22d57da4c + languageName: node + linkType: hard + +"react-error-overlay@npm:^6.0.11": + version: 6.0.11 + resolution: "react-error-overlay@npm:6.0.11" + checksum: 8fc93942976e0c704274aec87dbc8e21f62a2cc78d1c93f9bcfff9f7494b00c60f7a2f0bd48d832bcd3190627c0255a1df907373f61f820371373a65ec4b2d64 + languageName: node + linkType: hard + +"react-intersection-observer@npm:^8.32.1": + version: 8.34.0 + resolution: "react-intersection-observer@npm:8.34.0" + peerDependencies: + react: ^15.0.0 || ^16.0.0 || ^17.0.0|| ^18.0.0 + checksum: 471d81025ad0f24b58318f3ed2dd56f65ac5eecde6882a42b83ba3aa7bc555745c8a953c7a55a03073dc9197467d64eca768b92eec2bdf0208ffdc60bbc2498b + languageName: node + linkType: hard + +"react-is@npm:^16.13.1, react-is@npm:^16.7.0": + version: 16.13.1 + resolution: "react-is@npm:16.13.1" + checksum: 33977da7a5f1a287936a0c85639fec6ca74f4f15ef1e59a6bc20338fc73dc69555381e211f7a3529b8150a1f71e4225525b41b60b52965bda53ce7d47377ada1 + languageName: node + linkType: hard + +"react-is@npm:^17.0.1, react-is@npm:^17.0.2": + version: 17.0.2 + resolution: "react-is@npm:17.0.2" + checksum: 2bdb6b93fbb1820b024b496042cce405c57e2f85e777c9aabd55f9b26d145408f9f74f5934676ffdc46f3dcff656d78413a6e43968e7b3f92eea35b3052e9053 + languageName: node + linkType: hard + +"react-is@npm:^18.0.0, react-is@npm:^18.2.0": + version: 18.2.0 + resolution: "react-is@npm:18.2.0" + checksum: 6eb5e4b28028c23e2bfcf73371e72cd4162e4ac7ab445ddae2afe24e347a37d6dc22fae6e1748632cd43c6d4f9b8f86dcf26bf9275e1874f436d129952528ae0 + languageName: node + linkType: hard + +"react-lifecycles-compat@npm:^3.0.4": + version: 3.0.4 + resolution: "react-lifecycles-compat@npm:3.0.4" + checksum: 1d0df3c85af79df720524780f00c064d53a9dd1899d785eddb7264b378026979acbddb58a4b7e06e7d0d12aa1494fd5754562ee55d32907b15601068dae82c27 + languageName: node + linkType: hard + +"react-markdown@npm:^9.0.1": + version: 9.0.1 + resolution: "react-markdown@npm:9.0.1" + dependencies: + "@types/hast": "npm:^3.0.0" + devlop: "npm:^1.0.0" + hast-util-to-jsx-runtime: "npm:^2.0.0" + html-url-attributes: "npm:^3.0.0" + mdast-util-to-hast: "npm:^13.0.0" + remark-parse: "npm:^11.0.0" + remark-rehype: "npm:^11.0.0" + unified: "npm:^11.0.0" + unist-util-visit: "npm:^5.0.0" + vfile: "npm:^6.0.0" + peerDependencies: + "@types/react": ">=18" + react: ">=18" + checksum: 3a3895dbd56647bc864b8da46dd575e71a9e609eb1e43fea8e8e6209d86e208eddd5b07bf8d7b5306a194b405440760a8d134aebd5a4ce5dc7dee4299e84db96 + languageName: node + linkType: hard + +"react-plotly.js@npm:^2.6.0": + version: 2.6.0 + resolution: "react-plotly.js@npm:2.6.0" + dependencies: + prop-types: "npm:^15.8.1" + peerDependencies: + plotly.js: ">1.34.0" + react: ">0.13.0" + checksum: 9b5ba8e33782daa9624d79295975d08d4c7581bac41d67d497eec0a306e4d030465a1e8282fab145bc02705fe96262f6fb0d214133657c480982fc268763644a + languageName: node + linkType: hard + +"react-redux@npm:^7.2.1, react-redux@npm:^7.2.6": + version: 7.2.9 + resolution: "react-redux@npm:7.2.9" + dependencies: + "@babel/runtime": "npm:^7.15.4" + "@types/react-redux": "npm:^7.1.20" + hoist-non-react-statics: "npm:^3.3.2" + loose-envify: "npm:^1.4.0" + prop-types: "npm:^15.7.2" + react-is: "npm:^17.0.2" + peerDependencies: + react: ^16.8.3 || ^17 || ^18 + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + checksum: 904fac7f493942585ed7ebbd693b4f6b5c09c292366b4550e887ba1a2e83a92c55f0ddc35161d4ba87e3fadb6c681a59003f58df6335e5d2ddd72b06a557851d + languageName: node + linkType: hard + +"react-refresh@npm:^0.11.0": + version: 0.11.0 + resolution: "react-refresh@npm:0.11.0" + checksum: cbb5616c7ba670bbd2f37ddadcdfefa66e727ea188e89733ccb8184d3b874631104b0bc016d5676a7ade4d9c79100b99b46b6ed10cd117ab5d1ddcbf8653a9f2 + languageName: node + linkType: hard + +"react-refresh@npm:^0.14.0": + version: 0.14.0 + resolution: "react-refresh@npm:0.14.0" + checksum: b8ae07ad153357d77830928a7f1fc2df837aabefee907fa273ba04c7643f3b860e986f1d4b7ada9b721c8d79b8c24b5b911a314a1a2398b105f1b13d19ea2b8d + languageName: node + linkType: hard + +"react-router-dom@npm:^6.4.1": + version: 6.14.1 + resolution: "react-router-dom@npm:6.14.1" + dependencies: + "@remix-run/router": "npm:1.7.1" + react-router: "npm:6.14.1" + peerDependencies: + react: ">=16.8" + react-dom: ">=16.8" + checksum: 9d3a00263125668a9b703ddc908f98218598c216bc77d99931d0cdf7d6a0f7f9d57649f4261e429a5a1c0c51f5203379a6d8e5181e24d0af6c7623fdd966843c + languageName: node + linkType: hard + +"react-router@npm:6.14.1": + version: 6.14.1 + resolution: "react-router@npm:6.14.1" + dependencies: + "@remix-run/router": "npm:1.7.1" + peerDependencies: + react: ">=16.8" + checksum: da870d0739038bb9630a9b3268ec79224bf47aa9f1015e30820cb29a29eabe0bee723991df5cbcb12473d82b7a2e49598e9d539a6f63fa3f2d64f5cc9cc4db64 + languageName: node + linkType: hard + +"react-scripts@npm:^5.0.1": + version: 5.0.1 + resolution: "react-scripts@npm:5.0.1" + dependencies: + "@babel/core": "npm:^7.16.0" + "@pmmmwh/react-refresh-webpack-plugin": "npm:^0.5.3" + "@svgr/webpack": "npm:^5.5.0" + babel-jest: "npm:^27.4.2" + babel-loader: "npm:^8.2.3" + babel-plugin-named-asset-import: "npm:^0.3.8" + babel-preset-react-app: "npm:^10.0.1" + bfj: "npm:^7.0.2" + browserslist: "npm:^4.18.1" + camelcase: "npm:^6.2.1" + case-sensitive-paths-webpack-plugin: "npm:^2.4.0" + css-loader: "npm:^6.5.1" + css-minimizer-webpack-plugin: "npm:^3.2.0" + dotenv: "npm:^10.0.0" + dotenv-expand: "npm:^5.1.0" + eslint: "npm:^8.3.0" + eslint-config-react-app: "npm:^7.0.1" + eslint-webpack-plugin: "npm:^3.1.1" + file-loader: "npm:^6.2.0" + fs-extra: "npm:^10.0.0" + fsevents: "npm:^2.3.2" + html-webpack-plugin: "npm:^5.5.0" + identity-obj-proxy: "npm:^3.0.0" + jest: "npm:^27.4.3" + jest-resolve: "npm:^27.4.2" + jest-watch-typeahead: "npm:^1.0.0" + mini-css-extract-plugin: "npm:^2.4.5" + postcss: "npm:^8.4.4" + postcss-flexbugs-fixes: "npm:^5.0.2" + postcss-loader: "npm:^6.2.1" + postcss-normalize: "npm:^10.0.1" + postcss-preset-env: "npm:^7.0.1" + prompts: "npm:^2.4.2" + react-app-polyfill: "npm:^3.0.0" + react-dev-utils: "npm:^12.0.1" + react-refresh: "npm:^0.11.0" + resolve: "npm:^1.20.0" + resolve-url-loader: "npm:^4.0.0" + sass-loader: "npm:^12.3.0" + semver: "npm:^7.3.5" + source-map-loader: "npm:^3.0.0" + style-loader: "npm:^3.3.1" + tailwindcss: "npm:^3.0.2" + terser-webpack-plugin: "npm:^5.2.5" + webpack: "npm:^5.64.4" + webpack-dev-server: "npm:^4.6.0" + webpack-manifest-plugin: "npm:^4.0.2" + workbox-webpack-plugin: "npm:^6.4.1" + peerDependencies: + react: ">= 16" + typescript: ^3.2.1 || ^4 + dependenciesMeta: + fsevents: + optional: true + peerDependenciesMeta: + typescript: + optional: true + bin: + react-scripts: bin/react-scripts.js + checksum: 1776e7139261019eb4a2adece8fb997913040c6b4e9170902ffed95c3ff311ded623189bb1582ecddb3a5a15d6afd871fb68dbed72080d50f635e31c4ff5fff5 + languageName: node + linkType: hard + +"react-transition-group@npm:^4.4.5": + version: 4.4.5 + resolution: "react-transition-group@npm:4.4.5" + dependencies: + "@babel/runtime": "npm:^7.5.5" + dom-helpers: "npm:^5.0.1" + loose-envify: "npm:^1.4.0" + prop-types: "npm:^15.6.2" + peerDependencies: + react: ">=16.6.0" + react-dom: ">=16.6.0" + checksum: 2ba754ba748faefa15f87c96dfa700d5525054a0141de8c75763aae6734af0740e77e11261a1e8f4ffc08fd9ab78510122e05c21c2d79066c38bb6861a886c82 + languageName: node + linkType: hard + +"react-virtualized@npm:^9.22.3": + version: 9.22.5 + resolution: "react-virtualized@npm:9.22.5" + dependencies: + "@babel/runtime": "npm:^7.7.2" + clsx: "npm:^1.0.4" + dom-helpers: "npm:^5.1.3" + loose-envify: "npm:^1.4.0" + prop-types: "npm:^15.7.2" + react-lifecycles-compat: "npm:^3.0.4" + peerDependencies: + react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 + react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 + checksum: b0444b472f317dce61119c07426c5e9ebfe5125d049996678da922717715a1aa83df755aa36877f4b1718aa2e181d22f15ebb807ee356418c56f922f865628c1 + languageName: node + linkType: hard + +"react@npm:^18.2.0": + version: 18.2.0 + resolution: "react@npm:18.2.0" + dependencies: + loose-envify: "npm:^1.1.0" + checksum: b562d9b569b0cb315e44b48099f7712283d93df36b19a39a67c254c6686479d3980b7f013dc931f4a5a3ae7645eae6386b4aa5eea933baa54ecd0f9acb0902b8 + languageName: node + linkType: hard + +"read-cache@npm:^1.0.0": + version: 1.0.0 + resolution: "read-cache@npm:1.0.0" + dependencies: + pify: "npm:^2.3.0" + checksum: 90cb2750213c7dd7c80cb420654344a311fdec12944e81eb912cd82f1bc92aea21885fa6ce442e3336d9fccd663b8a7a19c46d9698e6ca55620848ab932da814 + languageName: node + linkType: hard + +"readable-stream@npm:>=1.0.33-1 <1.1.0-0": + version: 1.0.34 + resolution: "readable-stream@npm:1.0.34" + dependencies: + core-util-is: "npm:~1.0.0" + inherits: "npm:~2.0.1" + isarray: "npm:0.0.1" + string_decoder: "npm:~0.10.x" + checksum: 02272551396ed8930ddee1a088bdf0379f0f7cc47ac49ed8804e998076cb7daec9fbd2b1fd9c0490ec72e56e8bb3651abeb8080492b8e0a9c3f2158330908ed6 + languageName: node + linkType: hard + +"readable-stream@npm:^2.0.0, readable-stream@npm:^2.0.1, readable-stream@npm:^2.2.2, readable-stream@npm:^2.3.5, readable-stream@npm:~2.3.6": + version: 2.3.8 + resolution: "readable-stream@npm:2.3.8" + dependencies: + core-util-is: "npm:~1.0.0" + inherits: "npm:~2.0.3" + isarray: "npm:~1.0.0" + process-nextick-args: "npm:~2.0.0" + safe-buffer: "npm:~5.1.1" + string_decoder: "npm:~1.1.1" + util-deprecate: "npm:~1.0.1" + checksum: 7efdb01f3853bc35ac62ea25493567bf588773213f5f4a79f9c365e1ad13bab845ac0dae7bc946270dc40c3929483228415e92a3fc600cc7e4548992f41ee3fa + languageName: node + linkType: hard + +"readable-stream@npm:^3.0.6, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.5.0, readable-stream@npm:^3.6.0": + version: 3.6.2 + resolution: "readable-stream@npm:3.6.2" + dependencies: + inherits: "npm:^2.0.3" + string_decoder: "npm:^1.1.1" + util-deprecate: "npm:^1.0.1" + checksum: e37be5c79c376fdd088a45fa31ea2e423e5d48854be7a22a58869b4e84d25047b193f6acb54f1012331e1bcd667ffb569c01b99d36b0bd59658fb33f513511b7 + languageName: node + linkType: hard + +"readdirp@npm:~3.6.0": + version: 3.6.0 + resolution: "readdirp@npm:3.6.0" + dependencies: + picomatch: "npm:^2.2.1" + checksum: 6fa848cf63d1b82ab4e985f4cf72bd55b7dcfd8e0a376905804e48c3634b7e749170940ba77b32804d5fe93b3cc521aa95a8d7e7d725f830da6d93f3669ce66b + languageName: node + linkType: hard + +"recursive-readdir@npm:^2.2.2": + version: 2.2.3 + resolution: "recursive-readdir@npm:2.2.3" + dependencies: + minimatch: "npm:^3.0.5" + checksum: d0238f137b03af9cd645e1e0b40ae78b6cda13846e3ca57f626fcb58a66c79ae018a10e926b13b3a460f1285acc946a4e512ea8daa2e35df4b76a105709930d1 + languageName: node + linkType: hard + +"redent@npm:^3.0.0": + version: 3.0.0 + resolution: "redent@npm:3.0.0" + dependencies: + indent-string: "npm:^4.0.0" + strip-indent: "npm:^3.0.0" + checksum: d64a6b5c0b50eb3ddce3ab770f866658a2b9998c678f797919ceb1b586bab9259b311407280bd80b804e2a7c7539b19238ae6a2a20c843f1a7fcff21d48c2eae + languageName: node + linkType: hard + +"redux-logger@npm:^3.0.6": + version: 3.0.6 + resolution: "redux-logger@npm:3.0.6" + dependencies: + deep-diff: "npm:^0.3.5" + checksum: 65eb71a1c72d9636368672a684bde62c746e64c19c8b92e3f00bdf5cf240ea1695eccb95a0fa3d5044f6a86cbf11fd35dc5150fd3351fa53c72721c336e9098f + languageName: node + linkType: hard + +"redux-saga@npm:^1.1.3": + version: 1.2.3 + resolution: "redux-saga@npm:1.2.3" + dependencies: + "@redux-saga/core": "npm:^1.2.3" + checksum: 201a882ea201dfdfefb61b59741d52d2b453c4a1d30c32cef76d796fe1170e66cfab63f4d51a4ec4ef624b60072e716295def9ae472eefc02cf70dcab824949b + languageName: node + linkType: hard + +"redux-thunk@npm:^2.3.0, redux-thunk@npm:^2.4.2": + version: 2.4.2 + resolution: "redux-thunk@npm:2.4.2" + peerDependencies: + redux: ^4 + checksum: e202d6ef7dfa7df08ed24cb221aa89d6c84dbaa7d65fe90dbd8e826d0c10d801f48388f9a7598a4fd970ecbc93d335014570a61ca7bc8bf569eab5de77b31a3c + languageName: node + linkType: hard + +"redux@npm:^4.0.0, redux@npm:^4.0.4, redux@npm:^4.0.5, redux@npm:^4.1.2, redux@npm:^4.2.1": + version: 4.2.1 + resolution: "redux@npm:4.2.1" + dependencies: + "@babel/runtime": "npm:^7.9.2" + checksum: 136d98b3d5dbed1cd6279c8c18a6a74c416db98b8a432a46836bdd668475de6279a2d4fd9d1363f63904e00f0678a8a3e7fa532c897163340baf1e71bb42c742 + languageName: node + linkType: hard + +"regenerate-unicode-properties@npm:^10.1.0": + version: 10.1.0 + resolution: "regenerate-unicode-properties@npm:10.1.0" + dependencies: + regenerate: "npm:^1.4.2" + checksum: 17818ea6f67c5a4884b9e18842edc4b3838a12f62e24f843e80fbb6d8cb649274b5b86d98bb02075074e02021850e597a92ff6b58bbe5caba4bf5fd8e4e38b56 + languageName: node + linkType: hard + +"regenerate@npm:^1.4.2": + version: 1.4.2 + resolution: "regenerate@npm:1.4.2" + checksum: f73c9eba5d398c818edc71d1c6979eaa05af7a808682749dd079f8df2a6d91a9b913db216c2c9b03e0a8ba2bba8701244a93f45211afbff691c32c7b275db1b8 + languageName: node + linkType: hard + +"regenerator-runtime@npm:^0.13.11, regenerator-runtime@npm:^0.13.7, regenerator-runtime@npm:^0.13.9": + version: 0.13.11 + resolution: "regenerator-runtime@npm:0.13.11" + checksum: 12b069dc774001fbb0014f6a28f11c09ebfe3c0d984d88c9bced77fdb6fedbacbca434d24da9ae9371bfbf23f754869307fb51a4c98a8b8b18e5ef748677ca24 + languageName: node + linkType: hard + +"regenerator-transform@npm:^0.15.1": + version: 0.15.1 + resolution: "regenerator-transform@npm:0.15.1" + dependencies: + "@babel/runtime": "npm:^7.8.4" + checksum: 6588e0c454e92ed6c2b3ed7ab24f61270aef47ae7052eceb5367cc15658948a2e84fdd6849f7c96e561d1f8a7474dc4c292166792e07498fdde226299b9ff374 + languageName: node + linkType: hard + +"regex-parser@npm:^2.2.11": + version: 2.2.11 + resolution: "regex-parser@npm:2.2.11" + checksum: 6572acbd46b5444215a73cf164f3c6fdbd73b8a2cde6a31a97307e514d20f5cbb8609f9e4994a7744207f2d1bf9e6fca4bbc0c9854f2b3da77ae0063efdc3f98 + languageName: node + linkType: hard + +"regexp.prototype.flags@npm:^1.4.3, regexp.prototype.flags@npm:^1.5.0": + version: 1.5.0 + resolution: "regexp.prototype.flags@npm:1.5.0" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.2.0" + functions-have-names: "npm:^1.2.3" + checksum: 312b7966c5cd2e6837da4073e0e6450191e3c6e8f07276cbed35e170ea5606f91487b435eb3290593f8aed39b1191c44f5340e6e5392650feaf2b34a98378464 + languageName: node + linkType: hard + +"regexpu-core@npm:^5.3.1": + version: 5.3.2 + resolution: "regexpu-core@npm:5.3.2" + dependencies: + "@babel/regjsgen": "npm:^0.8.0" + regenerate: "npm:^1.4.2" + regenerate-unicode-properties: "npm:^10.1.0" + regjsparser: "npm:^0.9.1" + unicode-match-property-ecmascript: "npm:^2.0.0" + unicode-match-property-value-ecmascript: "npm:^2.1.0" + checksum: 7945d5ab10c8bbed3ca383d4274687ea825aee4ab93a9c51c6e31e1365edd5ea807f6908f800ba017b66c462944ba68011164e7055207747ab651f8111ef3770 + languageName: node + linkType: hard + +"registry-auth-token@npm:3.3.2": + version: 3.3.2 + resolution: "registry-auth-token@npm:3.3.2" + dependencies: + rc: "npm:^1.1.6" + safe-buffer: "npm:^5.0.1" + checksum: 934b5d504ec6d94d78672dc5e74646c52793e74a6e400c1cffc78838bbb12c5f45e3ef3edba506f3295db794d4dda76f924f2948d48fe1f8e83b6500b0ba53c5 + languageName: node + linkType: hard + +"registry-url@npm:3.1.0": + version: 3.1.0 + resolution: "registry-url@npm:3.1.0" + dependencies: + rc: "npm:^1.0.1" + checksum: 345cf9638f99d95863d92800b3f595ac312c19d6865595e499fbeb33fcda04021a0dbdafbb5e61a838a89a558bc239d78752a1f90eb68cf53fdf0d91da816a7c + languageName: node + linkType: hard + +"regjsparser@npm:^0.9.1": + version: 0.9.1 + resolution: "regjsparser@npm:0.9.1" + dependencies: + jsesc: "npm:~0.5.0" + bin: + regjsparser: bin/parser + checksum: fe44fcf19a99fe4f92809b0b6179530e5ef313ff7f87df143b08ce9a2eb3c4b6189b43735d645be6e8f4033bfb015ed1ca54f0583bc7561bed53fd379feb8225 + languageName: node + linkType: hard + +"regl-error2d@npm:^2.0.12": + version: 2.0.12 + resolution: "regl-error2d@npm:2.0.12" + dependencies: + array-bounds: "npm:^1.0.1" + color-normalize: "npm:^1.5.0" + flatten-vertex-data: "npm:^1.0.2" + object-assign: "npm:^4.1.1" + pick-by-alias: "npm:^1.2.0" + to-float32: "npm:^1.1.0" + update-diff: "npm:^1.1.0" + checksum: 999bdbb25bf2ab81fe14d9d630db15e81aa590e8b723b8030e7757f4393ff2eb3924e52044a12125804da5fe9d89f5ed1a2bf64340aabaf4cee7ea729ae2398d + languageName: node + linkType: hard + +"regl-line2d@npm:^3.1.2": + version: 3.1.2 + resolution: "regl-line2d@npm:3.1.2" + dependencies: + array-bounds: "npm:^1.0.1" + array-find-index: "npm:^1.0.2" + array-normalize: "npm:^1.1.4" + color-normalize: "npm:^1.5.0" + earcut: "npm:^2.1.5" + es6-weak-map: "npm:^2.0.3" + flatten-vertex-data: "npm:^1.0.2" + glslify: "npm:^7.0.0" + object-assign: "npm:^4.1.1" + parse-rect: "npm:^1.2.0" + pick-by-alias: "npm:^1.2.0" + to-float32: "npm:^1.1.0" + checksum: 42d04016d74fcfb888c73300cdc7230e05d780079a5c274a8135f811d0a57efc11bb7dff308ad523a48c9dc1ca945c46eeb9c118d4c0231562292a915fa2c369 + languageName: node + linkType: hard + +"regl-scatter2d@npm:^3.2.3, regl-scatter2d@npm:^3.2.9": + version: 3.2.9 + resolution: "regl-scatter2d@npm:3.2.9" + dependencies: + "@plotly/point-cluster": "npm:^3.1.9" + array-range: "npm:^1.0.1" + array-rearrange: "npm:^2.2.2" + clamp: "npm:^1.0.1" + color-id: "npm:^1.1.0" + color-normalize: "npm:^1.5.0" + color-rgba: "npm:^2.1.1" + flatten-vertex-data: "npm:^1.0.2" + glslify: "npm:^7.0.0" + is-iexplorer: "npm:^1.0.0" + object-assign: "npm:^4.1.1" + parse-rect: "npm:^1.2.0" + pick-by-alias: "npm:^1.2.0" + to-float32: "npm:^1.1.0" + update-diff: "npm:^1.1.0" + checksum: 571d2332cc3dedadfd4888dbd144407ed44875c2e6f98331116c243558e5e40efc4f40b134cf8bb33e423981c159754fa5906336f2fd46a3111b6fb5596f9385 + languageName: node + linkType: hard + +"regl-splom@npm:^1.0.14": + version: 1.0.14 + resolution: "regl-splom@npm:1.0.14" + dependencies: + array-bounds: "npm:^1.0.1" + array-range: "npm:^1.0.1" + color-alpha: "npm:^1.0.4" + flatten-vertex-data: "npm:^1.0.2" + parse-rect: "npm:^1.2.0" + pick-by-alias: "npm:^1.2.0" + raf: "npm:^3.4.1" + regl-scatter2d: "npm:^3.2.3" + checksum: 7f7d90c218b13e26fe3745cd8639fca739797908739e7924ea1e728f0e58031508a1f3db65ae7f5da2b2c33b290c36509cfd49db3e5c430ffa54805ac51dd51a + languageName: node + linkType: hard "regl@npm:@plotly/regl@^2.1.2": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@plotly/regl/-/regl-2.1.2.tgz#fd31e3e820ed8824d59a67ab5e766bb101b810b6" - integrity sha512-Mdk+vUACbQvjd0m/1JJjOOafmkp/EpmHjISsopEz5Av44CBq7rPC05HHNbYGKVyNUF2zmEoBS/TT0pd0SPFFyw== - -relateurl@^0.2.7: - version "0.2.7" - resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== - -remark-gfm@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-1.0.0.tgz#9213643001be3f277da6256464d56fd28c3b3c0d" - integrity sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA== - dependencies: - mdast-util-gfm "^0.1.0" - micromark-extension-gfm "^0.3.0" - -remark-parse@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" - integrity sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw== - dependencies: - mdast-util-from-markdown "^0.8.0" - -renderkid@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" - integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== - dependencies: - css-select "^4.1.3" - dom-converter "^0.2.0" - htmlparser2 "^6.1.0" - lodash "^4.17.21" - strip-ansi "^6.0.1" - -repeat-string@^1.0.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== - -replace@^1.2.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/replace/-/replace-1.2.2.tgz#880247113a950afa749a297e6d10d4d7bcd27acf" - integrity sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA== - dependencies: - chalk "2.4.2" - minimatch "3.0.5" - yargs "^15.3.1" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== - -reselect@^4.0.0, reselect@^4.1.8: - version "4.1.8" - resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.8.tgz#3f5dc671ea168dccdeb3e141236f69f02eaec524" - integrity sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-protobuf-schema@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz#9ca9a9e69cf192bbdaf1006ec1973948aa4a3758" - integrity sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ== - dependencies: - protocol-buffers-schema "^3.3.1" - -resolve-url-loader@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz#d50d4ddc746bb10468443167acf800dcd6c3ad57" - integrity sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA== - dependencies: - adjust-sourcemap-loader "^4.0.0" - convert-source-map "^1.7.0" - loader-utils "^2.0.0" - postcss "^7.0.35" - source-map "0.6.1" - -resolve.exports@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.1.tgz#05cfd5b3edf641571fd46fa608b610dda9ead999" - integrity sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ== - -resolve@^0.6.1: - version "0.6.3" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-0.6.3.tgz#dd957982e7e736debdf53b58a4dd91754575dd46" - integrity sha512-UHBY3viPlJKf85YijDUcikKX6tmF4SokIDp518ZDVT92JNDcG5uKIthaT/owt3Sar0lwtOafsQuwrg22/v2Dwg== - -resolve@^1.0.0, resolve@^1.1.10, resolve@^1.1.5, resolve@^1.1.7, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.2: - version "1.22.2" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" - integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== - dependencies: - is-core-module "^2.11.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -resolve@^2.0.0-next.4: - version "2.0.0-next.4" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" - integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -retry@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" - integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -right-now@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/right-now/-/right-now-1.0.0.tgz#6e89609deebd7dcdaf8daecc9aea39cf585a0918" - integrity sha512-DA8+YS+sMIVpbsuKgy+Z67L9Lxb1p05mNxRpDPNksPDEFir4vmBlUtuN9jkTGn9YMMdlBuK7XQgFiz6ws+yhSg== - -rimraf@^3.0.0, rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - -rollup-plugin-terser@^7.0.0: - version "7.0.2" - resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d" - integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== - dependencies: - "@babel/code-frame" "^7.10.4" - jest-worker "^26.2.1" - serialize-javascript "^4.0.0" - terser "^5.0.0" - -rollup@^2.43.1: - version "2.79.1" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.79.1.tgz#bedee8faef7c9f93a2647ac0108748f497f081c7" - integrity sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw== - optionalDependencies: - fsevents "~2.3.2" - -rollup@^3.25.2: - version "3.26.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.26.2.tgz#2e76a37606cb523fc9fef43e6f59c93f86d95e7c" - integrity sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA== - optionalDependencies: - fsevents "~2.3.2" - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -rw@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" - integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ== - -safe-array-concat@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060" - integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.0" - has-symbols "^1.0.3" - isarray "^2.0.5" - -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-regex-test@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" - integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" - is-regex "^1.1.4" - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sanitize.css@*: - version "13.0.0" - resolved "https://registry.yarnpkg.com/sanitize.css/-/sanitize.css-13.0.0.tgz#2675553974b27964c75562ade3bd85d79879f173" - integrity sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA== - -sass-loader@^12.3.0: - version "12.6.0" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-12.6.0.tgz#5148362c8e2cdd4b950f3c63ac5d16dbfed37bcb" - integrity sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA== - dependencies: - klona "^2.0.4" - neo-async "^2.6.2" - -sax@^1.2.4, sax@~1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -saxes@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" - integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== - dependencies: - xmlchars "^2.2.0" - -scheduler@^0.23.0: - version "0.23.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" - integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== - dependencies: - loose-envify "^1.1.0" - -schema-utils@2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" - integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== - dependencies: - "@types/json-schema" "^7.0.4" - ajv "^6.12.2" - ajv-keywords "^3.4.1" - -schema-utils@^2.6.5: - version "2.7.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" - integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== - dependencies: - "@types/json-schema" "^7.0.5" - ajv "^6.12.4" - ajv-keywords "^3.5.2" - -schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" - integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== - dependencies: - "@types/json-schema" "^7.0.8" - ajv "^6.12.5" - ajv-keywords "^3.5.2" - -schema-utils@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" - integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== - dependencies: - "@types/json-schema" "^7.0.9" - ajv "^8.9.0" - ajv-formats "^2.1.1" - ajv-keywords "^5.1.0" - -select-hose@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" - integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== - -selfsigned@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" - integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== - dependencies: - node-forge "^1" - -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8: - version "7.5.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e" - integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ== - dependencies: - lru-cache "^6.0.0" - -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== - dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" - mime "1.6.0" - ms "2.1.3" - on-finished "2.4.1" - range-parser "~1.2.1" - statuses "2.0.1" - -serialize-javascript@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" - integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== - dependencies: - randombytes "^2.1.0" - -serialize-javascript@^6.0.0, serialize-javascript@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" - integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== - dependencies: - randombytes "^2.1.0" - -serve-handler@6.1.5: - version "6.1.5" - resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.5.tgz#a4a0964f5c55c7e37a02a633232b6f0d6f068375" - integrity sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg== - dependencies: - bytes "3.0.0" - content-disposition "0.5.2" - fast-url-parser "1.1.3" - mime-types "2.1.18" - minimatch "3.1.2" - path-is-inside "1.0.2" - path-to-regexp "2.2.1" - range-parser "1.2.0" - -serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" - integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== - dependencies: - accepts "~1.3.4" - batch "0.6.1" - debug "2.6.9" - escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" - -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.18.0" - -serve@^14.2.0: - version "14.2.0" - resolved "https://registry.yarnpkg.com/serve/-/serve-14.2.0.tgz#3d768e88fa13ad8644f2393599189707176e66b8" - integrity sha512-+HOw/XK1bW8tw5iBilBz/mJLWRzM8XM6MPxL4J/dKzdxq1vfdEWSwhaR7/yS8EJp5wzvP92p1qirysJvnEtjXg== - dependencies: - "@zeit/schemas" "2.29.0" - ajv "8.11.0" - arg "5.0.2" - boxen "7.0.0" - chalk "5.0.1" - chalk-template "0.4.0" - clipboardy "3.0.0" - compression "1.7.4" - is-port-reachable "4.0.0" - serve-handler "6.1.5" - update-check "1.5.4" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -setimmediate@^1.0.4, setimmediate@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.11" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -shallow-copy@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/shallow-copy/-/shallow-copy-0.0.1.tgz#415f42702d73d810330292cc5ee86eae1a11a170" - integrity sha512-b6i4ZpVuUxB9h5gfCxPiusKYkqTMOjEbBs4wMaFbkfia4yFv92UKZ6Df8WXcKbn08JNL/abvg3FnMAOfakDvUw== - -sharp@~0.30.7: - version "0.30.7" - resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.30.7.tgz#7862bda98804fdd1f0d5659c85e3324b90d94c7c" - integrity sha512-G+MY2YW33jgflKPTXXptVO28HvNOo9G3j0MybYAHeEmby+QuD2U98dT6ueht9cv/XDqZspSpIhoSW+BAKJ7Hig== - dependencies: - color "^4.2.3" - detect-libc "^2.0.1" - node-addon-api "^5.0.0" - prebuild-install "^7.1.1" - semver "^7.3.7" - simple-get "^4.0.1" - tar-fs "^2.1.1" - tunnel-agent "^0.6.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shell-quote@^1.7.3: - version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@^3.0.2, signal-exit@^3.0.3: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signals@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/signals/-/signals-1.0.0.tgz#65f0c1599352b35372ecaae5a250e6107376ed69" - integrity sha512-dE3lBiqgrgIvpGHYBy6/kiYKfh0HXRmbg0ocakBKiOefbal6ZeTtNlQlxsu9ADkNzv5OmRwRKu+IaTPSqJdZDg== - -signum@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/signum/-/signum-1.0.0.tgz#74a7d2bf2a20b40eba16a92b152124f1d559fa77" - integrity sha512-yodFGwcyt59XRh7w5W3jPcIQb3Bwi21suEfT7MAWnBX3iCdklJpgDgvGT9o04UonglZN5SNMfJFkHIR/jO8GHw== - -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - -simple-get@^4.0.0, simple-get@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" - integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== - dependencies: - decompress-response "^6.0.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-swizzle@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== - dependencies: - is-arrayish "^0.3.1" - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slash@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" - integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== - -sockjs@^0.3.24: - version "0.3.24" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" - integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== - dependencies: - faye-websocket "^0.11.3" - uuid "^8.3.2" - websocket-driver "^0.7.4" - -source-list-map@^2.0.0, source-list-map@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" - integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== - -source-map-js@^1.0.1, source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== - -source-map-loader@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-3.0.2.tgz#af23192f9b344daa729f6772933194cc5fa54fee" - integrity sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg== - dependencies: - abab "^2.0.5" - iconv-lite "^0.6.3" - source-map-js "^1.0.1" - -source-map-support@^0.5.6, source-map-support@~0.5.20: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.5.7: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - -source-map@^0.7.3: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== - -source-map@^0.8.0-beta.0: - version "0.8.0-beta.0" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11" - integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== - dependencies: - whatwg-url "^7.0.0" - -sourcemap-codec@^1.4.8: - version "1.4.8" - resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" - integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== - -spdy-transport@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" - integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== - dependencies: - debug "^4.1.0" - detect-node "^2.0.4" - hpack.js "^2.1.6" - obuf "^1.1.2" - readable-stream "^3.0.6" - wbuf "^1.7.3" - -spdy@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" - integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== - dependencies: - debug "^4.1.0" - handle-thing "^2.0.0" - http-deceiver "^1.2.7" - select-hose "^2.0.0" - spdy-transport "^3.0.0" - -sprintf-js@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" - integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -stable@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== - -stack-trace@0.0.9: - version "0.0.9" - resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.9.tgz#a8f6eaeca90674c333e7c43953f275b451510695" - integrity sha512-vjUc6sfgtgY0dxCdnc40mK6Oftjo9+2K8H/NG81TMhgL392FtiPA9tn9RLyTxXmTLPJPjF3VyzFp6bsWFLisMQ== - -stack-utils@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" - integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== - dependencies: - escape-string-regexp "^2.0.0" - -stackframe@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" - integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== - -static-eval@^2.0.5: - version "2.1.0" - resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.1.0.tgz#a16dbe54522d7fa5ef1389129d813fd47b148014" - integrity sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw== - dependencies: - escodegen "^1.11.1" - -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -"statuses@>= 1.4.0 < 2": - version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== - -stop-iteration-iterator@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" - integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== - dependencies: - internal-slot "^1.0.4" - -stream-browserify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" - integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== - dependencies: - inherits "~2.0.4" - readable-stream "^3.5.0" - -stream-http@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.2.0.tgz#1872dfcf24cb15752677e40e5c3f9cc1926028b5" - integrity sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A== - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.4" - readable-stream "^3.6.0" - xtend "^4.0.2" - -stream-parser@~0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/stream-parser/-/stream-parser-0.3.1.tgz#1618548694420021a1182ff0af1911c129761773" - integrity sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ== - dependencies: - debug "2" - -stream-shift@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" - integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== - -string-length@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" - integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -string-length@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-5.0.1.tgz#3d647f497b6e8e8d41e422f7e0b23bc536c8381e" - integrity sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow== - dependencies: - char-regex "^2.0.0" - strip-ansi "^7.0.1" - -string-natural-compare@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4" - integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw== - -string-split-by@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/string-split-by/-/string-split-by-1.0.0.tgz#53895fb3397ebc60adab1f1e3a131f5372586812" - integrity sha512-KaJKY+hfpzNyet/emP81PJA9hTVSfxNLS9SFTWxdCnnW1/zOOwiV248+EfoX7IQFcBaOp4G5YE6xTJMF+pLg6A== - dependencies: - parenthesis "^3.1.5" - -string-width@^4.1.0, string-width@^4.2.0: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^5.0.1, string-width@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== - dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" - -string.prototype.matchall@^4.0.6, string.prototype.matchall@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" - integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - get-intrinsic "^1.1.3" - has-symbols "^1.0.3" - internal-slot "^1.0.3" - regexp.prototype.flags "^1.4.3" - side-channel "^1.0.4" - -string.prototype.trim@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" - integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimend@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" - integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimstart@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" - integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string_decoder@^1.0.0, string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -stringify-object@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" - integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== - dependencies: - get-own-enumerable-property-symbols "^3.0.0" - is-obj "^1.0.1" - is-regexp "^1.0.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.0.1: - version "7.1.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== - dependencies: - ansi-regex "^6.0.1" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-comments@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz#4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b" - integrity sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - -strongly-connected-components@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/strongly-connected-components/-/strongly-connected-components-1.0.1.tgz#0920e2b4df67c8eaee96c6b6234fe29e873dba99" - integrity sha512-i0TFx4wPcO0FwX+4RkLJi1MxmcTv90jNZgxMu9XRnMXMeFUY1VJlIoXpZunPUvUUqbCT1pg5PEkFqqpcaElNaA== - -style-loader@^3.3.1: - version "3.3.3" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff" - integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw== - -stylehacks@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9" - integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== - dependencies: - browserslist "^4.21.4" - postcss-selector-parser "^6.0.4" - -stylis@4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" - integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== - -subscription@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/subscription/-/subscription-3.0.0.tgz#0e3169263ea9889a7d71aa34ff4465f2d1ac26e2" - integrity sha512-W0xDn7QYcDo9HhHqsmoj4U8pJVqYqnggBUoJixAQXc2MoX71Ef551Np9tyTMX+9Ta6br9MdTbvdpQ/+JP31uPQ== - -sucrase@^3.32.0: - version "3.32.0" - resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.32.0.tgz#c4a95e0f1e18b6847127258a75cf360bc568d4a7" - integrity sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ== - dependencies: - "@jridgewell/gen-mapping" "^0.3.2" - commander "^4.0.0" - glob "7.1.6" - lines-and-columns "^1.1.6" - mz "^2.7.0" - pirates "^4.0.1" - ts-interface-checker "^0.1.9" - -supercluster@^7.0.0: - version "7.1.5" - resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-7.1.5.tgz#65a6ce4a037a972767740614c19051b64b8be5a3" - integrity sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg== - dependencies: - kdbush "^3.0.0" - -superscript-text@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/superscript-text/-/superscript-text-1.0.0.tgz#e7cb2752567360df50beb0610ce8df3d71d8dfd8" - integrity sha512-gwu8l5MtRZ6koO0icVTlmN5pm7Dhh1+Xpe9O4x6ObMAsW+3jPbW14d1DsBq1F4wiI+WOFjXF35pslgec/G8yCQ== - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-hyperlinks@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" - integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -svg-arc-to-cubic-bezier@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz#390c450035ae1c4a0104d90650304c3bc814abe6" - integrity sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g== - -svg-parser@^2.0.2, svg-parser@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" - integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== - -svg-path-bounds@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/svg-path-bounds/-/svg-path-bounds-1.0.2.tgz#00312f672b08afc432a66ddfbd06db40cec8d0d0" - integrity sha512-H4/uAgLWrppIC0kHsb2/dWUYSmb4GE5UqH06uqWBcg6LBjX2fu0A8+JrO2/FJPZiSsNOKZAhyFFgsLTdYUvSqQ== - dependencies: - abs-svg-path "^0.1.1" - is-svg-path "^1.0.1" - normalize-svg-path "^1.0.0" - parse-svg-path "^0.1.2" - -svg-path-sdf@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/svg-path-sdf/-/svg-path-sdf-1.1.3.tgz#92957a31784c0eaf68945472c8dc6bf9e6d126fc" - integrity sha512-vJJjVq/R5lSr2KLfVXVAStktfcfa1pNFjFOgyJnzZFXlO/fDZ5DmM8FpnSKKzLPfEYTVeXuVBTHF296TpxuJVg== - dependencies: - bitmap-sdf "^1.0.0" - draw-svg-path "^1.0.0" - is-svg-path "^1.0.1" - parse-svg-path "^0.1.2" - svg-path-bounds "^1.0.1" - -svgo@^1.2.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" - integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== - dependencies: - chalk "^2.4.1" - coa "^2.0.2" - css-select "^2.0.0" - css-select-base-adapter "^0.1.1" - css-tree "1.0.0-alpha.37" - csso "^4.0.2" - js-yaml "^3.13.1" - mkdirp "~0.5.1" - object.values "^1.1.0" - sax "~1.2.4" - stable "^0.1.8" - unquote "~1.1.1" - util.promisify "~1.0.0" - -svgo@^2.7.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" - integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== - dependencies: - "@trysound/sax" "0.2.0" - commander "^7.2.0" - css-select "^4.1.3" - css-tree "^1.1.3" - csso "^4.2.0" - picocolors "^1.0.0" - stable "^0.1.8" - -svgpath@^2.3.1: - version "2.6.0" - resolved "https://registry.yarnpkg.com/svgpath/-/svgpath-2.6.0.tgz#5b160ef3d742b7dfd2d721bf90588d3450d7a90d" - integrity sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg== - -symbol-tree@^3.2.4: - version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -tailwindcss@^3.0.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.2.tgz#2f9e35d715fdf0bbf674d90147a0684d7054a2d3" - integrity sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w== - dependencies: - "@alloc/quick-lru" "^5.2.0" - arg "^5.0.2" - chokidar "^3.5.3" - didyoumean "^1.2.2" - dlv "^1.1.3" - fast-glob "^3.2.12" - glob-parent "^6.0.2" - is-glob "^4.0.3" - jiti "^1.18.2" - lilconfig "^2.1.0" - micromatch "^4.0.5" - normalize-path "^3.0.0" - object-hash "^3.0.0" - picocolors "^1.0.0" - postcss "^8.4.23" - postcss-import "^15.1.0" - postcss-js "^4.0.1" - postcss-load-config "^4.0.1" - postcss-nested "^6.0.1" - postcss-selector-parser "^6.0.11" - postcss-value-parser "^4.2.0" - resolve "^1.22.2" - sucrase "^3.32.0" - -tapable@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" - integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== - -tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== - -tar-fs@^2.0.0, tar-fs@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -temp-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" - integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== - -tempy@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.6.0.tgz#65e2c35abc06f1124a97f387b08303442bde59f3" - integrity sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw== - dependencies: - is-stream "^2.0.0" - temp-dir "^2.0.0" - type-fest "^0.16.0" - unique-string "^2.0.0" - -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - -terser-webpack-plugin@^5.2.5, terser-webpack-plugin@^5.3.7: - version "5.3.9" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" - integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== - dependencies: - "@jridgewell/trace-mapping" "^0.3.17" - jest-worker "^27.4.5" - schema-utils "^3.1.1" - serialize-javascript "^6.0.1" - terser "^5.16.8" - -terser@^5.0.0, terser@^5.10.0, terser@^5.16.8: - version "5.18.2" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.18.2.tgz#ff3072a0faf21ffd38f99acc9a0ddf7b5f07b948" - integrity sha512-Ah19JS86ypbJzTzvUCX7KOsEIhDaRONungA4aYBjEP3JZRf4ocuDzTg4QWZnPn9DEMiMYGJPiSOy7aykoCc70w== - dependencies: - "@jridgewell/source-map" "^0.3.3" - acorn "^8.8.2" - commander "^2.20.0" - source-map-support "~0.5.20" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -thenify-all@^1.0.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" - integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== - dependencies: - thenify ">= 3.1.0 < 4" - -"thenify@>= 3.1.0 < 4": - version "3.3.1" - resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" - integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== - dependencies: - any-promise "^1.0.0" - -three@0.131.3: - version "0.131.3" - resolved "https://registry.yarnpkg.com/three/-/three-0.131.3.tgz#406fd210c603ca9154937ae3582996fbfd3cb716" - integrity sha512-VkZAv8ZTJqiE/fyEmoWLxcNHImpVcjqW7RO0GzMu3tRpwO0KUvK9pjTmJzJcAbc51BOeB2G38zh80yjHTbP8gQ== - -three@^0.118.0: - version "0.118.3" - resolved "https://registry.yarnpkg.com/three/-/three-0.118.3.tgz#c0bf8c10a68155478f12f4ccac2ff979526a4a0a" - integrity sha512-ijECXrNzDkHieoeh2H69kgawTGH8DiamhR4uBN8jEM7VHSKvfTdEvOoHsA8Aq7dh7PHAxhlqBsN5arBI3KixSw== - -throat@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.2.tgz#51a3fbb5e11ae72e2cf74861ed5c8020f89f29fe" - integrity sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ== - -through2@^0.6.3: - version "0.6.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" - integrity sha512-RkK/CCESdTKQZHdmKICijdKKsCRVHs5KsLZ6pACAmF/1GPUQhonHSXWNERctxEp7RmvjdNbZTL5z9V7nSCXKcg== - dependencies: - readable-stream ">=1.0.33-1 <1.1.0-0" - xtend ">=4.0.0 <4.1.0-0" - -through2@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -thunky@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" - integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== - -timers-browserify@^2.0.4: - version "2.0.12" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" - integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== - dependencies: - setimmediate "^1.0.4" - -tinycolor2@^1.4.2: - version "1.6.0" - resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e" - integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== - -tinyqueue@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-2.0.3.tgz#64d8492ebf39e7801d7bd34062e29b45b2035f08" - integrity sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA== - -tmpl@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" - integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-float32@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/to-float32/-/to-float32-1.1.0.tgz#39bd3b11eadccd490c08f5f9171da5127b6f3946" - integrity sha512-keDnAusn/vc+R3iEiSDw8TOF7gPiTLdK1ArvWtYbJQiVfmRg6i/CAvbKq3uIS0vWroAC7ZecN3DjQKw3aSklUg== - -to-px@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-px/-/to-px-1.0.1.tgz#5bbaed5e5d4f76445bcc903c293a2307dd324646" - integrity sha512-2y3LjBeIZYL19e5gczp14/uRWFDtDUErJPVN3VU9a7SJO+RjGRtYR47aMN2bZgGlxvW4ZcEz2ddUPVHXcMfuXw== - dependencies: - parse-unit "^1.0.1" - -to-px@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/to-px/-/to-px-1.1.0.tgz#b6b269ed5db0cc9aefc15272a4c8bcb2ca1e99ca" - integrity sha512-bfg3GLYrGoEzrGoE05TAL/Uw+H/qrf2ptr9V3W7U0lkjjyYnIfgxmVLUfhQ1hZpIQwin81uxhDjvUkDYsC0xWw== - dependencies: - parse-unit "^1.0.1" - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - -topojson-client@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.1.0.tgz#22e8b1ed08a2b922feeb4af6f53b6ef09a467b99" - integrity sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw== - dependencies: - commander "2" - -tough-cookie@^4.0.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" - integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== - dependencies: - psl "^1.1.33" - punycode "^2.1.1" - universalify "^0.2.0" - url-parse "^1.5.3" - -tr46@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA== - dependencies: - punycode "^2.1.0" - -tr46@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" - integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== - dependencies: - punycode "^2.1.1" - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -tryer@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8" - integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== - -ts-interface-checker@^0.1.9: - version "0.1.13" - resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" - integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== - -tsconfck@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tsconfck/-/tsconfck-2.1.1.tgz#9b51603d2712d1f4740fa14748ca886a2e1893e5" - integrity sha512-ZPCkJBKASZBmBUNqGHmRhdhM8pJYDdOXp4nRgj/O0JwUwsMq50lCDRQP/M5GBNAA0elPrq4gAeu4dkaVCuKWww== - -tsconfig-paths@^3.14.1: - version "3.14.2" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" - integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== - dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@^1.8.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.0.3: - version "2.6.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" - integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== - -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - -tty-browserify@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" - integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.16.0: - version "0.16.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" - integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== - -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^2.13.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" - integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== - -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -type@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== - -type@^2.7.2: - version "2.7.2" - resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0" - integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw== - -typed-array-length@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" - integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== - dependencies: - call-bind "^1.0.2" - for-each "^0.3.3" - is-typed-array "^1.1.9" - -typedarray-pool@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/typedarray-pool/-/typedarray-pool-1.2.0.tgz#e7e90720144ba02b9ed660438af6f3aacfe33ac3" - integrity sha512-YTSQbzX43yvtpfRtIDAYygoYtgT+Rpjuxy9iOpczrjpXLgGoyG7aS5USJXV2d3nn8uHTeb9rXDvzS27zUg5KYQ== - dependencies: - bit-twiddle "^1.0.0" - dup "^1.0.0" - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" - -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== - -typescript-compare@^0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/typescript-compare/-/typescript-compare-0.0.2.tgz#7ee40a400a406c2ea0a7e551efd3309021d5f425" - integrity sha512-8ja4j7pMHkfLJQO2/8tut7ub+J3Lw2S3061eJLFQcvs3tsmJKp8KG5NtpLn7KcY2w08edF74BSVN7qJS0U6oHA== - dependencies: - typescript-logic "^0.0.0" - -typescript-logic@^0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/typescript-logic/-/typescript-logic-0.0.0.tgz#66ebd82a2548f2b444a43667bec120b496890196" - integrity sha512-zXFars5LUkI3zP492ls0VskH3TtdeHCqu0i7/duGt60i5IGPIpAHE/DWo5FqJ6EjQ15YKXrt+AETjv60Dat34Q== - -typescript-tuple@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/typescript-tuple/-/typescript-tuple-2.2.1.tgz#7d9813fb4b355f69ac55032e0363e8bb0f04dad2" - integrity sha512-Zcr0lbt8z5ZdEzERHAMAniTiIKerFCMgd7yjq1fPnDJ43et/k9twIFQMUYff9k5oXcsQ0WpvFcgzK2ZKASoW6Q== - dependencies: - typescript-compare "^0.0.2" - -ua-parser-js@^0.7.18: - version "0.7.35" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.35.tgz#8bda4827be4f0b1dda91699a29499575a1f1d307" - integrity sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g== - -ua-parser-js@^1.0.33: - version "1.0.35" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.35.tgz#c4ef44343bc3db0a3cbefdf21822f1b1fc1ab011" - integrity sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== - dependencies: - call-bind "^1.0.2" - has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" - -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== - -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== - dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" - -unicode-match-property-value-ecmascript@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" - integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== - -unicode-property-aliases-ecmascript@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" - integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== - -unique-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" - integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== - dependencies: - crypto-random-string "^2.0.0" - -unist-util-is@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" - integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== - -unist-util-stringify-position@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" - integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== - dependencies: - "@types/unist" "^2.0.2" - -unist-util-visit-parents@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" - integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^4.0.0" - -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -universalify@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" - integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== - -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - -unquote@^1.1.0, unquote@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" - integrity sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg== - -upath@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" - integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== - -update-browserslist-db@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" - integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -update-check@1.5.4: - version "1.5.4" - resolved "https://registry.yarnpkg.com/update-check/-/update-check-1.5.4.tgz#5b508e259558f1ad7dbc8b4b0457d4c9d28c8743" - integrity sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ== - dependencies: - registry-auth-token "3.3.2" - registry-url "3.1.0" - -update-diff@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/update-diff/-/update-diff-1.1.0.tgz#f510182d81ee819fb82c3a6b22b62bbdeda7808f" - integrity sha512-rCiBPiHxZwT4+sBhEbChzpO5hYHjm91kScWgdHf4Qeafs6Ba7MBl+d9GlGv72bcTZQO0sLmtQS1pHSWoCLtN/A== - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -url-parse@^1.5.3: - version "1.5.10" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" - integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== - dependencies: - querystringify "^2.1.1" - requires-port "^1.0.0" - -url-search-params-polyfill@^8.1.1: - version "8.2.4" - resolved "https://registry.yarnpkg.com/url-search-params-polyfill/-/url-search-params-polyfill-8.2.4.tgz#8454c99244d9c8e2331982cd552e01db27726173" - integrity sha512-6jWpuCn5DD+bUuqQK7yIzhE2lxkrDhxCVAj+STTl0DuBGIr3F1ptaIo14KHlngU1w5XmvhwsmH4wzSyyrZK7Tg== - -url@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.1.tgz#26f90f615427eca1b9f4d6a28288c147e2302a32" - integrity sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA== - dependencies: - punycode "^1.4.1" - qs "^6.11.0" - -use-resize-observer@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/use-resize-observer/-/use-resize-observer-7.1.0.tgz#709ea7540fbe0a60ceae41ee2bef933d7782e4d4" - integrity sha512-6DGWOnZpjAGP/MtslGg7OunZptyueQduMi0i8DC5nVKXtJ8Bdt0wR/1tSxugFRndzYCi/jtD+SlNs5PK8ijvXQ== - dependencies: - "@juggle/resize-observer" "^3.3.1" - -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -util.promisify@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" - integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.2" - has-symbols "^1.0.1" - object.getownpropertydescriptors "^2.1.0" - -util@^0.12.0, util@^0.12.4: - version "0.12.5" - resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" - integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== - dependencies: - inherits "^2.0.3" - is-arguments "^1.0.4" - is-generator-function "^1.0.7" - is-typed-array "^1.1.3" - which-typed-array "^1.1.2" - -utila@~0.4: - version "0.4.0" - resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" - integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - -v8-to-istanbul@^8.1.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz#77b752fd3975e31bbcef938f85e9bd1c7a8d60ed" - integrity sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - source-map "^0.7.3" - -vary@^1, vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== - -vite-plugin-node-polyfills@^0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/vite-plugin-node-polyfills/-/vite-plugin-node-polyfills-0.9.0.tgz#181d096c43e22cae219c6c2434a204b665044de0" - integrity sha512-+i+WPUuIBhJy+ODfxx6S6FTl28URCxUszbl/IL4GwrZvbqqY/8VDIp+zpjMS8Us/a7GwN4Iaqr/fVIBtkNQojQ== - dependencies: - "@rollup/plugin-inject" "^5.0.3" - node-stdlib-browser "^1.2.0" - -vite-plugin-svgr@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/vite-plugin-svgr/-/vite-plugin-svgr-3.2.0.tgz#920375aaf6635091c9ac8e467825f92d32544476" - integrity sha512-Uvq6niTvhqJU6ga78qLKBFJSDvxWhOnyfQSoKpDPMAGxJPo5S3+9hyjExE5YDj6Lpa4uaLkGc1cBgxXov+LjSw== - dependencies: - "@rollup/pluginutils" "^5.0.2" - "@svgr/core" "^7.0.0" - "@svgr/plugin-jsx" "^7.0.0" - -vite-tsconfig-paths@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/vite-tsconfig-paths/-/vite-tsconfig-paths-4.2.0.tgz#bd2647d3eadafb65a10fc98a2ca565211f2eaf63" - integrity sha512-jGpus0eUy5qbbMVGiTxCL1iB9ZGN6Bd37VGLJU39kTDD6ZfULTTb1bcc5IeTWqWJKiWV5YihCaibeASPiGi8kw== - dependencies: - debug "^4.1.1" - globrex "^0.1.2" - tsconfck "^2.1.0" - -vite@^4.4.2: - version "4.4.2" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.4.2.tgz#acd47de771c498aec80e4900f30133d9529b278a" - integrity sha512-zUcsJN+UvdSyHhYa277UHhiJ3iq4hUBwHavOpsNUGsTgjBeoBlK8eDt+iT09pBq0h9/knhG/SPrZiM7cGmg7NA== - dependencies: - esbuild "^0.18.10" - postcss "^8.4.24" - rollup "^3.25.2" - optionalDependencies: - fsevents "~2.3.2" - -vm-browserify@^1.0.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" - integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== - -vt-pbf@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.3.tgz#68fd150756465e2edae1cc5c048e063916dcfaac" - integrity sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA== - dependencies: - "@mapbox/point-geometry" "0.1.0" - "@mapbox/vector-tile" "^1.3.1" - pbf "^3.2.1" - -w3c-hr-time@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" - integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== - dependencies: - browser-process-hrtime "^1.0.0" - -w3c-keyname@^2.2.4: - version "2.2.8" - resolved "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.8.tgz#7b17c8c6883d4e8b86ac8aba79d39e880f8869c5" - integrity sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ== - -w3c-xmlserializer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" - integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== - dependencies: - xml-name-validator "^3.0.0" - -walker@^1.0.7: - version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" - integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== - dependencies: - makeerror "1.0.12" - -watchpack@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" - integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== - dependencies: - glob-to-regexp "^0.4.1" - graceful-fs "^4.1.2" - -wbuf@^1.1.0, wbuf@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" - integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== - dependencies: - minimalistic-assert "^1.0.0" - -weak-map@^1.0.5: - version "1.0.8" - resolved "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.8.tgz#394c18a9e8262e790544ed8b55c6a4ddad1cb1a3" - integrity sha512-lNR9aAefbGPpHO7AEnY0hCFjz1eTkWCXYvkTRrTHs9qv8zJp+SkVYpzfLIFXQQiG3tVvbNFQgVg2bQS8YGgxyw== - -web-vitals@^2.1.0: - version "2.1.4" - resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-2.1.4.tgz#76563175a475a5e835264d373704f9dde718290c" - integrity sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg== - -webgl-context@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/webgl-context/-/webgl-context-2.2.0.tgz#8f37d7257cf6df1cd0a49e6a7b1b721b94cc86a0" - integrity sha512-q/fGIivtqTT7PEoF07axFIlHNk/XCPaYpq64btnepopSWvKNFkoORlQYgqDigBIuGA1ExnFd/GnSUnBNEPQY7Q== - dependencies: - get-canvas-context "^1.0.1" - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -webidl-conversions@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== - -webidl-conversions@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" - integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== - -webidl-conversions@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" - integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== - -webpack-dev-middleware@^5.3.1: - version "5.3.3" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" - integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== - dependencies: - colorette "^2.0.10" - memfs "^3.4.3" - mime-types "^2.1.31" - range-parser "^1.2.1" - schema-utils "^4.0.0" - -webpack-dev-server@^4.6.0: - version "4.15.1" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7" - integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA== - dependencies: - "@types/bonjour" "^3.5.9" - "@types/connect-history-api-fallback" "^1.3.5" - "@types/express" "^4.17.13" - "@types/serve-index" "^1.9.1" - "@types/serve-static" "^1.13.10" - "@types/sockjs" "^0.3.33" - "@types/ws" "^8.5.5" - ansi-html-community "^0.0.8" - bonjour-service "^1.0.11" - chokidar "^3.5.3" - colorette "^2.0.10" - compression "^1.7.4" - connect-history-api-fallback "^2.0.0" - default-gateway "^6.0.3" - express "^4.17.3" - graceful-fs "^4.2.6" - html-entities "^2.3.2" - http-proxy-middleware "^2.0.3" - ipaddr.js "^2.0.1" - launch-editor "^2.6.0" - open "^8.0.9" - p-retry "^4.5.0" - rimraf "^3.0.2" - schema-utils "^4.0.0" - selfsigned "^2.1.1" - serve-index "^1.9.1" - sockjs "^0.3.24" - spdy "^4.0.2" - webpack-dev-middleware "^5.3.1" - ws "^8.13.0" - -webpack-manifest-plugin@^4.0.2: - version "4.1.1" - resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz#10f8dbf4714ff93a215d5a45bcc416d80506f94f" - integrity sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow== - dependencies: - tapable "^2.0.0" - webpack-sources "^2.2.0" - -webpack-sources@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" - integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== - dependencies: - source-list-map "^2.0.0" - source-map "~0.6.1" - -webpack-sources@^2.2.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz#570de0af163949fe272233c2cefe1b56f74511fd" - integrity sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA== - dependencies: - source-list-map "^2.0.1" - source-map "^0.6.1" - -webpack-sources@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" - integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== - -webpack@^5.64.4: - version "5.88.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.1.tgz#21eba01e81bd5edff1968aea726e2fbfd557d3f8" - integrity sha512-FROX3TxQnC/ox4N+3xQoWZzvGXSuscxR32rbzjpXgEzWudJFEJBpdlkkob2ylrv5yzzufD1zph1OoFsLtm6stQ== - dependencies: - "@types/eslint-scope" "^3.7.3" - "@types/estree" "^1.0.0" - "@webassemblyjs/ast" "^1.11.5" - "@webassemblyjs/wasm-edit" "^1.11.5" - "@webassemblyjs/wasm-parser" "^1.11.5" - acorn "^8.7.1" - acorn-import-assertions "^1.9.0" - browserslist "^4.14.5" - chrome-trace-event "^1.0.2" - enhanced-resolve "^5.15.0" - es-module-lexer "^1.2.1" - eslint-scope "5.1.1" - events "^3.2.0" - glob-to-regexp "^0.4.1" - graceful-fs "^4.2.9" - json-parse-even-better-errors "^2.3.1" - loader-runner "^4.2.0" - mime-types "^2.1.27" - neo-async "^2.6.2" - schema-utils "^3.2.0" - tapable "^2.1.1" - terser-webpack-plugin "^5.3.7" - watchpack "^2.4.0" - webpack-sources "^3.2.3" - -websocket-driver@>=0.5.1, websocket-driver@^0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== - dependencies: - http-parser-js ">=0.5.1" - safe-buffer ">=5.1.0" - websocket-extensions ">=0.1.1" - -websocket-extensions@>=0.1.1: - version "0.1.4" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== - -whatwg-encoding@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== - dependencies: - iconv-lite "0.4.24" - -whatwg-fetch@^3.4.1, whatwg-fetch@^3.6.2: - version "3.6.2" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c" - integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA== - -whatwg-mimetype@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -whatwg-url@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" - integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" - -whatwg-url@^8.0.0, whatwg-url@^8.5.0: - version "8.7.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" - integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== - dependencies: - lodash "^4.7.0" - tr46 "^2.1.0" - webidl-conversions "^6.1.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" - -which-collection@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" - integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== - dependencies: - is-map "^2.0.1" - is-set "^2.0.1" - is-weakmap "^2.0.1" - is-weakset "^2.0.1" - -which-module@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" - integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== - -which-typed-array@^1.1.2, which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - is-typed-array "^1.1.10" - -which@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -widest-line@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-4.0.1.tgz#a0fc673aaba1ea6f0a0d35b3c2795c9a9cc2ebf2" - integrity sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig== - dependencies: - string-width "^5.0.1" - -word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -workbox-background-sync@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.6.1.tgz#08d603a33717ce663e718c30cc336f74909aff2f" - integrity sha512-trJd3ovpWCvzu4sW0E8rV3FUyIcC0W8G+AZ+VcqzzA890AsWZlUGOTSxIMmIHVusUw/FDq1HFWfy/kC/WTRqSg== - dependencies: - idb "^7.0.1" - workbox-core "6.6.1" - -workbox-broadcast-update@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-6.6.1.tgz#0fad9454cf8e4ace0c293e5617c64c75d8a8c61e" - integrity sha512-fBhffRdaANdeQ1V8s692R9l/gzvjjRtydBOvR6WCSB0BNE2BacA29Z4r9/RHd9KaXCPl6JTdI9q0bR25YKP8TQ== - dependencies: - workbox-core "6.6.1" - -workbox-build@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.6.1.tgz#6010e9ce550910156761448f2dbea8cfcf759cb0" - integrity sha512-INPgDx6aRycAugUixbKgiEQBWD0MPZqU5r0jyr24CehvNuLPSXp/wGOpdRJmts656lNiXwqV7dC2nzyrzWEDnw== - dependencies: - "@apideck/better-ajv-errors" "^0.3.1" - "@babel/core" "^7.11.1" - "@babel/preset-env" "^7.11.0" - "@babel/runtime" "^7.11.2" - "@rollup/plugin-babel" "^5.2.0" - "@rollup/plugin-node-resolve" "^11.2.1" - "@rollup/plugin-replace" "^2.4.1" - "@surma/rollup-plugin-off-main-thread" "^2.2.3" - ajv "^8.6.0" - common-tags "^1.8.0" - fast-json-stable-stringify "^2.1.0" - fs-extra "^9.0.1" - glob "^7.1.6" - lodash "^4.17.20" - pretty-bytes "^5.3.0" - rollup "^2.43.1" - rollup-plugin-terser "^7.0.0" - source-map "^0.8.0-beta.0" - stringify-object "^3.3.0" - strip-comments "^2.0.1" - tempy "^0.6.0" - upath "^1.2.0" - workbox-background-sync "6.6.1" - workbox-broadcast-update "6.6.1" - workbox-cacheable-response "6.6.1" - workbox-core "6.6.1" - workbox-expiration "6.6.1" - workbox-google-analytics "6.6.1" - workbox-navigation-preload "6.6.1" - workbox-precaching "6.6.1" - workbox-range-requests "6.6.1" - workbox-recipes "6.6.1" - workbox-routing "6.6.1" - workbox-strategies "6.6.1" - workbox-streams "6.6.1" - workbox-sw "6.6.1" - workbox-window "6.6.1" - -workbox-cacheable-response@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-6.6.1.tgz#284c2b86be3f4fd191970ace8c8e99797bcf58e9" - integrity sha512-85LY4veT2CnTCDxaVG7ft3NKaFbH6i4urZXgLiU4AiwvKqS2ChL6/eILiGRYXfZ6gAwDnh5RkuDbr/GMS4KSag== - dependencies: - workbox-core "6.6.1" - -workbox-core@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-6.6.1.tgz#7184776d4134c5ed2f086878c882728fc9084265" - integrity sha512-ZrGBXjjaJLqzVothoE12qTbVnOAjFrHDXpZe7coCb6q65qI/59rDLwuFMO4PcZ7jcbxY+0+NhUVztzR/CbjEFw== - -workbox-expiration@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-6.6.1.tgz#a841fa36676104426dbfb9da1ef6a630b4f93739" - integrity sha512-qFiNeeINndiOxaCrd2DeL1Xh1RFug3JonzjxUHc5WkvkD2u5abY3gZL1xSUNt3vZKsFFGGORItSjVTVnWAZO4A== - dependencies: - idb "^7.0.1" - workbox-core "6.6.1" - -workbox-google-analytics@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-6.6.1.tgz#a07a6655ab33d89d1b0b0a935ffa5dea88618c5d" - integrity sha512-1TjSvbFSLmkpqLcBsF7FuGqqeDsf+uAXO/pjiINQKg3b1GN0nBngnxLcXDYo1n/XxK4N7RaRrpRlkwjY/3ocuA== - dependencies: - workbox-background-sync "6.6.1" - workbox-core "6.6.1" - workbox-routing "6.6.1" - workbox-strategies "6.6.1" - -workbox-navigation-preload@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-6.6.1.tgz#61a34fe125558dd88cf09237f11bd966504ea059" - integrity sha512-DQCZowCecO+wRoIxJI2V6bXWK6/53ff+hEXLGlQL4Rp9ZaPDLrgV/32nxwWIP7QpWDkVEtllTAK5h6cnhxNxDA== - dependencies: - workbox-core "6.6.1" - -workbox-precaching@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.6.1.tgz#dedeeba10a2d163d990bf99f1c2066ac0d1a19e2" - integrity sha512-K4znSJ7IKxCnCYEdhNkMr7X1kNh8cz+mFgx9v5jFdz1MfI84pq8C2zG+oAoeE5kFrUf7YkT5x4uLWBNg0DVZ5A== - dependencies: - workbox-core "6.6.1" - workbox-routing "6.6.1" - workbox-strategies "6.6.1" - -workbox-range-requests@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-6.6.1.tgz#ddaf7e73af11d362fbb2f136a9063a4c7f507a39" - integrity sha512-4BDzk28govqzg2ZpX0IFkthdRmCKgAKreontYRC5YsAPB2jDtPNxqx3WtTXgHw1NZalXpcH/E4LqUa9+2xbv1g== - dependencies: - workbox-core "6.6.1" - -workbox-recipes@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-6.6.1.tgz#ea70d2b2b0b0bce8de0a9d94f274d4a688e69fae" - integrity sha512-/oy8vCSzromXokDA+X+VgpeZJvtuf8SkQ8KL0xmRivMgJZrjwM3c2tpKTJn6PZA6TsbxGs3Sc7KwMoZVamcV2g== - dependencies: - workbox-cacheable-response "6.6.1" - workbox-core "6.6.1" - workbox-expiration "6.6.1" - workbox-precaching "6.6.1" - workbox-routing "6.6.1" - workbox-strategies "6.6.1" - -workbox-routing@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-6.6.1.tgz#cba9a1c7e0d1ea11e24b6f8c518840efdc94f581" - integrity sha512-j4ohlQvfpVdoR8vDYxTY9rA9VvxTHogkIDwGdJ+rb2VRZQ5vt1CWwUUZBeD/WGFAni12jD1HlMXvJ8JS7aBWTg== - dependencies: - workbox-core "6.6.1" - -workbox-strategies@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-6.6.1.tgz#38d0f0fbdddba97bd92e0c6418d0b1a2ccd5b8bf" - integrity sha512-WQLXkRnsk4L81fVPkkgon1rZNxnpdO5LsO+ws7tYBC6QQQFJVI6v98klrJEjFtZwzw/mB/HT5yVp7CcX0O+mrw== - dependencies: - workbox-core "6.6.1" - -workbox-streams@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-6.6.1.tgz#b2f7ba7b315c27a6e3a96a476593f99c5d227d26" - integrity sha512-maKG65FUq9e4BLotSKWSTzeF0sgctQdYyTMq529piEN24Dlu9b6WhrAfRpHdCncRS89Zi2QVpW5V33NX8PgH3Q== - dependencies: - workbox-core "6.6.1" - workbox-routing "6.6.1" - -workbox-sw@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.6.1.tgz#d4c4ca3125088e8b9fd7a748ed537fa0247bd72c" - integrity sha512-R7whwjvU2abHH/lR6kQTTXLHDFU2izht9kJOvBRYK65FbwutT4VvnUAJIgHvfWZ/fokrOPhfoWYoPCMpSgUKHQ== - -workbox-webpack-plugin@^6.4.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.1.tgz#4f81cc1ad4e5d2cd7477a86ba83c84ee2d187531" - integrity sha512-zpZ+ExFj9NmiI66cFEApyjk7hGsfJ1YMOaLXGXBoZf0v7Iu6hL0ZBe+83mnDq3YYWAfA3fnyFejritjOHkFcrA== - dependencies: - fast-json-stable-stringify "^2.1.0" - pretty-bytes "^5.4.1" - upath "^1.2.0" - webpack-sources "^1.4.3" - workbox-build "6.6.1" - -workbox-window@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.6.1.tgz#f22a394cbac36240d0dadcbdebc35f711bb7b89e" - integrity sha512-wil4nwOY58nTdCvif/KEZjQ2NP8uk3gGeRNy2jPBbzypU4BT4D9L8xiwbmDBpZlSgJd2xsT9FvSNU0gsxV51JQ== - dependencies: - "@types/trusted-types" "^2.0.2" - workbox-core "6.6.1" - -world-calendars@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/world-calendars/-/world-calendars-1.0.3.tgz#b25c5032ba24128ffc41d09faf4a5ec1b9c14335" - integrity sha512-sAjLZkBnsbHkHWVhrsCU5Sa/EVuf9QqgvrN8zyJ2L/F9FR9Oc6CvVK0674+PGAtmmmYQMH98tCUSO4QLQv3/TQ== - dependencies: - object-assign "^4.1.0" - -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^8.0.1: - version "8.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" - integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== - dependencies: - ansi-styles "^6.1.0" - string-width "^5.0.1" - strip-ansi "^7.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -write-file-atomic@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" - integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== - dependencies: - imurmurhash "^0.1.4" - is-typedarray "^1.0.0" - signal-exit "^3.0.2" - typedarray-to-buffer "^3.1.5" - -ws@^7.4.6: - version "7.5.9" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" - integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== - -ws@^8.13.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - -xml-name-validator@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== - -xmlchars@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== - -"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -xtend@^2.1.2: - version "2.2.0" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.2.0.tgz#eef6b1f198c1c8deafad8b1765a04dad4a01c5a9" - integrity sha512-SLt5uylT+4aoXxXuwtQp5ZnMMzhDb1Xkg4pEqc00WUJCQifPfV9Ub1VrNhp9kXkrjZD2I2Hl8WnjP37jzZLPZw== - -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: - version "1.10.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== - -yaml@^2.1.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" - integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== - -yargs-parser@^18.1.2: - version "18.1.3" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" - integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^20.2.2: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs@^15.3.1: - version "15.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" - integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== - dependencies: - cliui "^6.0.0" - decamelize "^1.2.0" - find-up "^4.1.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^4.2.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^18.1.2" - -yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -zwitch@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920" - integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw== + version: 2.1.2 + resolution: "@plotly/regl@npm:2.1.2" + checksum: 84043676e5372113200deaca890829e457b95a0d6171342479d211264480b5fa2db81579f6082a1236755b0bd362dc0e9bfa4db7bc45cc6c50888e18a5ebbae6 + languageName: node + linkType: hard + +"regl@npm:^2.0.0": + version: 2.1.0 + resolution: "regl@npm:2.1.0" + checksum: 14932c484ff3136f35366a1cc3fa42a0a7fb92d20c35590be5334dc84fb305462d0ff5a22a552ffb40c9f7a60b9f0db4e3abeb4f4f6181a5c46db69d6ed24c3f + languageName: node + linkType: hard + +"rehype-raw@npm:^7.0.0": + version: 7.0.0 + resolution: "rehype-raw@npm:7.0.0" + dependencies: + "@types/hast": "npm:^3.0.0" + hast-util-raw: "npm:^9.0.0" + vfile: "npm:^6.0.0" + checksum: 1435b4b6640a5bc3abe3b2133885c4dbff5ef2190ef9cfe09d6a63f74dd7d7ffd0cede70603278560ccf1acbfb9da9faae4b68065a28bc5aa88ad18e40f32d52 + languageName: node + linkType: hard + +"relateurl@npm:^0.2.7": + version: 0.2.7 + resolution: "relateurl@npm:0.2.7" + checksum: c248b4e3b32474f116a804b537fa6343d731b80056fb506dffd91e737eef4cac6be47a65aae39b522b0db9d0b1011d1a12e288d82a109ecd94a5299d82f6573a + languageName: node + linkType: hard + +"remark-gfm@npm:^1.0.0": + version: 1.0.0 + resolution: "remark-gfm@npm:1.0.0" + dependencies: + mdast-util-gfm: "npm:^0.1.0" + micromark-extension-gfm: "npm:^0.3.0" + checksum: 929a2328b1a0c63c38cc1678a41089f75f594fb928c02bfcfe967702377ede245fec0ed45a258fe0af421dda547439911260b8621b2ea6819eaa5f6b47d2bb4c + languageName: node + linkType: hard + +"remark-gfm@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-gfm@npm:4.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + mdast-util-gfm: "npm:^3.0.0" + micromark-extension-gfm: "npm:^3.0.0" + remark-parse: "npm:^11.0.0" + remark-stringify: "npm:^11.0.0" + unified: "npm:^11.0.0" + checksum: db0aa85ab718d475c2596e27c95be9255d3b0fc730a4eda9af076b919f7dd812f7be3ac020611a8dbe5253fd29671d7b12750b56e529fdc32dfebad6dbf77403 + languageName: node + linkType: hard + +"remark-parse@npm:^11.0.0": + version: 11.0.0 + resolution: "remark-parse@npm:11.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + unified: "npm:^11.0.0" + checksum: 6eed15ddb8680eca93e04fcb2d1b8db65a743dcc0023f5007265dda558b09db595a087f622062ccad2630953cd5cddc1055ce491d25a81f3317c858348a8dd38 + languageName: node + linkType: hard + +"remark-parse@npm:^9.0.0": + version: 9.0.0 + resolution: "remark-parse@npm:9.0.0" + dependencies: + mdast-util-from-markdown: "npm:^0.8.0" + checksum: 7523b2a2e3c7a80f7530b4d5615e8862890abe321cdc4f6f7b103c70ceb4b3eca14cc71127149f05d5e29ed521b0c7505af9f11b1293921cf7cdf6d794104a21 + languageName: node + linkType: hard + +"remark-rehype@npm:^11.0.0": + version: 11.0.0 + resolution: "remark-rehype@npm:11.0.0" + dependencies: + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + mdast-util-to-hast: "npm:^13.0.0" + unified: "npm:^11.0.0" + vfile: "npm:^6.0.0" + checksum: d88180819f6695bc4f257cffcbe201973fc946144cc0101da589f25f3238932e384e98a8897b6060948ad2b5679eb2de5a720866b8b6f36b74e9f20e3e0b1d5d + languageName: node + linkType: hard + +"remark-stringify@npm:^11.0.0": + version: 11.0.0 + resolution: "remark-stringify@npm:11.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + unified: "npm:^11.0.0" + checksum: 0cdb37ce1217578f6f847c7ec9f50cbab35df5b9e3903d543e74b405404e67c07defcb23cd260a567b41b769400f6de03c2c3d9cd6ae7a6707d5c8d89ead489f + languageName: node + linkType: hard + +"renderkid@npm:^3.0.0": + version: 3.0.0 + resolution: "renderkid@npm:3.0.0" + dependencies: + css-select: "npm:^4.1.3" + dom-converter: "npm:^0.2.0" + htmlparser2: "npm:^6.1.0" + lodash: "npm:^4.17.21" + strip-ansi: "npm:^6.0.1" + checksum: 24a9fae4cc50e731d059742d1b3eec163dc9e3872b12010d120c3fcbd622765d9cda41f79a1bbb4bf63c1d3442f18a08f6e1642cb5d7ebf092a0ce3f7a3bd143 + languageName: node + linkType: hard + +"repeat-string@npm:^1.0.0": + version: 1.6.1 + resolution: "repeat-string@npm:1.6.1" + checksum: 87fa21bfdb2fbdedc44b9a5b118b7c1239bdd2c2c1e42742ef9119b7d412a5137a1d23f1a83dc6bb686f4f27429ac6f542e3d923090b44181bafa41e8ac0174d + languageName: node + linkType: hard + +"replace@npm:^1.2.0": + version: 1.2.2 + resolution: "replace@npm:1.2.2" + dependencies: + chalk: "npm:2.4.2" + minimatch: "npm:3.0.5" + yargs: "npm:^15.3.1" + bin: + replace: bin/replace.js + search: bin/search.js + checksum: 5b7a27a942556017dd3d97772110f5e8b6d4a966dfef10a59ed5534b5e926a2b6872557a8db5218918fdc1956ae9cb2a14be425f2782a36fb23a3dc990e6c921 + languageName: node + linkType: hard + +"require-directory@npm:^2.1.1": + version: 2.1.1 + resolution: "require-directory@npm:2.1.1" + checksum: 83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99 + languageName: node + linkType: hard + +"require-from-string@npm:^2.0.2": + version: 2.0.2 + resolution: "require-from-string@npm:2.0.2" + checksum: aaa267e0c5b022fc5fd4eef49d8285086b15f2a1c54b28240fdf03599cbd9c26049fee3eab894f2e1f6ca65e513b030a7c264201e3f005601e80c49fb2937ce2 + languageName: node + linkType: hard + +"require-main-filename@npm:^2.0.0": + version: 2.0.0 + resolution: "require-main-filename@npm:2.0.0" + checksum: db91467d9ead311b4111cbd73a4e67fa7820daed2989a32f7023785a2659008c6d119752d9c4ac011ae07e537eb86523adff99804c5fdb39cd3a017f9b401bb6 + languageName: node + linkType: hard + +"requires-port@npm:^1.0.0": + version: 1.0.0 + resolution: "requires-port@npm:1.0.0" + checksum: b2bfdd09db16c082c4326e573a82c0771daaf7b53b9ce8ad60ea46aa6e30aaf475fe9b164800b89f93b748d2c234d8abff945d2551ba47bf5698e04cd7713267 + languageName: node + linkType: hard + +"reselect@npm:^4.0.0, reselect@npm:^4.1.8": + version: 4.1.8 + resolution: "reselect@npm:4.1.8" + checksum: 06a305a504affcbb67dd0561ddc8306b35796199c7e15b38934c80606938a021eadcf68cfd58e7bb5e17786601c37602a3362a4665c7bf0a96c1041ceee9d0b7 + languageName: node + linkType: hard + +"resolve-cwd@npm:^3.0.0": + version: 3.0.0 + resolution: "resolve-cwd@npm:3.0.0" + dependencies: + resolve-from: "npm:^5.0.0" + checksum: e608a3ebd15356264653c32d7ecbc8fd702f94c6703ea4ac2fb81d9c359180cba0ae2e6b71faa446631ed6145454d5a56b227efc33a2d40638ac13f8beb20ee4 + languageName: node + linkType: hard + +"resolve-from@npm:^4.0.0": + version: 4.0.0 + resolution: "resolve-from@npm:4.0.0" + checksum: 8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190 + languageName: node + linkType: hard + +"resolve-from@npm:^5.0.0": + version: 5.0.0 + resolution: "resolve-from@npm:5.0.0" + checksum: b21cb7f1fb746de8107b9febab60095187781137fd803e6a59a76d421444b1531b641bba5857f5dc011974d8a5c635d61cec49e6bd3b7fc20e01f0fafc4efbf2 + languageName: node + linkType: hard + +"resolve-protobuf-schema@npm:^2.1.0": + version: 2.1.0 + resolution: "resolve-protobuf-schema@npm:2.1.0" + dependencies: + protocol-buffers-schema: "npm:^3.3.1" + checksum: 8e656b9072b1c001952f851251413bc79d8c771c3015f607b75e1ca3b8bd7c4396068dd19cdbb3019affa03f6457d2c0fd38d981ffd714215cd2e7c2b67221a7 + languageName: node + linkType: hard + +"resolve-url-loader@npm:^4.0.0": + version: 4.0.0 + resolution: "resolve-url-loader@npm:4.0.0" + dependencies: + adjust-sourcemap-loader: "npm:^4.0.0" + convert-source-map: "npm:^1.7.0" + loader-utils: "npm:^2.0.0" + postcss: "npm:^7.0.35" + source-map: "npm:0.6.1" + peerDependencies: + rework: 1.0.1 + rework-visit: 1.0.0 + peerDependenciesMeta: + rework: + optional: true + rework-visit: + optional: true + checksum: afecc67d26e88f3c648d83fd4634113e032eb6127e44c25a0c64933f5b8280683be999e8351e8442bd1663c19998b31571faba19748eaead6a586cebb0d2f288 + languageName: node + linkType: hard + +"resolve.exports@npm:^1.1.0": + version: 1.1.1 + resolution: "resolve.exports@npm:1.1.1" + checksum: 902ac0c643d03385b2719f3aed8c289e9d4b2dd42c993de946de5b882bc18b74fad07d672d29f71a63c251be107f6d0d343e2390ca224c04ba9a8b8e35d1653a + languageName: node + linkType: hard + +"resolve@npm:^0.6.1": + version: 0.6.3 + resolution: "resolve@npm:0.6.3" + checksum: 57f63aab332a668a1a424747b58851b7dddcfbd9b7a425a6050887858174943e499d1d11e3c10e676e8b0ede15ee6fc3ce919195c12d68082729db93a1517b6d + languageName: node + linkType: hard + +"resolve@npm:^1.0.0, resolve@npm:^1.1.10, resolve@npm:^1.1.5, resolve@npm:^1.1.7, resolve@npm:^1.14.2, resolve@npm:^1.17.0, resolve@npm:^1.19.0, resolve@npm:^1.20.0, resolve@npm:^1.22.1, resolve@npm:^1.22.2": + version: 1.22.2 + resolution: "resolve@npm:1.22.2" + dependencies: + is-core-module: "npm:^2.11.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: f9f424a8117d1c68371b4fbc64e6ac045115a3beacc4bd3617b751f7624b69ad40c47dc995585c7f13d4a09723a8f167847defb7d39fad70b0d43bbba05ff851 + languageName: node + linkType: hard + +"resolve@npm:^2.0.0-next.4": + version: 2.0.0-next.4 + resolution: "resolve@npm:2.0.0-next.4" + dependencies: + is-core-module: "npm:^2.9.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 1de92669e7c46cfe125294c66d5405e13288bb87b97e9bdab71693ceebbcc0255c789bde30e2834265257d330d8ff57414d7d88e3097d8f69951f3ce978bf045 + languageName: node + linkType: hard + +"resolve@patch:resolve@npm%3A^0.6.1#optional!builtin": + version: 0.6.3 + resolution: "resolve@patch:resolve@npm%3A0.6.3#optional!builtin::version=0.6.3&hash=3bafbf" + checksum: a46adc49c7d6828028244cf4d6b9e09d8334f8f175195685c96f5f415986e1587d8a83757ebc4e706be7b8b95911046e0ddc83e9be539050add1806564eff841 + languageName: node + linkType: hard + +"resolve@patch:resolve@npm%3A^1.0.0#optional!builtin, resolve@patch:resolve@npm%3A^1.1.10#optional!builtin, resolve@patch:resolve@npm%3A^1.1.5#optional!builtin, resolve@patch:resolve@npm%3A^1.1.7#optional!builtin, resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.17.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.2#optional!builtin": + version: 1.22.2 + resolution: "resolve@patch:resolve@npm%3A1.22.2#optional!builtin::version=1.22.2&hash=c3c19d" + dependencies: + is-core-module: "npm:^2.11.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: dcf068c4391941734efda06b6f778c013fd349cd4340f126de17c265a7b006c67de7e80e7aa06ecd29f3922e49f5561622b9faf98531f16aa9a896d22148c661 + languageName: node + linkType: hard + +"resolve@patch:resolve@npm%3A^2.0.0-next.4#optional!builtin": + version: 2.0.0-next.4 + resolution: "resolve@patch:resolve@npm%3A2.0.0-next.4#optional!builtin::version=2.0.0-next.4&hash=c3c19d" + dependencies: + is-core-module: "npm:^2.9.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: ed2bb51d616b9cd30fe85cf49f7a2240094d9fa01a221d361918462be81f683d1855b7f192391d2ab5325245b42464ca59690db5bd5dad0a326fc0de5974dd10 + languageName: node + linkType: hard + +"retry@npm:^0.12.0": + version: 0.12.0 + resolution: "retry@npm:0.12.0" + checksum: 59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe + languageName: node + linkType: hard + +"retry@npm:^0.13.1": + version: 0.13.1 + resolution: "retry@npm:0.13.1" + checksum: 9ae822ee19db2163497e074ea919780b1efa00431d197c7afdb950e42bf109196774b92a49fc9821f0b8b328a98eea6017410bfc5e8a0fc19c85c6d11adb3772 + languageName: node + linkType: hard + +"reusify@npm:^1.0.4": + version: 1.0.4 + resolution: "reusify@npm:1.0.4" + checksum: c19ef26e4e188f408922c46f7ff480d38e8dfc55d448310dfb518736b23ed2c4f547fb64a6ed5bdba92cd7e7ddc889d36ff78f794816d5e71498d645ef476107 + languageName: node + linkType: hard + +"right-now@npm:^1.0.0": + version: 1.0.0 + resolution: "right-now@npm:1.0.0" + checksum: e7a7e95d490e05816643adb99ce5bcbd726f39abc56f5da6e2d148fcd81803fd1320d80e03f186d8ac02a1b07116a777660897574cfc5c9c08e65e6f7f015a17 + languageName: node + linkType: hard + +"rimraf@npm:^3.0.0, rimraf@npm:^3.0.2": + version: 3.0.2 + resolution: "rimraf@npm:3.0.2" + dependencies: + glob: "npm:^7.1.3" + bin: + rimraf: bin.js + checksum: 9cb7757acb489bd83757ba1a274ab545eafd75598a9d817e0c3f8b164238dd90eba50d6b848bd4dcc5f3040912e882dc7ba71653e35af660d77b25c381d402e8 + languageName: node + linkType: hard + +"ripemd160@npm:^2.0.0, ripemd160@npm:^2.0.1": + version: 2.0.2 + resolution: "ripemd160@npm:2.0.2" + dependencies: + hash-base: "npm:^3.0.0" + inherits: "npm:^2.0.1" + checksum: f6f0df78817e78287c766687aed4d5accbebc308a8e7e673fb085b9977473c1f139f0c5335d353f172a915bb288098430755d2ad3c4f30612f4dd0c901cd2c3a + languageName: node + linkType: hard + +"rollup-plugin-terser@npm:^7.0.0": + version: 7.0.2 + resolution: "rollup-plugin-terser@npm:7.0.2" + dependencies: + "@babel/code-frame": "npm:^7.10.4" + jest-worker: "npm:^26.2.1" + serialize-javascript: "npm:^4.0.0" + terser: "npm:^5.0.0" + peerDependencies: + rollup: ^2.0.0 + checksum: f79b851c6f7b06555d3a8ce7a4e32abd2b7cb8318e89fb8db73e662fa6e3af1a59920e881d111efc65a7437fd9582b61b1f4859b6fd839ba948616829d92432d + languageName: node + linkType: hard + +"rollup@npm:^2.43.1": + version: 2.79.1 + resolution: "rollup@npm:2.79.1" + dependencies: + fsevents: "npm:~2.3.2" + dependenciesMeta: + fsevents: + optional: true + bin: + rollup: dist/bin/rollup + checksum: 421418687f5dcd7324f4387f203c6bfc7118b7ace789e30f5da022471c43e037a76f5fd93837052754eeeae798a4fb266ac05ccee1e594406d912a59af98dde9 + languageName: node + linkType: hard + +"rollup@npm:^3.25.2": + version: 3.26.2 + resolution: "rollup@npm:3.26.2" + dependencies: + fsevents: "npm:~2.3.2" + dependenciesMeta: + fsevents: + optional: true + bin: + rollup: dist/bin/rollup + checksum: c23ee8dcd34fe854afe06e1ec6d6017b200c523795a7c0f876494afd4a279f1d1232b3f274fea9438ac8ec4ebf6ce202f17316f790a94dba8173e213d2b98d19 + languageName: node + linkType: hard + +"run-parallel@npm:^1.1.9": + version: 1.2.0 + resolution: "run-parallel@npm:1.2.0" + dependencies: + queue-microtask: "npm:^1.2.2" + checksum: 200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39 + languageName: node + linkType: hard + +"rw@npm:^1.3.3": + version: 1.3.3 + resolution: "rw@npm:1.3.3" + checksum: b1e1ef37d1e79d9dc7050787866e30b6ddcb2625149276045c262c6b4d53075ddc35f387a856a8e76f0d0df59f4cd58fe24707e40797ebee66e542b840ed6a53 + languageName: node + linkType: hard + +"safe-array-concat@npm:^1.0.0": + version: 1.0.0 + resolution: "safe-array-concat@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.0" + has-symbols: "npm:^1.0.3" + isarray: "npm:^2.0.5" + checksum: 792d41fde9834583980912cb16bee511ce25e1759d3c467fdbbb3fc3245346a2289a6476d821713aa1ae23cc1d613d17e79c80e55adb29577f6a29e6f45e7f46 + languageName: node + linkType: hard + +"safe-buffer@npm:5.1.2, safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": + version: 5.1.2 + resolution: "safe-buffer@npm:5.1.2" + checksum: 780ba6b5d99cc9a40f7b951d47152297d0e260f0df01472a1b99d4889679a4b94a13d644f7dbc4f022572f09ae9005fa2fbb93bbbd83643316f365a3e9a45b21 + languageName: node + linkType: hard + +"safe-buffer@npm:5.2.1, safe-buffer@npm:>=5.1.0, safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.0, safe-buffer@npm:^5.1.1, safe-buffer@npm:^5.1.2, safe-buffer@npm:^5.2.0, safe-buffer@npm:~5.2.0": + version: 5.2.1 + resolution: "safe-buffer@npm:5.2.1" + checksum: 6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3 + languageName: node + linkType: hard + +"safe-regex-test@npm:^1.0.0": + version: 1.0.0 + resolution: "safe-regex-test@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.1.3" + is-regex: "npm:^1.1.4" + checksum: 14a81a7e683f97b2d6e9c8be61fddcf8ed7a02f4e64a825515f96bb1738eb007145359313741d2704d28b55b703a0f6300c749dde7c1dbc13952a2b85048ede2 + languageName: node + linkType: hard + +"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0, safer-buffer@npm:^2.1.0": + version: 2.1.2 + resolution: "safer-buffer@npm:2.1.2" + checksum: 7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 + languageName: node + linkType: hard + +"sanitize.css@npm:*": + version: 13.0.0 + resolution: "sanitize.css@npm:13.0.0" + checksum: 0c1eb61ff26d8f764593772c9f2af68ef5490cd9c7199ff387138412e8e658a0ee715bf176e0a2569872fc9c277f9342cf1235a9274da7a63aaaf0043747260d + languageName: node + linkType: hard + +"sass-loader@npm:^12.3.0": + version: 12.6.0 + resolution: "sass-loader@npm:12.6.0" + dependencies: + klona: "npm:^2.0.4" + neo-async: "npm:^2.6.2" + peerDependencies: + fibers: ">= 3.1.0" + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + sass: ^1.3.0 + sass-embedded: "*" + webpack: ^5.0.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + checksum: e1ef655f3898cc4c45f02b3c627f8baf998139993a9a79c524153a80814282bfe20d8d8d703b8cf1d05457c1930940b65e2156d11285ed0861f9a1016f993e53 + languageName: node + linkType: hard + +"sax@npm:^1.2.4, sax@npm:~1.2.4": + version: 1.2.4 + resolution: "sax@npm:1.2.4" + checksum: 6e9b05ff443ee5e5096ce92d31c0740a20d33002fad714ebcb8fc7a664d9ee159103ebe8f7aef0a1f7c5ecacdd01f177f510dff95611c589399baf76437d3fe3 + languageName: node + linkType: hard + +"saxes@npm:^5.0.1": + version: 5.0.1 + resolution: "saxes@npm:5.0.1" + dependencies: + xmlchars: "npm:^2.2.0" + checksum: b7476c41dbe1c3a89907d2546fecfba234de5e66743ef914cde2603f47b19bed09732ab51b528ad0f98b958369d8be72b6f5af5c9cfad69972a73d061f0b3952 + languageName: node + linkType: hard + +"scheduler@npm:^0.23.0": + version: 0.23.0 + resolution: "scheduler@npm:0.23.0" + dependencies: + loose-envify: "npm:^1.1.0" + checksum: b777f7ca0115e6d93e126ac490dbd82642d14983b3079f58f35519d992fa46260be7d6e6cede433a92db70306310c6f5f06e144f0e40c484199e09c1f7be53dd + languageName: node + linkType: hard + +"schema-utils@npm:2.7.0": + version: 2.7.0 + resolution: "schema-utils@npm:2.7.0" + dependencies: + "@types/json-schema": "npm:^7.0.4" + ajv: "npm:^6.12.2" + ajv-keywords: "npm:^3.4.1" + checksum: 723c3c856a0313a89aa81c5fb2c93d4b11225f5cdd442665fddd55d3c285ae72e079f5286a3a9a1a973affe888f6c33554a2cf47b79b24cd8de2f1f756a6fb1b + languageName: node + linkType: hard + +"schema-utils@npm:^2.6.5": + version: 2.7.1 + resolution: "schema-utils@npm:2.7.1" + dependencies: + "@types/json-schema": "npm:^7.0.5" + ajv: "npm:^6.12.4" + ajv-keywords: "npm:^3.5.2" + checksum: f484f34464edd8758712d5d3ba25a306e367dac988aecaf4ce112e99baae73f33a807b5cf869240bb6648c80720b36af2d7d72be3a27faa49a2d4fc63fa3f85f + languageName: node + linkType: hard + +"schema-utils@npm:^3.0.0, schema-utils@npm:^3.1.1, schema-utils@npm:^3.2.0": + version: 3.3.0 + resolution: "schema-utils@npm:3.3.0" + dependencies: + "@types/json-schema": "npm:^7.0.8" + ajv: "npm:^6.12.5" + ajv-keywords: "npm:^3.5.2" + checksum: fafdbde91ad8aa1316bc543d4b61e65ea86970aebbfb750bfb6d8a6c287a23e415e0e926c2498696b242f63af1aab8e585252637fabe811fd37b604351da6500 + languageName: node + linkType: hard + +"schema-utils@npm:^4.0.0": + version: 4.2.0 + resolution: "schema-utils@npm:4.2.0" + dependencies: + "@types/json-schema": "npm:^7.0.9" + ajv: "npm:^8.9.0" + ajv-formats: "npm:^2.1.1" + ajv-keywords: "npm:^5.1.0" + checksum: 8dab7e7800316387fd8569870b4b668cfcecf95ac551e369ea799bbcbfb63fb0365366d4b59f64822c9f7904d8c5afcfaf5a6124a4b08783e558cd25f299a6b4 + languageName: node + linkType: hard + +"select-hose@npm:^2.0.0": + version: 2.0.0 + resolution: "select-hose@npm:2.0.0" + checksum: 01cc52edd29feddaf379efb4328aededa633f0ac43c64b11a8abd075ff34f05b0d280882c4fbcbdf1a0658202c9cd2ea8d5985174dcf9a2dac7e3a4996fa9b67 + languageName: node + linkType: hard + +"selfsigned@npm:^2.1.1": + version: 2.1.1 + resolution: "selfsigned@npm:2.1.1" + dependencies: + node-forge: "npm:^1" + checksum: 4a2509c8a5bd49c3630a799de66b317352b52746bec981133d4f8098365da35d2344f0fbedf14aacf2cd1e88682048e2df11ad9dc59331d3b1c0a5ec3e6e16ad + languageName: node + linkType: hard + +"semver@npm:^6.0.0, semver@npm:^6.3.0": + version: 6.3.0 + resolution: "semver@npm:6.3.0" + bin: + semver: ./bin/semver.js + checksum: 1f4959e15bcfbaf727e964a4920f9260141bb8805b399793160da4e7de128e42a7d1f79c1b7d5cd21a6073fba0d55feb9966f5fef3e5ccb8e1d7ead3d7527458 + languageName: node + linkType: hard + +"semver@npm:^6.3.1": + version: 6.3.1 + resolution: "semver@npm:6.3.1" + bin: + semver: bin/semver.js + checksum: e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d + languageName: node + linkType: hard + +"semver@npm:^7.3.2, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8": + version: 7.5.3 + resolution: "semver@npm:7.5.3" + dependencies: + lru-cache: "npm:^6.0.0" + bin: + semver: bin/semver.js + checksum: 4cf3bab7e8cf8c2ae521fc4bcc50a4d6912a836360796b23b9f1c26f45d27a73f870e47664df4770bde0dd60dc4d4781a05fd49fe91d72376ea5519b9e791459 + languageName: node + linkType: hard + +"send@npm:0.18.0": + version: 0.18.0 + resolution: "send@npm:0.18.0" + dependencies: + debug: "npm:2.6.9" + depd: "npm:2.0.0" + destroy: "npm:1.2.0" + encodeurl: "npm:~1.0.2" + escape-html: "npm:~1.0.3" + etag: "npm:~1.8.1" + fresh: "npm:0.5.2" + http-errors: "npm:2.0.0" + mime: "npm:1.6.0" + ms: "npm:2.1.3" + on-finished: "npm:2.4.1" + range-parser: "npm:~1.2.1" + statuses: "npm:2.0.1" + checksum: 0eb134d6a51fc13bbcb976a1f4214ea1e33f242fae046efc311e80aff66c7a43603e26a79d9d06670283a13000e51be6e0a2cb80ff0942eaf9f1cd30b7ae736a + languageName: node + linkType: hard + +"serialize-javascript@npm:^4.0.0": + version: 4.0.0 + resolution: "serialize-javascript@npm:4.0.0" + dependencies: + randombytes: "npm:^2.1.0" + checksum: 510dfe7f0311c0b2f7ab06311afa1668ba2969ab2f1faaac0a4924ede76b7f22ba85cfdeaa0052ec5a047bca42c8cd8ac8df8f0efe52f9bd290b3a39ae69fe9d + languageName: node + linkType: hard + +"serialize-javascript@npm:^6.0.0, serialize-javascript@npm:^6.0.1": + version: 6.0.1 + resolution: "serialize-javascript@npm:6.0.1" + dependencies: + randombytes: "npm:^2.1.0" + checksum: 1af427f4fee3fee051f54ffe15f77068cff78a3c96d20f5c1178d20630d3ab122d8350e639d5e13cde8111ef9db9439b871305ffb185e24be0a2149cec230988 + languageName: node + linkType: hard + +"serve-handler@npm:6.1.5": + version: 6.1.5 + resolution: "serve-handler@npm:6.1.5" + dependencies: + bytes: "npm:3.0.0" + content-disposition: "npm:0.5.2" + fast-url-parser: "npm:1.1.3" + mime-types: "npm:2.1.18" + minimatch: "npm:3.1.2" + path-is-inside: "npm:1.0.2" + path-to-regexp: "npm:2.2.1" + range-parser: "npm:1.2.0" + checksum: 6fd393ae37a0305107e634ca545322b00605322189fe70d8f1a4a90a101c4e354768c610efe5a7ef1af3820cec5c33d97467c88151f35a3cb41d8ff2075ef802 + languageName: node + linkType: hard + +"serve-index@npm:^1.9.1": + version: 1.9.1 + resolution: "serve-index@npm:1.9.1" + dependencies: + accepts: "npm:~1.3.4" + batch: "npm:0.6.1" + debug: "npm:2.6.9" + escape-html: "npm:~1.0.3" + http-errors: "npm:~1.6.2" + mime-types: "npm:~2.1.17" + parseurl: "npm:~1.3.2" + checksum: a666471a24196f74371edf2c3c7bcdd82adbac52f600804508754b5296c3567588bf694258b19e0cb23a567acfa20d9721bfdaed3286007b81f9741ada8a3a9c + languageName: node + linkType: hard + +"serve-static@npm:1.15.0": + version: 1.15.0 + resolution: "serve-static@npm:1.15.0" + dependencies: + encodeurl: "npm:~1.0.2" + escape-html: "npm:~1.0.3" + parseurl: "npm:~1.3.3" + send: "npm:0.18.0" + checksum: fa9f0e21a540a28f301258dfe1e57bb4f81cd460d28f0e973860477dd4acef946a1f41748b5bd41c73b621bea2029569c935faa38578fd34cd42a9b4947088ba + languageName: node + linkType: hard + +"serve@npm:^14.2.0": + version: 14.2.0 + resolution: "serve@npm:14.2.0" + dependencies: + "@zeit/schemas": "npm:2.29.0" + ajv: "npm:8.11.0" + arg: "npm:5.0.2" + boxen: "npm:7.0.0" + chalk: "npm:5.0.1" + chalk-template: "npm:0.4.0" + clipboardy: "npm:3.0.0" + compression: "npm:1.7.4" + is-port-reachable: "npm:4.0.0" + serve-handler: "npm:6.1.5" + update-check: "npm:1.5.4" + bin: + serve: build/main.js + checksum: 3440b8e3f9f6253ac3ecc2367f6ae8f3401b65c27713ed533c3b16d114a4f4b5425ac1e82ca789bcdae384a3c84a6c629206b68f723fc5114801c984219d867c + languageName: node + linkType: hard + +"set-blocking@npm:^2.0.0": + version: 2.0.0 + resolution: "set-blocking@npm:2.0.0" + checksum: 9f8c1b2d800800d0b589de1477c753492de5c1548d4ade52f57f1d1f5e04af5481554d75ce5e5c43d4004b80a3eb714398d6907027dc0534177b7539119f4454 + languageName: node + linkType: hard + +"setimmediate@npm:^1.0.4, setimmediate@npm:^1.0.5": + version: 1.0.5 + resolution: "setimmediate@npm:1.0.5" + checksum: 5bae81bfdbfbd0ce992893286d49c9693c82b1bcc00dcaaf3a09c8f428fdeacf4190c013598b81875dfac2b08a572422db7df779a99332d0fce186d15a3e4d49 + languageName: node + linkType: hard + +"setprototypeof@npm:1.1.0": + version: 1.1.0 + resolution: "setprototypeof@npm:1.1.0" + checksum: a77b20876689c6a89c3b42f0c3596a9cae02f90fc902570cbd97198e9e8240382086c9303ad043e88cee10f61eae19f1004e51d885395a1e9bf49f9ebed12872 + languageName: node + linkType: hard + +"setprototypeof@npm:1.2.0": + version: 1.2.0 + resolution: "setprototypeof@npm:1.2.0" + checksum: 68733173026766fa0d9ecaeb07f0483f4c2dc70ca376b3b7c40b7cda909f94b0918f6c5ad5ce27a9160bdfb475efaa9d5e705a11d8eaae18f9835d20976028bc + languageName: node + linkType: hard + +"sha.js@npm:^2.4.0, sha.js@npm:^2.4.8": + version: 2.4.11 + resolution: "sha.js@npm:2.4.11" + dependencies: + inherits: "npm:^2.0.1" + safe-buffer: "npm:^5.0.1" + bin: + sha.js: ./bin.js + checksum: b7a371bca8821c9cc98a0aeff67444a03d48d745cb103f17228b96793f455f0eb0a691941b89ea1e60f6359207e36081d9be193252b0f128e0daf9cfea2815a5 + languageName: node + linkType: hard + +"shallow-copy@npm:0.0.1": + version: 0.0.1 + resolution: "shallow-copy@npm:0.0.1" + checksum: ab1c762e36fa3a02cec228e111f227be0b46457a82f123c5ef13f3bc970be16b74dbfd0f1b6ffb450a66db856832800c86713ffc1ec5733d61f59f23fe114769 + languageName: node + linkType: hard + +"sharp@npm:~0.30.7": + version: 0.30.7 + resolution: "sharp@npm:0.30.7" + dependencies: + color: "npm:^4.2.3" + detect-libc: "npm:^2.0.1" + node-addon-api: "npm:^5.0.0" + node-gyp: "npm:latest" + prebuild-install: "npm:^7.1.1" + semver: "npm:^7.3.7" + simple-get: "npm:^4.0.1" + tar-fs: "npm:^2.1.1" + tunnel-agent: "npm:^0.6.0" + checksum: dc38dceb1daba47523d237b7e05c629f1f2973468a116eb817a4b0456fca20f58bbe393060e79ba32071127434a90592d8946b89be483555e074f8f907b3891b + languageName: node + linkType: hard + +"shebang-command@npm:^2.0.0": + version: 2.0.0 + resolution: "shebang-command@npm:2.0.0" + dependencies: + shebang-regex: "npm:^3.0.0" + checksum: a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e + languageName: node + linkType: hard + +"shebang-regex@npm:^3.0.0": + version: 3.0.0 + resolution: "shebang-regex@npm:3.0.0" + checksum: 1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 + languageName: node + linkType: hard + +"shell-quote@npm:^1.7.3": + version: 1.8.1 + resolution: "shell-quote@npm:1.8.1" + checksum: 8cec6fd827bad74d0a49347057d40dfea1e01f12a6123bf82c4649f3ef152fc2bc6d6176e6376bffcd205d9d0ccb4f1f9acae889384d20baff92186f01ea455a + languageName: node + linkType: hard + +"side-channel@npm:^1.0.4": + version: 1.0.4 + resolution: "side-channel@npm:1.0.4" + dependencies: + call-bind: "npm:^1.0.0" + get-intrinsic: "npm:^1.0.2" + object-inspect: "npm:^1.9.0" + checksum: 054a5d23ee35054b2c4609b9fd2a0587760737782b5d765a9c7852264710cc39c6dcb56a9bbd6c12cd84071648aea3edb2359d2f6e560677eedadce511ac1da5 + languageName: node + linkType: hard + +"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3": + version: 3.0.7 + resolution: "signal-exit@npm:3.0.7" + checksum: 25d272fa73e146048565e08f3309d5b942c1979a6f4a58a8c59d5fa299728e9c2fcd1a759ec870863b1fd38653670240cd420dad2ad9330c71f36608a6a1c912 + languageName: node + linkType: hard + +"signal-exit@npm:^4.0.1": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 + languageName: node + linkType: hard + +"signals@npm:^1.0.0": + version: 1.0.0 + resolution: "signals@npm:1.0.0" + checksum: 796b63b32685cf35245d7b407913cad90505277d014ca248055f319f6a3290318b3a8351a49fc054cd333f685b887ae78846167234189ddb0064ec0ce7d46147 + languageName: node + linkType: hard + +"signum@npm:^1.0.0": + version: 1.0.0 + resolution: "signum@npm:1.0.0" + checksum: e29582d673f0e2f3b2345f7e795f2c2be192e353f80371ed79631a0708f0200dd4db7997636b51b818007cd426da156becee3316ff9fa5c63004ce672162c74b + languageName: node + linkType: hard + +"simple-concat@npm:^1.0.0": + version: 1.0.1 + resolution: "simple-concat@npm:1.0.1" + checksum: 62f7508e674414008910b5397c1811941d457dfa0db4fd5aa7fa0409eb02c3609608dfcd7508cace75b3a0bf67a2a77990711e32cd213d2c76f4fd12ee86d776 + languageName: node + linkType: hard + +"simple-get@npm:^4.0.0, simple-get@npm:^4.0.1": + version: 4.0.1 + resolution: "simple-get@npm:4.0.1" + dependencies: + decompress-response: "npm:^6.0.0" + once: "npm:^1.3.1" + simple-concat: "npm:^1.0.0" + checksum: b0649a581dbca741babb960423248899203165769747142033479a7dc5e77d7b0fced0253c731cd57cf21e31e4d77c9157c3069f4448d558ebc96cf9e1eebcf0 + languageName: node + linkType: hard + +"simple-swizzle@npm:^0.2.2": + version: 0.2.2 + resolution: "simple-swizzle@npm:0.2.2" + dependencies: + is-arrayish: "npm:^0.3.1" + checksum: df5e4662a8c750bdba69af4e8263c5d96fe4cd0f9fe4bdfa3cbdeb45d2e869dff640beaaeb1ef0e99db4d8d2ec92f85508c269f50c972174851bc1ae5bd64308 + languageName: node + linkType: hard + +"sisteransi@npm:^1.0.5": + version: 1.0.5 + resolution: "sisteransi@npm:1.0.5" + checksum: 230ac975cca485b7f6fe2b96a711aa62a6a26ead3e6fb8ba17c5a00d61b8bed0d7adc21f5626b70d7c33c62ff4e63933017a6462942c719d1980bb0b1207ad46 + languageName: node + linkType: hard + +"slash@npm:^3.0.0": + version: 3.0.0 + resolution: "slash@npm:3.0.0" + checksum: e18488c6a42bdfd4ac5be85b2ced3ccd0224773baae6ad42cfbb9ec74fc07f9fa8396bd35ee638084ead7a2a0818eb5e7151111544d4731ce843019dab4be47b + languageName: node + linkType: hard + +"slash@npm:^4.0.0": + version: 4.0.0 + resolution: "slash@npm:4.0.0" + checksum: b522ca75d80d107fd30d29df0549a7b2537c83c4c4ecd12cd7d4ea6c8aaca2ab17ada002e7a1d78a9d736a0261509f26ea5b489082ee443a3a810586ef8eff18 + languageName: node + linkType: hard + +"smart-buffer@npm:^4.2.0": + version: 4.2.0 + resolution: "smart-buffer@npm:4.2.0" + checksum: a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 + languageName: node + linkType: hard + +"sockjs@npm:^0.3.24": + version: 0.3.24 + resolution: "sockjs@npm:0.3.24" + dependencies: + faye-websocket: "npm:^0.11.3" + uuid: "npm:^8.3.2" + websocket-driver: "npm:^0.7.4" + checksum: aa102c7d921bf430215754511c81ea7248f2dcdf268fbdb18e4d8183493a86b8793b164c636c52f474a886f747447c962741df2373888823271efdb9d2594f33 + languageName: node + linkType: hard + +"socks-proxy-agent@npm:^8.0.1": + version: 8.0.2 + resolution: "socks-proxy-agent@npm:8.0.2" + dependencies: + agent-base: "npm:^7.0.2" + debug: "npm:^4.3.4" + socks: "npm:^2.7.1" + checksum: a842402fc9b8848a31367f2811ca3cd14c4106588b39a0901cd7a69029998adfc6456b0203617c18ed090542ad0c24ee4e9d4c75a0c4b75071e214227c177eb7 + languageName: node + linkType: hard + +"socks@npm:^2.7.1": + version: 2.7.1 + resolution: "socks@npm:2.7.1" + dependencies: + ip: "npm:^2.0.0" + smart-buffer: "npm:^4.2.0" + checksum: 43f69dbc9f34fc8220bc51c6eea1c39715ab3cfdb115d6e3285f6c7d1a603c5c75655668a5bbc11e3c7e2c99d60321fb8d7ab6f38cda6a215fadd0d6d0b52130 + languageName: node + linkType: hard + +"source-list-map@npm:^2.0.0, source-list-map@npm:^2.0.1": + version: 2.0.1 + resolution: "source-list-map@npm:2.0.1" + checksum: 2e5e421b185dcd857f46c3c70e2e711a65d717b78c5f795e2e248c9d67757882ea989b80ebc08cf164eeeda5f4be8aa95d3b990225070b2daaaf3257c5958149 + languageName: node + linkType: hard + +"source-map-js@npm:^1.0.1, source-map-js@npm:^1.0.2": + version: 1.0.2 + resolution: "source-map-js@npm:1.0.2" + checksum: 32f2dfd1e9b7168f9a9715eb1b4e21905850f3b50cf02cf476e47e4eebe8e6b762b63a64357896aa29b37e24922b4282df0f492e0d2ace572b43d15525976ff8 + languageName: node + linkType: hard + +"source-map-loader@npm:^3.0.0": + version: 3.0.2 + resolution: "source-map-loader@npm:3.0.2" + dependencies: + abab: "npm:^2.0.5" + iconv-lite: "npm:^0.6.3" + source-map-js: "npm:^1.0.1" + peerDependencies: + webpack: ^5.0.0 + checksum: ce38822d10ac0fc09f3a3f320f184d5a5c7e66a6c447e5f2c36476d901e3224a00cc7843be615212a50b8607beee565f08b526fbb0621357a1a6247f48fd09bc + languageName: node + linkType: hard + +"source-map-support@npm:^0.5.6, source-map-support@npm:~0.5.20": + version: 0.5.21 + resolution: "source-map-support@npm:0.5.21" + dependencies: + buffer-from: "npm:^1.0.0" + source-map: "npm:^0.6.0" + checksum: 9ee09942f415e0f721d6daad3917ec1516af746a8120bba7bb56278707a37f1eb8642bde456e98454b8a885023af81a16e646869975f06afc1a711fb90484e7d + languageName: node + linkType: hard + +"source-map@npm:0.6.1, source-map@npm:^0.6.0, source-map@npm:^0.6.1, source-map@npm:~0.6.0, source-map@npm:~0.6.1": + version: 0.6.1 + resolution: "source-map@npm:0.6.1" + checksum: ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011 + languageName: node + linkType: hard + +"source-map@npm:^0.5.7": + version: 0.5.7 + resolution: "source-map@npm:0.5.7" + checksum: 904e767bb9c494929be013017380cbba013637da1b28e5943b566031e29df04fba57edf3f093e0914be094648b577372bd8ad247fa98cfba9c600794cd16b599 + languageName: node + linkType: hard + +"source-map@npm:^0.7.3": + version: 0.7.4 + resolution: "source-map@npm:0.7.4" + checksum: dc0cf3768fe23c345ea8760487f8c97ef6fca8a73c83cd7c9bf2fde8bc2c34adb9c0824d6feb14bc4f9e37fb522e18af621543f1289038a66ac7586da29aa7dc + languageName: node + linkType: hard + +"source-map@npm:^0.8.0-beta.0": + version: 0.8.0-beta.0 + resolution: "source-map@npm:0.8.0-beta.0" + dependencies: + whatwg-url: "npm:^7.0.0" + checksum: fb4d9bde9a9fdb2c29b10e5eae6c71d10e09ef467e1afb75fdec2eb7e11fa5b343a2af553f74f18b695dbc0b81f9da2e9fa3d7a317d5985e9939499ec6087835 + languageName: node + linkType: hard + +"sourcemap-codec@npm:^1.4.8": + version: 1.4.8 + resolution: "sourcemap-codec@npm:1.4.8" + checksum: f099279fdaae070ff156df7414bbe39aad69cdd615454947ed3e19136bfdfcb4544952685ee73f56e17038f4578091e12b17b283ed8ac013882916594d95b9e6 + languageName: node + linkType: hard + +"space-separated-tokens@npm:^2.0.0": + version: 2.0.2 + resolution: "space-separated-tokens@npm:2.0.2" + checksum: 6173e1d903dca41dcab6a2deed8b4caf61bd13b6d7af8374713500570aa929ff9414ae09a0519f4f8772df993300305a395d4871f35bc4ca72b6db57e1f30af8 + languageName: node + linkType: hard + +"spdy-transport@npm:^3.0.0": + version: 3.0.0 + resolution: "spdy-transport@npm:3.0.0" + dependencies: + debug: "npm:^4.1.0" + detect-node: "npm:^2.0.4" + hpack.js: "npm:^2.1.6" + obuf: "npm:^1.1.2" + readable-stream: "npm:^3.0.6" + wbuf: "npm:^1.7.3" + checksum: eaf7440fa90724fffc813c386d4a8a7427d967d6e46d7c51d8f8a533d1a6911b9823ea9218703debbae755337e85f110185d7a00ae22ec5c847077b908ce71bb + languageName: node + linkType: hard + +"spdy@npm:^4.0.2": + version: 4.0.2 + resolution: "spdy@npm:4.0.2" + dependencies: + debug: "npm:^4.1.0" + handle-thing: "npm:^2.0.0" + http-deceiver: "npm:^1.2.7" + select-hose: "npm:^2.0.0" + spdy-transport: "npm:^3.0.0" + checksum: 983509c0be9d06fd00bb9dff713c5b5d35d3ffd720db869acdd5ad7aa6fc0e02c2318b58f75328957d8ff772acdf1f7d19382b6047df342044ff3e2d6805ccdf + languageName: node + linkType: hard + +"sprintf-js@npm:^1.1.2": + version: 1.1.2 + resolution: "sprintf-js@npm:1.1.2" + checksum: 6cc8382f746348bd64b31bc5c99d8ebda7efff716025c41bf501e0e8be4f6744a9fa507e18513554753553d0bcb57fd5fc8dc8c42f94f8008127a52a2c544d21 + languageName: node + linkType: hard + +"sprintf-js@npm:~1.0.2": + version: 1.0.3 + resolution: "sprintf-js@npm:1.0.3" + checksum: ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb + languageName: node + linkType: hard + +"ssri@npm:^10.0.0": + version: 10.0.5 + resolution: "ssri@npm:10.0.5" + dependencies: + minipass: "npm:^7.0.3" + checksum: b091f2ae92474183c7ac5ed3f9811457e1df23df7a7e70c9476eaa9a0c4a0c8fc190fb45acefbf023ca9ee864dd6754237a697dc52a0fb182afe65d8e77443d8 + languageName: node + linkType: hard + +"stable@npm:^0.1.8": + version: 0.1.8 + resolution: "stable@npm:0.1.8" + checksum: df74b5883075076e78f8e365e4068ecd977af6c09da510cfc3148a303d4b87bc9aa8f7c48feb67ed4ef970b6140bd9eabba2129e28024aa88df5ea0114cba39d + languageName: node + linkType: hard + +"stack-trace@npm:0.0.9": + version: 0.0.9 + resolution: "stack-trace@npm:0.0.9" + checksum: dd4fc71b4b5e956550d4aeea35b74893dfa79981237ebcaa071f4a38bba78d7fd553ec402fc5a63018a52dc75c1ebe61847c3b84ef7654b3e85e44b6a5728cfd + languageName: node + linkType: hard + +"stack-utils@npm:^2.0.3": + version: 2.0.6 + resolution: "stack-utils@npm:2.0.6" + dependencies: + escape-string-regexp: "npm:^2.0.0" + checksum: 651c9f87667e077584bbe848acaecc6049bc71979f1e9a46c7b920cad4431c388df0f51b8ad7cfd6eed3db97a2878d0fc8b3122979439ea8bac29c61c95eec8a + languageName: node + linkType: hard + +"stackframe@npm:^1.3.4": + version: 1.3.4 + resolution: "stackframe@npm:1.3.4" + checksum: 18410f7a1e0c5d211a4effa83bdbf24adbe8faa8c34db52e1cd3e89837518c592be60b60d8b7270ac53eeeb8b807cd11b399a41667f6c9abb41059c3ccc8a989 + languageName: node + linkType: hard + +"static-eval@npm:^2.0.5": + version: 2.1.0 + resolution: "static-eval@npm:2.1.0" + dependencies: + escodegen: "npm:^1.11.1" + checksum: 2f319ed0e7e9e9ae856f073d2760e23d0bb8f7a2493ef85b43584804bf274c7457843bcd1df44831b126d3c71642e618b7e0353b9b2ad69d26d3c70f397d859f + languageName: node + linkType: hard + +"statuses@npm:2.0.1": + version: 2.0.1 + resolution: "statuses@npm:2.0.1" + checksum: 34378b207a1620a24804ce8b5d230fea0c279f00b18a7209646d5d47e419d1cc23e7cbf33a25a1e51ac38973dc2ac2e1e9c647a8e481ef365f77668d72becfd0 + languageName: node + linkType: hard + +"statuses@npm:>= 1.4.0 < 2": + version: 1.5.0 + resolution: "statuses@npm:1.5.0" + checksum: e433900956357b3efd79b1c547da4d291799ac836960c016d10a98f6a810b1b5c0dcc13b5a7aa609a58239b5190e1ea176ad9221c2157d2fd1c747393e6b2940 + languageName: node + linkType: hard + +"stop-iteration-iterator@npm:^1.0.0": + version: 1.0.0 + resolution: "stop-iteration-iterator@npm:1.0.0" + dependencies: + internal-slot: "npm:^1.0.4" + checksum: c4158d6188aac510d9e92925b58709207bd94699e9c31186a040c80932a687f84a51356b5895e6dc72710aad83addb9411c22171832c9ae0e6e11b7d61b0dfb9 + languageName: node + linkType: hard + +"stream-browserify@npm:^3.0.0": + version: 3.0.0 + resolution: "stream-browserify@npm:3.0.0" + dependencies: + inherits: "npm:~2.0.4" + readable-stream: "npm:^3.5.0" + checksum: ec3b975a4e0aa4b3dc5e70ffae3fc8fd29ac725353a14e72f213dff477b00330140ad014b163a8cbb9922dfe90803f81a5ea2b269e1bbfd8bd71511b88f889ad + languageName: node + linkType: hard + +"stream-http@npm:^3.2.0": + version: 3.2.0 + resolution: "stream-http@npm:3.2.0" + dependencies: + builtin-status-codes: "npm:^3.0.0" + inherits: "npm:^2.0.4" + readable-stream: "npm:^3.6.0" + xtend: "npm:^4.0.2" + checksum: f128fb8076d60cd548f229554b6a1a70c08a04b7b2afd4dbe7811d20f27f7d4112562eb8bce86d72a8691df3b50573228afcf1271e55e81f981536c67498bc41 + languageName: node + linkType: hard + +"stream-parser@npm:~0.3.1": + version: 0.3.1 + resolution: "stream-parser@npm:0.3.1" + dependencies: + debug: "npm:2" + checksum: 585508801423bd6c53f6dda9d78e4b743a08ab72e8e2680431fa855ef950e59c849ec2838f2a00c59af655ff8463e90f660f9169a816e63a3ca159cf713bae5c + languageName: node + linkType: hard + +"stream-shift@npm:^1.0.0": + version: 1.0.1 + resolution: "stream-shift@npm:1.0.1" + checksum: b63a0d178cde34b920ad93e2c0c9395b840f408d36803b07c61416edac80ef9e480a51910e0ceea0d679cec90921bcd2cccab020d3a9fa6c73a98b0fbec132fd + languageName: node + linkType: hard + +"string-length@npm:^4.0.1": + version: 4.0.2 + resolution: "string-length@npm:4.0.2" + dependencies: + char-regex: "npm:^1.0.2" + strip-ansi: "npm:^6.0.0" + checksum: 1cd77409c3d7db7bc59406f6bcc9ef0783671dcbabb23597a1177c166906ef2ee7c8290f78cae73a8aec858768f189d2cb417797df5e15ec4eb5e16b3346340c + languageName: node + linkType: hard + +"string-length@npm:^5.0.1": + version: 5.0.1 + resolution: "string-length@npm:5.0.1" + dependencies: + char-regex: "npm:^2.0.0" + strip-ansi: "npm:^7.0.1" + checksum: 311fa5758d397bd616be17150dfefaab4755ed292a3112237924d10ba5122f606064ad4880a293387401c1d7aa20d79f7936728bac2abed17a5e48f5b317cbc8 + languageName: node + linkType: hard + +"string-natural-compare@npm:^3.0.1": + version: 3.0.1 + resolution: "string-natural-compare@npm:3.0.1" + checksum: 85a6a9195736be500af5d817c7ea36b7e1ac278af079a807f70f79a56602359ee6743ca409af6291b94557de550ff60d1ec31b3c4fc8e7a08d0e12cdab57c149 + languageName: node + linkType: hard + +"string-split-by@npm:^1.0.0": + version: 1.0.0 + resolution: "string-split-by@npm:1.0.0" + dependencies: + parenthesis: "npm:^3.1.5" + checksum: 7feac22db5eb4fedc418818fe6c9277d2b2bbe8d200877ed4be629eeff6dafb686b04d87f3c49aa0b7ccaedaf5c576e31dd0e756ea82421cc48f362ece48b942 + languageName: node + linkType: hard + +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0": + version: 4.2.3 + resolution: "string-width@npm:4.2.3" + dependencies: + emoji-regex: "npm:^8.0.0" + is-fullwidth-code-point: "npm:^3.0.0" + strip-ansi: "npm:^6.0.1" + checksum: 1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b + languageName: node + linkType: hard + +"string-width@npm:^5.0.1, string-width@npm:^5.1.2": + version: 5.1.2 + resolution: "string-width@npm:5.1.2" + dependencies: + eastasianwidth: "npm:^0.2.0" + emoji-regex: "npm:^9.2.2" + strip-ansi: "npm:^7.0.1" + checksum: ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca + languageName: node + linkType: hard + +"string.prototype.matchall@npm:^4.0.6, string.prototype.matchall@npm:^4.0.8": + version: 4.0.8 + resolution: "string.prototype.matchall@npm:4.0.8" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + get-intrinsic: "npm:^1.1.3" + has-symbols: "npm:^1.0.3" + internal-slot: "npm:^1.0.3" + regexp.prototype.flags: "npm:^1.4.3" + side-channel: "npm:^1.0.4" + checksum: 644523d05c1ee93bab7474e999a5734ee5f6ad2d7ad24ed6ea8706c270dc92b352bde0f2a5420bfbeed54e28cb6a770c3800e1988a5267a70fd5e677c7750abc + languageName: node + linkType: hard + +"string.prototype.trim@npm:^1.2.7": + version: 1.2.7 + resolution: "string.prototype.trim@npm:1.2.7" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 31698f6d718794e422db6fcfa6685dcd9243097273b3b2a8b7948b5d45a183cd336378893ff0d4a7b2531b604c32bb5c45193dd6da3d2f5504df5cd222372c09 + languageName: node + linkType: hard + +"string.prototype.trimend@npm:^1.0.6": + version: 1.0.6 + resolution: "string.prototype.trimend@npm:1.0.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 51b663e3195a74b58620a250b3fc4efb58951000f6e7d572a9f671c038f2f37f24a2b8c6994500a882aeab2f1c383fac1e8c023c01eb0c8b4e52d2f13b6c4513 + languageName: node + linkType: hard + +"string.prototype.trimstart@npm:^1.0.6": + version: 1.0.6 + resolution: "string.prototype.trimstart@npm:1.0.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 13b9970d4e234002dfc8069c655c1fe19e83e10ced208b54858c41bb0f7544e581ac0ce746e92b279563664ad63910039f7253f36942113fec413b2b4e7c1fcd + languageName: node + linkType: hard + +"string_decoder@npm:^1.0.0, string_decoder@npm:^1.1.1": + version: 1.3.0 + resolution: "string_decoder@npm:1.3.0" + dependencies: + safe-buffer: "npm:~5.2.0" + checksum: 810614ddb030e271cd591935dcd5956b2410dd079d64ff92a1844d6b7588bf992b3e1b69b0f4d34a3e06e0bd73046ac646b5264c1987b20d0601f81ef35d731d + languageName: node + linkType: hard + +"string_decoder@npm:~0.10.x": + version: 0.10.31 + resolution: "string_decoder@npm:0.10.31" + checksum: 1c628d78f974aa7539c496029f48e7019acc32487fc695464f9d6bdfec98edd7d933a06b3216bc2016918f6e75074c611d84430a53cb0e43071597d6c1ac5e25 + languageName: node + linkType: hard + +"string_decoder@npm:~1.1.1": + version: 1.1.1 + resolution: "string_decoder@npm:1.1.1" + dependencies: + safe-buffer: "npm:~5.1.0" + checksum: b4f89f3a92fd101b5653ca3c99550e07bdf9e13b35037e9e2a1c7b47cec4e55e06ff3fc468e314a0b5e80bfbaf65c1ca5a84978764884ae9413bec1fc6ca924e + languageName: node + linkType: hard + +"stringify-entities@npm:^4.0.0": + version: 4.0.3 + resolution: "stringify-entities@npm:4.0.3" + dependencies: + character-entities-html4: "npm:^2.0.0" + character-entities-legacy: "npm:^3.0.0" + checksum: e4582cd40b082e95bc2075bed656dcbc24e83538830f15cb5a025f1ba8d341adbdb3c66efb6a5bfd6860a3ea426322135aa666cf128bf03c961553e2f9f2d4ed + languageName: node + linkType: hard + +"stringify-object@npm:^3.3.0": + version: 3.3.0 + resolution: "stringify-object@npm:3.3.0" + dependencies: + get-own-enumerable-property-symbols: "npm:^3.0.0" + is-obj: "npm:^1.0.1" + is-regexp: "npm:^1.0.0" + checksum: ba8078f84128979ee24b3de9a083489cbd3c62cb8572a061b47d4d82601a8ae4b4d86fa8c54dd955593da56bb7c16a6de51c27221fdc6b7139bb4f29d815f35b + languageName: node + linkType: hard + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": + version: 6.0.1 + resolution: "strip-ansi@npm:6.0.1" + dependencies: + ansi-regex: "npm:^5.0.1" + checksum: 1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 + languageName: node + linkType: hard + +"strip-ansi@npm:^7.0.1": + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" + dependencies: + ansi-regex: "npm:^6.0.1" + checksum: a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 + languageName: node + linkType: hard + +"strip-bom@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-bom@npm:3.0.0" + checksum: 51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1 + languageName: node + linkType: hard + +"strip-bom@npm:^4.0.0": + version: 4.0.0 + resolution: "strip-bom@npm:4.0.0" + checksum: 26abad1172d6bc48985ab9a5f96c21e440f6e7e476686de49be813b5a59b3566dccb5c525b831ec54fe348283b47f3ffb8e080bc3f965fde12e84df23f6bb7ef + languageName: node + linkType: hard + +"strip-comments@npm:^2.0.1": + version: 2.0.1 + resolution: "strip-comments@npm:2.0.1" + checksum: 984321b1ec47a531bdcfddd87f217590934e2d2f142198a080ec88588280239a5b58a81ca780730679b6195e52afef83673c6d6466c07c2277f71f44d7d9553d + languageName: node + linkType: hard + +"strip-final-newline@npm:^2.0.0": + version: 2.0.0 + resolution: "strip-final-newline@npm:2.0.0" + checksum: bddf8ccd47acd85c0e09ad7375409d81653f645fda13227a9d459642277c253d877b68f2e5e4d819fe75733b0e626bac7e954c04f3236f6d196f79c94fa4a96f + languageName: node + linkType: hard + +"strip-indent@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-indent@npm:3.0.0" + dependencies: + min-indent: "npm:^1.0.0" + checksum: ae0deaf41c8d1001c5d4fbe16cb553865c1863da4fae036683b474fa926af9fc121e155cb3fc57a68262b2ae7d5b8420aa752c97a6428c315d00efe2a3875679 + languageName: node + linkType: hard + +"strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1": + version: 3.1.1 + resolution: "strip-json-comments@npm:3.1.1" + checksum: 9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd + languageName: node + linkType: hard + +"strip-json-comments@npm:~2.0.1": + version: 2.0.1 + resolution: "strip-json-comments@npm:2.0.1" + checksum: b509231cbdee45064ff4f9fd73609e2bcc4e84a4d508e9dd0f31f70356473fde18abfb5838c17d56fb236f5a06b102ef115438de0600b749e818a35fbbc48c43 + languageName: node + linkType: hard + +"strongly-connected-components@npm:^1.0.1": + version: 1.0.1 + resolution: "strongly-connected-components@npm:1.0.1" + checksum: ab29f29be3f0d659bec3901590e7e52b0fe340e1387234b8609a00740a1afc31c34e54b503954f85ca27a17be3bc36e38db62525dc51cca9126b2b67e5be3e36 + languageName: node + linkType: hard + +"style-loader@npm:^3.3.1": + version: 3.3.3 + resolution: "style-loader@npm:3.3.3" + peerDependencies: + webpack: ^5.0.0 + checksum: 104bae8abd0627579dc14f3917cf65f1117e8098e3529872f09c26b5eee07933567b7be5c8ebf94d16e322b6e726dc569c5787111bf3786915850db4e351ef33 + languageName: node + linkType: hard + +"style-to-object@npm:^1.0.0": + version: 1.0.5 + resolution: "style-to-object@npm:1.0.5" + dependencies: + inline-style-parser: "npm:0.2.2" + checksum: 39bbc5e9f82a80d6a84c134bf49ba50402bf90304af4281fdd317c9792436c166b2f3a2a3d9a65e3f2a3360b35fe4e352932ec9a51513b9864bfd80b7f5a82e1 + languageName: node + linkType: hard + +"stylehacks@npm:^5.1.1": + version: 5.1.1 + resolution: "stylehacks@npm:5.1.1" + dependencies: + browserslist: "npm:^4.21.4" + postcss-selector-parser: "npm:^6.0.4" + peerDependencies: + postcss: ^8.2.15 + checksum: 402c2b545eeda0e972f125779adddc88df11bcf3a89de60c92026bd98cd49c1abffcd5bfe41766398835e0a1c7e5e72bdb6905809ecbb60716cd8d3a32ea7cd3 + languageName: node + linkType: hard + +"stylis@npm:4.2.0": + version: 4.2.0 + resolution: "stylis@npm:4.2.0" + checksum: a7128ad5a8ed72652c6eba46bed4f416521bc9745a460ef5741edc725252cebf36ee45e33a8615a7057403c93df0866ab9ee955960792db210bb80abd5ac6543 + languageName: node + linkType: hard + +"subscription@npm:^3.0.0": + version: 3.0.0 + resolution: "subscription@npm:3.0.0" + checksum: a3bb81ac288eae50641a9fa9990a3fb39739d5ba646272c22dfcb3a807d49a444541d4f4bd6ca6330e32e45ab1245d0967afedcca9c2a4bbdb8c9281becf230d + languageName: node + linkType: hard + +"sucrase@npm:^3.32.0": + version: 3.32.0 + resolution: "sucrase@npm:3.32.0" + dependencies: + "@jridgewell/gen-mapping": "npm:^0.3.2" + commander: "npm:^4.0.0" + glob: "npm:7.1.6" + lines-and-columns: "npm:^1.1.6" + mz: "npm:^2.7.0" + pirates: "npm:^4.0.1" + ts-interface-checker: "npm:^0.1.9" + bin: + sucrase: bin/sucrase + sucrase-node: bin/sucrase-node + checksum: c5f2d0c49a2462da3440a14ed62caad655c27919408471141b6866b18be9b29635e8b5e9246cc476a2c3df84e94a8d5498903f0f4e765c50d95d9ff360b95f79 + languageName: node + linkType: hard + +"supercluster@npm:^7.0.0": + version: 7.1.5 + resolution: "supercluster@npm:7.1.5" + dependencies: + kdbush: "npm:^3.0.0" + checksum: bbebf45927d0019831731c94b78d1c9a1f3e2da0be9875d7ea75c6f261487e0f15d3f1822a9a49256e3c1672bdfb9138f9a5e44e2de99edb06cd1e758083e12d + languageName: node + linkType: hard + +"superscript-text@npm:^1.0.0": + version: 1.0.0 + resolution: "superscript-text@npm:1.0.0" + checksum: 0d4dee472ca830234c16fd56cdf7d4bf6e3b7d80aefbb2390a6e8aa9b9e304d67df39e6154f9238e6eaebfe47766aad8de6082781760f0cc16c6ee6b57f547df + languageName: node + linkType: hard + +"supports-color@npm:^5.3.0": + version: 5.5.0 + resolution: "supports-color@npm:5.5.0" + dependencies: + has-flag: "npm:^3.0.0" + checksum: 6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05 + languageName: node + linkType: hard + +"supports-color@npm:^7.0.0, supports-color@npm:^7.1.0": + version: 7.2.0 + resolution: "supports-color@npm:7.2.0" + dependencies: + has-flag: "npm:^4.0.0" + checksum: afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 + languageName: node + linkType: hard + +"supports-color@npm:^8.0.0": + version: 8.1.1 + resolution: "supports-color@npm:8.1.1" + dependencies: + has-flag: "npm:^4.0.0" + checksum: ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89 + languageName: node + linkType: hard + +"supports-hyperlinks@npm:^2.0.0": + version: 2.3.0 + resolution: "supports-hyperlinks@npm:2.3.0" + dependencies: + has-flag: "npm:^4.0.0" + supports-color: "npm:^7.0.0" + checksum: 4057f0d86afb056cd799602f72d575b8fdd79001c5894bcb691176f14e870a687e7981e50bc1484980e8b688c6d5bcd4931e1609816abb5a7dc1486b7babf6a1 + languageName: node + linkType: hard + +"supports-preserve-symlinks-flag@npm:^1.0.0": + version: 1.0.0 + resolution: "supports-preserve-symlinks-flag@npm:1.0.0" + checksum: 6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 + languageName: node + linkType: hard + +"svg-arc-to-cubic-bezier@npm:^3.0.0": + version: 3.2.0 + resolution: "svg-arc-to-cubic-bezier@npm:3.2.0" + checksum: 6dddbaff9defa55a891593b48ba6bd5f1b3c89d747cf818a8342ec4cac10b06de6cd37478dc9483cba5e8d1a7d3dac2d0bbab47858d207a2d1a6a61b5acdd442 + languageName: node + linkType: hard + +"svg-parser@npm:^2.0.2, svg-parser@npm:^2.0.4": + version: 2.0.4 + resolution: "svg-parser@npm:2.0.4" + checksum: 02f6cb155dd7b63ebc2f44f36365bc294543bebb81b614b7628f1af3c54ab64f7e1cec20f06e252bf95bdde78441ae295a412c68ad1678f16a6907d924512b7a + languageName: node + linkType: hard + +"svg-path-bounds@npm:^1.0.1": + version: 1.0.2 + resolution: "svg-path-bounds@npm:1.0.2" + dependencies: + abs-svg-path: "npm:^0.1.1" + is-svg-path: "npm:^1.0.1" + normalize-svg-path: "npm:^1.0.0" + parse-svg-path: "npm:^0.1.2" + checksum: d24bfe8fd38405956d5ab3c41fe65d8984c2791a878cd3f4d70fe278575f1ce3270c78a07f3d2d32996485e3714f0167514fdfc5a9d7239d7c7535d391d04e1e + languageName: node + linkType: hard + +"svg-path-sdf@npm:^1.1.3": + version: 1.1.3 + resolution: "svg-path-sdf@npm:1.1.3" + dependencies: + bitmap-sdf: "npm:^1.0.0" + draw-svg-path: "npm:^1.0.0" + is-svg-path: "npm:^1.0.1" + parse-svg-path: "npm:^0.1.2" + svg-path-bounds: "npm:^1.0.1" + checksum: 0eb47e0c1946fa8515a9783a682c45c4fbb7fbaf7da76eaee96721bb40560ce97356a10e9cbdf988dc257219160b60842c6cfcdea95a8709a8d2e77657e2abfa + languageName: node + linkType: hard + +"svgo@npm:^1.2.2": + version: 1.3.2 + resolution: "svgo@npm:1.3.2" + dependencies: + chalk: "npm:^2.4.1" + coa: "npm:^2.0.2" + css-select: "npm:^2.0.0" + css-select-base-adapter: "npm:^0.1.1" + css-tree: "npm:1.0.0-alpha.37" + csso: "npm:^4.0.2" + js-yaml: "npm:^3.13.1" + mkdirp: "npm:~0.5.1" + object.values: "npm:^1.1.0" + sax: "npm:~1.2.4" + stable: "npm:^0.1.8" + unquote: "npm:~1.1.1" + util.promisify: "npm:~1.0.0" + bin: + svgo: ./bin/svgo + checksum: 261a82b08acf63accd7a54b47b4ffcd2fc7e7d7f8efef3cbc61184583b24b4c5434656004c30190302821af0f6d7b047eac730b0dcdab5d179e6a74383ccc776 + languageName: node + linkType: hard + +"svgo@npm:^2.7.0": + version: 2.8.0 + resolution: "svgo@npm:2.8.0" + dependencies: + "@trysound/sax": "npm:0.2.0" + commander: "npm:^7.2.0" + css-select: "npm:^4.1.3" + css-tree: "npm:^1.1.3" + csso: "npm:^4.2.0" + picocolors: "npm:^1.0.0" + stable: "npm:^0.1.8" + bin: + svgo: bin/svgo + checksum: 0741f5d5cad63111a90a0ce7a1a5a9013f6d293e871b75efe39addb57f29a263e45294e485a4d2ff9cc260a5d142c8b5937b2234b4ef05efdd2706fb2d360ecc + languageName: node + linkType: hard + +"svgpath@npm:^2.3.1": + version: 2.6.0 + resolution: "svgpath@npm:2.6.0" + checksum: aed042d7cc0e2f3b55d618af2bee58faf8820d53f5d45490194e9bd1cd9ae7d57be641fd3692429a133be2ffb75ff43aad2e6b1c297359ffbc808016a106f199 + languageName: node + linkType: hard + +"symbol-tree@npm:^3.2.4": + version: 3.2.4 + resolution: "symbol-tree@npm:3.2.4" + checksum: dfbe201ae09ac6053d163578778c53aa860a784147ecf95705de0cd23f42c851e1be7889241495e95c37cabb058edb1052f141387bef68f705afc8f9dd358509 + languageName: node + linkType: hard + +"tailwindcss@npm:^3.0.2": + version: 3.3.2 + resolution: "tailwindcss@npm:3.3.2" + dependencies: + "@alloc/quick-lru": "npm:^5.2.0" + arg: "npm:^5.0.2" + chokidar: "npm:^3.5.3" + didyoumean: "npm:^1.2.2" + dlv: "npm:^1.1.3" + fast-glob: "npm:^3.2.12" + glob-parent: "npm:^6.0.2" + is-glob: "npm:^4.0.3" + jiti: "npm:^1.18.2" + lilconfig: "npm:^2.1.0" + micromatch: "npm:^4.0.5" + normalize-path: "npm:^3.0.0" + object-hash: "npm:^3.0.0" + picocolors: "npm:^1.0.0" + postcss: "npm:^8.4.23" + postcss-import: "npm:^15.1.0" + postcss-js: "npm:^4.0.1" + postcss-load-config: "npm:^4.0.1" + postcss-nested: "npm:^6.0.1" + postcss-selector-parser: "npm:^6.0.11" + postcss-value-parser: "npm:^4.2.0" + resolve: "npm:^1.22.2" + sucrase: "npm:^3.32.0" + bin: + tailwind: lib/cli.js + tailwindcss: lib/cli.js + checksum: 334e9828da03daaf9ebb3a539fd8b940b3625d60caf6e51e05400fb723ed4fbcb2fb2f0dc0012a10ad9d1469127ab543bbbf8a672f4932e27509ac39c312af28 + languageName: node + linkType: hard + +"tapable@npm:^1.0.0": + version: 1.1.3 + resolution: "tapable@npm:1.1.3" + checksum: c9f0265e55e45821ec672b9b9ee8a35d95bf3ea6b352199f8606a2799018e89cfe4433c554d424b31fc67c4be26b05d4f36dc3c607def416fdb2514cd63dba50 + languageName: node + linkType: hard + +"tapable@npm:^2.0.0, tapable@npm:^2.1.1, tapable@npm:^2.2.0": + version: 2.2.1 + resolution: "tapable@npm:2.2.1" + checksum: bc40e6efe1e554d075469cedaba69a30eeb373552aaf41caeaaa45bf56ffacc2674261b106245bd566b35d8f3329b52d838e851ee0a852120acae26e622925c9 + languageName: node + linkType: hard + +"tar-fs@npm:^2.0.0, tar-fs@npm:^2.1.1": + version: 2.1.1 + resolution: "tar-fs@npm:2.1.1" + dependencies: + chownr: "npm:^1.1.1" + mkdirp-classic: "npm:^0.5.2" + pump: "npm:^3.0.0" + tar-stream: "npm:^2.1.4" + checksum: 871d26a934bfb7beeae4c4d8a09689f530b565f79bd0cf489823ff0efa3705da01278160da10bb006d1a793fa0425cf316cec029b32a9159eacbeaff4965fb6d + languageName: node + linkType: hard + +"tar-stream@npm:^2.1.4": + version: 2.2.0 + resolution: "tar-stream@npm:2.2.0" + dependencies: + bl: "npm:^4.0.3" + end-of-stream: "npm:^1.4.1" + fs-constants: "npm:^1.0.0" + inherits: "npm:^2.0.3" + readable-stream: "npm:^3.1.1" + checksum: 2f4c910b3ee7196502e1ff015a7ba321ec6ea837667220d7bcb8d0852d51cb04b87f7ae471008a6fb8f5b1a1b5078f62f3a82d30c706f20ada1238ac797e7692 + languageName: node + linkType: hard + +"tar@npm:^6.1.11, tar@npm:^6.1.2": + version: 6.2.0 + resolution: "tar@npm:6.2.0" + dependencies: + chownr: "npm:^2.0.0" + fs-minipass: "npm:^2.0.0" + minipass: "npm:^5.0.0" + minizlib: "npm:^2.1.1" + mkdirp: "npm:^1.0.3" + yallist: "npm:^4.0.0" + checksum: 02ca064a1a6b4521fef88c07d389ac0936730091f8c02d30ea60d472e0378768e870769ab9e986d87807bfee5654359cf29ff4372746cc65e30cbddc352660d8 + languageName: node + linkType: hard + +"temp-dir@npm:^2.0.0": + version: 2.0.0 + resolution: "temp-dir@npm:2.0.0" + checksum: b1df969e3f3f7903f3426861887ed76ba3b495f63f6d0c8e1ce22588679d9384d336df6064210fda14e640ed422e2a17d5c40d901f60e161c99482d723f4d309 + languageName: node + linkType: hard + +"tempy@npm:^0.6.0": + version: 0.6.0 + resolution: "tempy@npm:0.6.0" + dependencies: + is-stream: "npm:^2.0.0" + temp-dir: "npm:^2.0.0" + type-fest: "npm:^0.16.0" + unique-string: "npm:^2.0.0" + checksum: ca0882276732d1313b85006b0427620cb4a8d7a57738a2311a72befae60ed152be7d5b41b951dcb447a01a35404bed76f33eb4e37c55263cd7f807eee1187f8f + languageName: node + linkType: hard + +"terminal-link@npm:^2.0.0": + version: 2.1.1 + resolution: "terminal-link@npm:2.1.1" + dependencies: + ansi-escapes: "npm:^4.2.1" + supports-hyperlinks: "npm:^2.0.0" + checksum: 947458a5cd5408d2ffcdb14aee50bec8fb5022ae683b896b2f08ed6db7b2e7d42780d5c8b51e930e9c322bd7c7a517f4fa7c76983d0873c83245885ac5ee13e3 + languageName: node + linkType: hard + +"terser-webpack-plugin@npm:^5.2.5, terser-webpack-plugin@npm:^5.3.7": + version: 5.3.9 + resolution: "terser-webpack-plugin@npm:5.3.9" + dependencies: + "@jridgewell/trace-mapping": "npm:^0.3.17" + jest-worker: "npm:^27.4.5" + schema-utils: "npm:^3.1.1" + serialize-javascript: "npm:^6.0.1" + terser: "npm:^5.16.8" + peerDependencies: + webpack: ^5.1.0 + peerDependenciesMeta: + "@swc/core": + optional: true + esbuild: + optional: true + uglify-js: + optional: true + checksum: 8a757106101ea1504e5dc549c722506506e7d3f0d38e72d6c8108ad814c994ca0d67ac5d0825ba59704a4b2b04548201b2137f198bfce897b09fe9e36727a1e9 + languageName: node + linkType: hard + +"terser@npm:^5.0.0, terser@npm:^5.10.0, terser@npm:^5.16.8": + version: 5.18.2 + resolution: "terser@npm:5.18.2" + dependencies: + "@jridgewell/source-map": "npm:^0.3.3" + acorn: "npm:^8.8.2" + commander: "npm:^2.20.0" + source-map-support: "npm:~0.5.20" + bin: + terser: bin/terser + checksum: 7a7203eceef379c6381f5b43aaed509d12381c7453baee28b320fcd968523347f1bf4ba297cd3155ec860e9604279a1c9bc7060b35d9c34fae94c80cfa2738c2 + languageName: node + linkType: hard + +"test-exclude@npm:^6.0.0": + version: 6.0.0 + resolution: "test-exclude@npm:6.0.0" + dependencies: + "@istanbuljs/schema": "npm:^0.1.2" + glob: "npm:^7.1.4" + minimatch: "npm:^3.0.4" + checksum: 019d33d81adff3f9f1bfcff18125fb2d3c65564f437d9be539270ee74b994986abb8260c7c2ce90e8f30162178b09dbbce33c6389273afac4f36069c48521f57 + languageName: node + linkType: hard + +"text-table@npm:^0.2.0": + version: 0.2.0 + resolution: "text-table@npm:0.2.0" + checksum: 02805740c12851ea5982686810702e2f14369a5f4c5c40a836821e3eefc65ffeec3131ba324692a37608294b0fd8c1e55a2dd571ffed4909822787668ddbee5c + languageName: node + linkType: hard + +"thenify-all@npm:^1.0.0": + version: 1.6.0 + resolution: "thenify-all@npm:1.6.0" + dependencies: + thenify: "npm:>= 3.1.0 < 4" + checksum: 9b896a22735e8122754fe70f1d65f7ee691c1d70b1f116fda04fea103d0f9b356e3676cb789506e3909ae0486a79a476e4914b0f92472c2e093d206aed4b7d6b + languageName: node + linkType: hard + +"thenify@npm:>= 3.1.0 < 4": + version: 3.3.1 + resolution: "thenify@npm:3.3.1" + dependencies: + any-promise: "npm:^1.0.0" + checksum: f375aeb2b05c100a456a30bc3ed07ef03a39cbdefe02e0403fb714b8c7e57eeaad1a2f5c4ecfb9ce554ce3db9c2b024eba144843cd9e344566d9fcee73b04767 + languageName: node + linkType: hard + +"three@npm:0.131.3": + version: 0.131.3 + resolution: "three@npm:0.131.3" + checksum: b00ba86e59d670502f6a7634f2ac74ce9aec87b902b2c1dd5e8a390f6b0ebfc3877b6ec8e61a110f3e2e3c407bdecb90827652ab71510857e40c2b2827ad21ae + languageName: node + linkType: hard + +"three@npm:^0.118.0": + version: 0.118.3 + resolution: "three@npm:0.118.3" + checksum: dea60e992f16bb5d4a44630c44f4d6db00a90177e731eea2a4e7a6673e151977b23bfa79e7d2130441a85a7a5340ed447d338e1d692f100316d31dfb74ca5b20 + languageName: node + linkType: hard + +"throat@npm:^6.0.1": + version: 6.0.2 + resolution: "throat@npm:6.0.2" + checksum: 45caf1ce86a895f71fcb9bd3de67e1df6f73a519e780765dd0cf63ca8363de08ad207cfb714bc650ee9ddeef89971517b5f3a64087fcffce2bda034697af7c18 + languageName: node + linkType: hard + +"through2@npm:^0.6.3": + version: 0.6.5 + resolution: "through2@npm:0.6.5" + dependencies: + readable-stream: "npm:>=1.0.33-1 <1.1.0-0" + xtend: "npm:>=4.0.0 <4.1.0-0" + checksum: 3294325d73b120ffbb8cd00e28a649a99e194cef2638bf782b6c2eb0c163b388f7b7bb908003949f58f9f6b8f771defd24b6e4df051eb410fd87931521963b98 + languageName: node + linkType: hard + +"through2@npm:^2.0.1": + version: 2.0.5 + resolution: "through2@npm:2.0.5" + dependencies: + readable-stream: "npm:~2.3.6" + xtend: "npm:~4.0.1" + checksum: cbfe5b57943fa12b4f8c043658c2a00476216d79c014895cef1ac7a1d9a8b31f6b438d0e53eecbb81054b93128324a82ecd59ec1a4f91f01f7ac113dcb14eade + languageName: node + linkType: hard + +"thunky@npm:^1.0.2": + version: 1.1.0 + resolution: "thunky@npm:1.1.0" + checksum: 369764f39de1ce1de2ba2fa922db4a3f92e9c7f33bcc9a713241bc1f4a5238b484c17e0d36d1d533c625efb00e9e82c3e45f80b47586945557b45abb890156d2 + languageName: node + linkType: hard + +"timers-browserify@npm:^2.0.4": + version: 2.0.12 + resolution: "timers-browserify@npm:2.0.12" + dependencies: + setimmediate: "npm:^1.0.4" + checksum: 98e84db1a685bc8827c117a8bc62aac811ad56a995d07938fc7ed8cdc5bf3777bfe2d4e5da868847194e771aac3749a20f6cdd22091300fe889a76fe214a4641 + languageName: node + linkType: hard + +"tinycolor2@npm:^1.4.2": + version: 1.6.0 + resolution: "tinycolor2@npm:1.6.0" + checksum: 9aa79a36ba2c2a87cb221453465cabacd04b9e35f9694373e846fdc78b1c768110f81e581ea41440106c0f24d9a023891d0887e8075885e790ac40eb0e74a5c1 + languageName: node + linkType: hard + +"tinyqueue@npm:^2.0.3": + version: 2.0.3 + resolution: "tinyqueue@npm:2.0.3" + checksum: d7b590088f015a94a17132fa209c2f2a80c45158259af5474901fdf5932e95ea13ff6f034bcc725a6d5f66d3e5b888b048c310229beb25ad5bebb4f0a635abf2 + languageName: node + linkType: hard + +"tmpl@npm:1.0.5": + version: 1.0.5 + resolution: "tmpl@npm:1.0.5" + checksum: f935537799c2d1922cb5d6d3805f594388f75338fe7a4a9dac41504dd539704ca4db45b883b52e7b0aa5b2fd5ddadb1452bf95cd23a69da2f793a843f9451cc9 + languageName: node + linkType: hard + +"to-fast-properties@npm:^2.0.0": + version: 2.0.0 + resolution: "to-fast-properties@npm:2.0.0" + checksum: b214d21dbfb4bce3452b6244b336806ffea9c05297148d32ebb428d5c43ce7545bdfc65a1ceb58c9ef4376a65c0cb2854d645f33961658b3e3b4f84910ddcdd7 + languageName: node + linkType: hard + +"to-float32@npm:^1.1.0": + version: 1.1.0 + resolution: "to-float32@npm:1.1.0" + checksum: 7fed0ba97b9c6280b5858d2ca60ed005961f5feda7c413c6f7eb2be224ed033244d413ab6c53bd5d603edba2642d15ba4f952ebf1e87dc1fe837182a41b7b811 + languageName: node + linkType: hard + +"to-px@npm:1.0.1": + version: 1.0.1 + resolution: "to-px@npm:1.0.1" + dependencies: + parse-unit: "npm:^1.0.1" + checksum: bd6c2a300316700a81b602283365ce6e093ca77ebdca5611578f3fe58d9799f4a328e836ae5a034e5f007ec513712545ca93e61f4db199f9a87a8a29bb34d756 + languageName: node + linkType: hard + +"to-px@npm:^1.0.1": + version: 1.1.0 + resolution: "to-px@npm:1.1.0" + dependencies: + parse-unit: "npm:^1.0.1" + checksum: c6bb7132a8dac1ca647f63747362f74cfeacffd3b518d011d0bb9f30b33a6261c3e3d7ec4c32fe723f2ba654344f5777a439636ee0cca8b6cf8258675f83bb7e + languageName: node + linkType: hard + +"to-regex-range@npm:^5.0.1": + version: 5.0.1 + resolution: "to-regex-range@npm:5.0.1" + dependencies: + is-number: "npm:^7.0.0" + checksum: 487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892 + languageName: node + linkType: hard + +"toidentifier@npm:1.0.1": + version: 1.0.1 + resolution: "toidentifier@npm:1.0.1" + checksum: 93937279934bd66cc3270016dd8d0afec14fb7c94a05c72dc57321f8bd1fa97e5bea6d1f7c89e728d077ca31ea125b78320a616a6c6cd0e6b9cb94cb864381c1 + languageName: node + linkType: hard + +"topojson-client@npm:^3.1.0": + version: 3.1.0 + resolution: "topojson-client@npm:3.1.0" + dependencies: + commander: "npm:2" + bin: + topo2geo: bin/topo2geo + topomerge: bin/topomerge + topoquantize: bin/topoquantize + checksum: da2acba268cbf4d002483d5d81452e0d797b2fff6041fafb1d420e58973fa780a6f42041ce4c2677376ab977e5e1732b89c42a2db3c334a34f6c47f4d94b3eaa + languageName: node + linkType: hard + +"tough-cookie@npm:^4.0.0": + version: 4.1.3 + resolution: "tough-cookie@npm:4.1.3" + dependencies: + psl: "npm:^1.1.33" + punycode: "npm:^2.1.1" + universalify: "npm:^0.2.0" + url-parse: "npm:^1.5.3" + checksum: 4fc0433a0cba370d57c4b240f30440c848906dee3180bb6e85033143c2726d322e7e4614abb51d42d111ebec119c4876ed8d7247d4113563033eebbc1739c831 + languageName: node + linkType: hard + +"tr46@npm:^1.0.1": + version: 1.0.1 + resolution: "tr46@npm:1.0.1" + dependencies: + punycode: "npm:^2.1.0" + checksum: 41525c2ccce86e3ef30af6fa5e1464e6d8bb4286a58ea8db09228f598889581ef62347153f6636cd41553dc41685bdfad0a9d032ef58df9fbb0792b3447d0f04 + languageName: node + linkType: hard + +"tr46@npm:^2.1.0": + version: 2.1.0 + resolution: "tr46@npm:2.1.0" + dependencies: + punycode: "npm:^2.1.1" + checksum: 397f5c39d97c5fe29fa9bab73b03853be18ad2738b2c66ee5ce84ecb36b091bdaec493f9b3cee711d45f7678f342452600843264cc8242b591c8dc983146a6c4 + languageName: node + linkType: hard + +"tr46@npm:~0.0.3": + version: 0.0.3 + resolution: "tr46@npm:0.0.3" + checksum: 047cb209a6b60c742f05c9d3ace8fa510bff609995c129a37ace03476a9b12db4dbf975e74600830ef0796e18882b2381fb5fb1f6b4f96b832c374de3ab91a11 + languageName: node + linkType: hard + +"trim-lines@npm:^3.0.0": + version: 3.0.1 + resolution: "trim-lines@npm:3.0.1" + checksum: 3a1611fa9e52aa56a94c69951a9ea15b8aaad760eaa26c56a65330dc8adf99cb282fc07cc9d94968b7d4d88003beba220a7278bbe2063328eb23fb56f9509e94 + languageName: node + linkType: hard + +"trough@npm:^2.0.0": + version: 2.1.0 + resolution: "trough@npm:2.1.0" + checksum: 9a973f0745fa69b9d34f29fe8123599abb6915350a5f4e9e9c9026156219f8774af062d916f4ec327b796149188719170ad87f0d120f1e94271a1843366efcc3 + languageName: node + linkType: hard + +"tryer@npm:^1.0.1": + version: 1.0.1 + resolution: "tryer@npm:1.0.1" + checksum: 19070409a0009dc26127636cc14d2415e9cf8b1dc07b29694e57ea8bb5ea1bded012c0e792f6235b46e31189a7b866841668b3850867ff7eac1a6b55332c960d + languageName: node + linkType: hard + +"ts-interface-checker@npm:^0.1.9": + version: 0.1.13 + resolution: "ts-interface-checker@npm:0.1.13" + checksum: 232509f1b84192d07b81d1e9b9677088e590ac1303436da1e92b296e9be8e31ea042e3e1fd3d29b1742ad2c959e95afe30f63117b8f1bc3a3850070a5142fea7 + languageName: node + linkType: hard + +"tsconfck@npm:^2.1.0": + version: 2.1.1 + resolution: "tsconfck@npm:2.1.1" + peerDependencies: + typescript: ^4.3.5 || ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + bin: + tsconfck: bin/tsconfck.js + checksum: 1ae5381b57049d536620e0d2061c5621662109a0783ea93b650326dd2ec83c1b6f1fb984388000f51fbefa57eadc329e75361a65a2e0daeeda0485dea0aaadf1 + languageName: node + linkType: hard + +"tsconfig-paths@npm:^3.14.1": + version: 3.14.2 + resolution: "tsconfig-paths@npm:3.14.2" + dependencies: + "@types/json5": "npm:^0.0.29" + json5: "npm:^1.0.2" + minimist: "npm:^1.2.6" + strip-bom: "npm:^3.0.0" + checksum: fdc92bb7b18b31c0e76f8ec4f98d07236b09590fd6578e587ad024792c8b2235d65125a8fd007fa47a84400f84ceccbf33f24e5198d953249e7204f4cef3517c + languageName: node + linkType: hard + +"tslib@npm:^1.8.1": + version: 1.14.1 + resolution: "tslib@npm:1.14.1" + checksum: 69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2 + languageName: node + linkType: hard + +"tslib@npm:^2.0.3": + version: 2.6.0 + resolution: "tslib@npm:2.6.0" + checksum: 8d18020a8b9e70ecc529a744c883c095f177805efdbc9786bd50bd82a46c17547923133c5444fbcaf1f7f1c44e0e29c89f73ecf6d8fd1039668024a073a81dc6 + languageName: node + linkType: hard + +"tsutils@npm:^3.21.0": + version: 3.21.0 + resolution: "tsutils@npm:3.21.0" + dependencies: + tslib: "npm:^1.8.1" + peerDependencies: + typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + checksum: 02f19e458ec78ead8fffbf711f834ad8ecd2cc6ade4ec0320790713dccc0a412b99e7fd907c4cda2a1dc602c75db6f12e0108e87a5afad4b2f9e90a24cabd5a2 + languageName: node + linkType: hard + +"tty-browserify@npm:0.0.1": + version: 0.0.1 + resolution: "tty-browserify@npm:0.0.1" + checksum: 5e34883388eb5f556234dae75b08e069b9e62de12bd6d87687f7817f5569430a6dfef550b51dbc961715ae0cd0eb5a059e6e3fc34dc127ea164aa0f9b5bb033d + languageName: node + linkType: hard + +"tunnel-agent@npm:^0.6.0": + version: 0.6.0 + resolution: "tunnel-agent@npm:0.6.0" + dependencies: + safe-buffer: "npm:^5.0.1" + checksum: 4c7a1b813e7beae66fdbf567a65ec6d46313643753d0beefb3c7973d66fcec3a1e7f39759f0a0b4465883499c6dc8b0750ab8b287399af2e583823e40410a17a + languageName: node + linkType: hard + +"type-check@npm:^0.4.0, type-check@npm:~0.4.0": + version: 0.4.0 + resolution: "type-check@npm:0.4.0" + dependencies: + prelude-ls: "npm:^1.2.1" + checksum: 7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58 + languageName: node + linkType: hard + +"type-check@npm:~0.3.2": + version: 0.3.2 + resolution: "type-check@npm:0.3.2" + dependencies: + prelude-ls: "npm:~1.1.2" + checksum: 776217116b2b4e50e368c7ee0c22c0a85e982881c16965b90d52f216bc296d6a52ef74f9202d22158caacc092a7645b0b8d5fe529a96e3fe35d0fb393966c875 + languageName: node + linkType: hard + +"type-detect@npm:4.0.8": + version: 4.0.8 + resolution: "type-detect@npm:4.0.8" + checksum: 8fb9a51d3f365a7de84ab7f73b653534b61b622aa6800aecdb0f1095a4a646d3f5eb295322127b6573db7982afcd40ab492d038cf825a42093a58b1e1353e0bd + languageName: node + linkType: hard + +"type-fest@npm:^0.16.0": + version: 0.16.0 + resolution: "type-fest@npm:0.16.0" + checksum: 6b4d846534e7bcb49a6160b068ffaed2b62570d989d909ac3f29df5ef1e993859f890a4242eebe023c9e923f96adbcb3b3e88a198c35a1ee9a731e147a6839c3 + languageName: node + linkType: hard + +"type-fest@npm:^0.20.2": + version: 0.20.2 + resolution: "type-fest@npm:0.20.2" + checksum: dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3 + languageName: node + linkType: hard + +"type-fest@npm:^0.21.3": + version: 0.21.3 + resolution: "type-fest@npm:0.21.3" + checksum: 902bd57bfa30d51d4779b641c2bc403cdf1371fb9c91d3c058b0133694fcfdb817aef07a47f40faf79039eecbaa39ee9d3c532deff244f3a19ce68cea71a61e8 + languageName: node + linkType: hard + +"type-fest@npm:^2.13.0": + version: 2.19.0 + resolution: "type-fest@npm:2.19.0" + checksum: a5a7ecf2e654251613218c215c7493574594951c08e52ab9881c9df6a6da0aeca7528c213c622bc374b4e0cb5c443aa3ab758da4e3c959783ce884c3194e12cb + languageName: node + linkType: hard + +"type-is@npm:~1.6.18": + version: 1.6.18 + resolution: "type-is@npm:1.6.18" + dependencies: + media-typer: "npm:0.3.0" + mime-types: "npm:~2.1.24" + checksum: a23daeb538591b7efbd61ecf06b6feb2501b683ffdc9a19c74ef5baba362b4347e42f1b4ed81f5882a8c96a3bfff7f93ce3ffaf0cbbc879b532b04c97a55db9d + languageName: node + linkType: hard + +"type@npm:^1.0.1": + version: 1.2.0 + resolution: "type@npm:1.2.0" + checksum: 444660849aaebef8cbb9bc43b28ec2068952064cfce6a646f88db97aaa2e2d6570c5629cd79238b71ba23aa3f75146a0b96e24e198210ee0089715a6f8889bf7 + languageName: node + linkType: hard + +"type@npm:^2.7.2": + version: 2.7.2 + resolution: "type@npm:2.7.2" + checksum: 84c2382788fe24e0bc3d64c0c181820048f672b0f06316aa9c7bdb373f8a09f8b5404f4e856bc4539fb931f2f08f2adc4c53f6c08c9c0314505d70c29a1289e1 + languageName: node + linkType: hard + +"typed-array-length@npm:^1.0.4": + version: 1.0.4 + resolution: "typed-array-length@npm:1.0.4" + dependencies: + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + is-typed-array: "npm:^1.1.9" + checksum: c5163c0103d07fefc8a2ad0fc151f9ca9a1f6422098c00f695d55f9896e4d63614cd62cf8d8a031c6cee5f418e8980a533796597174da4edff075b3d275a7e23 + languageName: node + linkType: hard + +"typedarray-pool@npm:^1.1.0": + version: 1.2.0 + resolution: "typedarray-pool@npm:1.2.0" + dependencies: + bit-twiddle: "npm:^1.0.0" + dup: "npm:^1.0.0" + checksum: 1e1050e51470f58bd01a82cc0ab881c148e29863e3eaf7bc115033016214fc8588e6fd21354be8ef449062e5a83bfc85434c788c378b62234aa3d391fffc2957 + languageName: node + linkType: hard + +"typedarray-to-buffer@npm:^3.1.5": + version: 3.1.5 + resolution: "typedarray-to-buffer@npm:3.1.5" + dependencies: + is-typedarray: "npm:^1.0.0" + checksum: 4ac5b7a93d604edabf3ac58d3a2f7e07487e9f6e98195a080e81dbffdc4127817f470f219d794a843b87052cedef102b53ac9b539855380b8c2172054b7d5027 + languageName: node + linkType: hard + +"typedarray@npm:^0.0.6": + version: 0.0.6 + resolution: "typedarray@npm:0.0.6" + checksum: 6005cb31df50eef8b1f3c780eb71a17925f3038a100d82f9406ac2ad1de5eb59f8e6decbdc145b3a1f8e5836e17b0c0002fb698b9fe2516b8f9f9ff602d36412 + languageName: node + linkType: hard + +"typescript-compare@npm:^0.0.2": + version: 0.0.2 + resolution: "typescript-compare@npm:0.0.2" + dependencies: + typescript-logic: "npm:^0.0.0" + checksum: 8ac842798875fef83fa1b592de85d9ba546f72ff5554b995ee2a46e0e91c92f25e7b83780f308c85609dda9cbb5d027164479b772935d7a20b2d97e44e241ed5 + languageName: node + linkType: hard + +"typescript-logic@npm:^0.0.0": + version: 0.0.0 + resolution: "typescript-logic@npm:0.0.0" + checksum: c40adbbc5debb02ede2041ef7e0165c611620ddd1257d2df237bd77eb14cc47b975218c5d842b6a9eaeebe37a6ff5bcff576a90117f32dfd60dabb7b4cd86928 + languageName: node + linkType: hard + +"typescript-tuple@npm:^2.2.1": + version: 2.2.1 + resolution: "typescript-tuple@npm:2.2.1" + dependencies: + typescript-compare: "npm:^0.0.2" + checksum: 415f6b975b14437b3b55fc843a5aa9f4f6804e72a0197003882b668d52b632dfddbbde91da4b946ea877a658d5805a9fd8e761640cafd07838eee8f17195e20e + languageName: node + linkType: hard + +"ua-parser-js@npm:^0.7.18": + version: 0.7.35 + resolution: "ua-parser-js@npm:0.7.35" + checksum: 53091de47669f042a7644b6f8b8f21cf901f94b58a4658249db47c47569295aadf1c3ae11c92cb8cafa57b483ab75cb206b9476480a698adc68158f8476bb8f8 + languageName: node + linkType: hard + +"ua-parser-js@npm:^1.0.33": + version: 1.0.35 + resolution: "ua-parser-js@npm:1.0.35" + checksum: 4641332fdf163ecdec4810cc2335932754f1b71527097f06005a658de256e22f5836a4a7860619c9e611d578e0451ff39dbff1a9b83c6615e3b0b3dd29588c30 + languageName: node + linkType: hard + +"unbox-primitive@npm:^1.0.2": + version: 1.0.2 + resolution: "unbox-primitive@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.2" + has-bigints: "npm:^1.0.2" + has-symbols: "npm:^1.0.3" + which-boxed-primitive: "npm:^1.0.2" + checksum: 81ca2e81134167cc8f75fa79fbcc8a94379d6c61de67090986a2273850989dd3bae8440c163121b77434b68263e34787a675cbdcb34bb2f764c6b9c843a11b66 + languageName: node + linkType: hard + +"unicode-canonical-property-names-ecmascript@npm:^2.0.0": + version: 2.0.0 + resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.0" + checksum: 0fe812641bcfa3ae433025178a64afb5d9afebc21a922dafa7cba971deebb5e4a37350423890750132a85c936c290fb988146d0b1bd86838ad4897f4fc5bd0de + languageName: node + linkType: hard + +"unicode-match-property-ecmascript@npm:^2.0.0": + version: 2.0.0 + resolution: "unicode-match-property-ecmascript@npm:2.0.0" + dependencies: + unicode-canonical-property-names-ecmascript: "npm:^2.0.0" + unicode-property-aliases-ecmascript: "npm:^2.0.0" + checksum: 4d05252cecaf5c8e36d78dc5332e03b334c6242faf7cf16b3658525441386c0a03b5f603d42cbec0f09bb63b9fd25c9b3b09667aee75463cac3efadae2cd17ec + languageName: node + linkType: hard + +"unicode-match-property-value-ecmascript@npm:^2.1.0": + version: 2.1.0 + resolution: "unicode-match-property-value-ecmascript@npm:2.1.0" + checksum: f5b9499b9e0ffdc6027b744d528f17ec27dd7c15da03254ed06851feec47e0531f20d410910c8a49af4a6a190f4978413794c8d75ce112950b56d583b5d5c7f2 + languageName: node + linkType: hard + +"unicode-property-aliases-ecmascript@npm:^2.0.0": + version: 2.1.0 + resolution: "unicode-property-aliases-ecmascript@npm:2.1.0" + checksum: 50ded3f8c963c7785e48c510a3b7c6bc4e08a579551489aa0349680a35b1ceceec122e33b2b6c1b579d0be2250f34bb163ac35f5f8695fe10bbc67fb757f0af8 + languageName: node + linkType: hard + +"unified@npm:^11.0.0": + version: 11.0.4 + resolution: "unified@npm:11.0.4" + dependencies: + "@types/unist": "npm:^3.0.0" + bail: "npm:^2.0.0" + devlop: "npm:^1.0.0" + extend: "npm:^3.0.0" + is-plain-obj: "npm:^4.0.0" + trough: "npm:^2.0.0" + vfile: "npm:^6.0.0" + checksum: b550cdc994d54c84e2e098eb02cfa53535cbc140c148aa3296f235cb43082b499d239110f342fa65eb37ad919472a93cc62f062a83541485a69498084cc87ba1 + languageName: node + linkType: hard + +"unique-filename@npm:^3.0.0": + version: 3.0.0 + resolution: "unique-filename@npm:3.0.0" + dependencies: + unique-slug: "npm:^4.0.0" + checksum: 6363e40b2fa758eb5ec5e21b3c7fb83e5da8dcfbd866cc0c199d5534c42f03b9ea9ab069769cc388e1d7ab93b4eeef28ef506ab5f18d910ef29617715101884f + languageName: node + linkType: hard + +"unique-slug@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-slug@npm:4.0.0" + dependencies: + imurmurhash: "npm:^0.1.4" + checksum: cb811d9d54eb5821b81b18205750be84cb015c20a4a44280794e915f5a0a70223ce39066781a354e872df3572e8155c228f43ff0cce94c7cbf4da2cc7cbdd635 + languageName: node + linkType: hard + +"unique-string@npm:^2.0.0": + version: 2.0.0 + resolution: "unique-string@npm:2.0.0" + dependencies: + crypto-random-string: "npm:^2.0.0" + checksum: 11820db0a4ba069d174bedfa96c588fc2c96b083066fafa186851e563951d0de78181ac79c744c1ed28b51f9d82ac5b8196ff3e4560d0178046ef455d8c2244b + languageName: node + linkType: hard + +"unist-util-is@npm:^4.0.0": + version: 4.1.0 + resolution: "unist-util-is@npm:4.1.0" + checksum: 21ca3d7bacc88853b880b19cb1b133a056c501617d7f9b8cce969cd8b430ed7e1bc416a3a11b02540d5de6fb86807e169d00596108a459d034cf5faec97c055e + languageName: node + linkType: hard + +"unist-util-is@npm:^6.0.0": + version: 6.0.0 + resolution: "unist-util-is@npm:6.0.0" + dependencies: + "@types/unist": "npm:^3.0.0" + checksum: 9419352181eaa1da35eca9490634a6df70d2217815bb5938a04af3a662c12c5607a2f1014197ec9c426fbef18834f6371bfdb6f033040fa8aa3e965300d70e7e + languageName: node + linkType: hard + +"unist-util-position@npm:^5.0.0": + version: 5.0.0 + resolution: "unist-util-position@npm:5.0.0" + dependencies: + "@types/unist": "npm:^3.0.0" + checksum: dde3b31e314c98f12b4dc6402f9722b2bf35e96a4f2d463233dd90d7cde2d4928074a7a11eff0a5eb1f4e200f27fc1557e0a64a7e8e4da6558542f251b1b7400 + languageName: node + linkType: hard + +"unist-util-remove-position@npm:^5.0.0": + version: 5.0.0 + resolution: "unist-util-remove-position@npm:5.0.0" + dependencies: + "@types/unist": "npm:^3.0.0" + unist-util-visit: "npm:^5.0.0" + checksum: e8c76da4399446b3da2d1c84a97c607b37d03d1d92561e14838cbe4fdcb485bfc06c06cfadbb808ccb72105a80643976d0660d1fe222ca372203075be9d71105 + languageName: node + linkType: hard + +"unist-util-stringify-position@npm:^2.0.0": + version: 2.0.3 + resolution: "unist-util-stringify-position@npm:2.0.3" + dependencies: + "@types/unist": "npm:^2.0.2" + checksum: 46fa03f840df173b7f032cbfffdb502fb05b79b3fb5451681c796cf4985d9087a537833f5afb75d55e79b46bbbe4b3d81dd75a1062f9289091c526aebe201d5d + languageName: node + linkType: hard + +"unist-util-stringify-position@npm:^4.0.0": + version: 4.0.0 + resolution: "unist-util-stringify-position@npm:4.0.0" + dependencies: + "@types/unist": "npm:^3.0.0" + checksum: dfe1dbe79ba31f589108cb35e523f14029b6675d741a79dea7e5f3d098785045d556d5650ec6a8338af11e9e78d2a30df12b1ee86529cded1098da3f17ee999e + languageName: node + linkType: hard + +"unist-util-visit-parents@npm:^3.0.0": + version: 3.1.1 + resolution: "unist-util-visit-parents@npm:3.1.1" + dependencies: + "@types/unist": "npm:^2.0.0" + unist-util-is: "npm:^4.0.0" + checksum: 231c80c5ba8e79263956fcaa25ed2a11ad7fe77ac5ba0d322e9d51bbc4238501e3bb52f405e518bcdc5471e27b33eff520db0aa4a3b1feb9fb6e2de6ae385d49 + languageName: node + linkType: hard + +"unist-util-visit-parents@npm:^6.0.0": + version: 6.0.1 + resolution: "unist-util-visit-parents@npm:6.0.1" + dependencies: + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + checksum: 51b1a5b0aa23c97d3e03e7288f0cdf136974df2217d0999d3de573c05001ef04cccd246f51d2ebdfb9e8b0ed2704451ad90ba85ae3f3177cf9772cef67f56206 + languageName: node + linkType: hard + +"unist-util-visit@npm:^5.0.0": + version: 5.0.0 + resolution: "unist-util-visit@npm:5.0.0" + dependencies: + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 51434a1d80252c1540cce6271a90fd1a106dbe624997c09ed8879279667fb0b2d3a685e02e92bf66598dcbe6cdffa7a5f5fb363af8fdf90dda6c855449ae39a5 + languageName: node + linkType: hard + +"universalify@npm:^0.1.0": + version: 0.1.2 + resolution: "universalify@npm:0.1.2" + checksum: e70e0339f6b36f34c9816f6bf9662372bd241714dc77508d231d08386d94f2c4aa1ba1318614f92015f40d45aae1b9075cd30bd490efbe39387b60a76ca3f045 + languageName: node + linkType: hard + +"universalify@npm:^0.2.0": + version: 0.2.0 + resolution: "universalify@npm:0.2.0" + checksum: cedbe4d4ca3967edf24c0800cfc161c5a15e240dac28e3ce575c689abc11f2c81ccc6532c8752af3b40f9120fb5e454abecd359e164f4f6aa44c29cd37e194fe + languageName: node + linkType: hard + +"universalify@npm:^2.0.0": + version: 2.0.0 + resolution: "universalify@npm:2.0.0" + checksum: 07092b9f46df61b823d8ab5e57f0ee5120c178b39609a95e4a15a98c42f6b0b8e834e66fbb47ff92831786193be42f1fd36347169b88ce8639d0f9670af24a71 + languageName: node + linkType: hard + +"unpipe@npm:1.0.0, unpipe@npm:~1.0.0": + version: 1.0.0 + resolution: "unpipe@npm:1.0.0" + checksum: 193400255bd48968e5c5383730344fbb4fa114cdedfab26e329e50dd2d81b134244bb8a72c6ac1b10ab0281a58b363d06405632c9d49ca9dfd5e90cbd7d0f32c + languageName: node + linkType: hard + +"unquote@npm:^1.1.0, unquote@npm:~1.1.1": + version: 1.1.1 + resolution: "unquote@npm:1.1.1" + checksum: de59fb48cbaadc636002c6563dcb6b1bce95c91ebecb92addbc9bb47982cb03e7d8a8371c9617267b9e5746bbcb4403394139bc1310106b9ac4c26790ed57859 + languageName: node + linkType: hard + +"upath@npm:^1.2.0": + version: 1.2.0 + resolution: "upath@npm:1.2.0" + checksum: 3746f24099bf69dbf8234cecb671e1016e1f6b26bd306de4ff8966fb0bc463fa1014ffc48646b375de1ab573660e3a0256f6f2a87218b2dfa1779a84ef6992fa + languageName: node + linkType: hard + +"update-browserslist-db@npm:^1.0.11": + version: 1.0.11 + resolution: "update-browserslist-db@npm:1.0.11" + dependencies: + escalade: "npm:^3.1.1" + picocolors: "npm:^1.0.0" + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: 280d5cf92e302d8de0c12ef840a6af26ec024a5158aa2020975cd01bf0ded09c709793a6f421e6d0f1a47557d6a1a10dc43af80f9c30b8fd0df9691eb98c1c69 + languageName: node + linkType: hard + +"update-check@npm:1.5.4": + version: 1.5.4 + resolution: "update-check@npm:1.5.4" + dependencies: + registry-auth-token: "npm:3.3.2" + registry-url: "npm:3.1.0" + checksum: ac4b8dafa5db9b1c8ff5d0cfcc3b4c5687c390526b3218155e27173c7ca647572ea9e523dd3463523e698ef94d273768b395748da54655fe773dada59ac9c7b0 + languageName: node + linkType: hard + +"update-diff@npm:^1.1.0": + version: 1.1.0 + resolution: "update-diff@npm:1.1.0" + checksum: d517eb23c04d15b6bbef108b622ec8fd6f57ac19b339b1598efe8ad551005c7ab1addb03eac5d247804ed981772ff5c8538d14d2b06da69c73029aeb2bb673e8 + languageName: node + linkType: hard + +"uri-js@npm:^4.2.2": + version: 4.4.1 + resolution: "uri-js@npm:4.4.1" + dependencies: + punycode: "npm:^2.1.0" + checksum: 4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c + languageName: node + linkType: hard + +"url-parse@npm:^1.5.3": + version: 1.5.10 + resolution: "url-parse@npm:1.5.10" + dependencies: + querystringify: "npm:^2.1.1" + requires-port: "npm:^1.0.0" + checksum: bd5aa9389f896974beb851c112f63b466505a04b4807cea2e5a3b7092f6fbb75316f0491ea84e44f66fed55f1b440df5195d7e3a8203f64fcefa19d182f5be87 + languageName: node + linkType: hard + +"url-search-params-polyfill@npm:^8.1.1": + version: 8.2.4 + resolution: "url-search-params-polyfill@npm:8.2.4" + checksum: d8cbe48c6e1ee1141fbcb34913fe191de71b0309c9fefdbb5363b7b0a9397a9256a465be19af731f4ad11cc74081cadbd29c3fa2cd0268839b606d545106a625 + languageName: node + linkType: hard + +"url@npm:^0.11.0": + version: 0.11.1 + resolution: "url@npm:0.11.1" + dependencies: + punycode: "npm:^1.4.1" + qs: "npm:^6.11.0" + checksum: 9e18c57b854d6a8e0288c4ddf21f9e30273a0ef2efb28a7e3e3d6eac392637dbdecce0d8f616586d58ff43154997150ecc2c9873e6c845d1e742e24c940b6e12 + languageName: node + linkType: hard + +"use-resize-observer@npm:^7.0.0": + version: 7.1.0 + resolution: "use-resize-observer@npm:7.1.0" + dependencies: + "@juggle/resize-observer": "npm:^3.3.1" + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + checksum: 9b717f34e2eeea438f87133c4df475d82e8c3a45a0a87f776d711aa9a918fcccdddf9ecbc95192c6719511bdd42893b15dc79433684f0eb01675bd5739565088 + languageName: node + linkType: hard + +"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2, util-deprecate@npm:~1.0.1": + version: 1.0.2 + resolution: "util-deprecate@npm:1.0.2" + checksum: 41a5bdd214df2f6c3ecf8622745e4a366c4adced864bc3c833739791aeeeb1838119af7daed4ba36428114b5c67dcda034a79c882e97e43c03e66a4dd7389942 + languageName: node + linkType: hard + +"util.promisify@npm:~1.0.0": + version: 1.0.1 + resolution: "util.promisify@npm:1.0.1" + dependencies: + define-properties: "npm:^1.1.3" + es-abstract: "npm:^1.17.2" + has-symbols: "npm:^1.0.1" + object.getownpropertydescriptors: "npm:^2.1.0" + checksum: d72b7c1344816bc9c8713efbf5cb23b536730a8fb7df9ae50654d9efa4d24241fc5ecc69a7dc63b9a2f98cabc9635c303923671933f8c6f41fa7d64fe2188e27 + languageName: node + linkType: hard + +"util@npm:^0.12.0, util@npm:^0.12.4": + version: 0.12.5 + resolution: "util@npm:0.12.5" + dependencies: + inherits: "npm:^2.0.3" + is-arguments: "npm:^1.0.4" + is-generator-function: "npm:^1.0.7" + is-typed-array: "npm:^1.1.3" + which-typed-array: "npm:^1.1.2" + checksum: c27054de2cea2229a66c09522d0fa1415fb12d861d08523a8846bf2e4cbf0079d4c3f725f09dcb87493549bcbf05f5798dce1688b53c6c17201a45759e7253f3 + languageName: node + linkType: hard + +"utila@npm:~0.4": + version: 0.4.0 + resolution: "utila@npm:0.4.0" + checksum: 2791604e09ca4f77ae314df83e80d1805f867eb5c7e13e7413caee01273c278cf2c9a3670d8d25c889a877f7b149d892fe61b0181a81654b425e9622ab23d42e + languageName: node + linkType: hard + +"utils-merge@npm:1.0.1": + version: 1.0.1 + resolution: "utils-merge@npm:1.0.1" + checksum: 02ba649de1b7ca8854bfe20a82f1dfbdda3fb57a22ab4a8972a63a34553cf7aa51bc9081cf7e001b035b88186d23689d69e71b510e610a09a4c66f68aa95b672 + languageName: node + linkType: hard + +"uuid@npm:^8.3.2": + version: 8.3.2 + resolution: "uuid@npm:8.3.2" + bin: + uuid: dist/bin/uuid + checksum: bcbb807a917d374a49f475fae2e87fdca7da5e5530820ef53f65ba1d12131bd81a92ecf259cc7ce317cbe0f289e7d79fdfebcef9bfa3087c8c8a2fa304c9be54 + languageName: node + linkType: hard + +"v8-to-istanbul@npm:^8.1.0": + version: 8.1.1 + resolution: "v8-to-istanbul@npm:8.1.1" + dependencies: + "@types/istanbul-lib-coverage": "npm:^2.0.1" + convert-source-map: "npm:^1.6.0" + source-map: "npm:^0.7.3" + checksum: c3c99c4aa1ffffb098cc85c0c13c21871e6cbb9a83537d4e0650aa61589c347b2add787ceac68b8ea7fa1b7f446e9059d8e374cd7e7ab13b170a6caf8ad29c30 + languageName: node + linkType: hard + +"vary@npm:^1, vary@npm:~1.1.2": + version: 1.1.2 + resolution: "vary@npm:1.1.2" + checksum: f15d588d79f3675135ba783c91a4083dcd290a2a5be9fcb6514220a1634e23df116847b1cc51f66bfb0644cf9353b2abb7815ae499bab06e46dd33c1a6bf1f4f + languageName: node + linkType: hard + +"vfile-location@npm:^5.0.0": + version: 5.0.2 + resolution: "vfile-location@npm:5.0.2" + dependencies: + "@types/unist": "npm:^3.0.0" + vfile: "npm:^6.0.0" + checksum: cfc7e49de93ac5be6f3c9a9fe77676756e00d33a6c69d9c1ce279b06eedafa67fe5d0da2334b40e97963c43b014501bca2f829dfd6622a3290fb6f7dd2b9339e + languageName: node + linkType: hard + +"vfile-message@npm:^4.0.0": + version: 4.0.2 + resolution: "vfile-message@npm:4.0.2" + dependencies: + "@types/unist": "npm:^3.0.0" + unist-util-stringify-position: "npm:^4.0.0" + checksum: 07671d239a075f888b78f318bc1d54de02799db4e9dce322474e67c35d75ac4a5ac0aaf37b18801d91c9f8152974ea39678aa72d7198758b07f3ba04fb7d7514 + languageName: node + linkType: hard + +"vfile@npm:^6.0.0": + version: 6.0.1 + resolution: "vfile@npm:6.0.1" + dependencies: + "@types/unist": "npm:^3.0.0" + unist-util-stringify-position: "npm:^4.0.0" + vfile-message: "npm:^4.0.0" + checksum: 443bda43e5ad3b73c5976e987dba2b2d761439867ba7d5d7c5f4b01d3c1cb1b976f5f0e6b2399a00dc9b4eaec611bd9984ce9ce8a75a72e60aed518b10a902d2 + languageName: node + linkType: hard + +"vite-plugin-node-polyfills@npm:^0.9.0": + version: 0.9.0 + resolution: "vite-plugin-node-polyfills@npm:0.9.0" + dependencies: + "@rollup/plugin-inject": "npm:^5.0.3" + node-stdlib-browser: "npm:^1.2.0" + peerDependencies: + vite: ^2.0.0 || ^3.0.0 || ^4.0.0 + checksum: d2de1dc3dc6ec614e3290aa162f19001ad06ce0b4db7907673decb804ef974bf8d50e155243e1c3e8ceff9fff2f36449d8a0b3da8878c4330b64c73481c13ecb + languageName: node + linkType: hard + +"vite-plugin-svgr@npm:^3.2.0": + version: 3.2.0 + resolution: "vite-plugin-svgr@npm:3.2.0" + dependencies: + "@rollup/pluginutils": "npm:^5.0.2" + "@svgr/core": "npm:^7.0.0" + "@svgr/plugin-jsx": "npm:^7.0.0" + peerDependencies: + vite: ^2.6.0 || 3 || 4 + checksum: f801759810be82e997acb26b6b0f8c6dc012d7bcb4d430e1e75ef210f6f05580c589b7f65c9729fe4993fa919433903b71a74ddfc490e41af69720cf857de9d9 + languageName: node + linkType: hard + +"vite-tsconfig-paths@npm:^4.2.0": + version: 4.2.0 + resolution: "vite-tsconfig-paths@npm:4.2.0" + dependencies: + debug: "npm:^4.1.1" + globrex: "npm:^0.1.2" + tsconfck: "npm:^2.1.0" + peerDependencies: + vite: "*" + peerDependenciesMeta: + vite: + optional: true + checksum: 04bd792bb4f6b4fb57ec8368cff076abffba8d6923af032affb14be43b6e2dfd8b25085947a3204d702a8c8e9d79d3c361373cf98566df682420728857906289 + languageName: node + linkType: hard + +"vite@npm:^4.4.2": + version: 4.4.2 + resolution: "vite@npm:4.4.2" + dependencies: + esbuild: "npm:^0.18.10" + fsevents: "npm:~2.3.2" + postcss: "npm:^8.4.24" + rollup: "npm:^3.25.2" + peerDependencies: + "@types/node": ">= 14" + less: "*" + lightningcss: ^1.21.0 + sass: "*" + stylus: "*" + sugarss: "*" + terser: ^5.4.0 + dependenciesMeta: + fsevents: + optional: true + peerDependenciesMeta: + "@types/node": + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + bin: + vite: bin/vite.js + checksum: 8c505f45cc28a67a31a6b944d1a319c63f6cda98e1e38c6da46e604f7981cdb3fb08c022d4887a190dd88f9d0d6155e992f2206f0cacb301103f5eec53182c3b + languageName: node + linkType: hard + +"vm-browserify@npm:^1.0.1": + version: 1.1.2 + resolution: "vm-browserify@npm:1.1.2" + checksum: 0cc1af6e0d880deb58bc974921320c187f9e0a94f25570fca6b1bd64e798ce454ab87dfd797551b1b0cc1849307421aae0193cedf5f06bdb5680476780ee344b + languageName: node + linkType: hard + +"vt-pbf@npm:^3.1.1": + version: 3.1.3 + resolution: "vt-pbf@npm:3.1.3" + dependencies: + "@mapbox/point-geometry": "npm:0.1.0" + "@mapbox/vector-tile": "npm:^1.3.1" + pbf: "npm:^3.2.1" + checksum: a568801ae25f0ffe65ef697bf520c996c8a4067f73f355c0d5815238de90322c8ca207c61220206141cfe6f5b525de875b7eb26e22979a1b768b96d03b93dca7 + languageName: node + linkType: hard + +"w3c-hr-time@npm:^1.0.2": + version: 1.0.2 + resolution: "w3c-hr-time@npm:1.0.2" + dependencies: + browser-process-hrtime: "npm:^1.0.0" + checksum: 7795b61fb51ce222414891eef8e6cb13240b62f64351b4474f99c84de2bc37d37dd0efa193f37391e9737097b881a111d1e003e3d7a9583693f8d5a858b02627 + languageName: node + linkType: hard + +"w3c-keyname@npm:^2.2.4": + version: 2.2.8 + resolution: "w3c-keyname@npm:2.2.8" + checksum: 37cf335c90efff31672ebb345577d681e2177f7ff9006a9ad47c68c5a9d265ba4a7b39d6c2599ceea639ca9315584ce4bd9c9fbf7a7217bfb7a599e71943c4c4 + languageName: node + linkType: hard + +"w3c-xmlserializer@npm:^2.0.0": + version: 2.0.0 + resolution: "w3c-xmlserializer@npm:2.0.0" + dependencies: + xml-name-validator: "npm:^3.0.0" + checksum: 92b8af34766f5bb8f37c505bc459ee1791b30af778d3a86551f7dd3b1716f79cb98c71d65d03f2bf6eba6b09861868eaf2be7e233b9202b26a9df7595f2bd290 + languageName: node + linkType: hard + +"walker@npm:^1.0.7": + version: 1.0.8 + resolution: "walker@npm:1.0.8" + dependencies: + makeerror: "npm:1.0.12" + checksum: a17e037bccd3ca8a25a80cb850903facdfed0de4864bd8728f1782370715d679fa72e0a0f5da7c1c1379365159901e5935f35be531229da53bbfc0efdabdb48e + languageName: node + linkType: hard + +"watchpack@npm:^2.4.0": + version: 2.4.0 + resolution: "watchpack@npm:2.4.0" + dependencies: + glob-to-regexp: "npm:^0.4.1" + graceful-fs: "npm:^4.1.2" + checksum: c5e35f9fb9338d31d2141d9835643c0f49b5f9c521440bb648181059e5940d93dd8ed856aa8a33fbcdd4e121dad63c7e8c15c063cf485429cd9d427be197fe62 + languageName: node + linkType: hard + +"wbuf@npm:^1.1.0, wbuf@npm:^1.7.3": + version: 1.7.3 + resolution: "wbuf@npm:1.7.3" + dependencies: + minimalistic-assert: "npm:^1.0.0" + checksum: 56edcc5ef2b3d30913ba8f1f5cccc364d180670b24d5f3f8849c1e6fb514e5c7e3a87548ae61227a82859eba6269c11393ae24ce12a2ea1ecb9b465718ddced7 + languageName: node + linkType: hard + +"weak-map@npm:^1.0.5": + version: 1.0.8 + resolution: "weak-map@npm:1.0.8" + checksum: 56c3c044f41a3f096db55d5dec86bb57e042fa21081491be5fa406608669089c09153de66c14cc8b93c4979fe977c92316e83cba25c2f0305c870065deff042f + languageName: node + linkType: hard + +"web-namespaces@npm:^2.0.0": + version: 2.0.1 + resolution: "web-namespaces@npm:2.0.1" + checksum: df245f466ad83bd5cd80bfffc1674c7f64b7b84d1de0e4d2c0934fb0782e0a599164e7197a4bce310ee3342fd61817b8047ff04f076a1ce12dd470584142a4bd + languageName: node + linkType: hard + +"web-vitals@npm:^2.1.0": + version: 2.1.4 + resolution: "web-vitals@npm:2.1.4" + checksum: c71ab674936c6b4d51679e037e3819c24bdad9f30410fe8a84fd8218d29d9bacf15ae9fd570d361f3e9621aa8454f61277f66ac1a5c19b50facf3220a37a73eb + languageName: node + linkType: hard + +"webgl-context@npm:^2.2.0": + version: 2.2.0 + resolution: "webgl-context@npm:2.2.0" + dependencies: + get-canvas-context: "npm:^1.0.1" + checksum: 4a2f677657e340a3b48153d36a7b7487d41e745214f114dd97a357372da7cd3fc051c85ceb5024410b431251bfdaeb028eb54fb22b46290f1178d7cb0eba70ba + languageName: node + linkType: hard + +"webidl-conversions@npm:^3.0.0": + version: 3.0.1 + resolution: "webidl-conversions@npm:3.0.1" + checksum: 5612d5f3e54760a797052eb4927f0ddc01383550f542ccd33d5238cfd65aeed392a45ad38364970d0a0f4fea32e1f4d231b3d8dac4a3bdd385e5cf802ae097db + languageName: node + linkType: hard + +"webidl-conversions@npm:^4.0.2": + version: 4.0.2 + resolution: "webidl-conversions@npm:4.0.2" + checksum: def5c5ac3479286dffcb604547628b2e6b46c5c5b8a8cfaa8c71dc3bafc85859bde5fbe89467ff861f571ab38987cf6ab3d6e7c80b39b999e50e803c12f3164f + languageName: node + linkType: hard + +"webidl-conversions@npm:^5.0.0": + version: 5.0.0 + resolution: "webidl-conversions@npm:5.0.0" + checksum: bf31df332ed11e1114bfcae7712d9ab2c37e7faa60ba32d8fdbee785937c0b012eee235c19d2b5d84f5072db84a160e8d08dd382da7f850feec26a4f46add8ff + languageName: node + linkType: hard + +"webidl-conversions@npm:^6.1.0": + version: 6.1.0 + resolution: "webidl-conversions@npm:6.1.0" + checksum: 66ad3b9073cd1e0e173444d8c636673b016e25b5856694429072cc966229adb734a8d410188e031effadcfb837936d79bc9e87c48f4d5925a90d42dec97f6590 + languageName: node + linkType: hard + +"webpack-dev-middleware@npm:^5.3.1": + version: 5.3.3 + resolution: "webpack-dev-middleware@npm:5.3.3" + dependencies: + colorette: "npm:^2.0.10" + memfs: "npm:^3.4.3" + mime-types: "npm:^2.1.31" + range-parser: "npm:^1.2.1" + schema-utils: "npm:^4.0.0" + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + checksum: 378ceed430b61c0b0eccdbb55a97173aa36231bb88e20ad12bafb3d553e542708fa31f08474b9c68d4ac95174a047def9e426e193b7134be3736afa66a0d1708 + languageName: node + linkType: hard + +"webpack-dev-server@npm:^4.6.0": + version: 4.15.1 + resolution: "webpack-dev-server@npm:4.15.1" + dependencies: + "@types/bonjour": "npm:^3.5.9" + "@types/connect-history-api-fallback": "npm:^1.3.5" + "@types/express": "npm:^4.17.13" + "@types/serve-index": "npm:^1.9.1" + "@types/serve-static": "npm:^1.13.10" + "@types/sockjs": "npm:^0.3.33" + "@types/ws": "npm:^8.5.5" + ansi-html-community: "npm:^0.0.8" + bonjour-service: "npm:^1.0.11" + chokidar: "npm:^3.5.3" + colorette: "npm:^2.0.10" + compression: "npm:^1.7.4" + connect-history-api-fallback: "npm:^2.0.0" + default-gateway: "npm:^6.0.3" + express: "npm:^4.17.3" + graceful-fs: "npm:^4.2.6" + html-entities: "npm:^2.3.2" + http-proxy-middleware: "npm:^2.0.3" + ipaddr.js: "npm:^2.0.1" + launch-editor: "npm:^2.6.0" + open: "npm:^8.0.9" + p-retry: "npm:^4.5.0" + rimraf: "npm:^3.0.2" + schema-utils: "npm:^4.0.0" + selfsigned: "npm:^2.1.1" + serve-index: "npm:^1.9.1" + sockjs: "npm:^0.3.24" + spdy: "npm:^4.0.2" + webpack-dev-middleware: "npm:^5.3.1" + ws: "npm:^8.13.0" + peerDependencies: + webpack: ^4.37.0 || ^5.0.0 + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + bin: + webpack-dev-server: bin/webpack-dev-server.js + checksum: 2cf3edf556dcafdfc938e0adeac3dadf97fb959ed66b88bdd70acdb0b77b0f25be5e2d4b30cca2da8732548451418cadf00eb09e751e7674ff914fd9ab646b26 + languageName: node + linkType: hard + +"webpack-manifest-plugin@npm:^4.0.2": + version: 4.1.1 + resolution: "webpack-manifest-plugin@npm:4.1.1" + dependencies: + tapable: "npm:^2.0.0" + webpack-sources: "npm:^2.2.0" + peerDependencies: + webpack: ^4.44.2 || ^5.47.0 + checksum: 9486f399c86358e5811f314c71ba0ef2915c2db885ae01fd14002f2fb3d791bc9cf7b0fbe92e9f012c85c06f2efd94ecfc50f85d3fbce6359757f327039a7839 + languageName: node + linkType: hard + +"webpack-sources@npm:^1.4.3": + version: 1.4.3 + resolution: "webpack-sources@npm:1.4.3" + dependencies: + source-list-map: "npm:^2.0.0" + source-map: "npm:~0.6.1" + checksum: 78dafb3e1e297d3f4eb6204311e8c64d28cd028f82887ba33aaf03fffc82482d8e1fdf6de25a60f4dde621d3565f4c3b1bfb350f09add8f4e54e00279ff3db5e + languageName: node + linkType: hard + +"webpack-sources@npm:^2.2.0": + version: 2.3.1 + resolution: "webpack-sources@npm:2.3.1" + dependencies: + source-list-map: "npm:^2.0.1" + source-map: "npm:^0.6.1" + checksum: caf56a9a478eca7e77feca2b6ddc7673f1384eb870280014b300c40cf42abca656f639ff58a8d55a889a92a810ae3c22e71e578aa38fde416e8c2e6827a6ddfd + languageName: node + linkType: hard + +"webpack-sources@npm:^3.2.3": + version: 3.2.3 + resolution: "webpack-sources@npm:3.2.3" + checksum: 2ef63d77c4fad39de4a6db17323d75eb92897b32674e97d76f0a1e87c003882fc038571266ad0ef581ac734cbe20952912aaa26155f1905e96ce251adbb1eb4e + languageName: node + linkType: hard + +"webpack@npm:^5.64.4": + version: 5.88.1 + resolution: "webpack@npm:5.88.1" + dependencies: + "@types/eslint-scope": "npm:^3.7.3" + "@types/estree": "npm:^1.0.0" + "@webassemblyjs/ast": "npm:^1.11.5" + "@webassemblyjs/wasm-edit": "npm:^1.11.5" + "@webassemblyjs/wasm-parser": "npm:^1.11.5" + acorn: "npm:^8.7.1" + acorn-import-assertions: "npm:^1.9.0" + browserslist: "npm:^4.14.5" + chrome-trace-event: "npm:^1.0.2" + enhanced-resolve: "npm:^5.15.0" + es-module-lexer: "npm:^1.2.1" + eslint-scope: "npm:5.1.1" + events: "npm:^3.2.0" + glob-to-regexp: "npm:^0.4.1" + graceful-fs: "npm:^4.2.9" + json-parse-even-better-errors: "npm:^2.3.1" + loader-runner: "npm:^4.2.0" + mime-types: "npm:^2.1.27" + neo-async: "npm:^2.6.2" + schema-utils: "npm:^3.2.0" + tapable: "npm:^2.1.1" + terser-webpack-plugin: "npm:^5.3.7" + watchpack: "npm:^2.4.0" + webpack-sources: "npm:^3.2.3" + peerDependenciesMeta: + webpack-cli: + optional: true + bin: + webpack: bin/webpack.js + checksum: 03389ad02342becf527c2f603b46bedb27f5352703e6a625daa9a1f80ed84417e135fbcd8a2a79d6aaf37aafb8b8b571cd920bad4b068ca76c629252b3bfc9d7 + languageName: node + linkType: hard + +"websocket-driver@npm:>=0.5.1, websocket-driver@npm:^0.7.4": + version: 0.7.4 + resolution: "websocket-driver@npm:0.7.4" + dependencies: + http-parser-js: "npm:>=0.5.1" + safe-buffer: "npm:>=5.1.0" + websocket-extensions: "npm:>=0.1.1" + checksum: 5f09547912b27bdc57bac17b7b6527d8993aa4ac8a2d10588bb74aebaf785fdcf64fea034aae0c359b7adff2044dd66f3d03866e4685571f81b13e548f9021f1 + languageName: node + linkType: hard + +"websocket-extensions@npm:>=0.1.1": + version: 0.1.4 + resolution: "websocket-extensions@npm:0.1.4" + checksum: bbc8c233388a0eb8a40786ee2e30d35935cacbfe26ab188b3e020987e85d519c2009fe07cfc37b7f718b85afdba7e54654c9153e6697301f72561bfe429177e0 + languageName: node + linkType: hard + +"whatwg-encoding@npm:^1.0.5": + version: 1.0.5 + resolution: "whatwg-encoding@npm:1.0.5" + dependencies: + iconv-lite: "npm:0.4.24" + checksum: 79d9f276234fd06bb27de4c1f9137a0471bfa578efaec0474ab46b6d64bf30bb14492e6f88eff0e6794bdd6fa48b44f4d7a2e9c41424a837a63bba9626e35c62 + languageName: node + linkType: hard + +"whatwg-fetch@npm:^3.4.1, whatwg-fetch@npm:^3.6.2": + version: 3.6.2 + resolution: "whatwg-fetch@npm:3.6.2" + checksum: cc10f6893fe71839250b6e2fa9bc293bcf0ca5b93129712a7d1097fb7528b3ff617eb065098dc972e74d1455378e514aa34c0901ded41584be16508db63477c8 + languageName: node + linkType: hard + +"whatwg-mimetype@npm:^2.3.0": + version: 2.3.0 + resolution: "whatwg-mimetype@npm:2.3.0" + checksum: 81c5eaf660b1d1c27575406bcfdf58557b599e302211e13e3c8209020bbac903e73c17f9990f887232b39ce570cc8638331b0c3ff0842ba224a5c2925e830b06 + languageName: node + linkType: hard + +"whatwg-url@npm:^5.0.0": + version: 5.0.0 + resolution: "whatwg-url@npm:5.0.0" + dependencies: + tr46: "npm:~0.0.3" + webidl-conversions: "npm:^3.0.0" + checksum: 1588bed84d10b72d5eec1d0faa0722ba1962f1821e7539c535558fb5398d223b0c50d8acab950b8c488b4ba69043fd833cc2697056b167d8ad46fac3995a55d5 + languageName: node + linkType: hard + +"whatwg-url@npm:^7.0.0": + version: 7.1.0 + resolution: "whatwg-url@npm:7.1.0" + dependencies: + lodash.sortby: "npm:^4.7.0" + tr46: "npm:^1.0.1" + webidl-conversions: "npm:^4.0.2" + checksum: 2785fe4647690e5a0225a79509ba5e21fdf4a71f9de3eabdba1192483fe006fc79961198e0b99f82751557309f17fc5a07d4d83c251aa5b2f85ba71e674cbee9 + languageName: node + linkType: hard + +"whatwg-url@npm:^8.0.0, whatwg-url@npm:^8.5.0": + version: 8.7.0 + resolution: "whatwg-url@npm:8.7.0" + dependencies: + lodash: "npm:^4.7.0" + tr46: "npm:^2.1.0" + webidl-conversions: "npm:^6.1.0" + checksum: de0bc94387dba586b278e701cf5a1c1f5002725d22b8564dbca2cab1966ef24b839018e57ae2423fb514d8a2dd3aa3bf97323e2f89b55cd89e79141e432e9df1 + languageName: node + linkType: hard + +"which-boxed-primitive@npm:^1.0.2": + version: 1.0.2 + resolution: "which-boxed-primitive@npm:1.0.2" + dependencies: + is-bigint: "npm:^1.0.1" + is-boolean-object: "npm:^1.1.0" + is-number-object: "npm:^1.0.4" + is-string: "npm:^1.0.5" + is-symbol: "npm:^1.0.3" + checksum: 0a62a03c00c91dd4fb1035b2f0733c341d805753b027eebd3a304b9cb70e8ce33e25317add2fe9b5fea6f53a175c0633ae701ff812e604410ddd049777cd435e + languageName: node + linkType: hard + +"which-collection@npm:^1.0.1": + version: 1.0.1 + resolution: "which-collection@npm:1.0.1" + dependencies: + is-map: "npm:^2.0.1" + is-set: "npm:^2.0.1" + is-weakmap: "npm:^2.0.1" + is-weakset: "npm:^2.0.1" + checksum: 249f913e1758ed2f06f00706007d87dc22090a80591a56917376e70ecf8fc9ab6c41d98e1c87208bb9648676f65d4b09c0e4d23c56c7afb0f0a73a27d701df5d + languageName: node + linkType: hard + +"which-module@npm:^2.0.0": + version: 2.0.1 + resolution: "which-module@npm:2.0.1" + checksum: 087038e7992649eaffa6c7a4f3158d5b53b14cf5b6c1f0e043dccfacb1ba179d12f17545d5b85ebd94a42ce280a6fe65d0cbcab70f4fc6daad1dfae85e0e6a3e + languageName: node + linkType: hard + +"which-typed-array@npm:^1.1.2, which-typed-array@npm:^1.1.9": + version: 1.1.9 + resolution: "which-typed-array@npm:1.1.9" + dependencies: + available-typed-arrays: "npm:^1.0.5" + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-tostringtag: "npm:^1.0.0" + is-typed-array: "npm:^1.1.10" + checksum: 7edb12cfd04bfe2e2d3ec3e6046417c59e6a8c72209e4fe41fe1a1a40a3b196626c2ca63dac2a0fa2491d5c37c065dfabd2fcf7c0c15f1d19f5640fef88f6368 + languageName: node + linkType: hard + +"which@npm:^1.3.1": + version: 1.3.1 + resolution: "which@npm:1.3.1" + dependencies: + isexe: "npm:^2.0.0" + bin: + which: ./bin/which + checksum: e945a8b6bbf6821aaaef7f6e0c309d4b615ef35699576d5489b4261da9539f70393c6b2ce700ee4321c18f914ebe5644bc4631b15466ffbaad37d83151f6af59 + languageName: node + linkType: hard + +"which@npm:^2.0.1": + version: 2.0.2 + resolution: "which@npm:2.0.2" + dependencies: + isexe: "npm:^2.0.0" + bin: + node-which: ./bin/node-which + checksum: 66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f + languageName: node + linkType: hard + +"which@npm:^4.0.0": + version: 4.0.0 + resolution: "which@npm:4.0.0" + dependencies: + isexe: "npm:^3.1.1" + bin: + node-which: bin/which.js + checksum: 449fa5c44ed120ccecfe18c433296a4978a7583bf2391c50abce13f76878d2476defde04d0f79db8165bdf432853c1f8389d0485ca6e8ebce3bbcded513d5e6a + languageName: node + linkType: hard + +"widest-line@npm:^4.0.1": + version: 4.0.1 + resolution: "widest-line@npm:4.0.1" + dependencies: + string-width: "npm:^5.0.1" + checksum: 7da9525ba45eaf3e4ed1a20f3dcb9b85bd9443962450694dae950f4bdd752839747bbc14713522b0b93080007de8e8af677a61a8c2114aa553ad52bde72d0f9c + languageName: node + linkType: hard + +"word-wrap@npm:~1.2.3": + version: 1.2.3 + resolution: "word-wrap@npm:1.2.3" + checksum: 1cb6558996deb22c909330db1f01d672feee41d7f0664492912de3de282da3f28ba2d49e87b723024e99d56ba2dac2f3ab28f8db07ac199f5e5d5e2e437833de + languageName: node + linkType: hard + +"workbox-background-sync@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-background-sync@npm:6.6.1" + dependencies: + idb: "npm:^7.0.1" + workbox-core: "npm:6.6.1" + checksum: 2279725451f51d3fd740c5c549427e6ee6649ed081256aec24ac7f4f44f0cec7e9a2fe866d5ce237ac112ec2fc1e7351af6a1309544cad17e05d9772e5e274a4 + languageName: node + linkType: hard + +"workbox-broadcast-update@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-broadcast-update@npm:6.6.1" + dependencies: + workbox-core: "npm:6.6.1" + checksum: ce0949538f682a7f7169d082c803dd2bab0d9035a66f6103dce0b57531d7586bb1f40e7214b156cbaf0f1bce717221fc0456b688c1e2b71149e7216e41573a5d + languageName: node + linkType: hard + +"workbox-build@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-build@npm:6.6.1" + dependencies: + "@apideck/better-ajv-errors": "npm:^0.3.1" + "@babel/core": "npm:^7.11.1" + "@babel/preset-env": "npm:^7.11.0" + "@babel/runtime": "npm:^7.11.2" + "@rollup/plugin-babel": "npm:^5.2.0" + "@rollup/plugin-node-resolve": "npm:^11.2.1" + "@rollup/plugin-replace": "npm:^2.4.1" + "@surma/rollup-plugin-off-main-thread": "npm:^2.2.3" + ajv: "npm:^8.6.0" + common-tags: "npm:^1.8.0" + fast-json-stable-stringify: "npm:^2.1.0" + fs-extra: "npm:^9.0.1" + glob: "npm:^7.1.6" + lodash: "npm:^4.17.20" + pretty-bytes: "npm:^5.3.0" + rollup: "npm:^2.43.1" + rollup-plugin-terser: "npm:^7.0.0" + source-map: "npm:^0.8.0-beta.0" + stringify-object: "npm:^3.3.0" + strip-comments: "npm:^2.0.1" + tempy: "npm:^0.6.0" + upath: "npm:^1.2.0" + workbox-background-sync: "npm:6.6.1" + workbox-broadcast-update: "npm:6.6.1" + workbox-cacheable-response: "npm:6.6.1" + workbox-core: "npm:6.6.1" + workbox-expiration: "npm:6.6.1" + workbox-google-analytics: "npm:6.6.1" + workbox-navigation-preload: "npm:6.6.1" + workbox-precaching: "npm:6.6.1" + workbox-range-requests: "npm:6.6.1" + workbox-recipes: "npm:6.6.1" + workbox-routing: "npm:6.6.1" + workbox-strategies: "npm:6.6.1" + workbox-streams: "npm:6.6.1" + workbox-sw: "npm:6.6.1" + workbox-window: "npm:6.6.1" + checksum: c5f8483fbf4c4d0540a74e4849bb81700149e2cb33be48bd529436fea26547f8379203802f586e1b3311a30f99735fb47c449a1cd4e55cbfa07f3ba7ada34198 + languageName: node + linkType: hard + +"workbox-cacheable-response@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-cacheable-response@npm:6.6.1" + dependencies: + workbox-core: "npm:6.6.1" + checksum: a331dcd10f984f114351259d7b0a77bb10d18f8a6fa2884a3b1fcdc57edc74702b2f6604edad343230171edd82fd6fc3dc00eb9598eea00856ef611dfb678341 + languageName: node + linkType: hard + +"workbox-core@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-core@npm:6.6.1" + checksum: ee8a93cf5e7fa6524be754163d59052f4889b2254d790d595c298f819eeb744b8d3f320e61c7f1fe58c1219b2d0998d40ab4e89e66a92d1f1211d48e7f185f55 + languageName: node + linkType: hard + +"workbox-expiration@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-expiration@npm:6.6.1" + dependencies: + idb: "npm:^7.0.1" + workbox-core: "npm:6.6.1" + checksum: e0eef8b15f15de7e6ee382bc6e0ac9dff7d62b097e34f85218f932d09e0b1d16c4c2b46d39040a406ef26c7120cd22f2d0cad0375d862cd519260a8c124b3433 + languageName: node + linkType: hard + +"workbox-google-analytics@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-google-analytics@npm:6.6.1" + dependencies: + workbox-background-sync: "npm:6.6.1" + workbox-core: "npm:6.6.1" + workbox-routing: "npm:6.6.1" + workbox-strategies: "npm:6.6.1" + checksum: d3f8cbf66936ecb97c9c6ed2e2c53278b803dd42eb81976c6f111034bc204ee35aa5da3e7be0d3a3bd56770a5b05d02285b481f8dd70c7b211a00bb5e3e1fc1c + languageName: node + linkType: hard + +"workbox-navigation-preload@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-navigation-preload@npm:6.6.1" + dependencies: + workbox-core: "npm:6.6.1" + checksum: 2b8cf108a8595b4455d2d37021fbd23a2fd01c2aecf04d3e09830c0c6270377cae340721e24569e262eb89621014f1a6230bdb06aa76a44b1c9b282f7949aaff + languageName: node + linkType: hard + +"workbox-precaching@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-precaching@npm:6.6.1" + dependencies: + workbox-core: "npm:6.6.1" + workbox-routing: "npm:6.6.1" + workbox-strategies: "npm:6.6.1" + checksum: be88a00d438173ded417276bc78746068ea58599de1e492a1c2a20d595535ae86c0490a68d9179caa6d48381d8274b0099f149f04f8b2783ddb282d61f2939f1 + languageName: node + linkType: hard + +"workbox-range-requests@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-range-requests@npm:6.6.1" + dependencies: + workbox-core: "npm:6.6.1" + checksum: db3d7e29d417aa2d507374ca5cc4163ded8336d0d312748cdbd162b662f7efaaacffa0a9f6a2cc60f8e256173dd42c14e9402868af739725442e16d1933f2338 + languageName: node + linkType: hard + +"workbox-recipes@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-recipes@npm:6.6.1" + dependencies: + workbox-cacheable-response: "npm:6.6.1" + workbox-core: "npm:6.6.1" + workbox-expiration: "npm:6.6.1" + workbox-precaching: "npm:6.6.1" + workbox-routing: "npm:6.6.1" + workbox-strategies: "npm:6.6.1" + checksum: 290dbb0588cd11428db6da629d583ccb00f0571fe305c1ba018642a188c497fafba7e0c469daec95a120430d1b5a8ac5cbf793e3b3dc91bc8172c51cdd182e44 + languageName: node + linkType: hard + +"workbox-routing@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-routing@npm:6.6.1" + dependencies: + workbox-core: "npm:6.6.1" + checksum: 1585d03270c4b510147f46f096d4866503a2018e2364f1dc73a60317bc892d4b2e8a9057796bd9e6823f9e480cadb993fceb1f63827af8ebae3fb2abadb1cb40 + languageName: node + linkType: hard + +"workbox-strategies@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-strategies@npm:6.6.1" + dependencies: + workbox-core: "npm:6.6.1" + checksum: afbea346e675d9f960793a79f50469e4728fef6a3c099be194462df37261fd4c94b865644845a08c4e5ebaaf06e6d401e97923f5122ab0b365dfac1be444a332 + languageName: node + linkType: hard + +"workbox-streams@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-streams@npm:6.6.1" + dependencies: + workbox-core: "npm:6.6.1" + workbox-routing: "npm:6.6.1" + checksum: 0119da07f96f57d235578ca3055f02d9e8a4aafc419995d9be0b320c3c5655878a52fb88ccdd4d70560cf126a8b5c6deee8ed164c16f205cf29d9e6998ae2bdc + languageName: node + linkType: hard + +"workbox-sw@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-sw@npm:6.6.1" + checksum: 05b6b1eb2ceb9e0103d7abe32fb5973e2ba727cfdcbcb5a4e13d4b8fb0c49635b4c8412da71880777dc623e3e26b486ee6ece18998c67431373c4c5bdb2b4d29 + languageName: node + linkType: hard + +"workbox-webpack-plugin@npm:^6.4.1": + version: 6.6.1 + resolution: "workbox-webpack-plugin@npm:6.6.1" + dependencies: + fast-json-stable-stringify: "npm:^2.1.0" + pretty-bytes: "npm:^5.4.1" + upath: "npm:^1.2.0" + webpack-sources: "npm:^1.4.3" + workbox-build: "npm:6.6.1" + peerDependencies: + webpack: ^4.4.0 || ^5.9.0 + checksum: 44b3ac19e91a16314e4529735d4fbb4dcd73de14b037747f27de6d96b730a4388022669216875d4807b98a1656804bebe59999801cb439795cb8b3333e4b0eac + languageName: node + linkType: hard + +"workbox-window@npm:6.6.1": + version: 6.6.1 + resolution: "workbox-window@npm:6.6.1" + dependencies: + "@types/trusted-types": "npm:^2.0.2" + workbox-core: "npm:6.6.1" + checksum: 256affc02977be091de4ae8a9839addcc6fca2e0706385b2fea61825725e457a2a1d63698d82310751bf49d31353caf4f87e7042be772462584e6e517dc37d0a + languageName: node + linkType: hard + +"world-calendars@npm:^1.0.3": + version: 1.0.3 + resolution: "world-calendars@npm:1.0.3" + dependencies: + object-assign: "npm:^4.1.0" + checksum: 4cbdb59bcba76ecc1dc0707863bd2ee246ad269cf30fd865a6b4d278d520be75d6332cd0aa9b5b314a94e413a77dfb065372d2b85413dcf02726ecee2505ad2e + languageName: node + linkType: hard + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: "npm:^4.0.0" + string-width: "npm:^4.1.0" + strip-ansi: "npm:^6.0.0" + checksum: d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da + languageName: node + linkType: hard + +"wrap-ansi@npm:^6.2.0": + version: 6.2.0 + resolution: "wrap-ansi@npm:6.2.0" + dependencies: + ansi-styles: "npm:^4.0.0" + string-width: "npm:^4.1.0" + strip-ansi: "npm:^6.0.0" + checksum: baad244e6e33335ea24e86e51868fe6823626e3a3c88d9a6674642afff1d34d9a154c917e74af8d845fd25d170c4ea9cf69a47133c3f3656e1252b3d462d9f6c + languageName: node + linkType: hard + +"wrap-ansi@npm:^8.0.1, wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" + dependencies: + ansi-styles: "npm:^6.1.0" + string-width: "npm:^5.0.1" + strip-ansi: "npm:^7.0.1" + checksum: 138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 + languageName: node + linkType: hard + +"wrappy@npm:1": + version: 1.0.2 + resolution: "wrappy@npm:1.0.2" + checksum: 56fece1a4018c6a6c8e28fbc88c87e0fbf4ea8fd64fc6c63b18f4acc4bd13e0ad2515189786dd2c30d3eec9663d70f4ecf699330002f8ccb547e4a18231fc9f0 + languageName: node + linkType: hard + +"write-file-atomic@npm:^3.0.0": + version: 3.0.3 + resolution: "write-file-atomic@npm:3.0.3" + dependencies: + imurmurhash: "npm:^0.1.4" + is-typedarray: "npm:^1.0.0" + signal-exit: "npm:^3.0.2" + typedarray-to-buffer: "npm:^3.1.5" + checksum: 7fb67affd811c7a1221bed0c905c26e28f0041e138fb19ccf02db57a0ef93ea69220959af3906b920f9b0411d1914474cdd90b93a96e5cd9e8368d9777caac0e + languageName: node + linkType: hard + +"ws@npm:^7.4.6": + version: 7.5.9 + resolution: "ws@npm:7.5.9" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: aec4ef4eb65821a7dde7b44790f8699cfafb7978c9b080f6d7a98a7f8fc0ce674c027073a78574c94786ba7112cc90fa2cc94fc224ceba4d4b1030cff9662494 + languageName: node + linkType: hard + +"ws@npm:^8.13.0": + version: 8.13.0 + resolution: "ws@npm:8.13.0" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 579817dbbab3ee46669129c220cfd81ba6cdb9ab5c3e9a105702dd045743c4ab72e33bb384573827c0c481213417cc880e41bc097e0fc541a0b79fa3eb38207d + languageName: node + linkType: hard + +"xml-name-validator@npm:^3.0.0": + version: 3.0.0 + resolution: "xml-name-validator@npm:3.0.0" + checksum: da310f6a7a52f8eb0fce3d04ffa1f97387ca68f47e8620ae3a259909c4e832f7003313b918e53840a6bf57fb38d5ae3c5f79f31f911b2818a7439f7898f8fbf1 + languageName: node + linkType: hard + +"xmlchars@npm:^2.2.0": + version: 2.2.0 + resolution: "xmlchars@npm:2.2.0" + checksum: b64b535861a6f310c5d9bfa10834cf49127c71922c297da9d4d1b45eeaae40bf9b4363275876088fbe2667e5db028d2cd4f8ee72eed9bede840a67d57dab7593 + languageName: node + linkType: hard + +"xtend@npm:>=4.0.0 <4.1.0-0, xtend@npm:^4.0.0, xtend@npm:^4.0.2, xtend@npm:~4.0.1": + version: 4.0.2 + resolution: "xtend@npm:4.0.2" + checksum: 366ae4783eec6100f8a02dff02ac907bf29f9a00b82ac0264b4d8b832ead18306797e283cf19de776538babfdcb2101375ec5646b59f08c52128ac4ab812ed0e + languageName: node + linkType: hard + +"xtend@npm:^2.1.2": + version: 2.2.0 + resolution: "xtend@npm:2.2.0" + checksum: 396c724b8ea54c7346d7ca304116dc9aa0327b4cee4782c0a42707e6022d9a6b1c1d61b056357b1ee24102d6a366a90a313cc38e79bf70452d4d205b64a1575f + languageName: node + linkType: hard + +"y18n@npm:^4.0.0": + version: 4.0.3 + resolution: "y18n@npm:4.0.3" + checksum: 308a2efd7cc296ab2c0f3b9284fd4827be01cfeb647b3ba18230e3a416eb1bc887ac050de9f8c4fd9e7856b2e8246e05d190b53c96c5ad8d8cb56dffb6f81024 + languageName: node + linkType: hard + +"y18n@npm:^5.0.5": + version: 5.0.8 + resolution: "y18n@npm:5.0.8" + checksum: 4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249 + languageName: node + linkType: hard + +"yallist@npm:^3.0.2": + version: 3.1.1 + resolution: "yallist@npm:3.1.1" + checksum: c66a5c46bc89af1625476f7f0f2ec3653c1a1791d2f9407cfb4c2ba812a1e1c9941416d71ba9719876530e3340a99925f697142989371b72d93b9ee628afd8c1 + languageName: node + linkType: hard + +"yallist@npm:^4.0.0": + version: 4.0.0 + resolution: "yallist@npm:4.0.0" + checksum: 2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a + languageName: node + linkType: hard + +"yaml@npm:^1.10.0, yaml@npm:^1.10.2, yaml@npm:^1.7.2": + version: 1.10.2 + resolution: "yaml@npm:1.10.2" + checksum: 5c28b9eb7adc46544f28d9a8d20c5b3cb1215a886609a2fd41f51628d8aaa5878ccd628b755dbcd29f6bb4921bd04ffbc6dcc370689bb96e594e2f9813d2605f + languageName: node + linkType: hard + +"yaml@npm:^2.1.1": + version: 2.3.1 + resolution: "yaml@npm:2.3.1" + checksum: ed4c21a907fb1cd60a25177612fa46d95064a144623d269199817908475fe85bef20fb17406e3bdc175351b6488056a6f84beb7836e8c262646546a0220188e3 + languageName: node + linkType: hard + +"yargs-parser@npm:^18.1.2": + version: 18.1.3 + resolution: "yargs-parser@npm:18.1.3" + dependencies: + camelcase: "npm:^5.0.0" + decamelize: "npm:^1.2.0" + checksum: 25df918833592a83f52e7e4f91ba7d7bfaa2b891ebf7fe901923c2ee797534f23a176913ff6ff7ebbc1cc1725a044cc6a6539fed8bfd4e13b5b16376875f9499 + languageName: node + linkType: hard + +"yargs-parser@npm:^20.2.2": + version: 20.2.9 + resolution: "yargs-parser@npm:20.2.9" + checksum: 0685a8e58bbfb57fab6aefe03c6da904a59769bd803a722bb098bd5b0f29d274a1357762c7258fb487512811b8063fb5d2824a3415a0a4540598335b3b086c72 + languageName: node + linkType: hard + +"yargs@npm:^15.3.1": + version: 15.4.1 + resolution: "yargs@npm:15.4.1" + dependencies: + cliui: "npm:^6.0.0" + decamelize: "npm:^1.2.0" + find-up: "npm:^4.1.0" + get-caller-file: "npm:^2.0.1" + require-directory: "npm:^2.1.1" + require-main-filename: "npm:^2.0.0" + set-blocking: "npm:^2.0.0" + string-width: "npm:^4.2.0" + which-module: "npm:^2.0.0" + y18n: "npm:^4.0.0" + yargs-parser: "npm:^18.1.2" + checksum: f1ca680c974333a5822732825cca7e95306c5a1e7750eb7b973ce6dc4f97a6b0a8837203c8b194f461969bfe1fb1176d1d423036635285f6010b392fa498ab2d + languageName: node + linkType: hard + +"yargs@npm:^16.2.0": + version: 16.2.0 + resolution: "yargs@npm:16.2.0" + dependencies: + cliui: "npm:^7.0.2" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.0" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^20.2.2" + checksum: b1dbfefa679848442454b60053a6c95d62f2d2e21dd28def92b647587f415969173c6e99a0f3bab4f1b67ee8283bf735ebe3544013f09491186ba9e8a9a2b651 + languageName: node + linkType: hard + +"yocto-queue@npm:^0.1.0": + version: 0.1.0 + resolution: "yocto-queue@npm:0.1.0" + checksum: dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f + languageName: node + linkType: hard + +"zwitch@npm:^1.0.0": + version: 1.0.5 + resolution: "zwitch@npm:1.0.5" + checksum: 26dc7d32e5596824b565db1da9650d00d32659c1211195bef50c25c60820f9c942aa7abefe678fc1ed0b97c1755036ac1bde5f97881d7d0e73e04e02aca56957 + languageName: node + linkType: hard + +"zwitch@npm:^2.0.0": + version: 2.0.4 + resolution: "zwitch@npm:2.0.4" + checksum: 3c7830cdd3378667e058ffdb4cf2bb78ac5711214e2725900873accb23f3dfe5f9e7e5a06dcdc5f29605da976fc45c26d9a13ca334d6eea2245a15e77b8fc06e + languageName: node + linkType: hard diff --git a/install-pr3.sh b/install-pr3.sh deleted file mode 100644 index 1d2f166..0000000 --- a/install-pr3.sh +++ /dev/null @@ -1,20 +0,0 @@ -echo "Snapshotting filesystem" - -echo "Updating source" -git pull origin master - -echo "Building frontend" -cd frontend && yarn build - -echo "Installing frontend" -cp -fr build/* /zroot/iocage/jails/www/root/usr/local/www/nginx-dist/ -cd .. - -echo "Installing backend" -cd backend && cp -fr app /zroot/iocage/jails/backend/root/ -cd .. -iocage restart backend - -echo "Updating DB" -POSTGRES_SERVER=192.168.5.3 POSTGRES_USER=postgres POSTGRES_PASSWD='' POSTGRES_DB=phosphines alembic upgrade head -psql -U postgres -h 192.168.5.3 -d phosphines -c 'REINDEX index molecule_search_mol' ; diff --git a/move_std.sql b/move_std.sql deleted file mode 100644 index cdaa0ad..0000000 --- a/move_std.sql +++ /dev/null @@ -1,34 +0,0 @@ -ALTER TABLE xtb_data -ADD COLUMN std DOUBLE PRECISION; - -UPDATE xtb_data -SET std = x.boltzmann_average -FROM ( - SELECT - SUBSTRING(property FROM 1 FOR POSITION('_std' IN property) - 1) AS property_name, - boltzmann_average - FROM xtb_data - WHERE property LIKE '%_std%' -) AS x -WHERE xtb_data.property = x.property_name; - -DELETE FROM xtb_data -WHERE property LIKE '%_std%'; - ---------------------------------------------- -ALTER TABLE xtb_ni_data -ADD COLUMN std DOUBLE PRECISION; - -UPDATE xtb_ni_data -SET std = x.boltzmann_average -FROM ( - SELECT - SUBSTRING(property FROM 1 FOR POSITION('_std' IN property) - 1) AS property_name, - boltzmann_average - FROM xtb_ni_data - WHERE property LIKE '%_std%' -) AS x -WHERE xtb_ni_data.property = x.property_name; - -DELETE FROM xtb_ni_data -WHERE property LIKE '%_std%'; diff --git a/nginx.conf b/nginx.conf deleted file mode 100644 index 907fb31..0000000 --- a/nginx.conf +++ /dev/null @@ -1,17 +0,0 @@ -server { - listen 80; - location / { - root /usr/share/nginx/html; - index index.html index.htm; - try_files $uri /index.html; - } - location /api { - proxy_pass http://backend/api; - } - location /docs { - proxy_pass http://backend/docs; - } - location /depict { - proxy_pass http://cdk-depict:8080/depict; - } -} diff --git a/nginx.dockerfile b/nginx.dockerfile deleted file mode 100644 index 89c8e09..0000000 --- a/nginx.dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM node:16 as react-build -WORKDIR /app -COPY frontend/ . -#RUN yarn -#RUN yarn build - -#FROM nginx:alpine -#COPY nginx.conf /etc/nginx/conf.d/default.conf -#COPY --from=react-build /app/build /usr/share/nginx/html -#EXPOSE 80 -#CMD ["nginx", "-g", "daemon off;"] - diff --git a/scripts/fix_dft_data.py b/scripts/fix_dft_data.py deleted file mode 100644 index 39bc184..0000000 --- a/scripts/fix_dft_data.py +++ /dev/null @@ -1,30 +0,0 @@ -from glob import glob -import os -import yaml -from tqdm import tqdm - - -def main(smiles_filename, data_folder): - data_files = glob(os.path.join(data_folder, '*.yml')) - data_files.sort() - - raw_smiles_data = open(smiles_filename, 'r').read().split('\n')[:-1] - smiles_data = {} - for line in raw_smiles_data: - num, smiles = line.split(' ') - smiles_data[num] = smiles - - for filename in tqdm(data_files): - if not '_' in os.path.basename(filename): - continue - num = os.path.basename(filename).split('_')[0] - data = yaml.load(open(filename, 'r'), Loader=yaml.CLoader) - smiles = smiles_data[num] - data['smiles'] = smiles - with open(filename, 'w') as f: - yaml.dump(data, f, Dumper=yaml.CDumper) - - -if __name__ == '__main__': - main('/Users/tga/Downloads/dft_data_210125.smi', - './xtb/results_all_noNi/') diff --git a/scripts/fix_xtb_data.py b/scripts/fix_xtb_data.py deleted file mode 100644 index a86c9bc..0000000 --- a/scripts/fix_xtb_data.py +++ /dev/null @@ -1,39 +0,0 @@ -from glob import glob -import os -import yaml -from tqdm import tqdm - - -def main(data_folder): - data_files = glob(os.path.join(data_folder, '*.yml')) - data_files.sort() - - smiles = None - import ipdb; ipdb.set_trace() - for filename in tqdm(data_files): - if not '_' in os.path.basename(filename): - new_data = {} - data = yaml.load(open(filename, 'r'), Loader=yaml.CLoader) - for section_name, section in data.items(): - if isinstance(section, str) or isinstance(section, int) or isinstance(section, float): - new_data[section_name] = section - continue - new_data[section_name] = {} - if not isinstance(section, dict): - continue - for name, value in section.items(): - if isinstance(value, list): - continue - new_data[section_name][name] = value - smiles = data['smiles'] - with open(filename, 'w') as f: - yaml.dump(new_data, f, Dumper=yaml.CDumper) - continue - data = yaml.load(open(filename, 'r'), Loader=yaml.CLoader) - data['smiles'] = smiles - with open(filename, 'w') as f: - yaml.dump(data, f, Dumper=yaml.CDumper) - - -if __name__ == '__main__': - main('./xtb/results_all_noNi/') diff --git a/scripts/generate_pca_js.py b/scripts/generate_pca_js.py deleted file mode 100644 index 6f13159..0000000 --- a/scripts/generate_pca_js.py +++ /dev/null @@ -1,44 +0,0 @@ -import sys -from tqdm import tqdm -from rdkit import Chem - -sys.path.append('../backend/app') -from app.db.session import SessionLocal, models - - -def get_molecule_id(smiles, session): - # mol = Chem.MolFromSmiles(smiles) - # canonical_smiles = Chem.MolToSmiles(mol, canon=True) - out = ( - session.query(models.molecule) - .filter(models.molecule.smiles == smiles) - .one() - ) - return out.molecule_id - -def main(pca_file): - import ipdb; ipdb.set_trace() - data = open(pca_file, 'r').read().split('\n')[1:-1] - dst = open('plot_data.js', 'w') - - session = SessionLocal() - - custom_data = [] - x_list = [] - y_list = [] - for line in tqdm(data): - _, smiles, x, y = line.split(',') - molecule_id = get_molecule_id(smiles, session) - x_list.append(float(x)) - y_list.append(float(y)) - custom_data.append(f'{{ molecule_id: {molecule_id}, smiles: \"{smiles}\" }}') - - dst.write(f"x: {x_list},\n") - dst.write(f"y: {y_list},\n") - dst.write(f"customdata: [{', '.join(custom_data)}]\n") - dst.close() - - -if __name__ == "__main__": - main("/Users/tga/Downloads/PL_PC_210126.csv") - diff --git a/scripts/populate_db.py b/scripts/populate_db.py deleted file mode 100644 index faaf279..0000000 --- a/scripts/populate_db.py +++ /dev/null @@ -1,181 +0,0 @@ -import os -import sys -from argparse import ArgumentParser -from glob import glob - -import yaml -from tqdm import tqdm - -sys.path.append("../backend/app") -from app.db.session import SessionLocal, models - -parser = ArgumentParser() -parser.add_argument("--xtb", action="store_true", default=False) -parser.add_argument("--xtb-ni", action="store_true", default=False) -parser.add_argument("--ml", action="store_true", default=False) -parser.add_argument("--dft", action="store_true", default=False) - -parser.add_argument("--data-folder", type=str) - - -def extract_conformer_data(filename): - data = yaml.load(open(filename, "r"), Loader=yaml.CLoader) - data_to_store = [] - for key, conformer_data in data.items(): - if key == "smiles": - continue - conformer_data_to_store = {} - # naming is different in xtb file. - if "coords" in conformer_data.keys(): - conformer_data_to_store["coords"] = conformer_data["coords"] - else: - conformer_data_to_store["coords"] = conformer_data["coords_extended"] - if "elements" in conformer_data.keys(): - conformer_data_to_store["elements"] = conformer_data["elements"] - else: - conformer_data_to_store["elements"] = conformer_data["sterimol_parameters"][ - "elements_extended" - ] - data_to_store.append(conformer_data_to_store) - return data_to_store, data["smiles"] - - -def extract_molecule_data(filename, field): - data = yaml.load(open(filename, "r"), Loader=yaml.CLoader) - data_to_store = {field: {}} - keys = [ - "boltzmann_averaged_data", - "max_data", - "min_data", - "delta_data", - "vburminconf_data", - ] - - for key in keys: - if key in data.keys(): - data_to_store[field][key] = data[key] - - if "smi" in data.keys(): - data_to_store["smiles"] = data["smiv"] - elif "smiles" in data.keys(): - data_to_store["smiles"] = data["smiles"] - return data_to_store - - -def populate_ml_data(path, session): - data = open(path, "r").read().split("\n")[:-1] - headers = data[0].split(";")[1:] - for line in tqdm(data[1:]): - max_data = {} - min_data = {} - delta_data = {} - boltz_data = {} - vburminconf_data = {} - out = line.split(";") - smiles = out[0] - for name, value in zip(headers, out[1:]): - name = "".join(name) - if name.endswith("_boltz"): - name = name[: -len("_boltz")] - boltz_data[name] = value - elif name.endswith("_delta"): - name = name[: -len("_delta")] - delta_data[name] = value - elif name.endswith("_min"): - name = name[: -len("_min")] - min_data[name] = value - elif name.endswith("_max"): - name = name[: -len("_max")] - max_data[name] = value - elif name.endswith("_vburminconf"): - name = name[: -len("_vburminconf")] - vburminconf_data[name] = value - else: - raise ValueError("Something is wrong!") - ml_data = {} - ml_data["smiles"] = smiles - ml_data["ml_data"] = {} - ml_data["ml_data"]["max_data"] = max_data - ml_data["ml_data"]["min_data"] = min_data - ml_data["ml_data"]["vburminconf_data"] = vburminconf_data - ml_data["ml_data"]["delta_data"] = delta_data - ml_data["ml_data"]["boltzmann_averaged_data"] = boltz_data - - molecule = ( - session.query(models.molecule) - .filter(models.molecule.smiles == smiles) - .one_or_none() - ) - if molecule is None: - molecule = models.molecule(**ml_data) - session.add(molecule) - session.commit() - continue - setattr(molecule, "ml_data", ml_data["ml_data"]) - session.commit() - - -def main(args): - field = "" - if args.dft: - field = "dft_data" - elif args.xtb: - field = "xtb_data" - elif args.ml: - field = "ml_data" - elif args.xtb_ni: - field = "xtb_ni_data" - else: - raise ValueError("Datatype not set! Please set one of --dft/--ml/--xtb!") - - session = SessionLocal() - if field == "ml_data": - populate_ml_data(args.data_folder, session) - return - - data_files = glob(os.path.join(args.data_folder, "*.yml")) - # DFT naming convention is different - data_files.sort(reverse=True if args.dft else False) - - for i, filename in enumerate(tqdm(data_files)): - if filename.endswith("_combined.yml"): - continue - - elif filename.endswith("_confdata.yml") or filename.endswith("_confs.yml"): - if args.xtb or args.xtb_ni: - continue - data, smiles = extract_conformer_data(filename) - molecule = ( - session.query(models.molecule) - .filter(models.molecule.smiles == smiles) - .one_or_none() - ) - if molecule is None: - raise ValueError("Could not add conformer: molecule not found") - for confo in data: - confo["molecule_id"] = molecule.molecule_id - session.add(models.conformer(**confo)) - session.commit() - - else: - data = extract_molecule_data(filename, field) - molecule = ( - session.query(models.molecule) - .filter(models.molecule.smiles == data["smiles"]) - .one_or_none() - ) - if molecule is None: - molecule = models.molecule(**data) - session.add(molecule) - session.commit() - continue - setattr(molecule, field, data[field]) - session.add(molecule) - session.commit() - - -if __name__ == "__main__": - args = parser.parse_args() - if (args.dft and args.ml) or (args.dft and args.xtb) or (args.xtb and args.ml) or (args.xtb_ni and args.ml): - raise ValueError("only one of --dft/--xtb/--ml can be set at the same time!") - main(args) diff --git a/tests/db/test_db_small.sql b/tests/db/test_db_small.sql deleted file mode 100644 index b5a52aa..0000000 --- a/tests/db/test_db_small.sql +++ /dev/null @@ -1,694 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 12.3 (Debian 12.3-1.pgdg100+1) --- Dumped by pg_dump version 12.14 (Ubuntu 12.14-0ubuntu0.20.04.1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- Name: cube; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS cube WITH SCHEMA public; - - --- --- Name: EXTENSION cube; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION cube IS 'data type for multidimensional cubes'; - - --- --- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public; - - --- --- Name: EXTENSION pg_trgm; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION pg_trgm IS 'text similarity measurement and index searching based on trigrams'; - - --- --- Name: rdkit; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS rdkit WITH SCHEMA public; - - --- --- Name: EXTENSION rdkit; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION rdkit IS 'Cheminformatics functionality for PostgreSQL.'; - - --- --- Name: rdk_add_mol(); Type: FUNCTION; Schema: public; Owner: postgres --- - -CREATE FUNCTION public.rdk_add_mol() RETURNS trigger - LANGUAGE plpgsql - AS $$ - declare - begin - if NEW.smiles is null then - raise exception 'smiles can not be null'; - end if; - if NEW.mol is null then - NEW.mol = (select mol_from_smiles(NEW.smiles::cstring)); - end if; - if NEW.molecular_weight is null then - NEW.molecular_weight = (select mol_amw(NEW.mol)); - end if; - return NEW; - end; - $$; - - -ALTER FUNCTION public.rdk_add_mol() OWNER TO postgres; - -SET default_tablespace = ''; - -SET default_table_access_method = heap; - --- --- Name: alembic_version; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.alembic_version ( - version_num character varying(32) NOT NULL -); - - -ALTER TABLE public.alembic_version OWNER TO postgres; - --- --- Name: cmda_exec; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.cmda_exec ( - cmda_output text -); - - -ALTER TABLE public.cmda_exec OWNER TO postgres; - --- --- Name: conformer; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.conformer ( - conformer_id integer NOT NULL, - molecule_id integer, - coords double precision[] NOT NULL, - elements character varying[] NOT NULL, - data jsonb -); - - -ALTER TABLE public.conformer OWNER TO postgres; - --- --- Name: conformer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.conformer_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.conformer_id_seq OWNER TO postgres; - --- --- Name: conformer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.conformer_id_seq OWNED BY public.conformer.conformer_id; - - --- --- Name: molecule; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.molecule ( - molecule_id integer NOT NULL, - smiles text NOT NULL, - molecular_weight double precision, - dft_data jsonb, - xtb_data jsonb, - ml_data jsonb, - mol public.mol, - xtb_ni_data jsonb, - fingerprint public.bfp, - morganbv public.bfp, - pat character varying, - pca public.cube, - umap public.cube -); - - -ALTER TABLE public.molecule OWNER TO postgres; - --- --- Name: molecule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.molecule_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.molecule_id_seq OWNER TO postgres; - --- --- Name: molecule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.molecule_id_seq OWNED BY public.molecule.molecule_id; - - --- --- Name: t_e; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.t_e ( - docs text -); - - -ALTER TABLE public.t_e OWNER TO postgres; - --- --- Name: conformer conformer_id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.conformer ALTER COLUMN conformer_id SET DEFAULT nextval('public.conformer_id_seq'::regclass); - - --- --- Name: molecule molecule_id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.molecule ALTER COLUMN molecule_id SET DEFAULT nextval('public.molecule_id_seq'::regclass); - - --- --- Name: 1268888; Type: BLOB; Schema: -; Owner: postgres --- - -SELECT pg_catalog.lo_create('1268888'); - - -ALTER LARGE OBJECT 1268888 OWNER TO postgres; - --- --- Name: 2601034; Type: BLOB; Schema: -; Owner: postgres --- - -SELECT pg_catalog.lo_create('2601034'); - - -ALTER LARGE OBJECT 2601034 OWNER TO postgres; - --- --- Name: 5912902; Type: BLOB; Schema: -; Owner: postgres --- - -SELECT pg_catalog.lo_create('5912902'); - - -ALTER LARGE OBJECT 5912902 OWNER TO postgres; - --- --- Name: 7115235; Type: BLOB; Schema: -; Owner: postgres --- - -SELECT pg_catalog.lo_create('7115235'); - - -ALTER LARGE OBJECT 7115235 OWNER TO postgres; - --- --- Name: 7608663; Type: BLOB; Schema: -; Owner: postgres --- - -SELECT pg_catalog.lo_create('7608663'); - - -ALTER LARGE OBJECT 7608663 OWNER TO postgres; - --- --- Name: 8146173; Type: BLOB; Schema: -; Owner: postgres --- - -SELECT pg_catalog.lo_create('8146173'); - - -ALTER LARGE OBJECT 8146173 OWNER TO postgres; - --- --- Name: 8337475; Type: BLOB; Schema: -; Owner: postgres --- - -SELECT pg_catalog.lo_create('8337475'); - - -ALTER LARGE OBJECT 8337475 OWNER TO postgres; - --- --- Data for Name: alembic_version; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.alembic_version (version_num) FROM stdin; -97fe717d2f34 -\. - - --- --- Data for Name: cmda_exec; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.cmda_exec (cmda_output) FROM stdin; -\. - - --- --- Data for Name: conformer; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.conformer (conformer_id, molecule_id, coords, elements, data) FROM stdin; -31646 1 {{-4.430332,-0.39481,-3.468906},{-4.914983,-0.121922,-2.031326},{-6.055908,-1.08218,-1.642317},{-3.765565,-0.179848,-1.034941},{-3.044337,-1.367333,-0.82188},{-1.977027,-1.437041,0.085645},{-1.251664,-2.761174,0.303462},{-2.082036,-3.685867,1.216811},{-0.881245,-3.462127,-1.015114},{-1.616593,-0.272314,0.815821},{-0.515685,-0.341548,1.833934},{-0.859096,-0.492614,3.192827},{0.12279,-0.564807,4.189915},{1.475947,-0.48608,3.831734},{1.831221,-0.346383,2.482485},{0.856471,-0.27524,1.464691},{1.261883,-0.142357,-0.35125},{1.493648,1.739136,-0.458923},{1.37634,2.236278,-1.915071},{1.419759,3.773086,-1.990312},{2.66628,4.340303,-1.292943},{2.753836,3.854157,0.162241},{2.735213,2.316567,0.239246},{3.007455,-0.85517,-0.395923},{2.937586,-2.358499,-0.048719},{4.316198,-3.032304,-0.145213},{4.939858,-2.832242,-1.534925},{5.013193,-1.340551,-1.894226},{3.635457,-0.662189,-1.792132},{-2.328115,0.938188,0.617474},{-1.984555,2.205219,1.397505},{-2.965527,2.414809,2.569759},{-1.944379,3.462624,0.508618},{-3.38917,0.957554,-0.307089},{-3.630584,0.30632,-3.758673},{-4.027938,-1.418434,-3.561783},{-5.261174,-0.292721,-4.188191},{-5.317412,0.908824,-2.001413},{-6.904468,-0.984536,-2.341145},{-5.716422,-2.132073,-1.671616},{-6.419887,-0.875742,-0.622414},{-3.320827,-2.266777,-1.382514},{-0.308063,-2.541092,0.83088},{-3.051058,-3.931255,0.747959},{-2.288377,-3.203308,2.186645},{-1.544404,-4.630661,1.408767},{-0.255413,-4.34805,-0.811612},{-1.774068,-3.810869,-1.562327},{-0.317438,-2.779682,-1.671817},{-1.918388,-0.565765,3.459452},{-0.167811,-0.687022,5.237872},{2.256047,-0.538242,4.597873},{2.893054,-0.299756,2.22255},{0.60211,2.11124,0.083721},{0.44306,1.851347,-2.363168},{2.206013,1.824136,-2.520264},{1.383158,4.099733,-3.045252},{0.516094,4.186195,-1.500869},{2.659042,5.444434,-1.331075},{3.572126,4.010533,-1.839903},{3.665627,4.246437,0.648252},{1.892659,4.254995,0.732678},{3.650518,1.926074,-0.246194},{2.764985,1.988317,1.293126},{3.662052,-0.349114,0.341466},{2.514353,-2.500778,0.960749},{2.239162,-2.851747,-0.753206},{4.225303,-4.108691,0.087357},{4.988089,-2.599099,0.622281},{4.319387,-3.356579,-2.288455},{5.94475,-3.289244,-1.578755},{5.716677,-0.834684,-1.203406},{5.421335,-1.207001,-2.912352},{2.95489,-1.088059,-2.555739},{3.734942,0.411846,-2.025172},{-0.977161,2.066353,1.830077},{-2.954923,1.557447,3.261118},{-2.702462,3.321413,3.141906},{-3.996792,2.533004,2.193885},{-1.313986,3.30868,-0.381941},{-1.53963,4.318418,1.075308},{-2.951673,3.747481,0.159864},{-3.943526,1.889056,-0.46901}} {C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31647 1 {{5.105637,0.171717,2.792114},{4.398414,-0.764291,1.792373},{4.014168,-2.097634,2.462737},{3.194632,-0.088339,1.150787},{3.155887,0.146601,-0.231758},{2.064223,0.776879,-0.855403},{2.115052,1.083157,-2.351879},{2.859103,2.412447,-2.603336},{2.750979,-0.039408,-3.191848},{0.955758,1.17155,-0.060177},{-0.162218,1.956541,-0.685388},{0.011101,3.359896,-0.680098},{-0.9283,4.233646,-1.239712},{-2.073642,3.704232,-1.848007},{-2.25298,2.316253,-1.876868},{-1.332284,1.412952,-1.287582},{-1.964901,-0.340718,-1.432238},{-0.490286,-1.53513,-1.451952},{-0.821646,-2.656892,-2.466787},{0.356835,-3.62513,-2.663155},{0.83568,-4.212451,-1.327241},{1.178075,-3.094334,-0.332511},{-0.009575,-2.138568,-0.119825},{-2.755851,-0.609474,0.265908},{-3.686529,0.554758,0.655091},{-4.390459,0.289801,1.997475},{-5.161896,-1.038807,1.985565},{-4.243311,-2.203282,1.585329},{-3.555113,-1.930128,0.236929},{0.974268,0.947773,1.34239},{-0.178204,1.405233,2.233054},{0.1408,2.767875,2.882766},{-0.551814,0.376627,3.316141},{2.094037,0.32414,1.919089},{4.442124,0.418809,3.638979},{6.010375,-0.307871,3.203363},{5.4022,1.118116,2.310849},{5.113725,-0.990396,0.978587},{3.303454,-1.933121,3.291213},{3.537413,-2.782058,1.742575},{4.906128,-2.596375,2.879048},{4.011449,-0.169498,-0.838849},{1.07458,1.215941,-2.699191},{2.372121,3.251158,-2.082223},{2.881759,2.645707,-3.68183},{3.900569,2.343768,-2.243579},{2.290189,-1.019209,-2.986009},{2.626432,0.178096,-4.265761},{3.834219,-0.129668,-3.001501},{0.917523,3.762839,-0.216035},{-0.757663,5.314212,-1.209886},{-2.817348,4.362144,-2.308007},{-3.136789,1.898381,-2.371598},{0.339398,-0.938137,-1.871246},{-1.121147,-2.211706,-3.431838},{-1.702648,-3.224137,-2.105312},{0.068344,-4.43118,-3.361939},{1.195912,-3.081402,-3.140819},{1.708358,-4.871615,-1.485475},{0.0326,-4.846366,-0.900922},{1.486929,-3.520972,0.639211},{2.041276,-2.512886,-0.708779},{-0.834221,-2.705698,0.352046},{0.278233,-1.342403,0.582428},{-1.958553,-0.689927,1.02794},{-3.122201,1.501364,0.705683},{-4.447406,0.690894,-0.139451},{-5.068682,1.129073,2.235813},{-3.630338,0.259428,2.802365},{-5.994302,-0.968957,1.257717},{-5.619503,-1.228062,2.973226},{-3.470022,-2.344355,2.366357},{-4.815042,-3.147382,1.532016},{-4.319529,-1.861163,-0.561839},{-2.902981,-2.779219,-0.032376},{-1.059515,1.546476,1.583485},{0.328661,3.540845,2.121165},{-0.700596,3.104298,3.512959},{1.038987,2.691474,3.520141},{-0.723142,-0.625014,2.888511},{-1.473326,0.690799,3.834257},{0.236855,0.284877,4.082439},{2.105406,0.15157,3.000326}} {C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31618 2 {{0.527355,-1.668199,2.733145},{0.378328,-0.321765,2.167452},{1.124854,0.653607,2.954468},{-0.964484,0.036865,1.835698},{-1.656364,1.007232,2.593428},{-2.98241,1.321313,2.284781},{-3.643893,0.663248,1.245219},{-2.97882,-0.313474,0.466118},{-3.705182,-1.044219,-0.509903},{-5.156766,-1.03344,-0.399512},{-3.281761,-1.029684,-1.910625},{-1.599817,-0.595051,0.730911},{-0.894195,-1.627338,-0.092916},{-1.404686,-2.942708,0.033311},{-0.902819,-4.015671,-0.708238},{0.121964,-3.781264,-1.636723},{0.619429,-2.483739,-1.791456},{0.161419,-1.383037,-1.020333},{1.109144,0.156135,-1.508707},{2.640515,0.056829,-0.377248},{3.832905,0.741497,-1.079238},{5.074794,0.772777,-0.171667},{5.466757,-0.640344,0.287161},{4.27925,-1.353943,0.951775},{3.038308,-1.367966,0.041982},{0.211866,1.654933,-0.805951},{1.121195,2.900401,-0.774033},{0.356247,4.126347,-0.241858},{-0.913151,4.408738,-1.059972},{-1.813903,3.166158,-1.118503},{-1.044949,1.94517,-1.648307},{1.600394,-1.91127,2.806409},{0.049045,-2.41568,2.086351},{0.081843,-1.737717,3.750694},{2.189108,0.364528,2.947657},{1.035691,1.654193,2.5023},{0.801362,0.713442,4.018932},{-1.166375,1.498362,3.436074},{-3.512136,2.080984,2.868407},{-4.678457,0.927452,1.018529},{-5.462096,-1.206169,0.643984},{-5.62543,-0.087368,-0.755658},{-5.555767,-1.854004,-1.019087},{-3.637223,-0.115507,-2.435168},{-2.190833,-1.083197,-1.999833},{-3.706181,-1.909654,-2.423086},{-2.227989,-3.103187,0.736291},{-1.319345,-5.018714,-0.573864},{0.51966,-4.596197,-2.249494},{1.39068,-2.295906,-2.547344},{2.386284,0.615552,0.542931},{4.064032,0.179388,-2.00521},{3.571289,1.763749,-1.401423},{5.917474,1.255615,-0.698914},{4.858349,1.398637,0.717302},{6.32924,-0.599679,0.976694},{5.792519,-1.227723,-0.594033},{4.554865,-2.388426,1.227139},{4.02834,-0.833238,1.897923},{2.195978,-1.86316,0.548288},{3.259503,-1.972303,-0.859478},{-0.097677,1.441486,0.229288},{1.498625,3.114203,-1.794221},{2.004682,2.722208,-0.136934},{0.071145,3.93862,0.812519},{1.020649,5.009585,-0.239144},{-1.462395,5.266983,-0.632445},{-0.623132,4.69828,-2.08959},{-2.697685,3.358792,-1.753855},{-2.195003,2.934546,-0.105721},{-1.706222,1.065667,-1.655184},{-0.73905,2.12114,-2.698761}} {C,N,C,C,C,C,C,C,N,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31619 2 {{5.363341,-0.553913,0.358671},{3.925369,-0.376886,0.504437},{3.283282,-1.603444,0.972765},{3.265286,0.367263,-0.515461},{3.882115,0.533573,-1.77539},{3.277859,1.310805,-2.767057},{2.072864,1.970439,-2.513824},{1.442936,1.841689,-1.257663},{0.254713,2.571283,-0.961883},{0.40576,3.617779,0.053527},{-0.501087,3.04842,-2.112288},{2.002094,0.989135,-0.264512},{1.31399,0.777515,1.047238},{1.999029,1.159839,2.224213},{1.46404,0.917445,3.493533},{0.222321,0.273049,3.609467},{-0.474597,-0.091721,2.450841},{0.037379,0.157486,1.158311},{-0.949709,-0.283526,-0.371146},{-2.667211,0.275467,0.233494},{-3.748968,-0.035185,-0.820487},{-5.146264,0.409564,-0.350755},{-5.169922,1.894448,0.040862},{-4.093955,2.1991,1.09421},{-2.700362,1.76696,0.60894},{-1.211006,-2.168364,-0.185953},{-1.495898,-2.756687,-1.587074},{-1.772211,-4.268539,-1.527728},{-0.605718,-5.021086,-0.86958},{-0.282443,-4.433712,0.51279},{-0.024077,-2.918171,0.442167},{5.769421,-0.896105,1.325531},{5.839995,0.404274,0.100356},{5.647854,-1.310241,-0.409284},{3.388777,-2.43291,0.237384},{3.750616,-1.917669,1.921355},{2.216805,-1.436919,1.158412},{4.826994,0.030067,-1.989036},{3.761361,1.41664,-3.743459},{1.638396,2.611372,-3.282731},{0.913514,3.222375,0.943567},{0.985212,4.486775,-0.330782},{-0.593529,3.971255,0.358157},{-0.00347,3.882079,-2.658179},{-0.681682,2.214566,-2.808087},{-1.476199,3.425006,-1.761704},{2.978797,1.634879,2.122077},{2.016179,1.222996,4.387835},{-0.204112,0.0603,4.595025},{-1.445221,-0.587786,2.55608},{-2.913168,-0.312497,1.14261},{-3.491656,0.483727,-1.764978},{-3.769411,-1.114579,-1.048433},{-5.889876,0.204481,-1.142093},{-5.441906,-0.200442,0.525798},{-6.170665,2.180091,0.412001},{-4.97807,2.510411,-0.860293},{-4.088885,3.276168,1.342505},{-4.33767,1.660858,2.031804},{-1.940554,1.983761,1.378229},{-2.427233,2.361418,-0.280877},{-2.102483,-2.330812,0.45673},{-0.612256,-2.567359,-2.227439},{-2.338209,-2.234247,-2.072568},{-2.698203,-4.447461,-0.945626},{-1.958835,-4.658259,-2.544904},{-0.834953,-6.09891,-0.787947},{0.289333,-4.934793,-1.517007},{0.59373,-4.943348,0.953876},{-1.13393,-4.621818,1.196657},{0.19041,-2.527217,1.450906},{0.878386,-2.73294,-0.171708}} {C,N,C,C,C,C,C,C,N,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31595 3 {{0.826011,0.106762,-0.551169},{0.089324,-0.328276,1.108902},{-1.182127,-0.963004,1.146695},{-1.779484,-1.258386,2.389417},{-1.123247,-0.978672,3.592919},{0.148981,-0.386471,3.564737},{0.737229,-0.061774,2.335164},{1.723691,0.411113,2.33353},{0.679621,-0.169305,4.497296},{-1.597666,-1.227478,4.54724},{-2.766764,-1.73032,2.396863},{-1.899408,-1.329224,-0.112647},{-1.43841,-2.332936,-0.996309},{-2.071668,-2.554313,-2.234549},{-3.192308,-1.801335,-2.58506},{-3.714995,-0.836362,-1.708193},{-3.072576,-0.614721,-0.479415},{-3.491213,0.320962,0.438424},{-4.577196,1.169158,0.070944},{-4.715145,1.855385,0.918207},{-5.507592,0.593333,-0.089674},{-4.342224,1.749769,-0.840808},{-4.604285,-0.270162,-1.989218},{-3.686396,-1.976084,-3.54553},{-1.666635,-3.326405,-2.89278},{-0.33013,-3.115623,-0.762997},{-0.157665,-3.70227,0.537561},{-1.130925,-3.988176,0.972718},{0.452175,-4.603964,0.374751},{0.365541,-3.024865,1.23176},{2.672062,0.030084,-0.177138},{3.46582,0.587085,-1.377247},{3.1623,0.042446,-2.29318},{4.983819,0.438601,-1.17307},{5.374749,-1.019828,-0.889193},{4.593861,-1.574367,0.312304},{3.076144,-1.430596,0.110677},{2.75146,-2.063986,-0.73782},{2.539016,-1.802276,1.001123},{4.851557,-2.635046,0.48492},{4.894196,-1.023773,1.226127},{6.462755,-1.100234,-0.714333},{5.149956,-1.635643,-1.782402},{5.520686,0.817846,-2.061357},{5.298297,1.071606,-0.319547},{3.215345,1.649981,-1.544381},{2.926743,0.645109,0.709227},{0.503293,1.975577,-0.614548},{1.027709,2.831652,0.548955},{0.543064,2.499029,1.486386},{2.115279,2.687952,0.682381},{0.724585,4.325895,0.328771},{-0.77735,4.567079,0.109993},{-1.308748,3.711186,-1.050471},{-1.003153,2.219779,-0.832022},{-1.555334,1.860996,0.056725},{-1.363057,1.619312,-1.686791},{-2.397724,3.860329,-1.172054},{-0.837589,4.046169,-1.995924},{-0.972964,5.638544,-0.076419},{-1.324201,4.299629,1.035971},{1.089608,4.91577,1.189297},{1.283123,4.683324,-0.559179},{1.029221,2.284592,-1.542096}} {P,C,C,C,C,C,C,H,H,H,H,C,C,C,C,C,C,O,C,H,H,H,H,H,H,O,C,H,H,H,C,C,H,C,C,C,C,H,H,H,H,H,H,H,H,H,H,C,C,H,H,C,C,C,C,H,H,H,H,H,H,H,H,H} \N -29563 129 {{-0.975075,3.132234,0.074987},{0.035675,2.103232,0.361947},{1.347897,2.722731,0.579073},{0.032741,0.862395,-0.928546},{1.394426,-0.231416,-0.301717},{1.336187,-0.911034,0.931987},{2.409299,-1.708558,1.351982},{3.549241,-1.843305,0.540753},{3.613084,-1.177067,-0.692113},{2.53861,-0.37595,-1.110896},{-1.449875,-0.106909,-0.37625},{-2.018624,-1.007509,-1.29884},{-3.126145,-1.789812,-0.940353},{-3.692565,-1.661633,0.338199},{-3.143553,-0.751466,1.255919},{-2.026272,0.020341,0.903145},{-1.960433,2.664647,-0.08234},{-1.053889,3.80587,0.946573},{-0.732698,3.748255,-0.819559},{1.262984,3.430967,1.421774},{1.723565,3.287926,-0.304601},{2.091084,1.957232,0.846793},{0.446537,-0.814676,1.561468},{2.355281,-2.23217,2.311835},{4.383611,-2.471075,0.868757},{4.497007,-1.281559,-1.328989},{2.58326,0.145564,-2.073362},{-1.588517,-1.095559,-2.303287},{-3.554155,-2.491864,-1.66282},{-4.563475,-2.263661,0.615419},{-3.585713,-0.644194,2.251902},{-1.585094,0.731872,1.609738}} {C,N,C,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31596 3 {{0.913386,0.479515,-1.680354},{0.201926,-1.237562,-1.41642},{-0.563043,-1.827307,-0.371157},{-0.896144,-3.19707,-0.443212},{-0.489502,-4.005355,-1.510438},{0.260416,-3.437667,-2.547618},{0.584945,-2.076345,-2.493706},{1.159113,-1.627572,-3.311363},{0.585697,-4.043802,-3.39889},{-0.762079,-5.065162,-1.530538},{-1.490296,-3.626325,0.370172},{-1.084131,-1.111063,0.832381},{-2.44293,-0.721161,0.895686},{-2.972144,-0.094265,2.040849},{-2.134857,0.118629,3.143176},{-0.800098,-0.304564,3.138165},{-0.289127,-0.939021,1.987835},{0.983524,-1.443728,1.902155},{1.792148,-1.397111,3.077586},{2.720479,-1.923044,2.816835},{1.300633,-1.91115,3.923889},{2.02971,-0.355694,3.365205},{-0.176192,-0.144401,4.018477},{-2.535059,0.617385,4.0309},{-4.012852,0.230656,2.077107},{-3.178792,-0.989864,-0.231347},{-4.562997,-0.640468,-0.223065},{-4.952451,-0.965272,-1.197662},{-5.106018,-1.163741,0.585362},{-4.704614,0.451076,-0.116653},{2.240555,0.628822,-0.349441},{2.974929,1.972064,-0.548451},{3.346572,2.021964,-1.591281},{4.161308,2.126079,0.418773},{5.145186,0.954651,0.281651},{4.425786,-0.385879,0.493981},{3.227329,-0.549726,-0.456723},{3.597914,-0.61421,-1.499485},{2.699311,-1.49512,-0.248121},{5.127962,-1.229055,0.36079},{4.069211,-0.433785,1.541206},{5.980214,1.063601,0.99724},{5.590838,0.973016,-0.732553},{4.673666,3.087928,0.235262},{3.781434,2.16329,1.459489},{2.277939,2.820047,-0.425001},{1.777698,0.609766,0.654948},{-0.323215,1.831369,-1.213413},{-0.541904,2.230239,0.255924},{-0.984776,1.392099,0.81301},{0.421154,2.458606,0.744769},{-1.476951,3.44902,0.358952},{-2.818986,3.181887,-0.340573},{-2.60883,2.782917,-1.810032},{-1.659122,1.579476,-1.941406},{-2.138743,0.678805,-1.519546},{-1.466892,1.360003,-3.007846},{-3.577467,2.553064,-2.291306},{-2.181743,3.645397,-2.359347},{-3.475972,4.06792,-0.271214},{-3.335456,2.359147,0.192239},{-1.640847,3.70529,1.421531},{-0.99165,4.32877,-0.109622},{0.151647,2.702978,-1.714975}} {P,C,C,C,C,C,C,H,H,H,H,C,C,C,C,C,C,O,C,H,H,H,H,H,H,O,C,H,H,H,C,C,H,C,C,C,C,H,H,H,H,H,H,H,H,H,H,C,C,H,H,C,C,C,C,H,H,H,H,H,H,H,H,H} \N -31551 4 {{-4.95643,-0.08399,0.396021},{-4.236311,-1.214131,-0.332658},{-4.693995,-2.596548,0.136565},{-2.82678,-1.024362,-0.05153},{-1.896227,-1.749554,-0.758083},{-2.159246,-2.392985,-1.983609},{-1.123852,-3.086032,-2.621884},{0.159023,-3.162715,-2.066039},{0.412589,-2.516235,-0.840318},{1.630175,-2.509915,-0.205086},{2.644797,-3.463892,-0.60655},{3.937644,-2.990287,0.049187},{2.25299,-4.877338,-0.170644},{-0.607312,-1.793085,-0.179986},{-0.340161,-1.135052,1.136171},{-0.590167,-1.864102,2.316847},{-0.362323,-1.298702,3.576694},{0.119403,0.017007,3.670079},{0.370094,0.746539,2.501488},{0.151619,0.190052,1.223029},{0.474794,1.140366,-0.349172},{2.186508,1.826309,0.084804},{3.191339,0.65971,0.134545},{4.617359,1.141327,0.445118},{5.077895,2.207787,-0.56011},{4.085243,3.379342,-0.606378},{2.652945,2.903692,-0.912297},{-0.613021,2.680289,-0.094865},{-1.973613,2.337763,0.540512},{-2.886076,3.571505,0.643154},{-3.085525,4.254726,-0.71826},{-1.732927,4.598687,-1.359748},{-0.839171,3.351964,-1.468531},{-6.04517,-0.178145,0.254154},{-4.737218,-0.127358,1.475665},{-4.638085,0.899069,0.016744},{-4.404963,-1.102617,-1.421753},{-4.122398,-3.399783,-0.354094},{-4.554951,-2.685622,1.226969},{-5.762494,-2.743319,-0.093082},{-3.149605,-2.359011,-2.440267},{-1.323381,-3.585283,-3.575058},{0.940588,-3.718115,-2.586559},{2.76439,-3.419232,-1.70682},{3.819238,-2.958195,1.144987},{4.210133,-1.983405,-0.300435},{4.759442,-3.682792,-0.194758},{1.286398,-5.181237,-0.601745},{2.172736,-4.919892,0.928403},{3.018547,-5.602348,-0.493684},{-0.968146,-2.88805,2.230874},{-0.561113,-1.879815,4.482733},{0.295294,0.473775,4.649419},{0.734846,1.775994,2.587249},{2.138627,2.292628,1.090476},{3.181171,0.147426,-0.847857},{2.864225,-0.089961,0.874464},{4.643732,1.567318,1.467719},{5.314378,0.282885,0.445726},{6.090428,2.570593,-0.306824},{5.146855,1.75032,-1.56714},{4.400318,4.125732,-1.358046},{4.091016,3.896392,0.37376},{2.612563,2.490485,-1.939887},{1.969115,3.769821,-0.890473},{-0.075653,3.388839,0.57104},{-2.462206,1.557125,-0.072456},{-1.833726,1.890073,1.537846},{-2.435245,4.297191,1.34921},{-3.860819,3.279533,1.076349},{-3.707417,5.161757,-0.60988},{-3.638079,3.568781,-1.39116},{-1.220441,5.364642,-0.744079},{-1.8802,5.044833,-2.360097},{0.121495,3.612385,-1.944913},{-1.321837,2.613017,-2.137738}} {C,C,C,O,C,C,C,C,C,O,C,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31552 4 {{2.520361,0.162813,3.241725},{1.780666,-1.162746,3.051763},{2.720477,-2.352696,2.882767},{0.968801,-1.121364,1.84883},{-0.319106,-0.65819,1.9317},{-0.852742,0.001587,3.059143},{-2.200583,0.380942,3.052828},{-3.031499,0.116811,1.95794},{-2.486525,-0.531037,0.830878},{-3.2014,-0.862502,-0.29017},{-4.649925,-0.794936,-0.273987},{-5.130697,0.603596,-0.663452},{-5.11548,-1.867121,-1.255319},{-1.117411,-0.894209,0.788691},{-0.602531,-1.643472,-0.399839},{-0.933833,-3.015527,-0.437996},{-0.574485,-3.837262,-1.511396},{0.111501,-3.278799,-2.598619},{0.432991,-1.917077,-2.57934},{0.117894,-1.073294,-1.484899},{0.81818,0.638226,-1.747911},{2.510134,0.517831,-0.876951},{3.12233,-0.894283,-0.921872},{4.538206,-0.923078,-0.318645},{5.475604,0.096577,-0.981518},{4.868778,1.505685,-0.919463},{3.466481,1.528516,-1.549443},{-0.142506,1.806608,-0.62393},{-1.526565,2.062718,-1.255308},{-2.3584,3.050983,-0.421008},{-1.608052,4.37304,-0.202401},{-0.229209,4.120284,0.424865},{0.605664,3.138735,-0.416963},{3.217732,0.332651,2.405324},{1.822983,1.014344,3.282463},{3.101692,0.145667,4.17884},{1.112734,-1.354425,3.913068},{3.369665,-2.451491,3.768142},{2.146048,-3.284045,2.760301},{3.359701,-2.219454,1.996035},{-0.237151,0.224201,3.931275},{-2.612835,0.898959,3.924089},{-4.077518,0.424842,1.984152},{-4.999633,-1.052898,0.744562},{-4.778381,0.853972,-1.677791},{-4.755687,1.374438,0.026246},{-6.232955,0.640705,-0.659092},{-6.216484,-1.890898,-1.300999},{-4.751062,-2.85975,-0.948459},{-4.726889,-1.653072,-2.264543},{-1.493052,-3.432477,0.406264},{-0.842094,-4.898505,-1.504054},{0.384783,-3.893425,-3.462066},{0.948565,-1.474688,-3.439267},{2.363648,0.794449,0.1859},{3.173742,-1.239073,-1.973461},{2.46663,-1.60372,-0.391866},{4.477671,-0.692194,0.76321},{4.955565,-1.943903,-0.397146},{6.469924,0.077313,-0.499744},{5.629986,-0.184308,-2.042115},{5.523544,2.234691,-1.430526},{4.801527,1.828889,0.138912},{3.5446,1.268737,-2.623318},{3.050061,2.549352,-1.513889},{-0.281904,1.343754,0.3678},{-1.378561,2.475501,-2.273018},{-2.070713,1.110861,-1.37675},{-2.581343,2.591527,0.561765},{-3.328726,3.237697,-0.916173},{-2.20154,5.054972,0.433262},{-1.475058,4.882555,-1.177462},{-0.365238,3.695588,1.439267},{0.321505,5.070602,0.548339},{1.573882,2.964175,0.083387},{0.829506,3.597443,-1.401182}} {C,C,C,O,C,C,C,C,C,O,C,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31524 5 {{4.034321,-1.192367,-2.700472},{4.455745,-0.182084,-1.822745},{3.779847,0.023645,-0.610806},{2.666441,-0.768,-0.262279},{1.975271,-0.553671,1.040818},{2.745255,-0.642085,2.223652},{2.165999,-0.467953,3.485064},{0.792121,-0.197241,3.585784},{0.024458,-0.088555,2.420225},{0.589785,-0.255652,1.13709},{-0.428726,0.045327,-0.401948},{-1.998564,-0.9491,-0.013209},{-1.67597,-2.35587,0.532349},{-2.954496,-3.177422,0.774003},{-3.815727,-3.283171,-0.493667},{-4.126819,-1.8915,-1.064424},{-2.838314,-1.086511,-1.304104},{-0.950576,1.819043,0.026092},{0.297274,2.723491,-0.055305},{-0.038686,4.194682,0.239556},{-1.144375,4.712798,-0.692224},{-2.393919,3.824828,-0.600729},{-2.068719,2.347841,-0.891234},{2.255422,-1.783027,-1.150971},{2.934399,-1.995264,-2.357618},{4.560368,-1.354824,-3.646165},{5.310085,0.450794,-2.082466},{4.100635,0.820472,0.068324},{3.811552,-0.874881,2.137539},{2.781455,-0.552064,4.38603},{0.322549,-0.067285,4.565986},{-1.043564,0.139001,2.510404},{-2.597213,-0.403293,0.746975},{-1.089687,-2.288669,1.46331},{-1.036226,-2.884868,-0.203177},{-2.687994,-4.183276,1.146089},{-3.545572,-2.691758,1.57582},{-3.267192,-3.871082,-1.256086},{-4.749712,-3.833937,-0.281418},{-4.696394,-1.978401,-2.007321},{-4.774298,-1.340232,-0.353784},{-2.220162,-1.60057,-2.066043},{-3.082768,-0.097883,-1.726813},{-1.324951,1.830913,1.0704},{1.070545,2.361986,0.64506},{0.72997,2.64264,-1.07207},{-0.374841,4.287706,1.291298},{0.871582,4.813761,0.143558},{-0.771153,4.709846,-1.735523},{-1.397889,5.760417,-0.449423},{-3.174869,4.178544,-1.29796},{-2.820714,3.905393,0.418736},{-1.755691,2.239959,-1.948817},{-2.983948,1.74407,-0.765802},{1.403124,-2.414029,-0.882915},{2.602834,-2.789484,-3.033598}} {C,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31525 5 {{3.518933,-0.980069,-2.998786},{4.16231,-0.668433,-1.79158},{3.479754,-0.811706,-0.574298},{2.141882,-1.257477,-0.544105},{1.441639,-1.425487,0.761075},{2.04467,-2.257955,1.731949},{1.446878,-2.477706,2.977487},{0.225394,-1.855435,3.278654},{-0.371572,-1.014683,2.33158},{0.212417,-0.780445,1.067543},{-0.544849,0.431053,-0.136333},{-2.348405,-0.130639,-0.022126},{-2.475132,-1.548715,-0.61526},{-3.929163,-2.049144,-0.601131},{-4.86304,-1.071863,-1.331114},{-4.748936,0.340677,-0.738668},{-3.294781,0.846372,-0.746424},{-0.596465,2.022203,0.92491},{0.634064,2.205498,1.837684},{1.928938,2.442704,1.044557},{1.792861,3.657857,0.113861},{0.576486,3.506791,-0.812748},{-0.716411,3.244147,-0.020683},{1.508791,-1.573859,-1.764303},{2.191797,-1.439068,-2.9798},{4.04888,-0.868906,-3.949706},{5.195979,-0.308836,-1.795597},{3.977568,-0.556481,0.367078},{2.987782,-2.754473,1.48173},{1.928204,-3.136221,3.707056},{-0.254986,-2.016027,4.249021},{-1.308285,-0.510594,2.592175},{-2.652601,-0.168056,1.044434},{-1.824854,-2.249287,-0.062214},{-2.10838,-1.529437,-1.661239},{-3.985614,-3.053993,-1.057216},{-4.264757,-2.159521,0.449048},{-4.587073,-1.039424,-2.403803},{-5.908389,-1.426252,-1.283978},{-5.393222,1.04721,-1.292452},{-5.120192,0.32657,0.305261},{-2.953189,0.973152,-1.79305},{-3.251637,1.843571,-0.275212},{-1.503119,1.960518,1.559279},{0.4435,3.090215,2.47906},{0.749262,1.34467,2.516334},{2.773961,2.581958,1.742723},{2.164055,1.545299,0.44102},{2.713191,3.792247,-0.482433},{1.675234,4.573047,0.728524},{0.751515,2.659905,-1.502567},{0.451493,4.40913,-1.437906},{-1.560908,3.119977,-0.720781},{-0.951407,4.133231,0.599119},{0.477969,-1.938259,-1.752056},{1.685309,-1.692123,-3.916314}} {C,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31523 6 {{-4.708149,0.574787,-1.019326},{-3.827518,1.824524,-0.840765},{-3.86791,2.279286,0.633128},{-3.336785,1.147058,1.536057},{-4.205348,-0.112423,1.350082},{-4.153012,-0.550188,-0.127323},{-2.689368,-0.859409,-0.517268},{-1.770503,0.380678,-0.325362},{-2.372247,1.492873,-1.240393},{-1.871324,0.82865,1.155228},{-0.000505,0.000482,-1.035365},{1.214417,1.343132,-0.325955},{0.599948,2.759342,-0.514588},{1.60047,3.871335,-0.123736},{2.007974,3.694904,1.35275},{2.664242,2.312472,1.535125},{1.654462,1.203978,1.153805},{3.908894,2.207333,0.630075},{3.492798,2.402744,-0.842839},{2.477013,1.309221,-1.242933},{2.85091,3.790795,-1.017727},{0.555685,-1.722899,-0.325982},{2.08913,-1.898762,-0.517392},{2.55298,-3.32066,-0.126258},{2.198902,-3.58431,1.351001},{0.673768,-3.461987,1.535925},{0.21716,-2.033815,1.15439},{-0.040554,-4.488327,0.632757},{0.334204,-4.226363,-0.840899},{-0.106094,-2.800393,-1.241226},{1.856911,-4.364318,-1.018333},{-5.757281,0.797764,-0.746449},{-4.705715,0.257164,-2.079059},{-4.195856,2.639435,-1.491883},{-3.252746,3.189651,0.766898},{-4.903424,2.542045,0.921606},{-3.36761,1.469022,2.59412},{-3.835792,-0.927098,2.001877},{-5.250317,0.094929,1.649247},{-4.752977,-1.469445,-0.265349},{-2.648571,-1.189093,-1.572294},{-2.342721,-1.700211,0.104114},{-1.774985,2.414076,-1.191065},{-2.335351,1.148772,-2.290582},{-1.477406,0.041654,1.820797},{-1.258864,1.728095,1.330682},{-0.300834,2.87867,0.107985},{0.292971,2.891073,-1.569031},{1.104453,4.850948,-0.259228},{1.118775,3.781276,2.006175},{2.71074,4.495478,1.652203},{2.960062,2.176078,2.592479},{0.776593,1.256153,1.820237},{2.126393,0.22322,1.327344},{4.389368,1.218891,0.761268},{4.655037,2.971792,0.918918},{4.381707,2.315316,-1.495446},{2.158998,1.451213,-2.292392},{2.975775,0.331025,-1.196096},{2.573086,3.949582,-2.076746},{3.56929,4.587098,-0.744431},{2.644022,-1.177668,0.103326},{2.354501,-1.6995,-1.572542},{3.649165,-3.380644,-0.263438},{2.541758,-4.592802,1.650754},{2.719071,-2.85664,2.002941},{0.409676,-3.649423,2.593863},{0.70139,-1.299071,1.820098},{-0.868133,-1.95274,1.328915},{-1.136637,-4.410698,0.765664},{0.249422,-5.516425,0.921697},{-0.186901,-4.953001,-1.492184},{0.174066,-2.5966,-2.29129},{-1.202551,-2.743957,-1.192641},{2.131544,-4.203906,-2.077941},{2.188065,-5.384288,-0.744741}} {C,C,C,C,C,C,C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31501 7 {{-1.106378,0.323227,-1.549675},{-0.27752,-1.277911,-1.149807},{0.973911,-1.542175,-1.747727},{1.599684,-2.782982,-1.57854},{0.967584,-3.797826,-0.841588},{-0.289056,-3.555579,-0.268244},{-0.9065,-2.30392,-0.416558},{-1.882329,-2.122517,0.042281},{-0.793997,-4.343497,0.300719},{1.45133,-4.771864,-0.719654},{2.581193,-2.960395,-2.028764},{1.463586,-0.762155,-2.340923},{-2.716121,0.143054,-0.651161},{-3.776803,-0.477137,-1.344448},{-5.022719,-0.665091,-0.727581},{-5.230581,-0.215174,0.585911},{-4.184932,0.418011,1.277587},{-2.93392,0.592727,0.667056},{-2.116679,1.073547,1.211672},{-4.343348,0.777501,2.299842},{-6.205102,-0.349994,1.065426},{-5.834335,-1.151782,-1.277563},{-3.620759,-0.814295,-2.37527},{-0.321892,1.702621,-0.583003},{-0.979654,2.932614,-0.833912},{-0.560749,4.130387,-0.250097},{0.567888,4.131819,0.584933},{1.244809,2.932613,0.819801},{0.818495,1.706861,0.257474},{1.640354,0.509728,0.605352},{2.945448,0.371076,0.079074},{3.781497,-0.692412,0.467622},{3.296515,-1.631004,1.386973},{2.009238,-1.528491,1.925597},{1.189233,-0.45268,1.535155},{-0.079082,-0.247956,2.013906},{-0.607658,-1.210127,2.926442},{-0.619381,-2.220266,2.479172},{-0.03202,-1.226174,3.870463},{-1.639453,-0.888985,3.126706},{1.653517,-2.279717,2.631624},{3.935693,-2.467283,1.685814},{4.785661,-0.802452,0.05565},{3.304405,1.325088,-0.843622},{4.61619,1.248607,-1.397865},{4.694855,2.100777,-2.087079},{5.392835,1.334309,-0.61505},{4.765849,0.3072,-1.959369},{2.130228,2.920018,1.463264},{0.920785,5.060403,1.04376},{-1.104281,5.057553,-0.456263},{-1.847215,2.938968,-1.504294}} {P,C,C,C,C,C,C,H,H,H,H,H,C,C,C,C,C,C,H,H,H,H,H,C,C,C,C,C,C,C,C,C,C,C,C,O,C,H,H,H,H,H,H,O,C,H,H,H,H,H,H,H} \N -31502 7 {{-0.665001,0.049395,-0.654678},{-1.622381,-1.44914,-0.13687},{-2.231288,-2.198705,-1.166541},{-2.955428,-3.363784,-0.875268},{-3.066731,-3.809007,0.452251},{-2.453951,-3.077039,1.481795},{-1.739582,-1.903885,1.19115},{-1.256424,-1.347923,1.999313},{-2.531306,-3.418775,2.519068},{-3.623835,-4.722548,0.681683},{-3.425475,-3.92875,-1.686447},{-2.133379,-1.864215,-2.205636},{-2.029127,1.300267,-0.800015},{-3.369363,1.068239,-0.431365},{-4.336494,2.074126,-0.589327},{-3.977846,3.326463,-1.110071},{-2.645192,3.566573,-1.484408},{-1.683402,2.557884,-1.34073},{-0.648873,2.744007,-1.651364},{-2.357275,4.537732,-1.899303},{-4.732593,4.109641,-1.230264},{-5.373358,1.877497,-0.298043},{-3.658397,0.097482,-0.017175},{0.113338,0.610284,0.937826},{-0.648505,1.214908,1.959077},{-0.04561,1.681567,3.134368},{1.342137,1.553626,3.300673},{2.113183,0.966092,2.290636},{1.519112,0.489723,1.102769},{2.408971,-0.075652,0.047228},{3.41315,0.71353,-0.556317},{4.296376,0.178039,-1.508761},{4.179191,-1.166904,-1.872638},{3.191373,-1.981999,-1.299631},{2.317761,-1.437675,-0.342008},{1.344605,-2.158721,0.299032},{1.107592,-3.499218,-0.136248},{1.979904,-4.14654,0.0689},{0.240551,-3.84577,0.442141},{0.86303,-3.529973,-1.213246},{3.114069,-3.030166,-1.592943},{4.86117,-1.592836,-2.614681},{5.055559,0.831188,-1.945776},{3.592594,2.041405,-0.197374},{2.559559,2.932045,-0.650291},{2.468955,2.891418,-1.751942},{1.583901,2.694845,-0.190563},{2.872213,3.939948,-0.341244},{3.197348,0.878874,2.404578},{1.825404,1.918509,4.212237},{-0.657051,2.147421,3.913526},{-1.727764,1.334396,1.820382}} {P,C,C,C,C,C,C,H,H,H,H,H,C,C,C,C,C,C,H,H,H,H,H,C,C,C,C,C,C,C,C,C,C,C,C,O,C,H,H,H,H,H,H,O,C,H,H,H,H,H,H,H} \N -9023 1289 {{1.226648,0.945953,1.368784},{1.29107,0.466542,-0.009253},{2.653067,0.304553,-0.520926},{0.090421,-0.517416,-0.74649},{0.10153,-1.886667,0.251818},{-1.408588,0.079907,-0.171984},{-2.035017,1.129146,-0.963327},{-2.006548,-0.158639,1.134934},{1.62492,0.205656,2.091947},{0.185864,1.176098,1.634859},{1.819083,1.873945,1.463295},{3.176278,1.278134,-0.51431},{2.615314,-0.062704,-1.559903},{3.245246,-0.414461,0.080789},{-3.120936,0.938948,-1.0614},{-1.596866,1.147388,-1.975773},{-1.897165,2.134982,-0.514398},{-1.475519,-0.973032,1.647039},{-3.064451,-0.46085,1.011744},{-1.988131,0.745918,1.77897}} {C,N,C,P,F,N,C,C,H,H,H,H,H,H,H,H,H,H,H,H} \N -31499 8 {{0.340061,-1.994627,1.477337},{-0.046784,-1.806798,-0.001957},{0.891832,-2.658293,-0.89302},{-1.458988,-2.394372,-0.216144},{8.6e-05,2.9e-05,-0.723452},{1.588187,0.862915,-0.001929},{1.557197,1.291923,1.477311},{1.856138,2.10135,-0.893341},{2.803409,-0.066121,-0.215659},{-1.541403,0.943988,-0.00205},{-1.897427,0.702321,1.477187},{-1.344237,2.460817,-0.215934},{-2.748085,0.556959,-0.893246},{0.23117,-3.061912,1.750168},{-0.301992,-1.412164,2.154742},{1.386017,-1.717225,1.676491},{0.783399,-3.723117,-0.613486},{1.952308,-2.397493,-0.782759},{0.625103,-2.556475,-1.957947},{-2.212987,-1.957568,0.454685},{-1.423963,-3.47899,-0.00351},{-1.798617,-2.272009,-1.258131},{2.535084,1.733511,1.749588},{1.376151,0.444215,2.154837},{0.792333,2.057243,1.676678},{2.833178,2.539185,-0.615073},{1.100718,2.889888,-0.782202},{1.899708,1.819356,-1.958324},{2.868006,-0.421247,-1.257667},{2.801931,-0.937624,0.45504},{3.724946,0.506715,-0.002427},{-1.072471,0.967632,2.155068},{-2.767951,1.329361,1.749989},{-2.17927,-0.342502,1.675871},{-0.588598,2.895271,0.45455},{-2.300983,2.972692,-0.002716},{-1.069045,2.693984,-1.258033},{-3.615653,1.184255,-0.614747},{-2.525922,0.73569,-1.958284},{-3.0533,-0.491488,-0.781968}} {C,C,C,C,P,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31500 8 {{2.801097,-0.115823,-0.893832},{1.722564,0.548582,-0.002052},{2.011782,0.229376,1.476991},{1.893182,2.068534,-0.216086},{0.00019,0.000198,-0.723279},{-1.336563,1.216735,-0.001945},{-1.302112,2.482813,-0.894042},{-1.203119,1.627071,1.477005},{-2.738229,0.60418,-0.214886},{-0.386088,-1.765535,-0.001752},{-1.500169,-2.368543,-0.89349},{0.844852,-2.673702,-0.214721},{-0.807607,-1.854234,1.477227},{2.847723,-1.206654,-0.781313},{3.793511,0.286883,-0.617028},{2.6266,0.109489,-1.958881},{2.033702,-0.852339,1.676818},{1.276066,0.686541,2.155242},{3.008098,0.628471,1.74795},{1.680623,2.361068,-1.257834},{2.944647,2.337146,-0.003771},{1.263714,2.670554,0.455213},{-1.410555,2.21852,-1.958896},{-0.381265,3.069627,-0.782475},{-2.147489,3.14026,-0.616945},{-0.278938,2.190552,1.67439},{-1.226114,0.761282,2.155552},{-2.048652,2.287248,1.750108},{-2.886065,0.274821,-1.256851},{-3.496482,1.380205,-0.001308},{-2.944423,-0.242537,0.455758},{-2.467435,-1.861098,-0.785723},{-1.215071,-2.335272,-1.957973},{-1.650421,-3.42791,-0.612629},{0.551583,-3.718398,-0.001605},{1.681145,-2.429387,0.456195},{1.204309,-2.636615,-1.25655},{-0.045699,-1.440357,2.154501},{-1.757442,-1.335459,1.675326},{-0.956067,-2.916345,1.751412}} {C,C,C,C,P,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -31494 9 {{0.050085,0.067559,-1.072857},{-0.606322,-1.45862,-0.232712},{-1.150404,-2.405438,-1.127827},{-1.732512,-3.597517,-0.675717},{-1.772603,-3.858075,0.700334},{-1.23209,-2.927277,1.598558},{-0.647951,-1.720057,1.164467},{-0.084797,-0.773065,2.193395},{-0.753409,0.092214,2.338831},{0.032954,-1.278993,3.1644},{0.894893,-0.370747,1.889043},{-1.25623,-3.138912,2.673483},{-2.217724,-4.784253,1.076946},{-2.144305,-4.314502,-1.39231},{-1.104534,-2.19557,-2.202204},{-0.994462,1.371411,-0.245738},{-0.560022,2.179313,0.826123},{-1.391891,3.154269,1.391722},{-2.688629,3.335883,0.890528},{-3.135199,2.534777,-0.167766},{-2.313611,1.550149,-0.752033},{-2.864637,0.701448,-1.872419},{-3.088512,-0.32257,-1.524045},{-3.795704,1.133749,-2.271166},{-2.138082,0.601772,-2.697149},{-4.148165,2.672072,-0.561995},{-3.348498,4.096469,1.319038},{-1.025875,3.764096,2.223629},{0.44596,2.04413,1.231466},{1.775221,0.389388,-0.481882},{2.211183,1.735966,-0.521021},{3.53445,2.09282,-0.237938},{4.467258,1.095095,0.076566},{4.062476,-0.245087,0.060555},{2.737569,-0.630488,-0.231447},{2.425242,-2.107572,-0.305942},{1.878029,-2.363033,-1.228525},{3.357966,-2.692811,-0.291535},{1.797174,-2.450067,0.5326},{4.796578,-1.032246,0.265808},{5.505242,1.353379,0.306623},{3.831683,3.145455,-0.270518},{1.499653,2.523052,-0.788396}} {P,C,C,C,C,C,C,C,H,H,H,H,H,H,H,C,C,C,C,C,C,C,H,H,H,H,H,H,H,C,C,C,C,C,C,C,H,H,H,H,H,H,H} \N -31495 9 {{-0.041618,-0.080279,-1.083912},{0.057253,1.64107,-0.386486},{-0.859941,2.496969,-1.043614},{-0.979472,3.851312,-0.716955},{-0.137003,4.393737,0.264169},{0.789607,3.564306,0.905965},{0.907864,2.186593,0.616319},{1.914982,1.393637,1.417218},{2.254277,1.982941,2.283376},{1.506428,0.441725,1.786381},{2.80747,1.131377,0.825031},{1.441627,3.986908,1.678671},{-0.19976,5.453461,0.52945},{-1.712624,4.477329,-1.234395},{-1.498448,2.076622,-1.829582},{1.251001,-1.125647,-0.287488},{0.938989,-2.132291,0.648663},{1.935436,-2.97362,1.162724},{3.262097,-2.821922,0.734503},{3.574815,-1.843136,-0.220647},{2.589161,-0.993571,-0.754907},{2.955975,0.030079,-1.80303},{4.015327,-0.059994,-2.089519},{2.335309,-0.09538,-2.708265},{2.785709,1.064735,-1.455221},{4.607711,-1.737159,-0.570903},{4.049479,-3.470463,1.130631},{1.673573,-3.743081,1.895601},{-0.097111,-2.257712,0.977917},{-1.638636,-0.764855,-0.434061},{-2.317611,-1.563179,-1.382528},{-3.545768,-2.170956,-1.091354},{-4.129173,-1.96338,0.165533},{-3.470585,-1.166831,1.112077},{-2.225171,-0.561234,0.846483},{-1.575522,0.262206,1.930079},{-1.584483,1.336994,1.684025},{-2.101213,0.124337,2.887781},{-0.52152,-0.021948,2.076178},{-3.927025,-1.011286,2.096037},{-5.093143,-2.419108,0.412299},{-4.044017,-2.790341,-1.843136},{-1.863087,-1.701492,-2.369656}} {P,C,C,C,C,C,C,C,H,H,H,H,H,H,H,C,C,C,C,C,C,C,H,H,H,H,H,H,H,C,C,C,C,C,C,C,H,H,H,H,H,H,H} \N -31469 10 {{0.572473,5.186348,1.053792},{0.141798,4.370287,-0.170961},{0.40171,2.864182,-0.007655},{0.005322,2.071461,-1.267196},{-0.024328,0.186347,-1.391413},{-1.62241,-0.27132,-0.437006},{-2.771947,-0.0046,-1.45397},{-4.137576,-0.432408,-0.87247},{-4.105561,-1.942301,-0.56107},{-2.988973,-2.225827,0.463237},{-1.625151,-1.787205,-0.114401},{-3.263967,-1.438985,1.761414},{-3.302221,0.070222,1.446929},{-1.94346,0.516924,0.856066},{-4.419986,0.354699,0.423349},{1.525354,-0.408606,-0.446615},{1.748169,-1.908396,-0.801099},{3.085453,-2.42033,-0.22093},{3.079021,-2.252435,1.312819},{2.89626,-0.761896,1.664853},{1.549317,-0.258755,1.093466},{4.053271,0.057665,1.056573},{4.062304,-0.121619,-0.476197},{2.721259,0.378381,-1.056535},{4.252183,-1.611746,-0.820809},{0.033634,4.857467,1.959716},{1.652633,5.068243,1.250038},{0.372624,6.262168,0.916876},{0.674068,4.736273,-1.069861},{-0.935663,4.532247,-0.367357},{1.47378,2.715259,0.21313},{-0.142614,2.500077,0.879342},{-1.019267,2.364167,-1.569207},{0.645458,2.399471,-2.106907},{-2.804728,1.070273,-1.7151},{-2.568723,-0.554662,-2.39111},{-4.92697,-0.221332,-1.618031},{-3.924205,-2.517056,-1.488843},{-5.083088,-2.270477,-0.159586},{-2.951716,-3.30896,0.684719},{-0.836817,-2.018597,0.623244},{-1.396244,-2.364837,-1.030167},{-4.225511,-1.759381,2.205411},{-2.474551,-1.651667,2.507468},{-3.493396,0.639984,2.375815},{-1.995943,1.596533,0.629848},{-1.145411,0.37666,1.60564},{-5.402742,0.0628,0.839803},{-4.467565,1.438978,0.20664},{1.737428,-2.028007,-1.900407},{0.923873,-2.524874,-0.405911},{3.200757,-3.489931,-0.478355},{2.25939,-2.848984,1.756993},{4.026223,-2.631905,1.741036},{2.889372,-0.636493,2.764042},{0.725678,-0.842958,1.54136},{1.392352,0.793178,1.383719},{5.019105,-0.273839,1.482829},{3.935191,1.127841,1.313172},{4.885602,0.472192,-0.915975},{2.715994,0.25766,-2.157042},{2.621443,1.457558,-0.850992},{5.216997,-1.976453,-0.419807},{4.28261,-1.74627,-1.918491}} {C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -9020 1290 {{-2.027962,-0.858746,0.002059},{-0.860337,0.018392,0.001772},{-1.130777,1.455079,-0.004178},{0.675568,-0.660934,0.002681},{1.412919,0.216916,-1.199266},{1.414515,0.227281,1.195982},{-1.705684,-1.91266,0.005807},{-2.647633,-0.687867,-0.898045},{-2.650778,-0.682545,0.898818},{-0.185118,2.015211,-0.003382},{-1.710559,1.741748,0.892063},{-1.705869,1.735609,-0.905618}} {C,N,C,P,F,F,H,H,H,H,H,H} \N -31470 10 {{2.15107,4.544986,0.052222},{0.795564,4.207843,-0.583007},{-0.210663,3.567385,0.389725},{0.158335,2.133299,0.823089},{0.012455,0.872629,-0.574445},{-1.653667,0.016489,-0.176577},{-2.710058,1.151259,-0.060812},{-4.129346,0.570354,0.118997},{-4.48894,-0.309734,-1.094048},{-3.462765,-1.45421,-1.210389},{-2.048345,-0.860802,-1.396943},{-3.497635,-2.309153,0.073909},{-3.145524,-1.42748,1.290627},{-1.723452,-0.847423,1.102575},{-4.167375,-0.278568,1.406168},{1.468183,-0.297507,-0.147522},{1.32607,-1.629053,-0.926614},{2.595898,-2.495361,-0.768732},{2.810911,-2.811423,0.725944},{2.985639,-1.493692,1.508919},{1.715751,-0.623783,1.347348},{4.20951,-0.730376,0.964187},{3.992841,-0.417494,-0.530195},{2.722445,0.443529,-0.696926},{3.819558,-1.73341,-1.31556},{2.029642,5.23532,0.905948},{2.669115,3.645127,0.426079},{2.82449,5.026895,-0.676159},{0.941039,3.52671,-1.442451},{0.351605,5.133478,-0.992883},{-0.291775,4.203279,1.293716},{-1.211067,3.568469,-0.077369},{1.204157,2.120373,1.173277},{-0.450945,1.817512,1.689447},{-2.480174,1.800498,0.802746},{-2.672656,1.78703,-0.966434},{-4.849492,1.405991,0.201774},{-4.485187,0.298157,-2.018418},{-5.509809,-0.720557,-0.977546},{-3.705175,-2.086148,-2.085216},{-1.323626,-1.681618,-1.532},{-2.009327,-0.246455,-2.315767},{-4.50129,-2.755758,0.206411},{-2.777922,-3.146016,-0.007656},{-3.165788,-2.039182,2.212222},{-1.440683,-0.247252,1.988165},{-1.005531,-1.68325,1.033187},{-5.183379,-0.687457,1.563837},{-3.931069,0.352895,2.283843},{1.136671,-1.419432,-1.996791},{0.458196,-2.197593,-0.547798},{2.459681,-3.436809,-1.333255},{1.945521,-3.37618,1.122316},{3.703859,-3.451987,0.855207},{3.132541,-1.715569,2.582767},{0.851676,-1.157188,1.776125},{1.83936,0.306455,1.930233},{5.126595,-1.334869,1.098334},{4.353479,0.209098,1.531236},{4.861099,0.142333,-0.925453},{2.566142,0.689044,-1.763762},{2.857919,1.404858,-0.166229},{4.72888,-2.356865,-1.221511},{3.682368,-1.516814,-2.391805}} {C,C,C,C,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -30517 57 {{2.897445,1.587541,1.270256},{2.390355,1.464711,-0.170455},{0.916533,1.39943,-0.256246},{0.316054,2.630638,-0.803211},{0.392957,3.809775,0.170658},{0.324533,-0.062008,-1.100847},{-1.433884,-0.007733,-0.479538},{-2.388664,-0.726916,-1.225764},{-3.718493,-0.821436,-0.78798},{-4.111587,-0.185327,0.400394},{-3.171253,0.5491,1.142478},{-1.842238,0.638162,0.704578},{1.030893,-1.299056,-0.138708},{0.75616,-1.461322,1.293562},{-0.292007,-2.533674,1.622115},{1.702384,-2.408446,-0.82469},{3.15928,-2.609417,-0.387864},{2.488216,2.482926,1.764986},{2.595578,0.708255,1.860828},{3.999789,1.653873,1.288822},{2.758322,2.315933,-0.77928},{2.826976,0.552582,-0.619267},{-0.743935,2.425751,-1.033131},{0.798503,2.915038,-1.766459},{1.436646,4.097247,0.379229},{-0.116563,4.689991,-0.256714},{-0.090095,3.556178,1.129073},{-2.081458,-1.219558,-2.156068},{-4.44887,-1.386052,-1.376221},{-5.148478,-0.255306,0.743684},{-3.475509,1.051944,2.066449},{-1.103387,1.210896,1.27551},{0.429683,-0.48187,1.678148},{1.704971,-1.691072,1.816835},{-0.455481,-2.582017,2.712331},{-1.253483,-2.299871,1.138435},{0.029039,-3.535101,1.290385},{1.138114,-3.352373,-0.679658},{1.666437,-2.187824,-1.90545},{3.239275,-2.861187,0.682666},{3.61476,-3.437811,-0.956676},{3.751925,-1.697004,-0.568309}} {C,C,N,C,C,P,C,C,C,C,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -30518 57 {{1.935645,2.652043,1.526529},{0.813995,1.70654,1.084007},{0.838255,1.419644,-0.35547},{0.732767,2.567827,-1.265762},{-0.569249,3.373152,-1.146041},{0.266536,-0.088207,-0.991967},{-1.372799,-0.37091,-0.1416},{-1.531383,-0.646118,1.232653},{-2.810789,-0.739279,1.798368},{-3.952037,-0.561432,0.997621},{-3.807622,-0.296232,-0.372858},{-2.52493,-0.204554,-0.935735},{1.249326,-1.181211,0.015078},{2.704081,-0.989238,-0.141676},{3.457752,-1.245061,1.16822},{0.836829,-2.598525,-0.03767},{0.898993,-3.277242,-1.417554},{1.817587,3.667742,1.114083},{1.93555,2.741124,2.625823},{2.919535,2.265868,1.210793},{0.939045,0.738611,1.595522},{-0.170406,2.112741,1.398852},{0.829367,2.170757,-2.291361},{1.601608,3.233512,-1.101282},{-1.44566,2.730956,-1.335276},{-0.686373,3.816441,-0.142951},{-0.57767,4.198599,-1.87815},{-0.640985,-0.801624,1.850895},{-2.920287,-0.952718,2.866822},{-4.95009,-0.635136,1.440813},{-4.692701,-0.167135,-1.004013},{-2.409323,-0.001381,-2.007398},{2.870697,0.055888,-0.452287},{3.118352,-1.631245,-0.948111},{3.110386,-0.555857,1.955497},{3.315185,-2.275943,1.53357},{4.540948,-1.091884,1.022543},{1.475817,-3.148738,0.676724},{-0.191758,-2.671699,0.353013},{1.907972,-3.222705,-1.85892},{0.627461,-4.342961,-1.329051},{0.197112,-2.804968,-2.124915}} {C,C,N,C,C,P,C,C,C,C,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -30496 58 {{-3.49327,-1.285123,-0.93737},{-2.023966,-1.725558,-1.103562},{-1.902058,-3.257914,-1.117092},{-1.075608,-1.048727,-0.185695},{-0.896314,-1.431114,1.234439},{-0.017082,-2.682914,1.446885},{-2.207215,-1.564347,2.029347},{-0.055227,0.121464,-0.945763},{1.651459,-0.379267,-0.380954},{2.426133,-1.094835,-1.316096},{3.690807,-1.594735,-0.969859},{4.198693,-1.379002,0.321329},{3.439319,-0.657943,1.258006},{2.177221,-0.158872,0.906291},{-0.269016,1.560772,0.107021},{-1.691278,1.867092,0.404256},{-1.815321,2.67181,1.70645},{-2.464463,2.527972,-0.756138},{0.529794,2.776,-0.254809},{1.642523,3.072733,0.76565},{1.091859,2.789404,-1.688783},{-3.946485,-1.660759,-0.007406},{-4.091908,-1.674522,-1.779287},{-3.57549,-0.186785,-0.944746},{-1.709627,-1.373831,-2.10427},{-2.277765,-3.712984,-0.18589},{-2.504123,-3.6669,-1.946195},{-0.855721,-3.570354,-1.260177},{-0.358231,-0.572513,1.674481},{-0.56791,-3.612126,1.233351},{0.87804,-2.651869,0.809156},{0.316178,-2.727038,2.498573},{-1.966954,-1.695695,3.098057},{-2.842916,-0.670415,1.930807},{-2.791673,-2.444869,1.716409},{2.026307,-1.261672,-2.323761},{4.281372,-2.148053,-1.707049},{5.184663,-1.767059,0.595651},{3.832338,-0.48584,2.265603},{1.583766,0.407636,1.63026},{-2.162034,0.886893,0.583326},{-1.375538,3.680211,1.614535},{-1.303632,2.148891,2.530761},{-2.877688,2.799634,1.976087},{-2.098571,3.545791,-0.975811},{-3.536462,2.612105,-0.507371},{-2.370893,1.926975,-1.676403},{-0.173579,3.626129,-0.198364},{2.480195,2.364524,0.670491},{2.039836,4.090287,0.602479},{1.252328,3.013623,1.79432},{1.584607,3.758298,-1.878191},{1.850334,2.0027,-1.841162},{0.296955,2.652984,-2.43903}} {C,C,C,N,C,C,C,P,C,C,C,C,C,C,N,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29450 138 {{0.078522,2.2828,1.432529},{-0.061942,2.413029,0.007017},{0.009906,1.06629,-1.016353},{-1.425338,0.055281,-0.423424},{-2.577523,0.70413,0.068499},{-3.727489,-0.030173,0.393718},{-3.752265,-1.421834,0.211063},{-2.618917,-2.074315,-0.299902},{-1.464636,-1.342573,-0.615081},{1.428609,0.07219,-0.345883},{1.383943,-0.713893,0.826272},{2.526796,-1.391202,1.273963},{3.730876,-1.293814,0.556578},{3.789037,-0.517314,-0.610586},{2.64435,0.160992,-1.056499},{-0.116868,3.280768,1.853963},{-0.64639,1.560632,1.850699},{1.101418,1.964999,1.700238},{-2.567351,1.791673,0.196299},{-4.608466,0.487549,0.78623},{-4.650697,-1.99424,0.460903},{-2.63052,-3.158601,-0.449549},{-0.584969,-1.865871,-1.004673},{0.44589,-0.806059,1.382397},{2.478551,-1.996985,2.184441},{4.62076,-1.826504,0.906035},{4.723128,-0.443067,-1.175893},{2.68665,0.765459,-1.969424}} {C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -9021 1290 {{1.602744,-1.225313,-0.039818},{0.809438,-1e-06,-0.191971},{1.60274,1.225315,-0.039835},{-0.75795,-5e-06,0.530461},{-1.357549,1.270726,-0.334215},{-1.357555,-1.270718,-0.334239},{2.368007,-1.251181,-0.834873},{0.963359,-2.111418,-0.16462},{2.121746,-1.284714,0.939968},{2.368004,1.251173,-0.834889},{2.12174,1.284732,0.939951},{0.963352,2.111416,-0.164651}} {C,N,C,P,F,F,H,H,H,H,H,H} \N -30497 58 {{-1.379871,2.877766,-1.9326},{-0.499326,2.791916,-0.67253},{0.953794,3.179063,-0.989348},{-0.59629,1.470307,-0.001114},{-1.38744,1.40941,1.250068},{-2.846425,1.86808,1.062113},{-0.736523,2.186481,2.409334},{0.03289,0.117227,-0.87942},{-1.223441,-1.162944,-0.409607},{-2.538928,-1.001943,-0.9009},{-3.512977,-1.986396,-0.693066},{-3.189481,-3.162946,0.004938},{-1.880672,-3.348236,0.473785},{-0.906015,-2.360451,0.258895},{1.512829,-0.448788,-0.158711},{2.553837,-0.784455,-1.158712},{3.912632,-0.095267,-0.947649},{2.722691,-2.30136,-1.385199},{1.752374,-0.473573,1.297949},{2.431582,-1.751816,1.826133},{2.516576,0.76354,1.82186},{-1.347835,3.892034,-2.367392},{-2.427993,2.634344,-1.696457},{-1.023399,2.164513,-2.695022},{-0.881165,3.529561,0.055727},{0.995691,4.181393,-1.448925},{1.569148,3.187777,-0.07592},{1.401625,2.461619,-1.698305},{-1.41651,0.341899,1.53043},{-3.406424,1.73725,2.003527},{-2.904408,2.936388,0.791142},{-3.350783,1.281509,0.280612},{-1.348974,2.08816,3.322029},{0.272836,1.813529,2.629588},{-0.660552,3.264087,2.181328},{-2.794111,-0.095686,-1.461422},{-4.525844,-1.839872,-1.082133},{-3.949253,-3.93322,0.168703},{-1.613186,-4.266772,1.006367},{0.118554,-2.52206,0.600682},{2.141392,-0.381402,-2.104205},{4.453528,-0.491936,-0.072628},{3.791565,0.992154,-0.821571},{4.550684,-0.27147,-1.830314},{3.337052,-2.482213,-2.284757},{1.740449,-2.776312,-1.539697},{3.219317,-2.800681,-0.538381},{0.743209,-0.440611,1.749375},{1.913606,-2.668053,1.50336},{3.480996,-1.819395,1.49692},{2.434936,-1.732281,2.929264},{2.435934,0.821846,2.921821},{3.58723,0.718746,1.571972},{2.099249,1.684903,1.391567}} {C,C,C,N,C,C,C,P,C,C,C,C,C,C,N,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -30490 59 {{2.556633,-2.076974,-0.511517},{1.337678,-1.448418,-0.006636},{1.128606,-1.690014,1.419093},{0.831841,4e-06,-0.830646},{-0.953068,7e-06,-0.350517},{-1.667688,-1.213076,-0.250823},{-3.052249,-1.212901,-0.027581},{-3.749797,4e-06,0.088106},{-3.052247,1.212911,-0.027553},{-1.667685,1.213089,-0.250795},{1.337676,1.448434,-0.006653},{1.128641,1.689996,1.419087},{2.556654,2.076953,-0.511525},{2.499561,-3.173762,-0.375015},{2.664124,-1.865441,-1.586954},{3.471344,-1.719058,0.00927},{1.071997,-2.778705,1.610839},{1.952849,-1.280575,2.040851},{0.181563,-1.238409,1.749788},{-1.124435,-2.15865,-0.346551},{-3.587933,-2.164044,0.055186},{-4.830248,3e-06,0.261963},{-3.587929,2.164053,0.055238},{-1.12443,2.158663,-0.346501},{0.181564,1.238457,1.749774},{1.952857,1.28047,2.040823},{1.072121,2.778685,1.610869},{2.499627,3.173739,-0.374988},{3.471355,1.718985,0.009243},{2.664127,1.865448,-1.586969}} {C,N,C,P,C,C,C,C,C,C,N,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -30491 59 {{-1.519411,2.704926,-0.364183},{-1.46286,1.371786,0.230237},{-1.123853,1.381249,1.650701},{-0.882683,0.114096,-0.820385},{0.901873,-0.093238,-0.323855},{1.863799,0.484547,-1.177001},{3.226692,0.463419,-0.840954},{3.643382,-0.146005,0.352489},{2.693542,-0.731688,1.206985},{1.332309,-0.703512,0.872759},{-1.547585,-1.275756,0.072673},{-3.012184,-1.239209,0.165635},{-1.102106,-2.555741,-0.492893},{-0.554975,3.252608,-0.286442},{-2.292756,3.306837,0.148128},{-1.787328,2.624415,-1.429736},{-1.853843,2.008518,2.194197},{-1.181494,0.356234,2.047396},{-0.106276,1.782097,1.844556},{1.538032,0.948768,-2.115566},{3.96299,0.913908,-1.514127},{4.70565,-0.169515,0.615115},{3.016756,-1.211091,2.136907},{0.587593,-1.165277,1.529662},{-3.342426,-2.036949,0.85422},{-3.515707,-1.399945,-0.814756},{-3.3361,-0.267898,0.567615},{-1.41951,-3.372406,0.179272},{-1.527364,-2.75848,-1.501738},{-0.004132,-2.583965,-0.567374}} {C,N,C,P,C,C,C,C,C,C,N,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29564 128 {{-1.203044,2.330096,-0.174958},{0.000667,1.527954,0.071975},{1.205153,2.328975,-0.174812},{-5.8e-05,-0.040771,-0.762715},{1.434324,-0.659492,-0.003596},{2.11616,-1.748506,-0.690922},{1.691304,-0.613312,1.430729},{-1.434963,-0.658228,-0.003527},{-1.691741,-0.611842,1.430827},{-2.117767,-1.746648,-0.690829},{-2.104899,1.725862,-0.001914},{-1.210738,3.186392,0.522926},{-1.247676,2.734842,-1.211311},{1.250311,2.733655,-1.211167},{1.21354,3.185282,0.523051},{2.106428,1.723925,-0.001623},{1.834648,-2.746824,-0.291024},{3.213471,-1.641438,-0.587511},{1.865707,-1.723208,-1.76401},{1.166425,0.247833,1.871135},{1.359752,-1.539616,1.946598},{2.776396,-0.493392,1.617802},{-1.360885,-1.538417,1.946659},{-2.77671,-0.491016,1.61802},{-1.166103,0.248879,1.871163},{-1.867513,-1.721438,-1.763964},{-3.214973,-1.638754,-0.587182},{-1.836898,-2.745211,-0.291092}} {C,N,C,P,N,C,C,N,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29565 128 {{1.200538,2.331449,-0.174888},{-0.002292,1.527943,0.071978},{-1.207609,2.327677,-0.174953},{0.000153,-0.04077,-0.762718},{1.435865,-0.656594,-0.003647},{2.119317,-1.744708,-0.690827},{1.692523,-0.610051,1.430741},{-1.433603,-0.660978,-0.003534},{-2.114332,-1.750723,-0.690789},{-1.690632,-0.61497,1.430786},{2.103089,1.72831,-0.001693},{1.244797,2.73616,-1.211267},{1.207144,3.187818,0.522916},{-1.253065,2.732307,-1.211312},{-2.108268,1.72169,-0.001861},{-1.216972,3.183973,0.522905},{1.838967,-2.743377,-0.291007},{3.216449,-1.63619,-0.587118},{1.869105,-1.719719,-1.763975},{1.36232,-1.536886,1.946518},{2.777388,-0.488439,1.617992},{1.166229,0.250259,1.871083},{-3.211751,-1.644766,-0.587361},{-1.831788,-2.748734,-0.290862},{-1.863927,-1.72521,-1.763882},{-2.775845,-0.496107,1.61784},{-1.166623,0.246731,1.871136},{-1.358174,-1.540903,1.946729}} {C,N,C,P,N,C,C,N,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29562 129 {{-0.754995,3.346038,-0.233853},{0.006466,2.170065,0.193584},{-0.137636,1.904863,1.625077},{-0.011857,0.848899,-0.949306},{1.493604,-0.075787,-0.414853},{2.593819,0.60292,0.148736},{3.784607,-0.08144,0.434742},{3.900253,-1.450973,0.149867},{2.815999,-2.131759,-0.427281},{1.623588,-1.450431,-0.709378},{-1.366952,-0.276414,-0.343704},{-1.272567,-1.122754,0.782017},{-2.382348,-1.8625,1.214575},{-3.605739,-1.766951,0.530463},{-3.714178,-0.929616,-0.5902},{-2.600959,-0.192509,-1.02328},{-1.846173,3.249589,-0.042404},{-0.392624,4.23467,0.314642},{-0.603745,3.51362,-1.311452},{0.528707,1.082365,1.927216},{-1.177428,1.63639,1.908831},{0.154176,2.807881,2.191143},{2.502637,1.672942,0.36194},{4.625675,0.458891,0.881007},{4.829535,-1.98414,0.372476},{2.896692,-3.199105,-0.656336},{0.783627,-1.994429,-1.154468},{-0.320712,-1.211912,1.315161},{-2.292945,-2.515875,2.088507},{-4.469841,-2.347288,0.868545},{-4.662184,-0.8566,-1.132463},{-2.681769,0.452939,-1.905413}} {C,N,C,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29451 138 {{-0.767461,3.337819,0.319603},{0.132542,2.2237,0.413354},{0.001288,1.093784,-0.854972},{1.449575,0.071008,-0.348746},{1.513004,-1.28377,-0.736827},{2.646931,-2.053319,-0.443829},{3.731399,-1.48006,0.240588},{3.673637,-0.133001,0.629072},{2.542736,0.64339,0.331307},{-1.368082,0.001059,-0.245711},{-1.416209,-0.4651,1.084957},{-2.479475,-1.270168,1.51189},{-3.499192,-1.627766,0.611111},{-3.458594,-1.169683,-0.713757},{-2.399221,-0.349599,-1.137686},{-0.458916,4.055494,1.095031},{-1.811243,3.026403,0.512872},{-0.713105,3.823543,-0.672922},{0.664976,-1.74508,-1.254817},{2.680262,-3.105518,-0.743342},{4.615266,-2.08227,0.472039},{4.512224,0.318681,1.168598},{2.492157,1.690641,0.641942},{-0.614101,-0.191514,1.778231},{-2.512768,-1.628138,2.545877},{-4.325797,-2.262356,0.945605},{-4.253004,-1.443562,-1.415012},{-2.369909,0.022455,-2.168187}} {C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29438 139 {{-0.376602,3.75027,0.979488},{0.026908,2.306829,0.726537},{-0.101013,2.052612,-0.692544},{0.023417,0.491397,-1.329729},{-1.391488,-0.374225,-0.503152},{-1.395664,-1.776542,-0.343548},{-2.532349,-2.436447,0.145888},{-3.683585,-1.70652,0.48248},{-3.69379,-0.312644,0.315893},{-2.560924,0.34703,-0.182956},{1.460821,-0.253123,-0.416195},{1.42011,-0.721266,0.915192},{2.575185,-1.225291,1.529111},{3.788208,-1.269779,0.821535},{3.842491,-0.80979,-0.502831},{2.684996,-0.30547,-1.115557},{0.255291,4.438082,0.395187},{-1.427631,3.920256,0.69456},{-0.261231,3.993109,2.049299},{1.074208,2.125708,1.031982},{-0.618535,1.61002,1.295121},{-0.501449,-2.357419,-0.593679},{-2.516337,-3.524004,0.269113},{-4.568518,-2.221667,0.868189},{-4.588643,0.263965,0.570922},{-2.577481,1.43252,-0.327085},{0.476172,-0.701896,1.468805},{2.529604,-1.584376,2.56222},{4.687924,-1.666761,1.30186},{4.783447,-0.847976,-1.060335},{2.724133,0.050395,-2.151176}} {C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29439 139 {{0.576726,2.398781,1.6742},{-0.447986,2.582676,0.560566},{0.020455,2.175516,-0.747817},{-0.031582,0.591993,-1.346449},{-1.452485,-0.189954,-0.442178},{-1.406135,-0.666948,0.886057},{-2.550052,-1.20569,1.491225},{-3.758434,-1.276,0.778025},{-3.818997,-0.806802,-0.542886},{-2.672311,-0.268726,-1.147029},{1.409282,-0.241428,-0.527939},{2.587807,0.492231,-0.277855},{3.745528,-0.14893,0.184847},{3.752607,-1.539017,0.3836},{2.594009,-2.283061,0.110656},{1.433032,-1.641198,-0.345954},{0.830359,1.338959,1.829084},{1.507704,2.943822,1.450752},{0.163343,2.794993,2.618248},{-1.384775,2.048324,0.802657},{-0.69346,3.651553,0.43785},{-0.466169,-0.625685,1.444751},{-2.499154,-1.570851,2.521904},{-4.649696,-1.699459,1.251377},{-4.756332,-0.864734,-1.104698},{-2.715906,0.093208,-2.180302},{2.588175,1.574574,-0.439677},{4.646694,0.438771,0.387122},{4.656812,-2.039928,0.742462},{2.590611,-3.367845,0.257612},{0.536339,-2.235333,-0.551871}} {C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29425 140 {{-2.34274,2.662377,-0.177393},{-0.87171,2.927449,-0.501266},{-0.205009,3.888123,0.484276},{-0.116655,1.686769,-0.626946},{-0.042819,0.657353,0.724447},{1.564891,-0.136657,0.285979},{1.853953,-1.43433,0.758238},{3.107005,-2.014286,0.518961},{4.08839,-1.306702,-0.194958},{3.806492,-0.016175,-0.667982},{2.554118,0.569698,-0.425815},{-1.192123,-0.703616,0.210336},{-2.045265,-1.267443,1.17702},{-2.92815,-2.303884,0.829219},{-2.97189,-2.769372,-0.493012},{-2.129745,-2.202089,-1.466559},{-1.239924,-1.178902,-1.116155},{-2.92225,3.599153,-0.235583},{-2.454263,2.25845,0.844053},{-2.773239,1.936968,-0.885614},{-0.799698,3.349415,-1.520265},{0.852028,4.046293,0.216337},{-0.249119,3.489625,1.511899},{-0.716978,4.865143,0.471979},{1.08961,-2.001757,1.300518},{3.314906,-3.025118,0.883781},{5.065523,-1.761528,-0.384162},{4.563069,0.538623,-1.232177},{2.326625,1.569412,-0.806339},{-2.020067,-0.889075,2.205498},{-3.58535,-2.74011,1.588034},{-3.662973,-3.572148,-0.76834},{-2.164302,-2.566023,-2.498495},{-0.577767,-0.736904,-1.867598}} {C,C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29426 140 {{0.705398,3.492346,0.709958},{-0.174435,2.263606,0.490583},{-1.652183,2.572721,0.732453},{0.015093,1.848443,-0.897769},{0.044342,0.239672,-1.404807},{-1.339141,-0.576991,-0.465754},{-1.273454,-0.995319,0.880745},{-2.403173,-1.527563,1.517737},{-3.614644,-1.653767,0.817531},{-3.690596,-1.253366,-0.525362},{-2.558552,-0.721128,-1.160864},{1.50731,-0.454538,-0.50403},{1.622876,-1.844467,-0.281159},{2.797234,-2.386979,0.2598},{3.878058,-1.551534,0.585313},{3.779923,-0.171035,0.352444},{2.608739,0.37069,-0.197768},{1.771355,3.25612,0.569786},{0.568919,3.881276,1.733008},{0.428648,4.285879,-0.003884},{0.157851,1.445412,1.158514},{-2.282951,1.687591,0.565511},{-1.982719,3.372724,0.049091},{-1.804644,2.915333,1.770274},{-0.331926,-0.908895,1.431876},{-2.339256,-1.843138,2.564009},{-4.495295,-2.06938,1.316978},{-4.629239,-1.357991,-1.078263},{-2.615932,-0.406142,-2.208857},{0.786177,-2.508204,-0.523889},{2.865927,-3.465782,0.432193},{4.792337,-1.975139,1.011797},{4.620078,0.487663,0.594537},{2.54462,1.443984,-0.398183}} {C,C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29414 141 {{-4.941792,-0.852448,0.026594},{-4.260076,-1.837531,0.761934},{-2.860537,-1.861172,0.793048},{-2.13096,-0.887443,0.086237},{-0.755069,-0.964035,0.192624},{0.255177,-0.213838,-0.986414},{0.447563,1.475967,-0.261884},{0.371517,1.706934,1.126412},{0.511923,3.006175,1.631133},{0.740648,4.082674,0.756217},{0.816171,3.859544,-0.626863},{0.657431,2.560183,-1.135594},{1.80246,-1.014351,-0.377547},{1.833009,-2.41953,-0.250714},{3.01697,-3.072043,0.11784},{4.191015,-2.333459,0.339669},{4.17148,-0.937807,0.1995},{2.98357,-0.279215,-0.15338},{-2.802361,0.110347,-0.642804},{-4.206195,0.114976,-0.672846},{-6.035021,-0.838779,0.002613},{-4.82169,-2.598261,1.312928},{-2.313523,-2.622819,1.355556},{0.196549,0.863183,1.801379},{0.44671,3.181641,2.709518},{0.852967,5.09605,1.153739},{0.986416,4.69668,-1.310841},{0.695038,2.386178,-2.217212},{0.921004,-2.9996,-0.422922},{3.023969,-4.160884,0.22846},{5.116608,-2.844651,0.621334},{5.080706,-0.354839,0.376498},{2.973718,0.811679,-0.239298},{-2.237932,0.881404,-1.174405},{-4.723633,0.892076,-1.243828}} {C,C,C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29415 141 {{-1.985289,3.212444,-1.098473},{-2.732477,2.462705,-0.175461},{-2.084413,1.67728,0.787769},{-0.680161,1.643961,0.829843},{-0.061568,0.887385,1.819338},{0.444458,-0.742599,1.565809},{-0.835669,-1.410765,0.413794},{-1.030176,-0.967021,-0.913426},{-2.072761,-1.490222,-1.689058},{-2.931626,-2.464577,-1.153213},{-2.748022,-2.914544,0.163025},{-1.707609,-2.385603,0.942389},{1.884888,-0.517187,0.424215},{2.845244,0.466672,0.748265},{4.024731,0.588975,0.002383},{4.278615,-0.288718,-1.065013},{3.346134,-1.289146,-1.376318},{2.158115,-1.404825,-0.637132},{0.076798,2.399081,-0.082503},{-0.582667,3.179417,-1.044858},{-2.492772,3.823325,-1.85079},{-3.826167,2.483519,-0.207397},{-2.648523,1.076888,1.506431},{-0.367003,-0.207301,-1.336666},{-2.218534,-1.132627,-2.713061},{-3.744011,-2.872271,-1.762929},{-3.413463,-3.674952,0.583046},{-1.565111,-2.729272,1.972979},{2.657215,1.146776,1.586094},{4.750811,1.367097,0.258328},{5.201429,-0.196264,-1.645637},{3.537895,-1.980752,-2.202759},{1.437201,-2.186381,-0.895716},{1.167089,2.367015,-0.036645},{0.007678,3.767539,-1.754488}} {C,C,C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -20913 565 {{-2.111883,-1.619012,0.246233},{-1.758501,0.020644,-0.500133},{-2e-06,0.545394,0.630934},{-0.000195,2.351472,0.164744},{1.758255,0.020695,-0.500574},{2.112481,-1.618392,0.246657},{-3.152031,-1.867453,-0.012038},{-1.44859,-2.394999,-0.163562},{-2.013032,-1.57828,1.341739},{0.897078,2.820851,0.59615},{-0.000517,2.510789,-0.925462},{-0.897238,2.820814,0.596669},{2.013593,-1.577069,1.342139},{1.449551,-2.394928,-0.16268},{3.152753,-1.866469,-0.011463}} {C,S,P,C,S,C,H,H,H,H,H,H,H,H,H} \N -20914 565 {{-2.112047,-1.61885,0.24631},{-1.758473,0.020691,-0.500217},{-3.1e-05,0.545395,0.630916},{-5e-05,2.351447,0.16466},{1.758399,0.020733,-0.500304},{2.112257,-1.618671,0.246389},{-1.449212,-2.395034,-0.163855},{-2.012563,-1.578144,1.34176},{-3.152418,-1.866953,-0.011379},{5.1e-05,2.51074,-0.925551},{-0.89727,2.820785,0.596217},{0.897059,2.820835,0.596389},{1.449469,-2.395007,-0.163559},{3.152627,-1.866654,-0.011428},{2.012945,-1.577834,1.341848}} {C,S,P,C,S,C,H,H,H,H,H,H,H,H,H} \N -29403 142 {{2.692379,-2.357738,0.928943},{3.064696,-0.777782,0.272071},{4.395474,-0.351358,0.194364},{4.696548,0.90972,-0.34219},{3.65987,1.739753,-0.791539},{2.325718,1.318359,-0.702785},{2.011614,0.051739,-0.176654},{0.733346,-0.419172,-0.035432},{-0.525313,0.102553,-1.097447},{-1.71629,-1.194961,-0.552169},{-1.27007,-2.477653,-0.175133},{-2.200334,-3.480992,0.135644},{-3.577374,-3.22181,0.058338},{-4.025233,-1.947354,-0.32473},{-3.101058,-0.937747,-0.627044},{-1.198638,1.551573,-0.16523},{-1.375969,1.527163,1.233503},{-1.872645,2.655234,1.897805},{-2.210903,3.810624,1.17051},{-2.041571,3.840319,-0.221427},{-1.526632,2.715351,-0.886689},{5.186739,-1.016547,0.549257},{5.737965,1.236579,-0.404194},{3.883256,2.726866,-1.20612},{1.51543,1.975146,-1.030702},{-0.197623,-2.678268,-0.101449},{-1.844198,-4.469626,0.441667},{-4.299389,-4.007931,0.299209},{-5.097292,-1.734083,-0.378668},{-3.460168,0.05925,-0.904309},{-1.11907,0.622059,1.79312},{-2.003639,2.634621,2.984197},{-2.60413,4.688557,1.692217},{-2.301304,4.739407,-0.788593},{-1.377306,2.739526,-1.972375}} {Cl,C,C,C,C,C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29404 142 {{-2.429129,2.511112,-0.593275},{-2.948825,0.920818,-0.079186},{-4.302703,0.567297,-0.162566},{-4.715475,-0.707367,0.251741},{-3.77628,-1.624958,0.747855},{-2.423602,-1.268534,0.829236},{-1.996396,0.005797,0.418778},{-0.674084,0.366955,0.564492},{0.358519,0.105051,-0.807035},{1.708352,1.209053,-0.216547},{3.049586,0.924617,-0.549257},{4.070388,1.821709,-0.204915},{3.764699,3.010421,0.476945},{2.431742,3.298749,0.808981},{1.405211,2.409495,0.458063},{1.069976,-1.5446,-0.367277},{1.642351,-1.813135,0.894611},{2.123188,-3.09402,1.191865},{2.046143,-4.117138,0.229112},{1.480806,-3.858636,-1.027961},{0.987277,-2.576553,-1.321985},{-5.021409,1.294045,-0.549625},{-5.773085,-0.977734,0.186158},{-4.095142,-2.619567,1.07234},{-1.670518,-1.962065,1.213578},{3.300453,-0.008855,-1.064107},{5.107887,1.586124,-0.461665},{4.562666,3.707631,0.749968},{2.186907,4.221325,1.344596},{0.367406,2.633426,0.719465},{1.706415,-1.012217,1.63818},{2.564321,-3.297467,2.172782},{2.42705,-5.116217,0.462675},{1.417532,-4.653981,-1.776923},{0.530983,-2.372849,-2.297111}} {Cl,C,C,C,C,C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29388 143 {{3.147408,-1.404145,-0.047883},{1.766404,-1.056535,0.160043},{1.161414,0.173735,-0.830989},{1.53621,1.589432,-0.007677},{1.179798,1.746875,1.383692},{-0.604753,-0.079969,-0.339423},{-1.528476,0.920406,-0.709609},{-2.891422,0.773584,-0.4167},{-3.348007,-0.383246,0.236346},{-2.436241,-1.387592,0.596912},{-1.070467,-1.23986,0.308832},{3.389068,-1.476661,-1.123947},{3.815705,-0.661179,0.422557},{3.302774,-2.383971,0.428612},{0.084728,1.812231,1.503469},{1.647177,2.684464,1.718874},{1.561242,0.903814,1.984436},{-1.175898,1.823804,-1.220802},{-3.598056,1.559544,-0.700855},{-4.412557,-0.50197,0.46061},{-2.789162,-2.290571,1.105257},{-0.354177,-2.015022,0.594683}} {C,O,P,O,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H} \N -29389 143 {{3.147537,-1.403854,-0.048524},{1.766475,-1.056551,0.15957},{1.161441,0.174125,-0.830966},{1.53618,1.589424,-0.006923},{1.179394,1.746209,1.384427},{-0.604732,-0.079885,-0.33957},{-1.528663,0.92007,-0.710369},{-2.89159,0.773127,-0.417408},{-3.347935,-0.38341,0.236328},{-2.435955,-1.387345,0.597514},{-1.070206,-1.239489,0.309375},{3.815738,-0.66078,0.421887},{3.303153,-2.383677,0.427899},{3.38909,-1.476266,-1.124621},{1.646983,2.683463,1.720249},{1.56037,0.902683,1.984824},{0.084304,1.811858,1.503899},{-1.176275,1.823236,-1.222111},{-3.598393,1.558758,-0.702064},{-4.412467,-0.502234,0.46064},{-2.788693,-2.2901,1.10639},{-0.353756,-2.014339,0.595679}} {C,O,P,O,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H} \N -29356 144 {{-2.095476,3.281166,0.052291},{-2.286566,1.772161,0.025528},{-1.02554,1.128843,0.316335},{-0.560256,-0.155779,-0.672221},{-0.911816,-1.569704,0.179667},{-2.088743,-2.308479,-0.223335},{-3.304355,-1.931965,0.614668},{1.216957,-0.098216,-0.202304},{1.969694,-1.286938,-0.121171},{3.348931,-1.235634,0.127882},{3.991321,0.0023,0.287948},{3.247907,1.190286,0.202532},{1.868728,1.141956,-0.046124},{-1.687603,3.6019,1.024394},{-3.060817,3.791739,-0.104603},{-1.399264,3.601509,-0.739975},{-3.015061,1.454919,0.79503},{-2.663967,1.437965,-0.96171},{-1.830569,-3.371917,-0.080634},{-2.284659,-2.144528,-1.30125},{-3.083592,-2.045443,1.688101},{-4.158244,-2.58371,0.36167},{-3.607034,-0.887572,0.432875},{1.464742,-2.251251,-0.228979},{3.922334,-2.165023,0.201815},{5.067934,0.04119,0.480737},{3.742421,2.157734,0.33499},{1.285656,2.066224,-0.094666}} {C,C,O,P,O,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29357 144 {{2.054591,-3.429447,0.44455},{1.140622,-2.529096,-0.371944},{1.219463,-1.193827,0.169454},{0.64453,0.054316,-0.831533},{1.188327,1.333609,0.104386},{2.590077,1.673022,-0.039357},{2.801846,3.060185,0.543721},{-1.11243,0.153561,-0.275952},{-1.475525,-0.049993,1.070735},{-2.82142,0.019732,1.452884},{-3.813898,0.2876,0.493168},{-3.459638,0.482293,-0.850408},{-2.110676,0.411393,-1.233822},{3.099843,-3.087102,0.377321},{2.000077,-4.466086,0.071853},{1.755562,-3.424651,1.505126},{1.440153,-2.525111,-1.439665},{0.092481,-2.884973,-0.317441},{2.87361,1.643022,-1.110355},{3.195306,0.918818,0.496684},{2.504373,3.083532,1.604382},{2.204203,3.808653,-0.000776},{3.865985,3.34175,0.474321},{-0.694925,-0.264916,1.80706},{-3.101193,-0.134668,2.499959},{-4.86494,0.339441,0.794258},{-4.232108,0.68587,-1.598506},{-1.83,0.557943,-2.283393}} {C,C,O,P,O,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29329 145 {{3.184625,3.498202,0.166942},{3.187415,2.136394,0.502671},{2.019462,1.366303,0.387253},{0.834275,1.977941,-0.055658},{-0.362575,1.294937,-0.223909},{-0.733636,-0.08567,0.709081},{-0.271022,-1.326926,-0.375858},{0.972504,-1.930533,-0.229297},{1.777468,-2.035336,-1.374989},{3.026198,-2.66598,-1.28568},{3.477418,-3.181064,-0.05919},{2.66423,-3.070929,1.079641},{1.407262,-2.451314,1.00167},{-2.505279,-0.121547,0.247672},{-3.450984,-0.145478,1.289743},{-4.823741,-0.170806,0.99654},{-5.251875,-0.171551,-0.338889},{-4.309382,-0.147446,-1.382392},{-2.939716,-0.122935,-1.093621},{0.819562,3.341928,-0.394369},{1.995571,4.095024,-0.285104},{4.100744,4.08927,0.25295},{4.107742,1.655919,0.848382},{2.041612,0.300135,0.630185},{1.413986,-1.612944,-2.315393},{3.653226,-2.746071,-2.178847},{4.454305,-3.668257,0.007571},{3.003329,-3.475968,2.038024},{0.764139,-2.372035,1.882427},{-3.113206,-0.144079,2.332207},{-5.555745,-0.189947,1.809517},{-6.321437,-0.191344,-0.569806},{-4.646206,-0.14852,-2.423701},{-2.202156,-0.106024,-1.900673},{-0.117125,3.789115,-0.7377},{1.980033,5.156461,-0.550878}} {C,C,C,C,O,P,O,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -14388 1012 {{0.015895,2.354182,0.856406},{-0.058296,1.481166,-0.570643},{1.397636,0.384939,-0.282181},{2.271771,0.567138,0.806164},{3.392708,-0.265613,0.955482},{3.651927,-1.278994,0.020817},{2.786358,-1.458462,-1.071409},{1.668754,-0.627756,-1.226034},{-1.418286,0.30647,-0.148801},{-1.294415,-0.717702,0.814193},{-2.382913,-1.551342,1.099109},{-3.600839,-1.378909,0.418113},{-3.731697,-0.367826,-0.54546},{-2.64408,0.473696,-0.82554},{2.068302,1.355925,1.535815},{4.064512,-0.120105,1.80726},{4.526733,-1.925426,0.139273},{2.983102,-2.246357,-1.804998},{0.998648,-0.775859,-2.080902},{-0.341738,-0.861425,1.333547},{-2.282076,-2.342239,1.848867},{-4.44727,-2.036636,0.638832},{-4.678475,-0.233733,-1.077376},{-2.741893,1.266897,-1.575048}} {F,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H} \N -29330 145 {{-3.185181,-3.497609,0.166838},{-1.996351,-4.094557,-0.28563},{-0.820145,-3.341744,-0.394705},{-0.834417,-1.977905,-0.055361},{0.362608,-1.295191,-0.22347},{0.733763,0.085614,0.709271},{0.271085,1.326609,-0.375857},{-0.972364,1.930376,-0.229361},{-1.777247,2.035206,-1.375099},{-3.025892,2.666033,-1.285898},{-3.477103,3.181276,-0.059474},{-2.663985,3.071122,1.079404},{-1.4071,2.451326,1.001545},{2.505362,0.121373,0.247713},{2.939693,0.12259,-1.093613},{4.309338,0.147043,-1.38249},{5.251911,0.171267,-0.339065},{4.823882,0.1707,0.996398},{3.451148,0.145422,1.28971},{-2.01938,-1.366146,0.387986},{-3.187536,-2.135958,0.503204},{-4.10146,-4.088454,0.252679},{-1.981148,-5.155873,-0.551907},{0.116364,-3.789036,-0.738382},{-1.413777,1.612684,-2.315448},{-3.652865,2.746138,-2.179101},{-4.453928,3.668605,0.007201},{-3.003074,3.476283,2.037738},{-0.764039,2.372009,1.882345},{2.202072,0.105594,-1.900606},{4.64608,0.147977,-2.423826},{6.321456,0.191017,-0.570068},{5.555948,0.18994,1.809316},{3.113452,0.144166,2.3322},{-2.04119,-0.300106,0.631518},{-4.107677,-1.65538,0.849262}} {C,C,C,C,O,P,O,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29269 146 {{4.605086,-0.715271,-0.368209},{3.408847,-1.420552,0.280562},{2.48149,-2.0786,-0.749033},{1.212787,-2.682973,-0.14399},{0.439181,-1.712708,0.597136},{-0.46927,-0.611372,-0.323372},{-1.619732,-0.249878,0.844915},{-2.73457,-1.172738,0.947708},{-3.829126,-0.869845,-0.073799},{-4.425625,0.537039,0.063076},{-5.498886,0.831804,-0.990897},{0.511209,0.92973,-0.069237},{0.817147,1.422887,1.215629},{1.628606,2.55562,1.357219},{2.144272,3.202379,0.219514},{1.841775,2.717682,-1.061509},{1.025273,1.583791,-1.203829},{5.265173,-0.261409,0.389606},{5.21293,-1.416571,-0.967184},{4.264832,0.092681,-1.039395},{3.762581,-2.190097,0.993344},{2.825651,-0.693446,0.871464},{2.190697,-1.331369,-1.513734},{3.021041,-2.87951,-1.291866},{0.588101,-3.140038,-0.937424},{1.4646,-3.466276,0.592428},{-3.11303,-1.042247,1.976619},{-2.373269,-2.214176,0.853937},{-3.416641,-1.005253,-1.092258},{-4.625288,-1.631057,0.04395},{-3.610657,1.278721,-0.009953},{-4.855547,0.650266,1.077013},{-5.083739,0.757265,-2.011311},{-6.337159,0.116149,-0.921322},{-5.914125,1.846474,-0.872679},{0.41457,0.911823,2.095181},{1.864471,2.936406,2.356114},{2.781795,4.084602,0.334191},{2.239102,3.221403,-1.948214},{0.787641,1.201203,-2.203556}} {C,C,C,C,O,P,O,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -29270 146 {{2.183031,4.21508,-0.985308},{1.360379,3.434406,0.045719},{2.027299,2.116307,0.457591},{1.237691,1.313969,1.492264},{-0.107997,0.966312,1.083062},{-0.300542,0.117502,-0.355692},{0.297014,-1.37638,0.184106},{0.806141,-2.282236,-0.819776},{2.138919,-2.866475,-0.361475},{3.277031,-1.839088,-0.301147},{4.603597,-2.444495,0.171145},{-2.116888,-0.1136,-0.139217},{-2.67036,-0.648438,1.041914},{-4.05406,-0.837095,1.144919},{-4.895162,-0.495836,0.070109},{-4.350227,0.032661,-1.109299},{-2.962135,0.22035,-1.213426},{3.183777,4.467285,-0.592188},{2.327477,3.622926,-1.905956},{1.687004,5.158137,-1.268943},{1.197275,4.055107,0.947473},{0.357036,3.218282,-0.362736},{2.204061,1.492836,-0.440273},{3.026304,2.318008,0.891266},{1.776772,0.38752,1.7646},{1.093881,1.908592,2.410883},{0.930874,-1.748906,-1.785186},{0.057569,-3.082318,-0.97002},{1.997848,-3.331356,0.632508},{2.410037,-3.684801,-1.05671},{2.981793,-1.017157,0.374785},{3.408214,-1.38508,-1.302382},{5.405152,-1.687958,0.20562},{4.504985,-2.874775,1.183094},{4.935854,-3.254338,-0.50197},{-2.008441,-0.910557,1.872655},{-4.482316,-1.250663,2.06364},{-5.976269,-0.644904,0.15406},{-5.003511,0.297832,-1.946399},{-2.530918,0.631234,-2.133855}} {C,C,C,C,O,P,O,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -27388 238 {{-5.543963,-1.008514,-0.210339},{-4.314829,-1.897163,0.016138},{-3.0264,-1.087718,0.219058},{-1.805872,-1.978344,0.445234},{-0.595194,-1.224383,0.683984},{0.128523,-0.54403,-0.696799},{-0.05956,1.256865,-0.322485},{-0.659676,1.722373,0.862941},{-0.80481,3.10045,1.088957},{-0.350409,4.024993,0.13596},{0.247766,3.566502,-1.049937},{0.385277,2.190871,-1.280839},{1.900032,-0.784225,-0.222886},{2.560296,-0.007952,0.751284},{3.895298,-0.276359,1.083618},{4.587347,-1.3172,0.44198},{3.940993,-2.090885,-0.534218},{2.604339,-1.822684,-0.865977},{-6.457145,-1.609637,-0.353681},{-5.414733,-0.373727,-1.103969},{-5.713511,-0.338675,0.650474},{-4.483323,-2.545292,0.897482},{-4.1866,-2.578475,-0.846499},{-2.846936,-0.446934,-0.665864},{-3.140391,-0.406382,1.082603},{-1.663182,-2.659068,-0.417872},{-1.937322,-2.598737,1.349071},{-1.003461,0.994883,1.604295},{-1.27132,3.452181,2.014875},{-0.464642,5.098783,0.313313},{0.601158,4.282181,-1.798916},{0.845333,1.839295,-2.211817},{2.026808,0.809638,1.245827},{4.399274,0.330185,1.842811},{5.631267,-1.521048,0.700014},{4.47835,-2.898853,-1.040462},{2.099098,-2.420873,-1.632494}} {C,C,C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -27389 238 {{4.915495,-1.865639,-0.836686},{4.634719,-1.00415,0.403431},{3.204159,-0.440384,0.469615},{2.133104,-1.515685,0.653931},{0.809599,-0.953535,0.815815},{0.043442,-0.459929,-0.620183},{-1.683404,-0.973871,-0.201242},{-2.516058,-0.267517,0.690476},{-3.801221,-0.743216,0.985444},{-4.271383,-1.924793,0.388399},{-3.452775,-2.631307,-0.506148},{-2.166488,-2.155064,-0.801031},{-0.085369,1.360649,-0.325149},{-0.624585,2.168573,-1.347438},{-0.728547,3.555928,-1.176771},{-0.280149,4.1544,0.012774},{0.267384,3.357185,1.029743},{0.363906,1.966437,0.863694},{4.303482,-2.782848,-0.852479},{5.972913,-2.1761,-0.873795},{4.697029,-1.305524,-1.762714},{4.838436,-1.592063,1.319302},{5.34369,-0.157013,0.423123},{3.122574,0.274882,1.307732},{2.986551,0.129978,-0.454344},{2.316057,-2.088794,1.580265},{2.13324,-2.226782,-0.193923},{-2.156424,0.658126,1.1503},{-4.439868,-0.189044,1.680631},{-5.27713,-2.291032,0.616943},{-3.817438,-3.548968,-0.978133},{-1.528207,-2.700685,-1.505013},{-0.968267,1.708494,-2.281341},{-1.153162,4.172336,-1.975387},{-0.354325,5.238351,0.143469},{0.617918,3.818282,1.958821},{0.781784,1.336346,1.654499}} {C,C,C,C,O,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -27137 247 {{3.3772,0.982853,0.63098},{2.637457,0.362163,-0.559074},{1.354973,-0.266213,-0.176192},{1.372015,-1.731847,-0.290526},{2.266528,-2.388977,0.765255},{-0.06368,0.498139,-0.959914},{0.098584,2.177419,-0.131082},{-1.067274,3.090605,-0.529927},{-1.356341,-0.204541,-0.071933},{-1.351774,-0.344468,1.387582},{-2.355885,0.56604,2.10858},{-2.463561,-0.826961,-0.804804},{-2.399468,-2.358685,-0.895243},{3.584867,0.223468,1.401767},{4.336689,1.42477,0.308077},{2.770446,1.774705,1.099087},{3.281834,-0.395546,-1.047687},{2.472473,1.137667,-1.335147},{1.692692,-2.05958,-1.307504},{0.337358,-2.087167,-0.154644},{3.32473,-2.102907,0.643625},{1.947181,-2.093965,1.778686},{2.208848,-3.487736,0.682639},{1.056325,2.628112,-0.444163},{0.151132,2.035887,0.963768},{-1.085115,3.264944,-1.619149},{-0.992302,4.07219,-0.032422},{-2.035928,2.643012,-0.250864},{-1.554519,-1.401151,1.655385},{-0.324645,-0.138328,1.736154},{-2.122894,1.628455,1.933533},{-2.328496,0.381271,3.196555},{-3.388668,0.384935,1.766443},{-2.467702,-0.399926,-1.822352},{-3.419373,-0.520783,-0.336164},{-3.298625,-2.751157,-1.400829},{-2.348687,-2.827592,0.101974},{-1.515784,-2.679235,-1.471616}} {C,C,N,C,C,P,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -27138 247 {{2.15368,-2.582674,-0.512397},{1.37085,-1.446782,-1.177966},{1.280913,-0.24177,-0.336544},{2.557291,0.486174,-0.210705},{3.236055,0.285647,1.150671},{-0.155391,0.742029,-0.734406},{-0.002227,2.041267,0.632842},{0.391624,3.431166,0.112934},{-1.354842,-0.348899,-0.140376},{-2.628686,-0.405892,-0.862426},{-3.729387,0.510807,-0.30707},{-1.335302,-0.815962,1.249912},{-1.716105,-2.293597,1.398664},{2.122857,-3.485635,-1.145991},{3.214143,-2.320089,-0.362842},{1.718861,-2.827558,0.471171},{0.338407,-1.787517,-1.367888},{1.826164,-1.211503,-2.167776},{2.402089,1.568366,-0.37499},{3.243275,0.165308,-1.021558},{3.432756,-0.780147,1.346077},{4.196527,0.829886,1.189717},{2.594656,0.658747,1.965935},{0.679027,1.696161,1.430097},{-1.012434,2.087931,1.078094},{0.357473,4.182533,0.920269},{-0.2914,3.762542,-0.687487},{1.412123,3.444386,-0.306701},{-2.415999,-0.131149,-1.910447},{-2.989639,-1.452551,-0.877787},{-4.652787,0.41001,-0.90286},{-3.41148,1.566916,-0.34211},{-3.979829,0.263874,0.738433},{-1.995475,-0.195979,1.894253},{-0.301514,-0.679073,1.609524},{-1.597928,-2.608511,2.449248},{-1.065269,-2.925205,0.771293},{-2.76299,-2.488419,1.112107}} {C,C,N,C,C,P,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -26826 267 {{-0.000505,2.48188,2.370169},{-1.339017,2.217365,1.684442},{-1.319551,2.628276,-0.126614},{-0.933494,0.863457,-1.246417},{-2.175054,-0.386034,-0.684935},{-1.936675,-1.749172,-0.963483},{-2.917085,-2.711123,-0.689291},{-4.154563,-2.325816,-0.148386},{-4.404991,-0.970439,0.110145},{-3.423996,-0.00392,-0.159839},{0.637159,0.157384,-0.523245},{0.771604,-0.568016,0.67636},{-0.292097,-0.796908,1.479592},{2.000517,-1.077884,1.113729},{2.087665,-1.764886,2.270789},{3.154753,-0.85431,0.350577},{4.340195,-1.331905,0.766055},{3.066992,-0.129647,-0.844816},{4.173786,0.085998,-1.581793},{1.821659,0.360329,-1.258992},{1.789206,1.050294,-2.420055},{0.291854,3.539787,2.276326},{-0.0718,2.23701,3.444348},{0.804799,1.871041,1.933841},{-1.667512,1.173541,1.798461},{-2.131681,2.862091,2.100558},{-0.977426,-2.065355,-1.388159},{-2.713313,-3.765457,-0.899804},{-4.918982,-3.078331,0.066276},{-5.367808,-0.659129,0.526996},{-3.626492,1.053597,0.03735}} {C,C,S,P,C,C,C,C,C,C,C,C,F,C,F,C,F,C,F,C,F,H,H,H,H,H,H,H,H,H,H} \N -26827 267 {{-0.90545,2.467952,1.867378},{-2.069495,2.416174,0.883345},{-1.605846,2.389719,-0.905597},{-0.949298,0.420264,-1.401379},{-2.061219,-0.59739,-0.330272},{-1.7595,-1.012773,0.98144},{-2.694583,-1.746782,1.725874},{-3.944335,-2.064707,1.172745},{-4.255306,-1.649025,-0.131856},{-3.31883,-0.922864,-0.880362},{0.716842,0.086506,-0.608145},{1.148893,-1.255595,-0.575217},{0.313117,-2.238924,-0.991453},{2.420544,-1.644055,-0.141213},{2.771547,-2.945449,-0.112752},{3.338627,-0.662564,0.254392},{4.569484,-1.011855,0.669791},{2.966346,0.685422,0.199955},{3.848917,1.637934,0.563506},{1.681477,1.042176,-0.236848},{1.418848,2.366076,-0.28913},{-0.297799,1.550843,1.817984},{-0.244068,3.324971,1.668682},{-1.294162,2.556414,2.897001},{-2.725254,1.550797,1.074451},{-2.692013,3.324904,0.955132},{-0.789458,-0.76725,1.424088},{-2.445367,-2.066122,2.742456},{-4.672572,-2.636932,1.755095},{-5.225617,-1.897823,-0.572001},{-3.561958,-0.604145,-1.8996}} {C,C,S,P,C,C,C,C,C,C,C,C,F,C,F,C,F,C,F,C,F,H,H,H,H,H,H,H,H,H,H} \N -26736 272 {{-5.068113,-0.527431,0.190819},{-3.746744,-1.215129,0.555086},{-2.560609,-0.710217,-0.279204},{-1.232954,-1.388993,0.078173},{0.220187,-0.683128,-0.876},{1.560698,-1.763157,-0.116459},{2.967522,-1.529544,-0.69777},{3.669563,-0.242271,-0.226012},{4.063588,-0.2619,1.256973},{0.404611,0.876326,-0.150393},{0.564164,2.030716,-1.04198},{-0.756301,2.618254,-1.558994},{0.569463,1.113402,1.280515},{-0.548956,1.94306,1.928965},{-5.002142,0.564213,0.342915},{-5.325632,-0.698381,-0.869061},{-5.904825,-0.901825,0.803971},{-3.846655,-2.309634,0.423676},{-3.52729,-1.055375,1.628547},{-2.458598,0.383144,-0.143047},{-2.773574,-0.863405,-1.354499},{-1.27985,-2.468656,-0.159692},{-1.043339,-1.315367,1.167822},{1.562534,-1.686851,0.987738},{1.236983,-2.795756,-0.348184},{3.610429,-2.393355,-0.437168},{2.895626,-1.520685,-1.8014},{4.580234,-0.097684,-0.83602},{3.018973,0.627353,-0.428153},{4.583685,0.666762,1.546123},{4.740586,-1.107121,1.474441},{3.184859,-0.363775,1.915761},{1.188205,1.739267,-1.908286},{1.135956,2.805111,-0.494373},{-1.308601,1.856501,-2.134291},{-0.567957,3.480498,-2.223081},{-1.401342,2.951258,-0.729796},{1.546418,1.612323,1.46385},{0.629778,0.135979,1.789246},{-1.528682,1.456446,1.792235},{-0.605626,2.953301,1.491444},{-0.363156,2.057612,3.01135}} {C,C,C,C,P,C,C,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -26737 272 {{0.569207,4.18085,1.265074},{0.421293,3.447522,-0.073583},{0.255308,1.929681,0.093156},{0.092054,1.195381,-1.242853},{0.081953,-0.682448,-1.222102},{-1.239091,-0.97167,0.081583},{-2.628074,-0.494478,-0.364788},{-3.742953,-0.909862,0.607516},{-5.127708,-0.411713,0.177296},{1.517147,-0.997602,-0.197351},{1.591534,-2.418624,0.214205},{1.515947,-2.597193,1.73389},{2.779154,-0.510769,-0.778717},{3.896243,-0.408174,0.264866},{1.447811,3.813181,1.823487},{0.692053,5.267532,1.122794},{-0.317749,4.0243,1.903772},{1.306741,3.647671,-0.707239},{-0.44769,3.853008,-0.626778},{-0.623539,1.733804,0.735695},{1.123781,1.513697,0.636315},{0.8801,1.504393,-1.954353},{-0.858048,1.477635,-1.735672},{-1.27247,-2.06061,0.267753},{-0.936943,-0.490377,1.029118},{-2.633011,0.608038,-0.462402},{-2.856685,-0.89307,-1.372555},{-3.752746,-2.013015,0.694585},{-3.504226,-0.524655,1.617222},{-5.151836,0.690349,0.114135},{-5.910331,-0.723351,0.888898},{-5.401095,-0.806773,-0.816699},{2.52927,-2.865585,-0.172333},{0.778322,-3.000101,-0.266752},{2.333884,-2.05457,2.234391},{1.587947,-3.66561,2.004959},{0.565348,-2.202407,2.126949},{2.603303,0.493087,-1.199583},{3.117245,-1.153961,-1.625085},{4.809568,0.005167,-0.195699},{4.154651,-1.393262,0.687233},{3.589544,0.249689,1.094965}} {C,C,C,C,P,C,C,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -26380 297 {{-0.786569,-2.686745,-0.452794},{-1.605615,-1.475719,0.03554},{-1.580035,-1.430555,1.571229},{-3.06531,-1.658099,-0.440187},{-0.927516,0.032219,-0.958666},{0.809655,-0.118813,-0.955488},{2.288586,-0.116474,0.025716},{2.06854,-0.798552,1.774717},{3.484527,-1.239768,-0.922689},{3.082556,1.604935,0.11945},{-1.262184,1.64079,0.0226},{-2.787079,1.799879,0.178935},{-0.578675,1.79112,1.390748},{-0.73956,2.755308,-0.911389},{-1.236397,-3.61779,-0.061184},{-0.777127,-2.752695,-1.554884},{0.259511,-2.634664,-0.113112},{-1.943314,-2.395802,1.973802},{-0.567109,-1.268681,1.966943},{-2.240614,-0.645359,1.972473},{-3.482311,-2.586683,-0.007518},{-3.71536,-0.826046,-0.125583},{-3.123214,-1.73531,-1.538587},{1.076993,-0.263526,-1.932721},{3.05746,-0.807981,2.266139},{1.689977,-1.83342,1.764249},{1.396763,-0.187152,2.396844},{3.639781,-0.883003,-1.955976},{4.472457,-1.264628,-0.431731},{3.101713,-2.272843,-0.974284},{4.070844,1.544801,0.608792},{3.233951,2.009843,-0.895897},{2.473836,2.332433,0.680277},{-3.312689,1.653228,-0.780486},{-3.205196,1.093225,0.913991},{-3.017289,2.82077,0.535784},{-0.787275,2.79894,1.797955},{-0.932573,1.055863,2.126725},{0.514067,1.699811,1.306321},{-0.932721,3.744423,-0.455959},{0.346309,2.660052,-1.076653},{-1.239102,2.725663,-1.894307}} {C,C,C,C,P,N,Si,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -26381 297 {{2.989481,1.536718,0.494264},{1.53874,1.57241,-0.015856},{1.513683,1.84449,-1.529053},{0.790818,2.721559,0.695794},{0.585926,-0.002616,0.549241},{-0.769455,0.013372,-0.527157},{-2.460048,-0.007052,-0.01055},{-2.881999,1.554527,0.969094},{-3.47178,-0.082319,-1.607437},{-2.819898,-1.506865,1.082595},{1.553867,-1.562849,-0.022549},{0.533631,-2.715504,0.085965},{2.113006,-1.526181,-1.452861},{2.68664,-1.831291,0.989302},{3.448445,2.535833,0.375878},{3.040811,1.272747,1.56502},{3.610324,0.821797,-0.069119},{0.479233,1.908547,-1.907},{2.05302,1.081454,-2.109786},{1.99391,2.819305,-1.735838},{1.263758,3.689007,0.443003},{0.8145,2.603086,1.792008},{-0.264236,2.767771,0.379806},{-0.587897,0.012572,-1.535182},{-2.767727,2.460048,0.34974},{-2.214262,1.652904,1.841725},{-3.921253,1.521023,1.339648},{-4.551854,-0.083081,-1.382677},{-3.24888,-0.998088,-2.181134},{-3.266514,0.788201,-2.253774},{-2.658729,-2.45164,0.53789},{-2.157525,-1.505925,1.96476},{-3.863318,-1.488407,1.442205},{-0.285856,-2.599128,-0.640651},{0.087013,-2.768622,1.093575},{1.042833,-3.676615,-0.112344},{2.934664,-0.800277,-1.559325},{2.515191,-2.520749,-1.724252},{1.332745,-1.279657,-2.194292},{3.489165,-1.080309,0.937811},{2.301059,-1.847964,2.023044},{3.142207,-2.817645,0.782891}} {C,C,C,C,P,N,Si,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -26259 307 {{4.923329,-0.578151,-0.493794},{3.703856,-0.284525,0.185289},{3.344889,1.033183,0.31407},{4.141175,2.106613,-0.128496},{3.692738,3.426253,0.036391},{2.456116,3.687476,0.641387},{1.666535,2.6144,1.074955},{2.083831,1.279894,0.919932},{1.243905,0.161405,1.39559},{1.524645,-0.739341,2.40313},{0.392878,-1.605732,2.542776},{0.101918,-2.680845,3.410585},{-1.127782,-3.332771,3.299311},{-2.074021,-2.921081,2.332067},{-1.810915,-1.857659,1.460186},{-0.572154,-1.198876,1.562392},{-0.042513,-0.103912,0.856224},{-0.567942,0.749772,-0.623976},{-0.348399,-0.554475,-1.964249},{-1.152268,-1.863443,-1.888993},{-0.860168,-2.764358,-3.103276},{0.642373,-3.061574,-3.228275},{1.45772,-1.760983,-3.298547},{1.162483,-0.845312,-2.098919},{-2.425579,0.885097,-0.409974},{-2.76397,1.581204,0.922513},{-4.276488,1.822766,1.057094},{-4.829221,2.619995,-0.134823},{-4.489448,1.93316,-1.466839},{-2.975803,1.69318,-1.60696},{4.996205,-1.674528,-0.506109},{4.909274,-0.197394,-1.532478},{5.797201,-0.15875,0.038831},{5.10742,1.923356,-0.602697},{4.323075,4.250595,-0.311179},{2.108074,4.715458,0.773867},{0.696637,2.799,1.545985},{2.443853,-0.754741,2.986158},{0.835839,-2.993647,4.160221},{-1.365473,-4.167681,3.965332},{-3.034337,-3.440283,2.259013},{-2.558162,-1.567679,0.721942},{-0.664387,-0.001809,-2.876684},{-2.2357,-1.65502,-1.830401},{-0.878979,-2.402881,-0.964611},{-1.434343,-3.704608,-3.018982},{-1.210877,-2.260267,-4.026011},{0.968393,-3.646402,-2.345793},{0.838868,-3.689141,-4.11606},{1.208336,-1.224911,-4.235855},{2.539327,-1.985006,-3.341586},{1.520568,-1.32727,-1.16986},{1.722413,0.102941,-2.189718},{-2.914759,-0.105399,-0.428868},{-2.394248,0.979036,1.769767},{-2.231195,2.552324,0.964362},{-4.489563,2.346771,2.005885},{-4.793772,0.844633,1.114941},{-4.386327,3.635617,-0.128192},{-5.921816,2.750965,-0.038422},{-5.017099,0.96048,-1.520626},{-4.852503,2.536714,-2.317963},{-2.450777,2.66737,-1.658872},{-2.765229,1.169007,-2.55697}} {C,O,C,C,C,C,C,C,C,C,C,C,C,C,C,C,N,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -26260 307 {{-3.144281,3.185769,-1.021647},{-2.026927,2.562521,-0.386666},{-2.270014,1.774706,0.706635},{-3.552847,1.537596,1.232669},{-3.70196,0.751598,2.386731},{-2.579598,0.219746,3.03266},{-1.303234,0.456096,2.497409},{-1.121533,1.19833,1.317961},{0.227399,1.50877,0.78424},{1.028294,2.53664,1.250896},{2.150709,2.665813,0.368667},{3.27295,3.521115,0.326543},{4.200828,3.370246,-0.707144},{4.023243,2.378208,-1.701404},{2.918931,1.517724,-1.683956},{1.979462,1.677037,-0.648984},{0.795613,0.958138,-0.394114},{0.678444,-0.644759,-1.204571},{1.762086,-1.650723,-0.030085},{2.199383,-2.980973,-0.68222},{3.248634,-3.699014,0.184592},{2.733466,-3.920609,1.615649},{2.317314,-2.591056,2.26368},{1.272909,-1.845273,1.412657},{-1.100146,-1.153173,-0.905139},{-1.982812,-0.381685,-1.911605},{-3.463789,-0.769633,-1.775428},{-3.656583,-2.282992,-1.956631},{-2.765958,-3.068418,-0.982134},{-1.282738,-2.672382,-1.106004},{-2.720578,3.778945,-1.843361},{-3.845877,2.43526,-1.431583},{-3.682975,3.853074,-0.324085},{-4.436798,1.96646,0.756376},{-4.705859,0.571831,2.783502},{-2.690748,-0.371707,3.945471},{-0.419258,0.053588,2.998644},{0.778422,3.172177,2.100098},{3.411299,4.288145,1.095258},{5.075954,4.025638,-0.751992},{4.759956,2.282413,-2.504754},{2.781215,0.757891,-2.457905},{2.666013,-1.00598,0.010024},{2.59864,-2.789564,-1.694468},{1.328298,-3.649664,-0.809995},{3.526734,-4.661726,-0.280853},{4.170001,-3.085015,0.220685},{1.859497,-4.601709,1.585832},{3.503596,-4.422107,2.228594},{3.212028,-1.94798,2.377088},{1.921178,-2.762503,3.281107},{0.321657,-2.411047,1.420152},{1.064641,-0.859959,1.858676},{-1.407989,-0.90323,0.124685},{-1.846909,0.703439,-1.781163},{-1.635882,-0.622709,-2.935838},{-4.06797,-0.212803,-2.515312},{-3.826806,-0.469984,-0.773341},{-3.392036,-2.560788,-2.996101},{-4.716528,-2.560124,-1.814326},{-3.100494,-2.869649,0.055034},{-2.875107,-4.15531,-1.148012},{-0.903572,-2.965586,-2.105647},{-0.694967,-3.236246,-0.36345}} {C,O,C,C,C,C,C,C,C,C,C,C,C,C,C,C,N,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -26011 316 {{-0.010204,0.098112,3.229565},{1.036711,-0.763725,2.565539},{2.327894,-0.832365,3.130388},{3.328108,-1.648964,2.590225},{3.041745,-2.449495,1.472895},{1.770335,-2.387827,0.894126},{0.769559,-1.527448,1.400947},{-0.554831,-1.541736,0.724859},{-1.612771,-2.37128,1.052543},{-2.638384,-2.206012,0.062866},{-3.916611,-2.774476,-0.129046},{-4.671603,-2.381195,-1.236525},{-4.167792,-1.430555,-2.157128},{-2.904296,-0.852069,-1.990409},{-2.143208,-1.251556,-0.877596},{-0.855909,-0.842793,-0.473782},{-0.188271,0.635937,-1.232066},{-0.530241,1.938642,0.09107},{-0.445239,3.34315,-0.551839},{-0.772953,4.449233,0.466343},{-2.162338,4.242976,1.087243},{-2.285665,2.841465,1.703996},{-1.93899,1.739105,0.689587},{1.659572,0.327508,-1.128253},{2.462491,1.612485,-1.416975},{3.974964,1.324211,-1.44853},{4.328015,0.220244,-2.456085},{3.530484,-1.059671,-2.163987},{2.019942,-0.777974,-2.142653},{0.061231,0.015745,4.326395},{-1.025984,-0.191091,2.925071},{0.124308,1.164542,2.976833},{2.540817,-0.238007,4.026067},{4.318774,-1.68009,3.054205},{3.800337,-3.121699,1.060718},{1.531023,-3.009107,0.026225},{-1.615743,-3.059737,1.897485},{-4.305762,-3.510408,0.581745},{-5.664597,-2.811706,-1.397726},{-4.776305,-1.140767,-3.01908},{-2.516736,-0.118576,-2.70169},{0.22814,1.858934,0.895776},{-1.170855,3.388997,-1.387542},{0.54785,3.524032,-0.995092},{-0.00773,4.444355,1.267834},{-0.710142,5.43757,-0.023521},{-2.366203,5.018792,1.846791},{-2.931085,4.360792,0.298359},{-3.30628,2.678502,2.094129},{-1.601783,2.765772,2.572424},{-2.024193,0.747142,1.160719},{-2.68142,1.752744,-0.132143},{1.922434,-0.008646,-0.110676},{2.14851,2.043952,-2.388767},{2.257315,2.372635,-0.644188},{4.297966,1.008095,-0.437266},{4.524576,2.253818,-1.681794},{4.092463,0.571512,-3.480226},{5.41307,0.014073,-2.433672},{3.836632,-1.462794,-1.17947},{3.75657,-1.83824,-2.91458},{1.457366,-1.69941,-1.913966},{1.692701,-0.455928,-3.150917}} {C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,N,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -26012 316 {{-1.402027,-3.316324,-0.328123},{-1.836519,-2.337169,0.737634},{-3.150753,-2.379581,1.239934},{-3.555028,-1.565333,2.30752},{-2.628482,-0.705663,2.91481},{-1.319475,-0.638863,2.418045},{-0.920061,-1.413395,1.310946},{0.469599,-1.366638,0.785611},{1.513289,-2.154817,1.237249},{2.593838,-2.052349,0.29894},{3.881359,-2.626928,0.219752},{4.689023,-2.327718,-0.880069},{4.228653,-1.465095,-1.904177},{2.959708,-0.877848,-1.847359},{2.146548,-1.179599,-0.740223},{0.840402,-0.740307,-0.434611},{0.275996,0.736603,-1.294673},{-1.577857,0.761531,-1.00654},{-2.126667,2.187139,-1.237298},{-3.660819,2.214284,-1.106035},{-4.338323,1.211735,-2.05215},{-3.782057,-0.203999,-1.839375},{-2.252174,-0.224409,-1.983512},{0.912714,2.111075,-0.174017},{2.447992,2.226999,-0.288581},{2.970524,3.454877,0.477322},{2.532776,3.42761,1.950289},{1.006452,3.299566,2.071137},{0.485434,2.073414,1.300161},{-2.262329,-3.665059,-0.92143},{-0.937175,-4.202718,0.140069},{-0.648936,-2.891473,-1.0089},{-3.865049,-3.078066,0.789944},{-4.58472,-1.616991,2.674663},{-2.921652,-0.087424,3.768583},{-0.592053,0.028404,2.885952},{1.461609,-2.79811,2.115576},{4.235374,-3.298361,1.008502},{5.68837,-2.766806,-0.956107},{4.874706,-1.253838,-2.761602},{2.607145,-0.212291,-2.639217},{-1.813807,0.465064,0.029696},{-1.836093,2.538694,-2.248095},{-1.689806,2.896953,-0.514563},{-3.930929,1.965931,-0.060861},{-4.031217,3.237837,-1.295445},{-5.432885,1.225336,-1.903398},{-4.156354,1.520611,-3.100579},{-4.235652,-0.910353,-2.557949},{-4.051915,-0.559797,-0.826404},{-1.867999,-1.243805,-1.825549},{-1.975637,0.058037,-3.018395},{0.480925,3.01802,-0.649998},{2.91452,1.313271,0.124486},{2.748568,2.27805,-1.350074},{2.580762,4.375028,-0.001919},{4.071699,3.501843,0.402963},{3.008271,2.562115,2.452278},{2.886749,4.332826,2.475311},{0.528538,4.213461,1.66556},{0.706477,3.232306,3.132831},{-0.612369,2.003791,1.391216},{0.904086,1.155617,1.753873}} {C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,N,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -25925 318 {{1.703749,-3.290653,0.872796},{1.700585,-2.472766,-0.423334},{1.753485,-1.016212,-0.182809},{3.025253,-0.40748,-0.600141},{4.191659,-0.814868,0.305663},{0.312503,-0.128812,-0.77971},{-0.958869,-0.948169,0.316401},{-2.750546,-0.455861,-0.1177},{-2.943982,1.399861,-0.445828},{-3.252153,-1.40776,-1.677724},{-3.865097,-0.954409,1.334279},{0.55096,1.388232,-0.007156},{0.45722,2.613777,-0.802952},{1.787538,3.351334,-1.011649},{0.886377,1.519225,1.412765},{-0.236503,2.104827,2.280771},{1.680161,-4.373255,0.654221},{2.604857,-3.074441,1.468849},{0.827883,-3.04082,1.493258},{2.561912,-2.76824,-1.054813},{0.805424,-2.736151,-1.023443},{3.270181,-0.656727,-1.659353},{2.899099,0.686814,-0.551204},{4.390453,-1.898707,0.257148},{5.114314,-0.294472,-0.003329},{3.973711,-0.554185,1.354741},{-0.7215,-0.759421,1.379336},{-0.904653,-2.042415,0.168488},{-2.350301,1.709976,-1.321431},{-4.002008,1.637864,-0.651528},{-2.617472,2.007043,0.41362},{-3.211861,-2.498049,-1.511843},{-2.572058,-1.166983,-2.512583},{-4.278761,-1.151023,-1.99008},{-4.924754,-0.740368,1.112045},{-3.776386,-2.031892,1.554584},{-3.59458,-0.4005,2.249774},{0.040725,2.329469,-1.784901},{-0.280055,3.302056,-0.342437},{2.252351,3.646244,-0.056097},{1.62209,4.272767,-1.595802},{2.505106,2.721,-1.562755},{1.795799,2.144102,1.519697},{1.172383,0.516215,1.774226},{0.101121,2.202914,3.327006},{-0.541252,3.106925,1.935162},{-1.127603,1.456858,2.266378}} {C,C,N,C,C,P,C,Si,C,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -25926 318 {{1.494795,-3.397869,0.007457},{1.643802,-2.328391,1.108145},{1.729274,-0.925635,0.682143},{3.079368,-0.427728,0.390395},{3.76362,-0.916199,-0.900093},{0.452311,-0.270054,-0.38363},{-1.027407,-0.832041,0.608419},{-2.685921,-0.437145,-0.248941},{-2.935891,-1.723044,-1.618893},{-4.063768,-0.589659,1.046429},{-2.74212,1.292188,-1.018667},{0.562997,1.400137,0.026625},{0.716293,2.381042,-1.048948},{2.151396,2.88295,-1.267519},{0.673555,1.884851,1.403182},{-0.576945,2.612165,1.918254},{1.427715,-4.40314,0.459626},{0.579238,-3.236521,-0.587307},{2.344921,-3.391291,-0.691566},{0.800132,-2.427262,1.815176},{2.555551,-2.53739,1.698922},{3.016385,0.674432,0.363292},{3.713485,-0.677975,1.263121},{3.114177,-0.745921,-1.775342},{4.708832,-0.368257,-1.061281},{4.004145,-1.990683,-0.857704},{-0.979385,-0.426899,1.63611},{-1.004759,-1.933897,0.695777},{-2.983302,-2.745244,-1.20558},{-3.870504,-1.539854,-2.175889},{-2.099133,-1.686454,-2.337506},{-5.056128,-0.433035,0.589525},{-3.939504,0.160598,1.846368},{-4.061609,-1.587345,1.517608},{-2.529951,2.079787,-0.278476},{-2.003222,1.387303,-1.830974},{-3.742611,1.47994,-1.445647},{0.352075,1.91093,-1.978886},{0.044462,3.24024,-0.85348},{2.809023,2.057445,-1.586783},{2.576405,3.3265,-0.351285},{2.171116,3.659478,-2.051654},{1.549991,2.558982,1.487607},{0.905353,1.012482,2.040062},{-0.407775,2.989684,2.941771},{-0.835671,3.476322,1.283196},{-1.447306,1.93678,1.940482}} {C,C,N,C,C,P,C,Si,C,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -23597 449 {{-1.298911,-3.058367,-1.517706},{-1.12936,-2.465977,-0.108201},{0.0267,-1.566196,0.081175},{1.318013,-2.275935,0.090618},{1.583035,-2.98423,1.42472},{-0.021943,-0.078913,-0.894064},{-1.533732,0.512034,-0.262634},{-1.856458,0.554141,1.168335},{-3.352047,0.379976,1.460242},{-2.173855,1.530156,-1.105371},{-1.802893,2.982816,-0.767235},{1.32407,0.732672,-0.164705},{2.171182,1.535844,-1.049094},{3.64676,1.115517,-1.044615},{1.593083,0.805638,1.273176},{1.446308,2.209328,1.876481},{-2.163322,-3.74383,-1.541355},{-1.473344,-2.260659,-2.258496},{-0.410542,-3.628353,-1.836802},{-2.040592,-1.906878,0.15474},{-1.036108,-3.282063,0.631347},{2.112453,-1.533601,-0.08839},{1.386316,-3.010313,-0.740701},{1.57856,-2.260523,2.256268},{2.566512,-3.484417,1.402016},{0.825618,-3.755746,1.642586},{-1.505231,1.499774,1.633592},{-1.28963,-0.263651,1.644019},{-3.515187,0.298072,2.548033},{-3.949851,1.234002,1.100639},{-3.743814,-0.533852,0.982487},{-3.272144,1.402989,-1.056646},{-1.880333,1.311147,-2.147608},{-0.712708,3.133519,-0.841551},{-2.115204,3.260746,0.253713},{-2.298007,3.678451,-1.466124},{2.092971,2.613473,-0.794183},{1.760108,1.428195,-2.068612},{4.109625,1.240937,-0.051254},{3.75123,0.057736,-1.339656},{4.221388,1.732217,-1.756392},{2.614136,0.424395,1.484398},{0.901712,0.103423,1.765626},{0.445991,2.624483,1.669841},{2.195174,2.911849,1.474246},{1.584951,2.169155,2.970243}} {C,C,N,C,C,P,N,C,C,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -23598 449 {{-1.941823,3.075222,0.802735},{-1.264314,2.3518,-0.367242},{-0.108583,1.541669,0.061973},{1.103279,2.344896,0.312537},{1.804885,2.917997,-0.931137},{0.163122,0.051537,-0.870039},{1.395926,-0.628297,0.140555},{1.335319,-0.71966,1.600279},{1.090171,-2.136389,2.13922},{2.499723,-1.317523,-0.530482},{3.876108,-0.700232,-0.247706},{-1.389008,-0.668872,-0.552987},{-1.767642,-1.726853,-1.497643},{-1.355296,-3.147756,-1.081528},{-2.036658,-0.701707,0.762232},{-3.553656,-0.479992,0.703302},{-1.256526,3.774403,1.310432},{-2.803162,3.662225,0.439903},{-2.305058,2.353729,1.552939},{-1.988905,1.672837,-0.844635},{-0.973615,3.092885,-1.142323},{1.818612,1.721427,0.872024},{0.815196,3.169835,0.989228},{2.673038,3.530074,-0.631948},{1.133033,3.558153,-1.526541},{2.165565,2.108353,-1.58724},{0.5343,-0.039401,1.934312},{2.274641,-0.322645,2.038391},{1.921099,-2.818645,1.894047},{0.992856,-2.114935,3.238075},{0.165382,-2.562972,1.718097},{2.293104,-1.273694,-1.614839},{2.511911,-2.393668,-0.259144},{4.140316,-0.752285,0.821966},{3.895541,0.359314,-0.553163},{4.660138,-1.238347,-0.80737},{-1.293766,-1.477803,-2.463941},{-2.860844,-1.688046,-1.665913},{-1.659082,-3.877439,-1.851552},{-0.261745,-3.213006,-0.953538},{-1.827343,-3.452588,-0.132221},{-1.574752,0.099312,1.361795},{-1.830115,-1.657614,1.288239},{-4.074684,-1.294915,0.174066},{-3.794206,0.466759,0.191814},{-3.966685,-0.434682,1.725428}} {C,C,N,C,C,P,N,C,C,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -23562 452 {{-0.008648,2.145505,1.213408},{-0.006494,1.806895,-0.587706},{0.002142,-0.351267,-0.722851},{1.580283,-1.008202,0.592912},{2.982014,-0.616397,-0.524962},{-1.573515,-1.020145,0.590199},{-2.977162,-0.623936,-0.52365},{-0.906663,1.711448,1.678659},{0.893509,1.720557,1.679027},{-0.014233,3.238693,1.334065},{3.894756,-0.900394,0.019652},{2.920436,-1.195397,-1.458342},{3.014467,0.461272,-0.746457},{-2.915385,-1.196785,-1.460829},{-3.011838,0.455067,-0.738277},{-3.888794,-0.913268,0.020004}} {C,S,P,S,C,S,C,H,H,H,H,H,H,H,H,H} \N -23563 452 {{-0.000869,2.145539,1.213418},{-0.000622,1.806966,-0.587703},{0.000211,-0.351223,-0.722897},{1.577217,-1.013623,0.591673},{2.979873,-0.619862,-0.524314},{-1.576557,-1.014749,0.591418},{-2.979395,-0.620639,-0.52421},{-0.900694,1.715427,1.678827},{-0.001597,3.238739,1.334097},{0.899503,1.716615,1.678856},{3.892074,-0.906315,0.019921},{3.013394,0.458413,-0.742701},{2.918233,-1.196084,-1.459418},{-3.891482,-0.907649,0.019921},{-2.917691,-1.196275,-1.459673},{-3.013177,0.457761,-0.741944}} {C,S,P,S,C,S,C,H,H,H,H,H,H,H,H,H} \N -22989 472 {{-3.173345,-2.004979,0.538718},{-3.693279,-0.749694,-0.180919},{-2.481231,0.204581,-0.151076},{-1.292175,-0.669368,0.037089},{0.087363,-0.229066,-0.960227},{0.462689,1.283579,-0.21478},{0.673603,2.487106,-1.021059},{-0.306132,3.499237,-0.402401},{-0.236781,3.172306,1.109027},{0.251673,1.691666,1.18164},{1.138772,-1.470937,-0.350129},{1.476725,-1.586241,1.07933},{2.90912,-0.993683,1.239212},{3.45082,-0.870039,-0.212691},{2.414292,-1.642439,-1.060497},{-1.725829,-2.083963,0.040924},{-3.751591,-2.913945,0.305785},{-3.188037,-1.857329,1.633494},{-3.95059,-1.001179,-1.225011},{-4.5884,-0.31001,0.288071},{-2.412514,0.801909,-1.082554},{-2.553253,0.924267,0.687693},{1.718986,2.854927,-0.92526},{0.487295,2.271992,-2.086227},{-0.047462,4.548105,-0.623977},{-1.31953,3.305037,-0.794224},{-1.210163,3.310838,1.606829},{0.485254,3.834987,1.61528},{1.195666,1.630196,1.760554},{-0.47473,1.010012,1.654519},{1.476296,-2.659042,1.358602},{0.710962,-1.084193,1.691002},{3.539065,-1.653784,1.858471},{2.880879,-0.00996,1.734893},{3.464565,0.187562,-0.525586},{4.472446,-1.269908,-0.324294},{2.666984,-2.721848,-1.093733},{2.329307,-1.282348,-2.099202},{-1.072344,-2.683895,0.69413},{-1.69235,-2.542468,-0.972372}} {C,C,C,N,P,N,C,C,C,C,N,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -22990 472 {{-0.235349,3.172617,1.109008},{-0.304458,3.499585,-0.402428},{0.674646,2.486832,-1.021054},{0.462829,1.283454,-0.214798},{0.087176,-0.229093,-0.960225},{1.138226,-1.471285,-0.350141},{1.476113,-1.586758,1.079318},{2.908738,-0.994764,1.239239},{3.450461,-0.871188,-0.212661},{2.413688,-1.643217,-1.060496},{-1.292463,-0.668992,0.037102},{-1.726557,-2.08346,0.04084},{-3.174025,-2.004047,0.538708},{-3.693603,-0.74857,-0.180847},{-2.481253,0.205328,-0.151033},{0.252129,1.691655,1.181623},{-1.208644,3.311798,1.606794},{0.487118,3.83482,1.615268},{-1.317963,3.306006,-0.79427},{-0.045133,4.54829,-0.624003},{0.488242,2.271866,-2.086234},{1.72027,2.853957,-0.925201},{0.710534,-1.084433,1.690996},{1.475265,-2.659566,1.358563},{2.88089,-0.011082,1.735021},{3.53844,-1.65517,1.858419},{4.471966,-1.271351,-0.324303},{3.464517,0.186429,-0.52549},{2.328846,-1.283093,-2.099201},{2.666013,-2.722711,-1.093731},{-1.073226,-2.683649,0.693967},{-1.693267,-2.541905,-0.972484},{-3.188647,-1.856465,1.633491},{-3.75256,-2.91282,0.305737},{-3.951083,-0.999928,-1.224927},{-4.588554,-0.308623,0.288224},{-2.553027,0.925025,0.687744},{-2.412372,0.802645,-1.082506},{1.196095,1.629573,1.76052},{-0.474683,1.010457,1.654528}} {C,C,C,N,P,N,C,C,C,C,N,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -22301 505 {{-0.899709,3.263975,-0.19871},{0.10037,2.266116,0.03709},{-0.034806,0.868083,-0.9479},{1.596973,0.17554,-0.422958},{1.860941,-1.180858,-0.709746},{3.1104,-1.743439,-0.417311},{4.120067,-0.952764,0.156779},{3.870033,0.399655,0.434802},{2.618152,0.964292,0.142621},{-1.119728,-0.202607,-0.157696},{-0.9099,-0.593552,1.258751},{-1.603955,0.338289,2.273154},{-1.215898,-2.06932,1.552329},{-2.350902,-0.51906,-0.925623},{-3.664626,-0.164726,-0.211463},{-2.375473,-1.959833,-1.472298},{-0.588618,4.167172,0.349116},{-1.888809,2.940961,0.1808},{-0.993182,3.503589,-1.274963},{1.071862,-1.801253,-1.149677},{3.297204,-2.799465,-0.636739},{5.097262,-1.389848,0.384327},{4.652464,1.020108,0.883559},{2.415713,2.015025,0.365784},{0.175431,-0.463093,1.416319},{-2.698318,0.219356,2.275416},{-1.358128,1.388151,2.054607},{-1.24107,0.108141,3.290192},{-0.88402,-2.308629,2.576598},{-2.294005,-2.292662,1.497543},{-0.68215,-2.734153,0.855292},{-2.281542,0.140473,-1.811785},{-3.860599,-0.823071,0.650411},{-3.656251,0.878589,0.142574},{-4.507487,-0.283868,-0.913145},{-3.187679,-2.063525,-2.212578},{-2.544622,-2.709875,-0.684966},{-1.422841,-2.193234,-1.974987}} {C,O,P,C,C,C,C,C,C,N,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -22302 505 {{-1.352276,3.098437,0.193269},{-0.306692,2.133212,0.349548},{-0.381793,0.770013,-0.68731},{1.383907,0.288955,-0.451917},{1.789131,-0.988,-0.893647},{3.136758,-1.369318,-0.839142},{4.102961,-0.472254,-0.354332},{3.711195,0.808461,0.066008},{2.362508,1.192225,0.009655},{-1.212662,-0.501736,0.104279},{-2.529225,-0.896904,-0.476675},{-3.615013,0.164407,-0.235686},{-2.430656,-1.285415,-1.957597},{-0.998854,-1.058514,1.472149},{-0.075298,-0.230096,2.371202},{-0.517887,-2.518915,1.39585},{-2.269136,2.786252,0.728018},{-1.60068,3.264794,-0.872364},{-0.989155,4.041783,0.631315},{1.037004,-1.689883,-1.269456},{3.433476,-2.368003,-1.175256},{5.15554,-0.768493,-0.310241},{4.459346,1.514131,0.441396},{2.051886,2.185202,0.344967},{-2.821581,-1.808449,0.076259},{-4.610284,-0.209747,-0.531691},{-3.401759,1.070633,-0.828394},{-3.656031,0.448798,0.829331},{-3.398027,-1.681469,-2.310897},{-2.166158,-0.416619,-2.581557},{-1.659933,-2.059793,-2.104164},{-1.999359,-1.052403,1.95354},{0.967746,-0.25836,2.022105},{-0.389193,0.822647,2.417765},{-0.101146,-0.657283,3.38753},{0.514034,-2.558248,1.011933},{-1.157103,-3.123997,0.731379},{-0.533929,-2.98365,2.396976}} {C,O,P,C,C,C,C,C,C,N,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -21783 524 {{-3.870418,0.121718,0.030442},{-2.69267,0.084839,-0.094865},{-1.49216,0.047584,-0.329584},{-0.000924,-4.7e-05,0.526826},{0.703473,-1.315052,-0.330222},{1.27311,-2.372363,-0.094944},{1.831609,-3.409894,0.030635},{0.78536,1.267961,-0.329751},{1.420225,2.287512,-0.09487},{2.042954,3.287843,0.030496}} {O,C,N,P,N,C,O,N,C,O} \N -21644 533 {{3.879093,0.374144,-0.185027},{3.117279,-0.93089,-0.405626},{1.601505,-1.109259,0.639941},{0.228422,0.074224,-0.577977},{0.366511,1.901433,0.570191},{-0.648145,3.004662,-0.5147},{-2.153224,2.907942,-0.267964},{-1.333943,-0.520592,-0.200138},{-1.922286,-0.556885,1.143424},{-1.77104,-1.877804,1.91184},{-1.98185,-1.312985,-1.260727},{-1.446042,-2.73969,-1.449678},{4.177348,0.482871,0.870046},{4.790397,0.391465,-0.809147},{3.260714,1.246826,-0.449121},{3.73499,-1.804103,-0.136615},{2.81794,-1.050894,-1.461236},{-0.273629,4.020683,-0.304722},{-0.396573,2.773978,-1.564872},{-2.694048,3.613203,-0.923784},{-2.518254,1.88971,-0.475986},{-2.398346,3.152505,0.778268},{-2.996809,-0.303284,1.043591},{-1.458493,0.264945,1.715649},{-0.713216,-2.177782,1.980353},{-2.161872,-1.755566,2.93677},{-2.333089,-2.697527,1.436006},{-1.875178,-0.760552,-2.213119},{-3.06288,-1.334918,-1.027305},{-1.551141,-3.343696,-0.53589},{-1.991594,-3.24478,-2.265744},{-0.375958,-2.718054,-1.713892}} {C,C,S,P,S,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -21645 533 {{-3.528931,-0.266113,-0.454221},{-2.761982,-1.57126,-0.657263},{-1.294371,-1.766662,0.451642},{0.121782,-0.600324,-0.690794},{1.802188,-1.600212,0.277225},{3.171067,-0.708421,-0.585771},{3.645381,0.551932,0.136437},{0.032672,0.99659,-0.054141},{0.148688,1.321105,1.375361},{-1.192131,1.568837,2.079086},{0.256069,2.088384,-1.012654},{-0.820084,3.178813,-0.982504},{-2.889051,0.605808,-0.66264},{-4.401164,-0.227257,-1.130779},{-3.891732,-0.176339,0.58246},{-2.417523,-1.681204,-1.699338},{-3.394826,-2.444703,-0.427029},{3.985644,-1.44797,-0.661483},{2.839499,-0.485047,-1.615352},{4.488148,1.013056,-0.408964},{2.836847,1.295422,0.211037},{3.982826,0.317427,1.15872},{0.803207,2.210109,1.471248},{0.680073,0.488492,1.872184},{-1.75081,2.398124,1.617628},{-1.814456,0.662819,2.034189},{-1.017648,1.818889,3.140014},{0.296134,1.636643,-2.020151},{1.250591,2.550177,-0.83069},{-0.839499,3.705443,-0.014778},{-0.615438,3.928588,-1.765603},{-1.819794,2.75057,-1.162481}} {C,C,S,P,S,C,C,N,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -20774 577 {{1.805461,-2.649787,1.132954},{1.353619,-3.469008,0.0468},{0.729138,-2.639098,-0.865937},{0.775662,-1.333618,-0.369173},{-0.000468,-0.000109,-1.200598},{0.767007,1.338575,-0.369377},{1.920765,1.950741,-0.866718},{2.328188,2.906117,0.046015},{1.393498,2.887851,1.132772},{0.445567,1.917237,0.861411},{-1.543186,-0.004935,-0.368848},{-1.882661,-0.571296,0.862804},{-3.197487,-0.236694,1.134049},{-3.681793,0.561613,0.046305},{-2.651083,0.686323,-0.866866},{1.438202,-1.343798,0.861256},{2.356185,-2.979452,2.012942},{1.485597,-4.544573,-0.060016},{0.252861,-2.850295,-1.821649},{2.341224,1.643883,-1.822693},{3.193847,3.557893,-0.061175},{1.404413,3.529395,2.012917},{-0.439577,1.597214,1.406753},{-1.16193,-1.176146,1.408682},{-3.757983,-0.547352,2.01478},{-4.67958,0.984133,-0.061237},{-2.596418,1.202443,-1.823666},{1.603527,-0.416867,1.406029}} {C,C,C,N,P,N,C,C,C,C,N,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H} \N -20775 577 {{1.076626,3.019104,1.133612},{2.004329,3.137688,0.047173},{1.70132,2.144982,-0.866382},{0.619194,1.413022,-0.36988},{-0.000398,-8.1e-05,-1.201297},{-1.533732,-0.169886,-0.369399},{-2.708793,0.401179,-0.865799},{-3.72006,0.166449,0.047479},{-3.153451,-0.578103,1.133597},{-1.810712,-0.771211,0.861337},{0.913861,-1.242872,-0.369645},{1.006727,-2.546139,-0.865804},{1.716139,-3.304317,0.047292},{2.078039,-2.441082,1.13307},{1.573626,-1.181794,0.860831},{0.237598,1.95318,0.861247},{1.018883,3.657506,2.014233},{2.79559,3.878144,-0.059283},{2.152325,1.885343,-1.822436},{-2.709513,0.922047,-1.821603},{-4.757006,0.48128,-0.058949},{-3.677496,-0.947918,2.013936},{-1.029823,-1.297424,1.405988},{0.555673,-2.807365,-1.821408},{1.962078,-4.359733,-0.059084},{2.660794,-2.709773,2.013177},{1.639256,-0.242322,1.405316},{-0.60839,1.539971,1.406113}} {C,C,C,N,P,N,C,C,C,C,N,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H} \N -20645 586 {{-4.717703,-1.102104,-1.508706},{-4.36896,-1.966796,-0.458898},{-3.493643,-1.536485,0.548203},{-2.96687,-0.230789,0.504256},{-1.856614,0.326982,1.798371},{0.137313,-0.038714,1.019735},{0.201952,0.890486,-0.943607},{0.895811,2.475424,-0.464977},{0.189854,3.350043,0.384974},{0.746716,4.59256,0.722076},{1.990996,4.977537,0.199015},{2.687397,4.108878,-0.656602},{2.149769,2.855087,-0.980852},{-0.099864,-2.092772,0.376805},{1.642224,-2.428672,0.072355},{2.134555,-2.391402,-1.245538},{3.482094,-2.691625,-1.493495},{4.338485,-3.024147,-0.432146},{3.84537,-3.059792,0.882076},{2.498273,-2.766176,1.13789},{-3.318999,0.640314,-0.545064},{-4.192882,0.198913,-1.549378},{-5.400149,-1.44177,-2.293588},{-4.776228,-2.981728,-0.423491},{-3.21193,-2.204193,1.366991},{-0.787037,3.055486,0.779944},{0.199047,5.26477,1.389692},{2.417346,5.951303,0.457663},{3.660101,4.401287,-1.063873},{2.6971,2.163534,-1.627807},{1.461379,-2.119144,-2.062815},{3.862907,-2.661992,-2.518925},{5.389487,-3.25634,-0.628668},{4.509417,-3.319793,1.711982},{2.103504,-2.797125,2.157301},{-2.904389,1.650855,-0.571048},{-4.462753,0.875819,-2.365599}} {C,C,C,C,S,P,S,C,C,C,C,C,C,S,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -20646 586 {{-0.000967,4.72882,-0.807742},{1.214703,4.135082,-0.433454},{1.220156,2.949065,0.314427},{-0.000282,2.354558,0.693136},{0.000141,0.847297,1.654074},{0.000169,-0.748621,0.13805},{1.580112,-0.20939,-1.238604},{2.937077,-1.06276,-0.42507},{3.36878,-0.699235,0.86566},{4.459931,-1.363138,1.444947},{5.138077,-2.367686,0.736945},{4.714366,-2.717422,-0.554756},{3.609579,-2.076292,-1.133944},{-1.579937,-0.209564,-1.238464},{-2.936735,-1.063221,-0.424959},{-3.609364,-2.076497,-1.134076},{-4.714047,-2.717837,-0.55492},{-5.137521,-2.368573,0.736987},{-4.459245,-1.364283,1.445227},{-3.368202,-0.700162,0.865983},{-1.221064,2.948548,0.314722},{-1.216294,4.134569,-0.433158},{-0.001233,5.655005,-1.39025},{2.164257,4.593744,-0.725222},{2.163341,2.480299,0.606066},{2.847495,0.089643,1.415006},{4.785329,-1.084572,2.451921},{5.994266,-2.876029,1.190118},{5.235788,-3.502031,-1.111429},{3.260664,-2.358466,-2.13131},{-3.260625,-2.358319,-2.131603},{-5.235566,-3.502247,-1.111782},{-5.993624,-2.877084,1.190133},{-4.784457,-1.086082,2.452362},{-2.846832,0.088529,1.415518},{-2.16398,2.479383,0.60659},{-2.166113,4.592829,-0.724696}} {C,C,C,C,S,P,S,C,C,C,C,C,C,S,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -20614 587 {{-3.399937,3.262305,-0.771091},{-2.281442,4.041035,-0.435743},{-1.146912,3.441004,0.131144},{-1.137061,2.055908,0.381809},{0.306459,1.338992,1.178727},{0.876063,-0.085688,-0.35141},{0.617301,-2.049149,0.550209},{-1.128948,-2.254086,0.195617},{-1.610812,-2.30387,-1.127309},{-2.985168,-2.442187,-1.36461},{-3.883714,-2.547842,-0.289485},{-3.402102,-2.510958,1.028082},{-2.028826,-2.355171,1.274148},{2.726361,-0.033907,-0.212503},{3.47804,-1.133001,-0.688298},{4.877074,-1.069682,-0.735231},{5.549135,0.089664,-0.317486},{4.809666,1.187546,0.145964},{3.409045,1.130734,0.196378},{-2.264316,1.275497,0.061514},{-3.384864,1.880173,-0.525359},{-4.279832,3.730957,-1.221863},{-2.283275,5.1185,-0.627051},{-0.265006,4.040226,0.375162},{-0.909331,-2.220947,-1.962059},{-3.354458,-2.471045,-2.394306},{-4.955437,-2.659219,-0.479413},{-4.096391,-2.586833,1.87039},{-1.648201,-2.293878,2.297478},{2.968958,-2.045082,-1.013808},{5.442538,-1.933483,-1.098082},{6.641705,0.135838,-0.3527},{5.322583,2.096095,0.476391},{2.842155,1.99118,0.562828},{-2.266212,0.202949,0.270552},{-4.252218,1.263608,-0.780599}} {C,C,C,C,S,P,S,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -20615 587 {{-3.399941,3.262194,-0.771056},{-2.281317,4.040885,-0.43605},{-1.146785,3.440872,0.130851},{-1.137061,2.055839,0.381868},{0.306473,1.338942,1.178781},{0.876102,-0.085649,-0.351429},{0.617287,-2.049155,0.550065},{-1.128981,-2.25401,0.19552},{-1.610916,-2.303633,-1.127386},{-2.985284,-2.441899,-1.364631},{-3.883779,-2.547665,-0.289475},{-3.4021,-2.510946,1.028072},{-2.028808,-2.35521,1.274086},{2.726396,-0.033911,-0.212496},{3.409099,1.130658,0.196558},{4.809722,1.187446,0.146171},{5.549174,0.089612,-0.317422},{4.877093,-1.069661,-0.735338},{3.478058,-1.132955,-0.688436},{-2.264441,1.275471,0.061913},{-3.384995,1.880123,-0.524972},{-4.27984,3.73083,-1.221839},{-2.283054,5.118302,-0.627633},{-0.26478,4.040054,0.374613},{-0.909478,-2.220621,-1.962164},{-3.354627,-2.470627,-2.394312},{-4.955514,-2.659002,-0.479363},{-4.096345,-2.586916,1.870408},{-1.64813,-2.294052,2.297405},{2.842222,1.991064,0.563123},{5.322655,2.095938,0.476731},{6.641745,0.135767,-0.352614},{5.442543,-1.933423,-1.098302},{2.96896,-2.044979,-1.014081},{-2.266423,0.202973,0.27122},{-4.252448,1.263589,-0.779952}} {C,C,C,C,S,P,S,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -14391 1011 {{1.777152,-0.04496,1.520692},{1.566767,0.233818,0.023136},{1.564871,1.746149,-0.264242},{2.715258,-0.43064,-0.773528},{-0.000979,-0.544886,-0.736451},{0.025687,-1.979696,0.141771},{-1.565942,0.224411,0.027771},{-1.533394,0.531577,1.531534},{-2.66749,-0.823486,-0.256385},{-1.878952,1.499881,-0.783072},{2.792028,0.284716,1.810825},{1.059351,0.493389,2.155319},{1.695165,-1.120669,1.742715},{2.567779,2.160555,-0.05405},{1.333607,1.968081,-1.32152},{0.843869,2.286494,0.370083},{3.685167,-0.026099,-0.430351},{2.626843,-0.237503,-1.855795},{2.733328,-1.522918,-0.621012},{-0.850543,1.362896,1.768167},{-1.231522,-0.350284,2.119367},{-2.543676,0.830362,1.868632},{-3.64877,-0.406315,0.034668},{-2.716097,-1.085716,-1.327492},{-2.503101,-1.749651,0.316406},{-1.161002,2.311701,-0.587173},{-2.882552,1.86983,-0.504608},{-1.885987,1.301171,-1.868801}} {C,C,C,C,P,F,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -20459 591 {{-1.815736,3.043028,-1.451377},{-0.431953,3.070119,-1.211725},{0.105295,2.420405,-0.090988},{-0.745805,1.726902,0.792739},{-0.095974,0.864412,2.225753},{0.544227,-1.072354,1.476121},{1.924453,-0.666326,0.309923},{2.867504,0.330307,0.638184},{4.001455,0.533774,-0.160292},{4.221289,-0.264446,-1.294285},{3.301866,-1.274132,-1.616628},{2.165987,-1.479294,-0.819104},{-0.828218,-1.519136,0.324788},{-1.777635,-2.448393,0.800405},{-2.880603,-2.808456,0.012393},{-3.043487,-2.246338,-1.263778},{-2.104118,-1.320644,-1.745297},{-1.005338,-0.954007,-0.956165},{-2.13342,1.699633,0.550635},{-2.664586,2.361499,-0.565537},{-2.2306,3.55454,-2.32526},{0.234372,3.602838,-1.897322},{1.181339,2.439387,0.096256},{2.700153,0.957686,1.520044},{4.71572,1.319569,0.105542},{5.104963,-0.103526,-1.919087},{3.465247,-1.906574,-2.494888},{1.459526,-2.271778,-1.084687},{-1.646849,-2.888595,1.79493},{-3.608035,-3.532502,0.392105},{-3.901159,-2.529211,-1.882},{-2.23181,-0.870922,-2.734834},{-0.28566,-0.222004,-1.332874},{-2.783614,1.1455,1.233191},{-3.743136,2.33334,-0.748322}} {C,C,C,C,S,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -20460 591 {{-1.81709,3.042292,-1.451511},{-0.433265,3.069729,-1.212141},{0.104355,2.420302,-0.091417},{-0.746412,1.726736,0.792579},{-0.096135,0.86468,2.225649},{0.544592,-1.072006,1.476242},{1.924737,-0.665781,0.310012},{2.867423,0.33128,0.638008},{4.001335,0.5349,-0.160486},{4.221495,-0.263588,-1.294222},{3.30244,-1.273695,-1.616295},{2.166602,-1.479009,-0.818757},{-0.827698,-1.519241,0.324905},{-1.776956,-2.448629,0.800575},{-2.879774,-2.809044,0.012515},{-3.042654,-2.247159,-1.263758},{-2.103447,-1.321326,-1.745323},{-1.004829,-0.954328,-0.95614},{-2.134063,1.699103,0.550748},{-2.665604,2.360687,-0.565411},{-2.232244,3.55359,-2.325378},{0.2328,3.602505,-1.897945},{1.180432,2.439561,0.095607},{2.699819,0.958868,1.51967},{4.715311,1.321027,0.105137},{5.105136,-0.102548,-1.919037},{3.466078,-1.906346,-2.494355},{1.460425,-2.271814,-1.084133},{-1.646156,-2.888667,1.79517},{-3.607082,-3.533194,0.392264},{-3.900199,-2.53032,-1.882021},{-2.231146,-0.871778,-2.734937},{-0.285291,-0.222201,-1.332875},{-2.783994,1.144919,1.233512},{-3.744182,2.332248,-0.74798}} {C,C,C,C,S,P,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -19966 625 {{-0.886352,3.009841,-2.046273},{-1.218046,2.350141,-0.686294},{-1.823662,3.370981,0.288117},{-0.136014,1.534881,-0.083829},{1.036815,2.152679,0.55569},{1.656765,3.363659,-0.167732},{0.804806,2.470858,2.048671},{-0.018204,-0.039502,-0.905215},{-1.455375,-0.786625,-0.236057},{-1.987845,-0.532681,1.119108},{-3.359428,0.185036,1.161172},{-2.044729,-1.761014,2.045651},{-2.019987,-1.801783,-1.155941},{-3.552699,-1.785974,-1.262622},{-1.502429,-3.235484,-0.920107},{1.42939,-0.737968,-0.216563},{2.471564,-0.996333,-1.239118},{3.039628,-2.425165,-1.237449},{3.607241,0.048187,-1.26594},{1.587661,-1.103984,1.20859},{1.413721,-2.612454,1.497612},{2.893816,-0.623898,1.873595},{-0.247374,3.899617,-1.942724},{-0.38193,2.289115,-2.709997},{-1.821689,3.328057,-2.539689},{-2.012325,1.61193,-0.903672},{-1.128245,4.198894,0.50176},{-2.730561,3.813746,-0.157918},{-2.10266,2.89641,1.2417},{1.80386,1.364339,0.519028},{1.871237,3.133578,-1.223344},{2.608491,3.630149,0.323746},{1.011473,4.25636,-0.132116},{1.761857,2.729661,2.536279},{0.381819,1.597012,2.570319},{0.117379,3.318927,2.193712},{-1.265646,0.188606,1.543039},{-3.487487,0.66184,2.148759},{-3.434664,0.970778,0.396086},{-4.202076,-0.509939,1.023246},{-1.082395,-2.287287,2.097662},{-2.315955,-1.439096,3.066488},{-2.814922,-2.479327,1.71752},{-1.629372,-1.499599,-2.14888},{-3.933775,-0.769352,-1.445599},{-4.037585,-2.184764,-0.356375},{-3.861653,-2.426354,-2.105899},{-0.401603,-3.254148,-0.95376},{-1.877108,-3.908128,-1.711824},{-1.828497,-3.643719,0.049762},{1.925769,-0.876804,-2.195883},{3.692507,-2.615673,-0.36965},{2.233485,-3.175557,-1.240586},{3.651908,-2.573742,-2.143014},{4.240986,-0.111994,-2.155937},{3.196235,1.068559,-1.323985},{4.257987,-0.011702,-0.379646},{0.758146,-0.582622,1.718959},{1.241021,-2.767365,2.577129},{2.310463,-3.188554,1.223793},{0.558447,-3.025814,0.94653},{2.846754,-0.834803,2.955718},{3.064775,0.455663,1.747573},{3.768939,-1.162049,1.474691}} {C,C,C,N,C,C,C,P,N,C,C,C,C,C,C,N,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -19967 625 {{-1.482777,-2.913883,1.226347},{-1.424193,-1.368015,1.183129},{-2.515256,-0.80231,2.111654},{-1.382432,-0.776269,-0.170214},{-2.533379,-0.785611,-1.100796},{-3.18235,-2.165205,-1.300643},{-3.609627,0.281462,-0.813008},{-0.013708,0.105297,-0.818571},{1.295577,-0.825052,-0.056141},{2.437795,-0.149777,0.582229},{2.621301,-0.567719,2.056498},{3.778188,-0.20071,-0.174981},{1.437249,-2.142799,-0.720917},{2.040353,-3.221271,0.19102},{2.135889,-2.128729,-2.101854},{0.14144,1.656273,-0.039429},{-0.18424,1.956005,1.371892},{-1.515482,2.717841,1.523252},{0.930901,2.721529,2.115283},{0.312238,2.817034,-0.952741},{1.633594,2.728983,-1.734661},{-0.880351,3.040925,-1.901592},{-1.148936,-3.25952,2.220374},{-2.501368,-3.301868,1.07161},{-0.823724,-3.36836,0.473151},{-0.436566,-1.105579,1.603747},{-2.52184,0.296839,2.123201},{-3.518331,-1.149072,1.81146},{-2.344531,-1.157549,3.143133},{-2.079179,-0.504658,-2.072342},{-3.865401,-2.123299,-2.165906},{-3.781663,-2.472152,-0.427773},{-2.425532,-2.940861,-1.496278},{-4.164686,0.077488,0.116008},{-4.340788,0.309905,-1.640084},{-3.15223,1.27934,-0.733728},{2.142332,0.911385,0.588825},{2.982458,-1.603296,2.155953},{3.356912,0.090706,2.553029},{1.667095,-0.486285,2.60245},{4.503584,0.459915,0.330894},{4.219162,-1.210502,-0.195961},{3.663041,0.151582,-1.211982},{0.393044,-2.449133,-0.92135},{3.110738,-3.045197,0.385446},{1.955354,-4.206906,-0.297635},{1.514656,-3.266879,1.15751},{1.748307,-1.302187,-2.719339},{1.926751,-3.074814,-2.631756},{3.228709,-2.026528,-2.023821},{-0.293162,0.975903,1.865211},{-1.440325,3.73421,1.09964},{-2.334109,2.192644,1.010357},{-1.781733,2.824588,2.588907},{1.104925,3.716018,1.670102},{0.635586,2.882894,3.166208},{1.884065,2.173138,2.113227},{0.381537,3.703547,-0.297472},{2.490178,2.637808,-1.04723},{1.779804,3.626672,-2.359901},{1.630954,1.847706,-2.398862},{-0.73034,3.953453,-2.504786},{-1.819143,3.151801,-1.336576},{-0.99118,2.18649,-2.589272}} {C,C,C,N,C,C,C,P,N,C,C,C,C,C,C,N,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -19790 643 {{-3.196436,-0.707227,1.382092},{-1.686816,-0.761595,1.13473},{-1.430796,-0.853874,-0.306737},{2e-06,-0.281947,-1.103414},{1.43081,-0.853851,-0.306747},{1.686849,-0.761542,1.134714},{3.196471,-0.707173,1.382058},{3.8657,-1.83349,0.804475},{3.626488,-1.887638,-0.607571},{2.131191,-1.989686,-0.913258},{-1e-05,1.326193,-0.352913},{1.198564,2.138111,-0.628573},{1.174257,3.379705,0.262549},{-3.3e-05,4.167666,0.042385},{-1.174332,3.379696,0.262473},{-1.198571,2.138104,-0.628653},{-2.131185,-1.989699,-0.913261},{-3.626479,-1.887652,-0.607556},{-3.865676,-1.833531,0.804495},{-3.420049,-0.738775,2.460898},{-3.611455,0.232514,0.955497},{-1.201349,0.148451,1.525113},{-1.267273,-1.642722,1.667273},{1.201386,0.148515,1.525079},{1.26731,-1.642656,1.667283},{3.611488,0.232558,0.955438},{3.420097,-0.738699,2.460861},{4.043314,-0.978804,-1.093694},{4.167413,-2.774824,-0.974682},{1.960651,-1.977002,-2.004099},{1.751104,-2.956338,-0.514314},{1.237515,2.458182,-1.694764},{2.099858,1.53962,-0.422086},{2.030137,4.036817,0.03877},{1.22447,3.069953,1.329702},{-2.030203,4.036802,0.03864},{-1.224612,3.069941,1.329622},{-2.099875,1.539608,-0.422228},{-1.237449,2.458176,-1.694846},{-1.751096,-2.956357,-0.514335},{-1.960657,-1.976996,-2.004103},{-4.167411,-2.774829,-0.974679},{-4.043308,-0.978808,-1.093657}} {C,C,N,P,N,C,C,O,C,C,N,C,C,O,C,C,C,C,O,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -14387 1012 {{0.016173,2.354401,0.855864},{-0.058217,1.481059,-0.570958},{-1.418301,0.3066,-0.148791},{-2.643983,0.473467,-0.825809},{-3.731612,-0.367969,-0.545514},{-3.600875,-1.378579,0.418564},{-2.38306,-1.550636,1.099852},{-1.294551,-0.717098,0.814719},{1.397608,0.384728,-0.282294},{1.667845,-0.629091,-1.225196},{2.785424,-1.459796,-1.070477},{3.651838,-1.27926,0.020906},{3.393481,-0.264797,0.95462},{2.272588,0.568,0.805181},{-2.741697,1.26632,-1.575696},{-4.678307,-0.234164,-1.077645},{-4.447318,-2.036227,0.63946},{-2.282328,-2.341162,1.850013},{-0.341957,-0.860509,1.33431},{0.997065,-0.778078,-2.07938},{2.981477,-2.248555,-1.80332},{4.526611,-1.925719,0.13944},{4.06593,-0.118451,1.805743},{2.069808,1.357638,1.534099}} {F,P,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H} \N -19791 643 {{-3.726181,-1.015269,0.460964},{-2.562597,-1.215377,-0.51007},{-1.590462,-0.124423,-0.323275},{-0.040173,-0.33995,-1.154913},{0.352231,-1.851922,-0.385109},{1.418435,-2.632311,-1.005613},{2.80494,-2.212834,-0.439995},{2.674842,-1.555926,0.82824},{1.724541,-2.229374,1.652893},{0.290936,-2.096051,1.060132},{0.747582,1.016195,-0.416185},{0.762473,1.306084,1.022968},{0.95328,2.810123,1.233386},{2.14651,3.286209,0.601419},{2.112914,3.007246,-0.803546},{1.964893,1.508252,-1.069457},{-2.26133,1.162644,-0.5772},{-3.430989,1.314062,0.394799},{-4.373962,0.245524,0.261047},{-4.500187,-1.784251,0.305627},{-3.351035,-1.083772,1.505713},{-2.071245,-2.181874,-0.31759},{-2.958974,-1.233677,-1.55087},{1.225451,-3.705777,-0.808283},{1.390457,-2.487846,-2.098829},{3.471634,-3.097424,-0.342118},{3.29568,-1.474531,-1.095618},{2.008007,-3.298441,1.760586},{1.79196,-1.760188,2.647537},{-0.275001,-3.032558,1.257472},{-0.269952,-1.271404,1.525379},{1.591009,0.757938,1.517556},{-0.196631,0.982671,1.461782},{1.060425,3.046089,2.304783},{0.073746,3.359324,0.82973},{3.062203,3.389339,-1.212865},{1.266272,3.553292,-1.274247},{1.89303,1.318046,-2.155123},{2.863669,0.983552,-0.678334},{-2.647052,1.221634,-1.620449},{-1.540353,1.983367,-0.436041},{-3.989417,2.242156,0.191638},{-3.043561,1.345006,1.437043}} {C,C,N,P,N,C,C,O,C,C,N,C,C,O,C,C,C,C,O,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -19716 645 {{0.947899,4.807945,-0.548367},{0.04022,3.659948,-0.090943},{0.08902,2.472943,-1.063157},{-0.674975,1.302551,-0.599073},{-2.134071,1.477699,-0.75631},{-2.882245,1.773086,0.552593},{-4.371332,2.044487,0.307507},{-0.085476,-0.257294,-1.219774},{1.556385,-0.111828,-0.660143},{2.528886,-0.939015,-1.379418},{2.82528,-2.312943,-0.752844},{3.852445,-3.104394,-1.570035},{1.947446,0.378127,0.664592},{3.19524,1.276516,0.666248},{3.433955,1.895795,2.048528},{-1.024027,-1.288403,-0.179955},{-1.01048,-1.194475,1.281664},{-0.113986,-2.213747,2.006208},{0.005143,-1.892522,3.499879},{-1.388304,-2.593978,-0.742414},{-2.790559,-3.075147,-0.333567},{-3.908218,-2.092098,-0.694486},{0.898151,5.663606,0.14476},{2.001834,4.483136,-0.605526},{0.658893,5.171438,-1.550004},{0.342146,3.307331,0.912652},{-0.998245,4.025563,0.005417},{1.137866,2.164219,-1.200805},{-0.274056,2.809776,-2.061975},{-2.323225,2.302066,-1.476754},{-2.571081,0.567294,-1.206622},{-2.415733,2.637214,1.057559},{-2.762432,0.914419,1.23461},{-4.515697,2.920216,-0.349756},{-4.859947,1.182451,-0.180223},{-4.906711,2.241918,1.25072},{3.477108,-0.376525,-1.49241},{2.13406,-1.090175,-2.401345},{1.878147,-2.878708,-0.677948},{3.195673,-2.182581,0.281116},{4.810321,-2.559576,-1.641992},{3.492615,-3.278489,-2.599332},{4.061278,-4.08767,-1.117689},{2.117904,-0.45854,1.376444},{1.093457,0.956879,1.056213},{3.070452,2.072415,-0.090439},{4.085944,0.695583,0.365496},{3.554081,1.115342,2.820463},{2.583931,2.532827,2.349995},{4.342472,2.51982,2.061235},{-2.046259,-1.299953,1.668717},{-0.696188,-0.168771,1.5374},{0.884912,-2.215526,1.535982},{-0.520417,-3.23363,1.877396},{0.614556,-2.642583,4.030396},{-0.987471,-1.8662,3.983456},{0.475181,-0.90516,3.654804},{-0.648302,-3.377281,-0.466722},{-1.341283,-2.492597,-1.84208},{-2.814268,-3.284974,0.752591},{-2.962016,-4.04792,-0.830343},{-3.780352,-1.137636,-0.158683},{-4.89973,-2.498474,-0.434723},{-3.905156,-1.866747,-1.775317}} {C,C,C,N,C,C,C,P,N,C,C,C,C,C,C,N,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -19717 645 {{2.819609,3.725603,-0.537031},{1.713928,2.780639,-1.019798},{0.895142,2.218738,0.159246},{-0.241038,1.342043,-0.176171},{-1.368747,2.068255,-0.78494},{-2.251864,2.776246,0.253854},{-3.438641,3.497363,-0.395436},{0.212511,-0.156269,-1.037867},{1.392654,-0.767058,0.082936},{1.077498,-1.307072,1.40996},{1.028369,-0.294129,2.565606},{0.682599,-0.974399,3.894879},{2.694549,-1.133949,-0.475385},{3.884578,-0.407673,0.171638},{5.223148,-0.82931,-0.445105},{-1.277598,-1.005233,-0.806491},{-2.108927,-0.981957,0.401464},{-3.601416,-0.701698,0.155794},{-4.366978,-0.574864,1.478245},{-1.651443,-1.958817,-1.856909},{-1.520951,-3.443202,-1.470859},{-0.077605,-3.873052,-1.189905},{3.5065,3.212284,0.159609},{3.422019,4.110985,-1.37607},{2.396747,4.593741,-0.000942},{1.052311,3.310133,-1.72885},{2.154808,1.937306,-1.583227},{0.503279,3.058785,0.764416},{1.575721,1.654526,0.816552},{-1.023533,2.812378,-1.535799},{-1.98583,1.340462,-1.34007},{-1.647083,3.501167,0.828765},{-2.611173,2.027602,0.982299},{-4.066536,4.001732,0.357234},{-3.097783,4.262437,-1.114828},{-4.081887,2.788995,-0.947306},{1.834009,-2.082422,1.643863},{0.107768,-1.837964,1.36843},{0.2774,0.478288,2.325183},{2.003171,0.221214,2.643725},{1.428237,-1.745271,4.159496},{-0.302272,-1.47171,3.841492},{0.644716,-0.24797,4.723062},{2.672503,-0.903822,-1.557142},{2.851092,-2.232969,-0.389876},{3.892774,-0.612947,1.258535},{3.737432,0.682025,0.060339},{5.391808,-1.914476,-0.329604},{6.07023,-0.307312,0.029159},{5.252327,-0.602898,-1.525438},{-1.69765,-0.194163,1.055255},{-2.028005,-1.941586,0.95764},{-4.047842,-1.512852,-0.447353},{-3.708959,0.224661,-0.436363},{-4.274785,-1.494809,2.082082},{-5.440818,-0.393502,1.308294},{-3.97715,0.260327,2.086417},{-0.998435,-1.752607,-2.724933},{-2.689494,-1.756397,-2.187888},{-1.940307,-4.043343,-2.300199},{-2.157597,-3.65659,-0.591443},{0.560795,-3.712896,-2.076641},{-0.018941,-4.93984,-0.91761},{0.357547,-3.285273,-0.36608}} {C,C,C,N,C,C,C,P,N,C,C,C,C,C,C,N,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -19066 663 {{1.400996,3.958851,0.219889},{0.54575,3.21407,1.25731},{0.695567,1.693728,1.094485},{0.366761,1.285659,-0.274506},{-0.282166,-0.264773,-0.727496},{-1.490914,-0.332451,0.573442},{-2.488572,0.754931,0.573997},{-3.619604,0.556791,-0.451008},{-4.304967,-0.803866,-0.250454},{-3.262122,-1.932549,-0.247639},{-2.145016,-1.638562,0.769382},{0.709469,-1.561976,-0.158525},{1.422019,-2.37269,-1.145923},{2.940531,-2.136641,-1.096641},{3.472759,-2.362736,0.32803},{2.692978,-1.509679,1.342468},{1.180731,-1.756842,1.213758},{1.211701,1.934881,-1.279672},{1.081331,3.46264,-1.199348},{1.248598,5.049987,0.296984},{2.472153,3.771453,0.434894},{-0.518637,3.485559,1.125583},{0.833541,3.505186,2.283885},{0.03034,1.150937,1.785289},{1.745814,1.41089,1.340367},{-1.967188,1.707599,0.39414},{-2.923096,0.799433,1.594957},{-4.350074,1.38191,-0.361565},{-3.189736,0.611283,-1.469234},{-4.837404,-0.801191,0.72231},{-5.069446,-0.977043,-1.02864},{-2.811216,-2.026166,-1.253981},{-3.734356,-2.903782,-0.010671},{-2.574365,-1.635858,1.793352},{-1.376238,-2.426108,0.737686},{1.215352,-3.448345,-0.947061},{1.015204,-2.138276,-2.144762},{3.147466,-1.095989,-1.41223},{3.448583,-2.806677,-1.814226},{4.553192,-2.140448,0.382028},{3.356476,-3.43348,0.590555},{3.020465,-1.73197,2.374647},{2.897472,-0.438486,1.15779},{0.962308,-2.804766,1.52112},{0.598284,-1.09898,1.878413},{0.913518,1.562428,-2.275565},{2.282324,1.654557,-1.131046},{1.755493,3.931879,-1.938637},{0.045955,3.743476,-1.468617}} {C,C,C,N,P,N,C,C,C,C,C,N,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -19067 663 {{-3.966622,-1.771622,0.810539},{-3.624588,-1.93994,-0.678739},{-2.104557,-2.033739,-0.874177},{-1.433181,-0.868138,-0.292885},{-0.000161,-0.313505,-1.102663},{1.432191,-0.869419,-0.292601},{2.103195,-2.035156,-0.87404},{3.623263,-1.941831,-0.678663},{3.96542,-1.773706,0.810616},{3.201353,-0.581965,1.409422},{1.693323,-0.707453,1.141601},{0.000499,1.317352,-0.405121},{-1.207605,2.112766,-0.685256},{-1.260983,3.330858,0.246316},{0.001812,4.193176,0.093549},{1.263959,3.32981,0.245743},{1.209133,2.111773,-0.685823},{-1.694209,-0.70601,1.141323},{-3.202185,-0.580057,1.40921},{-5.055016,-1.648071,0.951151},{-3.678734,-2.694401,1.353075},{-4.002089,-1.07104,-1.249688},{-4.108368,-2.843929,-1.090957},{-1.843835,-2.084958,-1.945656},{-1.738418,-2.974855,-0.399515},{1.842407,-2.086197,-1.945512},{1.736791,-2.976197,-0.399442},{4.10676,-2.845935,-1.090963},{4.001005,-1.073013,-1.249578},{3.677307,-2.69644,1.353108},{5.053857,-1.650472,0.951173},{3.567969,0.35866,0.956701},{3.37741,-0.510871,2.498183},{1.295902,-1.582563,1.706418},{1.156035,0.189381,1.489447},{-1.21506,2.462156,-1.746091},{-2.091554,1.471968,-0.548103},{-1.347039,2.973639,1.28991},{-2.167533,3.922676,0.024608},{0.002322,5.022307,0.823164},{0.001779,4.654644,-0.913783},{2.1709,3.920874,0.023627},{1.350195,2.972499,1.289291},{1.216363,2.461157,-1.746659},{2.09263,1.470251,-0.549101},{-1.156626,0.19069,1.489068},{-1.297035,-1.581195,1.706204},{-3.378171,-0.508817,2.497974},{-3.568559,0.360633,0.956422}} {C,C,C,N,P,N,C,C,C,C,C,N,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -18654 674 {{-5.392059,1.326382,-0.601535},{-4.21063,1.028702,0.198419},{-3.184971,2.064135,0.044174},{-1.968713,1.754178,0.925894},{-1.386186,0.428819,0.665861},{-0.287788,0.314163,-0.728259},{0.79493,1.56442,-0.225372},{1.509017,2.322174,-1.25602},{3.011797,1.984624,-1.240728},{3.638728,2.150585,0.078565},{3.880318,3.546287,0.440646},{2.883053,1.401438,1.092677},{1.376341,1.725278,1.111242},{0.312995,-1.266935,-0.320821},{1.039719,-1.97627,-1.3731},{0.843195,-3.486514,-1.221505},{1.276558,-3.929364,0.106689},{1.153696,-5.374081,0.254804},{0.531688,-3.217861,1.148616},{0.726851,-1.705466,1.012309},{-2.438917,-0.598366,0.744593},{-3.653058,-0.284516,-0.138255},{-5.175048,1.367693,-1.69695},{-5.810399,2.300597,-0.297468},{-6.15939,0.552319,-0.432573},{-2.853532,2.149688,-1.021672},{-3.620818,3.036425,0.337651},{-1.195437,2.523529,0.777063},{-2.282818,1.778427,1.988116},{1.358951,3.4093,-1.082274},{1.069632,2.080976,-2.239936},{3.55905,2.607471,-1.971494},{3.132472,0.924366,-1.538823},{2.971062,4.179641,0.548068},{4.521331,4.0099,-0.328529},{4.42474,3.577774,1.399871},{3.332726,1.596475,2.0832},{3.00816,0.324167,0.871462},{0.834332,1.073249,1.815221},{1.219448,2.771573,1.452276},{0.662367,-1.639444,-2.354168},{2.129522,-1.753128,-1.327002},{-0.233817,-3.732422,-1.399553},{1.443533,-4.019468,-1.98029},{0.099911,-5.732596,0.156444},{1.529029,-5.679001,1.245935},{1.76131,-5.879145,-0.514487},{-0.56142,-3.453489,1.096806},{0.901324,-3.553499,2.134076},{1.800441,-1.474575,1.188947},{0.12319,-1.171143,1.763475},{-2.771317,-0.659124,1.799943},{-2.012067,-1.572176,0.459087},{-4.435766,-1.048723,0.018816},{-3.346382,-0.330191,-1.213595}} {C,N,C,C,N,P,N,C,C,N,C,C,C,N,C,C,N,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -18655 674 {{5.392652,-1.324472,0.601423},{4.211053,-1.027307,-0.198472},{3.653066,0.28577,0.138056},{2.438768,0.599091,-0.744763},{1.38638,-0.428432,-0.665838},{0.288014,-0.314006,0.72831},{-0.313098,1.266978,0.320904},{-0.72739,1.705175,-1.012206},{-0.533057,3.217661,-1.14866},{-1.278192,3.928841,-0.106705},{-1.156135,5.373612,-0.254943},{-0.844451,3.486328,1.221476},{-1.040122,1.975987,1.373204},{-0.794492,-1.564484,0.225468},{-1.375686,-1.725779,-1.111186},{-2.882542,-1.402606,-1.092831},{-3.637988,-2.151944,-0.07869},{-3.87893,-3.547805,-0.440591},{-3.011272,-1.985504,1.240642},{-1.508344,-2.322402,1.256159},{1.969337,-1.753643,-0.925682},{3.185752,-2.063054,-0.043986},{5.811288,-2.298593,0.297464},{5.175751,-1.365691,1.696862},{6.159709,-0.550179,0.432275},{3.346443,0.33149,1.21341},{4.435506,1.050218,-0.01917},{2.011602,1.572795,-0.459368},{2.77109,0.659807,-1.80014},{-1.800881,1.473696,-1.188668},{-0.123553,1.171124,-1.76342},{-0.902995,3.553019,-2.134102},{0.559931,3.453876,-1.097002},{-1.763944,5.878402,0.514373},{-1.53174,5.678252,-1.246057},{-0.102537,5.732711,-0.156722},{-1.445013,4.019003,1.980279},{0.23244,3.732849,1.399403},{-0.662479,1.63944,2.354254},{-2.129807,1.75224,1.327232},{-0.833882,-1.073608,-1.815189},{-1.218312,-2.772053,-1.452069},{-3.008167,-0.325358,-0.871794},{-3.332017,-1.597995,-2.083374},{-2.969385,-4.180766,-0.547849},{-4.42326,-3.57967,-1.399856},{-4.519798,-4.011591,0.328598},{-3.132439,-0.925251,1.53855},{-3.558331,-2.608472,1.971449},{-1.357788,-3.409494,1.082607},{-1.069179,-2.080858,2.240086},{2.283388,-1.777963,-1.987918},{1.196324,-2.523227,-0.776685},{3.621901,-3.035246,-0.337336},{2.854415,-2.148544,1.021896}} {C,N,C,C,N,P,N,C,C,N,C,C,C,N,C,C,N,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -14425 1005 {{-2.44916,-2.220175,-1.868774},{-2.815257,-1.537192,-0.537237},{-4.332413,-1.620828,-0.307453},{-2.211378,0.258065,-0.614022},{-0.291337,0.056492,-0.374241},{0.318898,-1.209218,-0.148814},{1.680758,-1.419955,0.065208},{2.153948,-2.734021,0.27676},{3.506027,-2.975538,0.510253},{4.41015,-1.895862,0.534191},{3.946583,-0.597341,0.323942},{2.579636,-0.311739,0.083719},{2.075162,1.050766,-0.151403},{2.941666,2.173732,-0.154102},{2.458972,3.457803,-0.404869},{1.091897,3.666807,-0.675118},{0.225434,2.574465,-0.673473},{0.680359,1.259834,-0.402738},{-2.586279,1.006261,1.105494},{-2.340891,0.060487,2.289281},{-3.983202,1.647286,1.154679},{-2.748246,-3.28379,-1.852719},{-1.371038,-2.171852,-2.096033},{-2.978696,-1.733679,-2.705807},{-2.314745,-2.068613,0.298341},{-4.625759,-1.252387,0.687556},{-4.87561,-1.026642,-1.062786},{-4.6749,-2.668367,-0.389654},{-0.243275,-2.06004,-0.0986},{1.437643,-3.563514,0.255754},{3.858211,-3.998225,0.6733},{5.474082,-2.071278,0.716257},{4.669447,0.221323,0.345752},{4.010261,2.049057,0.037537},{3.152781,4.304488,-0.40097},{0.718882,4.672921,-0.889337},{-0.835128,2.724325,-0.905465},{-1.843637,1.824284,1.168817},{-2.48794,0.595023,3.245455},{-1.314804,-0.343448,2.282258},{-3.041299,-0.792198,2.283483},{-4.118372,2.197919,2.103464},{-4.128574,2.354471,0.322216},{-4.784573,0.892577,1.094249}} {C,C,C,P,B,N,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -14426 1005 {{2.109018,0.714891,2.143625},{3.050502,0.717111,0.92979},{3.624787,2.121469,0.681514},{2.335209,-0.036894,-0.678761},{0.415264,-0.060186,-0.383339},{-0.333259,-1.260572,-0.21104},{-1.709678,-1.331406,-0.000704},{-2.319047,-2.594354,0.172605},{-3.686848,-2.698206,0.416136},{-4.470071,-1.529916,0.488894},{-3.872655,-0.281965,0.312304},{-2.485963,-0.1363,0.060916},{-1.84211,1.169201,-0.154267},{-2.589235,2.374844,-0.142626},{-1.981664,3.604805,-0.393102},{-0.604671,3.672944,-0.682844},{0.145231,2.497609,-0.69132},{-0.433874,1.235636,-0.409634},{2.94377,-1.832699,-0.536559},{2.479877,-2.640112,-1.761619},{2.694392,-2.579014,0.78452},{1.251852,1.388295,1.974684},{2.640001,1.071267,3.046001},{1.707356,-0.288292,2.357532},{3.905083,0.04479,1.141982},{4.178522,2.470891,1.57187},{4.309855,2.13506,-0.181282},{2.822756,2.854157,0.490343},{0.130053,-2.167866,-0.192066},{-1.696047,-3.494486,0.115861},{-4.14452,-3.682608,0.550415},{-5.544495,-1.597014,0.681187},{-4.503447,0.607963,0.370121},{-3.663766,2.357603,0.055405},{-2.585745,4.517553,-0.379356},{-0.133656,4.634951,-0.906698},{1.209473,2.537267,-0.94483},{4.040523,-1.709288,-0.634562},{2.737229,-2.122466,-2.700096},{1.387993,-2.802336,-1.772786},{2.958918,-3.635281,-1.773399},{1.622917,-2.72326,1.003905},{3.159883,-3.581362,0.750409},{3.127048,-2.044424,1.64499}} {C,C,C,P,B,N,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -14390 1011 {{1.777554,-0.045613,1.520476},{1.566778,0.233785,0.023095},{1.564567,1.746249,-0.263527},{2.715227,-0.430107,-0.774087},{-0.001027,-0.544904,-0.736465},{0.025578,-1.979711,0.141795},{-1.565925,0.224438,0.027781},{-1.533231,0.531686,1.531512},{-2.667489,-0.823481,-0.256215},{-1.879023,1.499832,-0.783149},{1.695828,-1.121434,1.742042},{2.792433,0.284147,1.810502},{1.059804,0.492311,2.155508},{1.33331,1.96868,-1.320697},{0.843421,2.286098,0.371061},{2.567375,2.160758,-0.053065},{2.733646,-1.522425,-0.621914},{3.685121,-0.025416,-0.431048},{2.62647,-0.236656,-1.856266},{-0.850265,1.362944,1.768031},{-1.231397,-0.350181,2.119354},{-2.543446,0.830608,1.868686},{-2.503031,-1.749622,0.316586},{-3.648739,-0.40631,0.034934},{-2.716216,-1.085736,-1.327308},{-2.882549,1.869855,-0.504523},{-1.886308,1.300966,-1.868845},{-1.161004,2.311649,-0.58753}} {C,C,C,C,P,F,C,C,C,C,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -14377 1015 {{-0.423592,4.156659,-0.446066},{-1.0587,4.083995,0.842339},{-1.430264,2.84237,1.461005},{-1.11891,1.635415,0.741049},{-0.48697,1.623102,-0.557582},{0.000235,-0.000278,-1.53189},{-1.162066,-1.233426,-0.557069},{-0.858363,-1.783724,0.743313},{-1.748263,-2.656328,1.46361},{-3.008053,-2.957751,0.843544},{-3.386875,-2.447159,-0.446572},{-2.441265,-1.594163,-1.112508},{1.649435,-0.38987,-0.557186},{1.976237,0.151553,0.741307},{3.177053,-0.182502,1.461414},{4.066048,-1.125918,0.843333},{3.811242,-1.712623,-0.444867},{2.599698,-1.320301,-1.110806},{-0.156892,2.9112,-1.111628},{-0.12998,5.21164,-0.946047},{-1.263101,4.951774,1.332435},{-1.970116,2.807029,2.536587},{-1.385021,0.74191,1.155791},{0.047822,-1.566121,1.158855},{-1.448977,-3.103752,2.540549},{-3.657641,-3.568173,1.333884},{-4.446279,-2.722382,-0.947657},{-2.680883,-1.227593,-2.031948},{1.336262,0.829649,1.15575},{3.416575,0.303186,2.536731},{4.919537,-1.383097,1.333666},{4.577663,-2.495068,-0.944421},{2.400691,-1.713449,-2.028953},{0.282833,2.935368,-2.0299}} {B,N,B,N,B,P,B,N,B,N,B,N,B,N,B,N,B,N,N,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -14378 1015 {{0.94898,-4.03071,-0.09731},{2.136933,-3.855459,0.689984},{2.73415,-2.568447,0.926225},{2.08787,-1.427257,0.339658},{0.884523,-1.515204,-0.447319},{-0.000617,0.000233,-1.259688},{0.869776,1.524203,-0.447483},{0.192587,2.523856,0.338106},{0.858887,3.65327,0.925053},{2.272543,3.777331,0.690369},{3.017726,2.83465,-0.095642},{2.291289,1.717494,-0.639076},{-1.755575,-0.008504,-0.447287},{-2.63558,1.124151,-0.640704},{-3.966244,1.193457,-0.096941},{-4.407853,0.077549,0.691393},{-3.591695,-1.083002,0.927846},{-2.280607,-1.094225,0.340519},{0.343235,-2.843522,-0.640252},{0.47695,-5.119686,-0.299752},{2.581032,-4.678421,1.090422},{3.730206,-2.448922,1.591973},{2.472603,-0.502628,0.531834},{-0.80088,2.396191,0.529349},{0.257835,4.457278,1.589843},{2.76394,4.57277,1.091181},{4.197311,2.968279,-0.29661},{2.78997,1.08007,-1.257917},{-2.334369,1.874118,-1.261012},{-4.673479,2.146565,-0.29959},{-5.342409,0.10456,1.092287},{-3.985823,-2.004988,1.594354},{-1.671846,-1.889309,0.533244},{-0.457347,-2.957374,-1.259979}} {B,N,B,N,B,P,B,N,B,N,B,N,B,N,B,N,B,N,N,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H} \N -9044 1283 {{-1.406825,-0.772343,0.249917},{0,0.107016,-0.580226},{1.406822,-0.772348,0.249917},{3e-06,1.490713,0.365605},{-2.353621,-0.263151,0.011331},{-1.464512,-1.800128,-0.14887},{-1.278731,-0.81347,1.344509},{1.278729,-0.813474,1.344509},{1.464505,-1.800133,-0.148869},{2.353618,-0.263159,0.011329}} {C,P,C,F,H,H,H,H,H,H} \N -9043 1284 {{-1.561872,2.1e-05,0.212965},{0.115177,0,-0.549984},{0.741854,1.24893,0.328014},{0.741812,-1.248951,0.328013},{-2.111535,-0.895281,-0.122274},{-2.111548,0.895292,-0.122334},{-1.48633,5.8e-05,1.312325}} {C,P,F,F,H,H,H} \N -9031 1285 {{1.312736,1.602807,0.564818},{1.011857,0.830811,-0.72455},{0.091239,-0.787754,-0.579447},{1.089329,-1.537771,0.543599},{-1.285054,-0.313863,0.587974},{-2.280139,0.65425,-0.071111},{0.39301,1.976648,1.0437},{1.95343,2.47597,0.35538},{1.839893,0.965058,1.292454},{1.946848,0.579996,-1.257608},{0.422353,1.441498,-1.435924},{-1.791168,-1.256095,0.861528},{-0.861896,0.109332,1.51544},{-1.8227,1.638556,-0.266753},{-3.153618,0.81946,0.580563},{-2.655105,0.261807,-1.032259}} {C,C,P,F,C,C,H,H,H,H,H,H,H,H,H,H} \N -9032 1285 {{1.314088,1.602093,0.564793},{1.012476,0.830337,-0.724555},{0.090875,-0.787734,-0.579416},{1.088409,-1.538098,0.543585},{-1.285353,-0.313208,0.587948},{-2.280285,0.655119,-0.071108},{1.841205,0.964027,1.292228},{0.394646,1.976262,1.044027},{1.955086,2.475059,0.355314},{1.947223,0.578941,-1.257811},{0.423264,1.441417,-1.435863},{-1.791685,-1.255366,0.861452},{-0.862225,0.10984,1.515525},{-2.655295,0.26287,-1.03235},{-1.822768,1.639457,-0.266565},{-3.153809,0.820347,0.580551}} {C,C,P,F,C,C,H,H,H,H,H,H,H,H,H,H} \N -9028 1286 {{1.916576,-3e-06,-0.524954},{1.078527,0.000154,0.759538},{-0.761302,6e-06,0.538703},{-0.863406,-1.247681,-0.539508},{-0.863636,1.247523,-0.539685},{1.704228,0.890619,-1.136284},{2.991563,0.000198,-0.281469},{1.704465,-0.890929,-1.13592},{1.295977,0.884696,1.389043},{1.296062,-0.884167,1.389327}} {C,C,P,F,F,H,H,H,H,H} \N -9029 1286 {{2.238361,0.039359,0.036387},{0.941726,-0.710524,-0.307529},{-0.529103,0.029261,0.540275},{-1.688794,-0.826895,-0.265253},{-0.600945,1.424028,-0.342892},{3.104911,-0.454473,-0.431594},{2.206606,1.078513,-0.32803},{2.420652,0.065594,1.12437},{0.740342,-0.711478,-1.393527},{0.991157,-1.764279,0.024818}} {C,C,P,F,F,H,H,H,H,H} \N -9026 1287 {{-2.147155,0.411336,-1.229504},{-1.680293,-0.58816,-0.000295},{-2.147163,0.410103,1.229915},{0.110742,-0.202251,-0.00012},{1.004657,-1.290896,-0.000382},{2.389825,-1.064327,-0.000243},{2.879883,0.249947,0.000159},{1.990205,1.339864,0.000402},{0.608417,1.118046,0.000261},{0.617066,-2.316404,-0.000694},{3.083413,-1.910415,-0.000454},{3.959509,0.428983,0.000281},{2.378777,2.362843,0.000702},{-0.087879,1.962142,0.000436}} {F,P,F,C,C,C,C,C,C,H,H,H,H,H} \N -9027 1287 {{-2.1467,0.4111,-1.23051},{-1.680484,-0.587842,-0.000322},{-2.148218,0.409917,1.23025},{0.110854,-0.201768,0.000303},{1.004471,-1.290654,5.7e-05},{2.389646,-1.064568,-0.000207},{2.88014,0.249455,4e-06},{1.990826,1.339579,0.000404},{0.609002,1.118297,0.000526},{0.616413,-2.315908,-5.6e-05},{3.082872,-1.910847,-0.000516},{3.959739,0.428135,-0.000118},{2.379653,2.362374,0.000607},{-0.086787,1.962666,0.000728}} {F,P,F,C,C,C,C,C,C,H,H,H,H,H} \N -9025 1288 {{1.515567,1.266123,-0.519947},{0.83832,0,0.04386},{1.515571,-1.26612,-0.51995},{0.854687,-1e-06,1.579309},{-0.907892,-1e-06,-0.649994},{-1.53091,-1.246914,0.238545},{-1.530909,1.246914,0.238544},{1.473917,1.303956,-1.623207},{1.053543,2.185341,-0.12389},{2.581367,1.271327,-0.230102},{1.473908,-1.303959,-1.623209},{2.581374,-1.271317,-0.230117},{1.053558,-2.185341,-0.123884},{0.355645,-0.893016,1.987948},{1.900916,-2e-06,1.93498},{0.355647,0.893014,1.987949}} {C,C,C,C,P,F,F,H,H,H,H,H,H,H,H,H} \N -9022 1289 {{2.61998,0.103913,-0.693399},{1.343796,0.237551,0.004809},{1.442763,0.742134,1.373425},{0.006231,-0.602523,-0.615031},{-0.22667,-1.902061,0.439731},{-1.253074,0.375938,0.126941},{-2.575391,-0.258284,0.194811},{-1.335798,1.737308,-0.414765},{3.315233,-0.564623,-0.148215},{3.10244,1.093113,-0.801099},{2.451283,-0.312297,-1.699615},{1.86104,1.766107,1.372116},{2.101923,0.097093,1.985969},{0.438653,0.765111,1.821919},{-2.486207,-1.268054,0.617976},{-3.079517,-0.322168,-0.79515},{-3.219512,0.339154,0.863652},{-0.33569,2.195894,-0.443811},{-1.975745,2.345105,0.248979},{-1.771719,1.777108,-1.437518}} {C,N,C,P,F,N,C,C,H,H,H,H,H,H,H,H,H,H,H,H} \N -\. - - --- --- Data for Name: molecule; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.molecule (molecule_id, smiles, molecular_weight, dft_data, xtb_data, ml_data, mol, xtb_ni_data, fingerprint, morganbv, pat, pca, umap) FROM stdin; -138 COP(c1ccccc1)c1ccccc1 216.22000122070312 {"max_data": {"pyr_P": 0.9564548294144979, "pyr_alpha": 19.635036477648406, "qpole_amp": 8.390866372690823, "vbur_vbur": 49.12404981165678, "vbur_vtot": 246.31199270450776, "sterimol_L": 7.734840967491549, "sterimol_B1": 3.63676017842769, "sterimol_B5": 6.317583170283695, "dipolemoment": 2.692394914905539, "qpoletens_xx": 6.645684666972509, "qpoletens_yy": 1.2947513611352162, "qpoletens_zz": -4.6693273663185, "sterimol_burL": 7.258841489581169, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.472629160709744, "sterimol_burB5": 6.07394969269493, "vbur_near_vbur": 49.124049811656775, "vbur_near_vtot": 246.31199270450773, "vbur_ovbur_max": 14.656261923240216, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.52051481849146, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.656261923240216, "vbur_qvbur_min": 10.068924108687188, "vbur_qvtot_max": 91.52051481849146, "vbur_qvtot_min": 35.45873297147893, "vbur_max_delta_qvbur": 5.0036078670364095, "vbur_max_delta_qvtot": 55.795980045406516}, "min_data": {"pyr_P": 0.9203473897697954, "pyr_alpha": 14.169978824649924, "qpole_amp": 5.904808409742955, "vbur_vbur": 45.25629439938658, "vbur_vtot": 245.1933468998418, "sterimol_L": 7.59902393402868, "sterimol_B1": 3.22012603817741, "sterimol_B5": 6.242316322456337, "dipolemoment": 1.3608349594854503, "qpoletens_xx": 3.374576005183284, "qpoletens_yy": -1.8808035952577375, "qpoletens_zz": -4.764881071714772, "sterimol_burL": 7.165413503758088, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.22012603817741, "sterimol_burB5": 6.040768488270412, "vbur_near_vbur": 45.256294399386576, "vbur_near_vtot": 245.1933468998418, "vbur_ovbur_max": 14.625930688260272, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.01352870486245, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.625930688260272, "vbur_qvbur_min": 9.622322821223863, "vbur_qvtot_max": 90.01352870486245, "vbur_qvtot_min": 34.217548659455936, "vbur_max_delta_qvbur": 4.510986774775926, "vbur_max_delta_qvtot": 50.762952098112244}, "delta_data": {"pyr_P": 0.03610743964470253, "pyr_alpha": 5.465057652998482, "qpole_amp": 2.486057962947868, "vbur_vbur": 3.867755412270199, "vbur_vtot": 1.1186458046659595, "sterimol_L": 0.13581703346286922, "sterimol_B1": 0.41663414025028, "sterimol_B5": 0.07526684782735771, "dipolemoment": 1.3315599554200888, "qpoletens_xx": 3.2711086617892255, "qpoletens_yy": 3.1755549563929537, "qpoletens_zz": 0.09555370539627184, "sterimol_burL": 0.0934279858230811, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.252503122532334, "sterimol_burB5": 0.03318120442451811, "vbur_near_vbur": 3.867755412270199, "vbur_near_vtot": 1.118645804665931, "vbur_ovbur_max": 0.03033123497994339, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 1.5069861136290115, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.03033123497994339, "vbur_qvbur_min": 0.4466012874633254, "vbur_qvtot_max": 1.5069861136290115, "vbur_qvtot_min": 1.2411843120229946, "vbur_max_delta_qvbur": 0.49262109226048345, "vbur_max_delta_qvtot": 5.033027947294272}, "vburminconf_data": {"pyr_P": 0.9203473897697954, "pyr_alpha": 19.635036477648406, "qpole_amp": 8.390866372690823, "vbur_vbur": 45.25629439938658, "vbur_vtot": 245.1933468998418, "sterimol_L": 7.59902393402868, "sterimol_B1": 3.22012603817741, "sterimol_B5": 6.317583170283695, "dipolemoment": 2.692394914905539, "qpoletens_xx": 6.645684666972509, "qpoletens_yy": -1.8808035952577375, "qpoletens_zz": -4.764881071714772, "sterimol_burL": 7.165413503758088, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.22012603817741, "sterimol_burB5": 6.040768488270412, "vbur_near_vbur": 45.256294399386576, "vbur_near_vtot": 245.1933468998418, "vbur_ovbur_max": 14.656261923240216, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.01352870486245, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.656261923240216, "vbur_qvbur_min": 10.068924108687188, "vbur_qvtot_max": 90.01352870486245, "vbur_qvtot_min": 34.217548659455936, "vbur_max_delta_qvbur": 4.510986774775926, "vbur_max_delta_qvtot": 55.795980045406516}, "boltzmann_averaged_data": {"nbo_P": 1.057658784633515, "nmr_P": 150.52440375327402, "pyr_P": 0.9555237737248179, "fmo_mu": -0.13579014924150606, "vmin_r": 1.860795371447375, "volume": 282.67774154684895, "Pint_dP": 3.6181950008386385, "fmo_eta": 0.1959874214297695, "fukui_m": 0.35907463465867423, "fukui_p": 0.163920619531675, "nuesp_P": -54.14987995164474, "somo_ra": 0.06305459290147089, "somo_rc": -0.4034003063819671, "nbo_P_ra": 0.89373816510184, "nbo_P_rc": 1.4167334192921894, "efg_amp_P": 2.2199634433700632, "fmo_omega": 0.04704210015414541, "pyr_alpha": 14.3108991743707, "qpole_amp": 5.968913160288912, "vbur_vbur": 49.0243170220068, "vbur_vtot": 246.28314763680373, "vmin_vmin": -0.04507891742977824, "E_solv_cds": -4.574069288469812, "Pint_P_int": 18.463867855345775, "Pint_P_max": 30.603609998322725, "Pint_P_min": 12.227735710691551, "fmo_e_homo": -0.23378385995639084, "fmo_e_lumo": -0.03779643852662132, "nbo_lp_P_e": -0.34082358517024364, "sphericity": 0.7904088357524339, "sterimol_L": 7.731338829898705, "E_oxidation": 0.287704817187162, "E_reduction": 0.013115940844747641, "sterimol_B1": 3.6260169745170288, "sterimol_B5": 6.244257130987862, "E_solv_total": -10.39280370218084, "dipolemoment": 1.3951701680973903, "efgtens_xx_P": -1.412564296226447, "efgtens_yy_P": -0.2773636491635055, "efgtens_zz_P": 1.6899279453899525, "nbo_bd_e_avg": -0.5333390870627472, "nbo_bd_e_max": -0.47751904925827887, "nbo_lp_P_occ": 1.9386628838209836, "qpoletens_xx": 3.458923839344024, "qpoletens_yy": 1.2128674463759797, "qpoletens_zz": -4.671791285720004, "surface_area": 263.5332440277439, "E_solv_elstat": -5.818734413711027, "nbo_bds_e_avg": 0.21155105569056426, "nbo_bds_e_min": 0.18567381199705385, "nmrtens_sxx_P": -29.360610343917628, "nmrtens_syy_P": 209.80835673946638, "nmrtens_szz_P": 271.12537002141374, "spindens_P_ra": 0.20372324606124248, "spindens_P_rc": 0.44056872934083013, "sterimol_burL": 7.256432383351764, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9623658850081072, "nbo_bd_occ_min": 1.9560867928679255, "sterimol_burB1": 3.466118190361001, "sterimol_burB5": 6.073094092035513, "vbur_near_vbur": 49.02431702200679, "vbur_near_vtot": 246.2831476368037, "vbur_ovbur_max": 14.626712800456014, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.48165612318742, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.626712800456014, "vbur_qvbur_min": 9.633838749071495, "vbur_qvtot_max": 91.48165612318742, "vbur_qvtot_min": 35.42672816230327, "nbo_bds_occ_avg": 0.045179836559880025, "nbo_bds_occ_max": 0.054344061389514836, "nbo_lp_P_percent_s": 56.3225543077585, "vbur_max_delta_qvbur": 4.9909052862021355, "vbur_max_delta_qvtot": 50.89273225845474, "vbur_ratio_vbur_vtot": 0.199055029885272}} {"max_data": {"B1": 3.507352756179151, "B5": 6.280447610126888, "lval": 7.591964468196581, "sasa": 422.7427237041283, "vbur": 54.89937240020248, "vtot": 243.87732528502315, "alpha": 172.055447, "p_int": 19.250355872355037, "sasa_P": 22.279936818684522, "pyr_val": 0.9706233075854992, "dip_norm": 1.1825535928658795, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.89937240020248, "near_vtot": 243.87732528502318, "ovbur_max": 15.60727380973909, "ovbur_min": 0.0, "ovtot_max": 88.56621763764062, "ovtot_min": 0.0, "pyr_alpha": 17.109720959821995, "qvbur_max": 15.60727380973909, "qvbur_min": 12.331960934058221, "qvtot_max": 88.56621763764062, "qvtot_min": 34.19500683341861, "cone_angle": 164.40992003725236, "p_int_area": 289.9494407675537, "p_int_atom": 24.078681442334933, "sasa_volume": 646.8011209009909, "EA_delta_SCC": 1.4696, "IP_delta_SCC": 6.965, "HOMO_LUMO_gap": 3.661451341813, "sasa_volume_P": 31.95417048097345, "max_delta_qvbur": 4.149506703709573, "max_delta_qvtot": 53.69607898486845, "nucleophilicity": -6.7914, "p_int_atom_area": 20.497147852432125, "p_int_times_p_int_area": 5581.629919765736, "global_electrophilicity_index": 1.6139, "p_int_atom_times_p_int_atom_area": 462.50658659049014}, "min_data": {"B1": 3.192184459787757, "B5": 6.1237635214038715, "lval": 7.389939579346841, "sasa": 407.9721119547816, "vbur": 49.53765025495978, "vtot": 241.73830665326724, "alpha": 172.012584, "p_int": 19.229023285617714, "sasa_P": 15.149957037839798, "pyr_val": 0.9383292231883692, "dip_norm": 0.27924541177967455, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.53765025495977, "near_vtot": 241.73830665326727, "ovbur_max": 15.04778975980072, "ovbur_min": 0.0, "ovtot_max": 86.44515140964134, "ovtot_min": 0.0, "pyr_alpha": 11.482198084338814, "qvbur_max": 15.04778975980072, "qvbur_min": 10.478670018637374, "qvtot_max": 86.44515140964134, "qvtot_min": 32.0882881560889, "cone_angle": 145.3980591935523, "p_int_area": 277.15533411900634, "p_int_atom": 22.56443627768488, "sasa_volume": 631.2700244609226, "EA_delta_SCC": 1.3358, "IP_delta_SCC": 6.7914, "HOMO_LUMO_gap": 3.574929338088, "sasa_volume_P": 21.187918041898207, "max_delta_qvbur": 2.1796566112182294, "max_delta_qvtot": 47.54475422757195, "nucleophilicity": -6.965, "p_int_atom_area": 17.79752350113619, "p_int_times_p_int_area": 5330.121211249402, "global_electrophilicity_index": 1.5134, "p_int_atom_times_p_int_atom_area": 428.5408988463278}, "boltzmann_averaged_data": {"B1": 3.3988460412983383, "B5": 6.152100428874947, "lval": 7.543097480467157, "sasa": 418.25869195390715, "vbur": 52.39430634467554, "vtot": 242.80456916239146, "alpha": 172.02299338918, "p_int": 19.229522038556507, "B1_std": 0.09650067521230753, "B5_std": 0.06024422333080073, "sasa_P": 19.667584826777137, "pyr_val": 0.9648289584610104, "dip_norm": 0.6105640323723108, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.023837332335661033, "sasa_std": 4.80210017334446, "vbur_std": 1.3363756842464507, "vtot_std": 0.4993135445710981, "alpha_std": 0.015147327947616104, "near_vbur": 52.39430634467554, "near_vtot": 242.80456916239146, "ovbur_max": 15.506764365114494, "ovbur_min": 0.0, "ovtot_max": 88.35057739574408, "ovtot_min": 0.0, "p_int_std": 0.0013962115066683163, "pyr_alpha": 12.492154549217966, "qvbur_max": 15.506764365114494, "qvbur_min": 10.601876099339488, "qvtot_max": 88.35057739574408, "qvtot_min": 34.100154528951236, "cone_angle": 154.32541828918082, "p_int_area": 287.00472777619206, "p_int_atom": 23.187823163721507, "sasa_P_std": 1.234254086976094, "pyr_val_std": 0.012373391992534667, "sasa_volume": 642.3334852032604, "EA_delta_SCC": 1.3589025319999999, "IP_delta_SCC": 6.822552284, "dip_norm_std": 0.26714318601316367, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.615099591120359, "near_vbur_std": 1.3363756842464534, "near_vtot_std": 0.4993135445710767, "ovbur_max_std": 0.2143994398712215, "ovbur_min_std": 0.0, "ovtot_max_std": 0.46061974101128816, "ovtot_min_std": 0.0, "pyr_alpha_std": 2.1562136344698777, "qvbur_max_std": 0.2143994398712215, "qvbur_min_std": 0.26809849861813634, "qvtot_max_std": 0.46061974101128816, "qvtot_min_std": 0.2159720473011333, "sasa_volume_P": 28.038777897872304, "cone_angle_std": 4.185273464607188, "p_int_area_std": 4.5969845483239915, "p_int_atom_std": 0.2932513455969287, "max_delta_qvbur": 4.101077531228553, "max_delta_qvtot": 48.650864944691584, "nucleophilicity": -6.822552284, "p_int_atom_area": 19.34464422159428, "sasa_volume_std": 5.164408913837676, "EA_delta_SCC_std": 0.04910760131781, "IP_delta_SCC_std": 0.06651508556397805, "HOMO_LUMO_gap_std": 0.021682290572039645, "sasa_volume_P_std": 1.8505082663127923, "max_delta_qvbur_std": 0.13239502591899596, "max_delta_qvtot_std": 2.357761679156006, "nucleophilicity_std": 0.06651508556397805, "p_int_atom_area_std": 0.5415692695014022, "p_int_times_p_int_area": 5518.959469646245, "p_int_times_p_int_area_std": 88.13911525330177, "global_electrophilicity_index": 1.531595618, "p_int_atom_times_p_int_atom_area": 448.40137975054785, "global_electrophilicity_index_std": 0.03867807830022157, "p_int_atom_times_p_int_atom_area_std": 6.633526218812803}} {"max_data": {"pyr_P": "0.9519994", "pyr_alpha": "20.670258", "qpole_amp": "7.755087", "vbur_vbur": "49.801586", "sterimol_L": "7.490822", "sterimol_B1": "3.9078119", "sterimol_B5": "6.3059316", "dipolemoment": "2.3135326", "qpoletens_xx": "5.563728", "qpoletens_yy": "1.125514", "qpoletens_zz": "-3.699517", "sterimol_burL": "7.281737", "vbur_far_vbur": "-1.0674324", "vbur_far_vtot": "-1.6757725", "sterimol_burB1": "3.829586", "sterimol_burB5": "6.072454", "vbur_near_vbur": "50.510506", "vbur_near_vtot": "250.3131", "vbur_ovbur_max": "18.437136", "vbur_ovbur_min": "-0.1578633", "vbur_ovtot_max": "89.08184", "vbur_ovtot_min": "-0.21915588", "vbur_qvbur_max": "17.235888", "vbur_qvbur_min": "9.795769", "vbur_qvtot_max": "90.42898", "vbur_qvtot_min": "47.229214", "vbur_max_delta_qvbur": "7.036644", "vbur_max_delta_qvtot": "44.985584"}, "min_data": {"pyr_P": "0.9122734", "pyr_alpha": "15.592827", "qpole_amp": "5.9579616", "vbur_vbur": "44.81596", "sterimol_L": "7.5622005", "sterimol_B1": "3.463569", "sterimol_B5": "6.219587", "dipolemoment": "1.5597544", "qpoletens_xx": "3.6830187", "qpoletens_yy": "-1.1644624", "qpoletens_zz": "-5.8208175", "sterimol_burL": "7.1244397", "vbur_far_vbur": "0.42866743", "vbur_far_vtot": "-0.8856047", "sterimol_burB1": "3.451062", "sterimol_burB5": "5.941483", "vbur_near_vbur": "45.320415", "vbur_near_vtot": "248.18741", "vbur_ovbur_max": "14.09699", "vbur_ovbur_min": "-0.022246428", "vbur_ovtot_max": "85.46191", "vbur_ovtot_min": "-0.055624127", "vbur_qvbur_max": "13.7250395", "vbur_qvbur_min": "9.715559", "vbur_qvtot_max": "84.44631", "vbur_qvtot_min": "38.674095", "vbur_max_delta_qvbur": "4.370701", "vbur_max_delta_qvtot": "41.348064"}, "delta_data": {"pyr_P": "0.035833187", "pyr_alpha": "5.520957", "qpole_amp": "2.609759", "vbur_vbur": "3.9230678", "sterimol_L": "0.19612122", "sterimol_B1": "0.34169093", "sterimol_B5": "0.19460025", "dipolemoment": "1.2617978", "qpoletens_xx": "1.8033644", "qpoletens_yy": "2.296188", "qpoletens_zz": "2.455131", "sterimol_burL": "0.007921601", "vbur_far_vbur": "-0.5507547", "vbur_far_vtot": "-0.07726744", "sterimol_burB1": "0.3135983", "sterimol_burB5": "0.15530817", "vbur_near_vbur": "4.8475122", "vbur_near_vtot": "0.27019545", "vbur_ovbur_max": "3.5636134", "vbur_ovbur_min": "-0.112146094", "vbur_ovtot_max": "3.2534811", "vbur_ovtot_min": "-0.054902036", "vbur_qvbur_max": "4.5679617", "vbur_qvbur_min": "-0.27800626", "vbur_qvtot_max": "4.252708", "vbur_qvtot_min": "5.105268", "vbur_max_delta_qvbur": "4.4234858", "vbur_max_delta_qvtot": "5.696369"}, "vburminconf_data": {"pyr_P": "0.9200671", "pyr_alpha": "20.355644", "qpole_amp": "7.7890253", "vbur_vbur": "45.150066", "sterimol_L": "7.421978", "sterimol_B1": "3.838083", "sterimol_B5": "6.1746707", "dipolemoment": "2.0506008", "qpoletens_xx": "5.5293036", "qpoletens_yy": "0.18396586", "qpoletens_zz": "-5.28356", "sterimol_burL": "7.1089025", "vbur_far_vbur": "0.07131747", "vbur_far_vtot": "-2.0673485", "sterimol_burB1": "3.7529001", "sterimol_burB5": "5.921147", "vbur_near_vbur": "45.372143", "vbur_near_vtot": "250.01062", "vbur_ovbur_max": "13.785289", "vbur_ovbur_min": "-0.02988141", "vbur_ovtot_max": "89.01357", "vbur_ovtot_min": "-0.036860816", "vbur_qvbur_max": "13.956562", "vbur_qvbur_min": "10.090461", "vbur_qvtot_max": "87.473114", "vbur_qvtot_min": "47.176476", "vbur_max_delta_qvbur": "4.2952943", "vbur_max_delta_qvtot": "45.470913"}, "boltzmann_averaged_data": {"nbo_P": "1.0488012", "nmr_P": "150.48083", "pyr_P": "0.94344985", "fmo_mu": "-0.1362263", "vmin_r": "1.8464388", "volume": "281.7253", "Pint_dP": "3.6468108", "fmo_eta": "0.1978645", "fukui_m": "0.34881106", "fukui_p": "0.17951068", "nuesp_P": "-54.150265", "somo_ra": "0.06265819", "somo_rc": "-0.40207013", "nbo_P_ra": "0.8711534", "nbo_P_rc": "1.3702466", "efg_amp_P": "2.2514803", "fmo_omega": "0.04686657", "pyr_alpha": "16.21174", "qpole_amp": "6.2685122", "vbur_vbur": "47.64733", "vbur_vtot": "245.79985", "vmin_vmin": "-0.044462953", "E_solv_cds": "-4.4911575", "Pint_P_int": "18.402227", "Pint_P_max": "31.339466", "Pint_P_min": "12.395907", "fmo_e_homo": "-0.23364487", "fmo_e_lumo": "-0.038162656", "nbo_lp_P_e": "-0.33559322", "sphericity": "0.79241174", "sterimol_L": "7.381284", "E_oxidation": "0.289809", "E_reduction": "0.013580286", "sterimol_B1": "3.8445761", "sterimol_B5": "6.240906", "E_solv_total": "-10.565709", "dipolemoment": "1.3848789", "efgtens_xx_P": "-1.4694731", "efgtens_yy_P": "-0.19567092", "efgtens_zz_P": "1.712967", "nbo_bd_e_avg": "-0.54034454", "nbo_bd_e_max": "-0.46891037", "nbo_lp_P_occ": "1.9314272", "qpoletens_xx": "4.022219", "qpoletens_yy": "0.95340276", "qpoletens_zz": "-4.8427973", "surface_area": "260.80972", "E_solv_elstat": "-6.0859995", "nbo_bds_e_avg": "0.21582226", "nbo_bds_e_min": "0.18874815", "nmrtens_sxx_P": "-43.434437", "nmrtens_syy_P": "203.00768", "nmrtens_szz_P": "269.7904", "spindens_P_ra": "0.2104783", "spindens_P_rc": "0.43057212", "sterimol_burL": "7.2023883", "vbur_far_vbur": "-0.6556617", "vbur_far_vtot": "-2.7827482", "nbo_bd_occ_avg": "1.9611003", "nbo_bd_occ_min": "1.9555105", "sterimol_burB1": "3.6993399", "sterimol_burB5": "6.0704646", "vbur_near_vbur": "48.722485", "vbur_near_vtot": "250.08458", "vbur_ovbur_max": "15.536773", "vbur_ovbur_min": "-0.0275832", "vbur_ovtot_max": "86.61716", "vbur_ovtot_min": "0.09797628", "vbur_qvbur_max": "14.800055", "vbur_qvbur_min": "10.175629", "vbur_qvtot_max": "86.20291", "vbur_qvtot_min": "45.344456", "nbo_bds_occ_avg": "0.049186617", "nbo_bds_occ_max": "0.054470856", "nbo_lp_P_percent_s": "54.82765", "vbur_max_delta_qvbur": "4.757279", "vbur_max_delta_qvtot": "41.70063", "vbur_ratio_vbur_vtot": "0.1997417"}} COP(c1ccccc1)c1ccccc1 {"max_data": {"B1": 3.632110526664776, "B5": 6.352140582596052, "lval": 7.978372778870869, "sasa": 424.2927944138277, "vbur": 51.49584442974407, "vtot": 243.0829536739302, "alpha": 172.008784, "p_int": 19.299605494836634, "sasa_P": 20.409942121604637, "pyr_val": 0.9500101420897609, "dip_norm": 1.2383133690629364, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 51.49584442974406, "near_vtot": 243.0829536739302, "ovbur_max": 14.68645631088219, "ovbur_min": 0.0, "ovtot_max": 91.2226097670987, "ovtot_min": 0.0, "pyr_alpha": 21.94584685835909, "qvbur_max": 14.68645631088219, "qvbur_min": 10.641852866536064, "qvtot_max": 91.2226097670987, "qvtot_min": 34.404556392838636, "cone_angle": 164.75382674562587, "p_int_area": 289.94887166292284, "p_int_atom": 24.633525988645744, "sasa_volume": 647.7335290027157, "EA_delta_SCC": 1.4353, "IP_delta_SCC": 6.8201, "HOMO_LUMO_gap": 3.41043615434, "sasa_volume_P": 21.150255271955178, "max_delta_qvbur": 4.231098127658916, "max_delta_qvtot": 61.199447345750016, "nucleophilicity": -6.6069, "p_int_atom_area": 19.497286981581784, "p_int_times_p_int_area": 5580.436102343283, "global_electrophilicity_index": 1.5724, "p_int_atom_times_p_int_atom_area": 445.706411281736}, "min_data": {"B1": 3.149470354648344, "B5": 6.18485878610268, "lval": 7.563453569367594, "sasa": 408.70214223866844, "vbur": 46.71691816985383, "vtot": 241.37829398761994, "alpha": 171.959978, "p_int": 19.052088358841544, "sasa_P": 13.309962255686314, "pyr_val": 0.9020424811499897, "dip_norm": 0.38069935644810327, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.71691816985383, "near_vtot": 237.0253279026579, "ovbur_max": 13.241122515208072, "ovbur_min": 0.0, "ovtot_max": 88.7336017739828, "ovtot_min": 0.0, "pyr_alpha": 15.316705650081062, "qvbur_max": 13.241122515208072, "qvbur_min": 9.767659038507361, "qvtot_max": 88.7336017739828, "qvtot_min": 25.554762832081337, "cone_angle": 144.7252835436038, "p_int_area": 276.9549060866063, "p_int_atom": 22.859919521253133, "sasa_volume": 631.3982918403505, "EA_delta_SCC": 1.3155, "IP_delta_SCC": 6.6069, "HOMO_LUMO_gap": 3.275260744718, "sasa_volume_P": 13.542942917971544, "max_delta_qvbur": 3.077162274661031, "max_delta_qvtot": 49.56517649534331, "nucleophilicity": -6.8201, "p_int_atom_area": 17.09762089154094, "p_int_times_p_int_area": 5320.310942263216, "global_electrophilicity_index": 1.4846, "p_int_atom_times_p_int_atom_area": 408.70102922988013}, "boltzmann_averaged_data": {"B1": 3.583182952288324, "B5": 6.19371234773418, "lval": 7.700008170879928, "sasa": 423.16824852024104, "vbur": 49.9335344082639, "vtot": 242.578103908479, "alpha": 171.97275910722, "p_int": 19.1539826315764, "B1_std": 0.13523157841802755, "B5_std": 0.024708443488659117, "sasa_P": 15.980611682274175, "pyr_val": 0.9408585932183839, "dip_norm": 0.5062640359251632, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0371331429412526, "sasa_std": 0.6235126948166841, "vbur_std": 0.5710441408018087, "vtot_std": 0.11326666843311221, "alpha_std": 0.004726744462820373, "near_vbur": 49.9335344082639, "near_vtot": 238.01117436348625, "ovbur_max": 14.643134178744516, "ovbur_min": 0.0, "ovtot_max": 90.99551411571645, "ovtot_min": 0.0, "p_int_std": 0.03671860561923718, "pyr_alpha": 16.68532661600877, "qvbur_max": 14.643134178744516, "qvbur_min": 10.002252099356648, "qvtot_max": 90.99551411571645, "qvtot_min": 32.67788445773829, "cone_angle": 155.0044446788696, "p_int_area": 289.4778851240139, "p_int_atom": 23.86335175974007, "sasa_P_std": 0.9683510541501359, "pyr_val_std": 0.001316526369274638, "sasa_volume": 647.1657719688009, "EA_delta_SCC": 1.3506954940000004, "IP_delta_SCC": 6.617720693000001, "dip_norm_std": 0.050942504932179354, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.3329318644154085, "near_vbur_std": 0.5710441408018064, "near_vtot_std": 0.7682062900019573, "ovbur_max_std": 0.12117474301859718, "ovbur_min_std": 0.0, "ovtot_max_std": 0.6272323234875742, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.17621054900154515, "qvbur_max_std": 0.12117474301859718, "qvbur_min_std": 0.23014240194689664, "qvtot_max_std": 0.6272323234875742, "qvtot_min_std": 2.5603846050667896, "sasa_volume_P": 16.197400480531737, "cone_angle_std": 3.5171853343113146, "p_int_area_std": 1.336594141711949, "p_int_atom_std": 0.27825532687894944, "max_delta_qvbur": 3.9147881086265848, "max_delta_qvtot": 54.46683612540055, "nucleophilicity": -6.617720693000001, "p_int_atom_area": 17.200230613551096, "sasa_volume_std": 0.55832281668236, "EA_delta_SCC_std": 0.022143281737266575, "IP_delta_SCC_std": 0.030171177419844573, "HOMO_LUMO_gap_std": 0.020825762219495475, "sasa_volume_P_std": 0.9652875908088323, "max_delta_qvbur_std": 0.2969326131160991, "max_delta_qvtot_std": 2.4247142551185177, "nucleophilicity_std": 0.030171177419844573, "p_int_atom_area_std": 0.0764322492843906, "p_int_times_p_int_area": 5544.700033146334, "p_int_times_p_int_area_std": 35.59687430810646, "global_electrophilicity_index": 1.5069364529999998, "p_int_atom_times_p_int_atom_area": 410.45260171623084, "global_electrophilicity_index_std": 0.017547333913697283, "p_int_atom_times_p_int_atom_area_std": 4.893764775167736}} \\x8480000802000020001840008410141018c0004903004008242001000000a02080810002440400080406c00004000028508100491200100040800400004084008810012002800482000008800040800008100000002280001081085000820803400000030000480c8014002002000c0031801000000010a00000001000001004 \\x00000004022408000100000000000000000000000080800000004100000000000000000000000000080202001000000022000000000000001000000000000000 pco (-6.153496742248535, 0.5113810300827026, -1.62686026096344, 1.5220789909362793) (1.7021713256835938, 4.477718353271484) -139 CCOP(c1ccccc1)c1ccccc1 230.2469940185547 {"max_data": {"pyr_P": 0.9567577908549623, "pyr_alpha": 21.269756804484324, "qpole_amp": 8.344134966103947, "vbur_vbur": 56.326149262411946, "vbur_vtot": 264.30894136247105, "sterimol_L": 7.738858688040484, "sterimol_B1": 4.114746033155343, "sterimol_B5": 6.393082522663532, "dipolemoment": 2.7594002777167628, "qpoletens_xx": 6.384582883719895, "qpoletens_yy": 1.5372998665950104, "qpoletens_zz": -4.783101248528796, "sterimol_burL": 7.392997983346884, "vbur_far_vbur": 1.6452080214983846, "vbur_far_vtot": 2.749893493641187, "sterimol_burB1": 4.114746033155343, "sterimol_burB5": 6.074746420292308, "vbur_near_vbur": 54.680941240913555, "vbur_near_vtot": 264.16420153630986, "vbur_ovbur_max": 18.937149674030355, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 93.18713303136755, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 20.5844495048377, "vbur_qvbur_min": 10.4998368263333, "vbur_qvtot_max": 93.18713303136755, "vbur_qvtot_min": 43.84335124347797, "vbur_max_delta_qvbur": 10.01035344803626, "vbur_max_delta_qvtot": 49.18600948980019}, "min_data": {"pyr_P": 0.9075123148096829, "pyr_alpha": 14.118805272295122, "qpole_amp": 6.021937799411321, "vbur_vbur": 45.07849060812484, "vbur_vtot": 262.93792722788885, "sterimol_L": 7.570918290955941, "sterimol_B1": 3.5952229946548755, "sterimol_B5": 6.219611442816393, "dipolemoment": 0.7897521694544788, "qpoletens_xx": 3.323370206339893, "qpoletens_yy": -1.3777097797777094, "qpoletens_zz": -5.301492389904026, "sterimol_burL": 7.161619258813886, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.520669745074774, "sterimol_burB5": 6.033456544255973, "vbur_near_vbur": 45.07849060812484, "vbur_near_vtot": 261.5590478688299, "vbur_ovbur_max": 14.326801957078748, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.80148189957725, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.326801957078748, "vbur_qvbur_min": 9.616047393296977, "vbur_qvtot_max": 89.80148189957725, "vbur_qvtot_min": 39.54127714903473, "vbur_max_delta_qvbur": 4.132369289853859, "vbur_max_delta_qvtot": 37.49327968019158}, "delta_data": {"pyr_P": 0.0492454760452794, "pyr_alpha": 7.150951532189202, "qpole_amp": 2.322197166692627, "vbur_vbur": 11.247658654287108, "vbur_vtot": 1.3710141345821967, "sterimol_L": 0.16794039708454278, "sterimol_B1": 0.5195230385004672, "sterimol_B5": 0.17347107984713883, "dipolemoment": 1.9696481082622839, "qpoletens_xx": 3.0612126773800017, "qpoletens_yy": 2.9150096463727198, "qpoletens_zz": 0.51839114137523, "sterimol_burL": 0.23137872453299835, "vbur_far_vbur": 1.6452080214983846, "vbur_far_vtot": 2.749893493641187, "sterimol_burB1": 0.5940762880805686, "sterimol_burB5": 0.04128987603633494, "vbur_near_vbur": 9.602450632788717, "vbur_near_vtot": 2.6051536674799536, "vbur_ovbur_max": 4.6103477169516065, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 3.385651131790297, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 6.2576475477589515, "vbur_qvbur_min": 0.8837894330363234, "vbur_qvtot_max": 3.385651131790297, "vbur_qvtot_min": 4.302074094443242, "vbur_max_delta_qvbur": 5.877984158182402, "vbur_max_delta_qvtot": 11.692729809608615}, "vburminconf_data": {"pyr_P": 0.9194790563146534, "pyr_alpha": 19.74769667049339, "qpole_amp": 8.237353574590298, "vbur_vbur": 45.07849060812484, "vbur_vtot": 263.1324443742169, "sterimol_L": 7.570918290955941, "sterimol_B1": 3.6167047310871485, "sterimol_B5": 6.315409538863965, "dipolemoment": 2.707278985764873, "qpoletens_xx": 6.235105395647633, "qpoletens_yy": -0.9336130057436067, "qpoletens_zz": -5.301492389904026, "sterimol_burL": 7.164141439114633, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.520669745074774, "sterimol_burB5": 6.033456544255973, "vbur_near_vbur": 45.07849060812484, "vbur_near_vtot": 262.80731567105886, "vbur_ovbur_max": 14.326801957078748, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 92.03709985745928, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.326801957078748, "vbur_qvbur_min": 9.931910598950196, "vbur_qvtot_max": 92.03709985745928, "vbur_qvtot_min": 40.01022794768058, "vbur_max_delta_qvbur": 4.132369289853859, "vbur_max_delta_qvtot": 43.20406322587493}, "boltzmann_averaged_data": {"nbo_P": 1.0596576715230603, "nmr_P": 155.77911133831742, "pyr_P": 0.955088209407969, "fmo_mu": -0.13448253449874786, "vmin_r": 1.8419902680012559, "volume": 306.2356506113197, "Pint_dP": 3.792392753738034, "fmo_eta": 0.1972121462710092, "fukui_m": 0.36084197850452154, "fukui_p": 0.15974858393820485, "nuesp_P": -54.15092681566228, "somo_ra": 0.06313183212835756, "somo_rc": -0.40085300397772755, "nbo_P_ra": 0.8999090875848554, "nbo_P_rc": 1.420499650027582, "efg_amp_P": 2.207638762472514, "fmo_omega": 0.04585466378995379, "pyr_alpha": 14.40479719985301, "qpole_amp": 6.220214945615398, "vbur_vbur": 51.65301259386846, "vbur_vtot": 264.1555733325361, "vmin_vmin": -0.04516844324639217, "E_solv_cds": -5.607903721526826, "Pint_P_int": 18.526625771079885, "Pint_P_max": 31.144839067262176, "Pint_P_min": 11.819342152169876, "fmo_e_homo": -0.23308860763425246, "fmo_e_lumo": -0.03587646136324329, "nbo_lp_P_e": -0.3392444617425062, "sphericity": 0.7720638987983937, "sterimol_L": 7.731257464379748, "E_oxidation": 0.28601402968372225, "E_reduction": 0.014134447539470333, "sterimol_B1": 3.9046107594523285, "sterimol_B5": 6.235283295641048, "E_solv_total": -11.56087736478742, "dipolemoment": 1.1659956541782976, "efgtens_xx_P": -1.3952766079941525, "efgtens_yy_P": -0.2906344838323559, "efgtens_zz_P": 1.6859105930008182, "nbo_bd_e_avg": -0.5332502984793676, "nbo_bd_e_max": -0.4768183838115467, "nbo_lp_P_occ": 1.9377362986030142, "qpoletens_xx": 3.625651232140686, "qpoletens_yy": 1.2444482509017756, "qpoletens_zz": -4.870099483042462, "surface_area": 284.59319504079076, "E_solv_elstat": -5.952973643260592, "nbo_bds_e_avg": 0.21369209352214444, "nbo_bds_e_min": 0.1900691771742973, "nmrtens_sxx_P": -14.658226488086212, "nmrtens_syy_P": 207.19318917033303, "nmrtens_szz_P": 274.8023318967835, "spindens_P_ra": 0.1979379558170529, "spindens_P_rc": 0.4418783367846922, "sterimol_burL": 7.2601314742672995, "vbur_far_vbur": 0.47741505281631075, "vbur_far_vtot": 0.7979784503544166, "nbo_bd_occ_avg": 1.9621014212412655, "nbo_bd_occ_min": 1.9559303858768868, "sterimol_burB1": 3.871610790056467, "sterimol_burB5": 6.071842215078493, "vbur_near_vbur": 51.17559754105214, "vbur_near_vtot": 263.35667183619455, "vbur_ovbur_max": 16.349221620164766, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.6714781228898, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.82724368512706, "vbur_qvbur_min": 9.891638574076651, "vbur_qvtot_max": 91.6714781228898, "vbur_qvtot_min": 41.99817465270257, "nbo_bds_occ_avg": 0.04562956490515891, "nbo_bds_occ_max": 0.05474292477181935, "nbo_lp_P_percent_s": 56.04980880025869, "vbur_max_delta_qvbur": 6.912117366320867, "vbur_max_delta_qvtot": 41.78264508556153, "vbur_ratio_vbur_vtot": 0.19553595579965047}} {"max_data": {"B1": 3.8695097277189405, "B5": 6.376350544360445, "lval": 7.599363642650931, "sasa": 450.88297245774737, "vbur": 61.473309986978315, "vtot": 261.4948655348005, "alpha": 183.682004, "p_int": 19.50153437575505, "sasa_P": 22.24993690375811, "pyr_val": 0.9722551098016559, "dip_norm": 1.2065197884825596, "far_vbur": 2.237936199753477, "far_vtot": 3.3997848526803094, "near_vbur": 59.51511581219402, "near_vtot": 261.49486553480057, "ovbur_max": 20.09480212695309, "ovbur_min": 0.0, "ovtot_max": 90.59747678938828, "ovtot_min": 0.0, "pyr_alpha": 18.681690317101488, "qvbur_max": 22.216179149636076, "qvbur_min": 12.040562991381988, "qvtot_max": 90.59747678938828, "qvtot_min": 45.067670085778815, "cone_angle": 184.64968804713607, "p_int_area": 317.0459667284877, "p_int_atom": 25.68404082354947, "sasa_volume": 697.3071316562081, "EA_delta_SCC": 1.4836, "IP_delta_SCC": 6.9263, "HOMO_LUMO_gap": 3.660189663158, "sasa_volume_P": 32.252831404365644, "max_delta_qvbur": 11.644261789342309, "max_delta_qvtot": 51.979518282214684, "nucleophilicity": -6.7116, "p_int_atom_area": 20.59713393951716, "p_int_times_p_int_area": 6115.709767986882, "global_electrophilicity_index": 1.6208, "p_int_atom_times_p_int_atom_area": 477.0791145049593}, "min_data": {"B1": 3.2685974819071135, "B5": 6.108740368455344, "lval": 7.24435887852873, "sasa": 427.6021415106399, "vbur": 49.56096209037388, "vtot": 259.64942202305457, "alpha": 183.614209, "p_int": 19.28966272964533, "sasa_P": 11.759966651154848, "pyr_val": 0.9268820358910596, "dip_norm": 0.2564800187149089, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.56096209037387, "near_vtot": 257.5597745602626, "ovbur_max": 14.942886500437277, "ovbur_min": 0.0, "ovtot_max": 84.6492032828282, "ovtot_min": 0.0, "pyr_alpha": 11.211382209492248, "qvbur_max": 14.942886500437277, "qvbur_min": 10.52529368946557, "qvtot_max": 84.6492032828282, "qvtot_min": 34.56174615118084, "cone_angle": 142.29875940557886, "p_int_area": 297.5557986005017, "p_int_atom": 22.920770535810178, "sasa_volume": 672.0373296648897, "EA_delta_SCC": 1.2608, "IP_delta_SCC": 6.7116, "HOMO_LUMO_gap": 3.518208318339, "sasa_volume_P": 15.871554285017465, "max_delta_qvbur": 3.788173254791042, "max_delta_qvtot": 41.064977831492776, "nucleophilicity": -6.9263, "p_int_atom_area": 15.797801759435494, "p_int_times_p_int_area": 5783.287418168125, "global_electrophilicity_index": 1.4672, "p_int_atom_times_p_int_atom_area": 397.85506882261967}, "boltzmann_averaged_data": {"B1": 3.5577376316386853, "B5": 6.124107902319396, "lval": 7.5571066433015615, "sasa": 443.18213036678856, "vbur": 57.67073913693394, "vtot": 260.84266986109543, "alpha": 183.62596599117012, "p_int": 19.376700646903416, "B1_std": 0.10868792419486062, "B5_std": 0.027431698688367798, "sasa_P": 15.226875450528697, "pyr_val": 0.9708133593474787, "dip_norm": 0.49086827542775446, "far_vbur": 0.810146715968888, "far_vtot": 1.2266329015724766, "lval_std": 0.03992048647984628, "sasa_std": 4.200732348564402, "vbur_std": 2.6727472534529744, "vtot_std": 0.2189829293580729, "alpha_std": 0.00994960427481529, "near_vbur": 56.860592420965055, "near_vtot": 259.61603695952294, "ovbur_max": 17.858677238698178, "ovbur_min": 0.0, "ovtot_max": 89.74261732558998, "ovtot_min": 0.0, "p_int_std": 0.05338979525041685, "pyr_alpha": 11.41769328549969, "qvbur_max": 18.676538929447617, "qvbur_min": 10.650234553142337, "qvtot_max": 89.74261732558998, "qvtot_min": 36.71591453737224, "cone_angle": 165.55523591269414, "p_int_area": 311.86778224523533, "p_int_atom": 24.33171118380567, "sasa_P_std": 2.254017467490077, "pyr_val_std": 0.004633724036179136, "sasa_volume": 688.9455278771583, "EA_delta_SCC": 1.2751271117288825, "IP_delta_SCC": 6.760053466465336, "dip_norm_std": 0.10375294533268588, "far_vbur_std": 1.0398162716633128, "far_vtot_std": 1.5808259708511725, "HOMO_LUMO_gap": 3.6048993719327522, "near_vbur_std": 1.7648542600312314, "near_vtot_std": 1.493824546309517, "ovbur_max_std": 1.7309973541573513, "ovbur_min_std": 0.0, "ovtot_max_std": 1.1833510888234327, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.7969199360985719, "qvbur_max_std": 2.7412846491458023, "qvbur_min_std": 0.24218730297971022, "qvtot_max_std": 1.1833510888234327, "qvtot_min_std": 2.1311507960870717, "sasa_volume_P": 21.21168297720292, "cone_angle_std": 8.379972504402398, "p_int_area_std": 1.7905599600139155, "p_int_atom_std": 0.6145249953267446, "max_delta_qvbur": 8.02358006590271, "max_delta_qvtot": 44.12969124908227, "nucleophilicity": -6.760053466465336, "p_int_atom_area": 16.707327103820646, "sasa_volume_std": 3.664393009823481, "EA_delta_SCC_std": 0.024858596823804147, "IP_delta_SCC_std": 0.03869839460431216, "HOMO_LUMO_gap_std": 0.04796218986195997, "sasa_volume_P_std": 3.4783227228103684, "max_delta_qvbur_std": 2.712541017319789, "max_delta_qvtot_std": 2.350793506634886, "nucleophilicity_std": 0.03869839460431216, "p_int_atom_area_std": 0.6746785897607137, "p_int_times_p_int_area": 6042.899719699854, "p_int_times_p_int_area_std": 25.504763203655013, "global_electrophilicity_index": 1.471491913080869, "p_int_atom_times_p_int_atom_area": 406.35709177655167, "global_electrophilicity_index_std": 0.01741619013057385, "p_int_atom_times_p_int_atom_area_std": 15.283847997413618}} {"max_data": {"pyr_P": "0.95664597", "pyr_alpha": "20.32258", "qpole_amp": "9.405073", "vbur_vbur": "51.90713", "sterimol_L": "7.9620085", "sterimol_B1": "4.1442933", "sterimol_B5": "6.6724157", "dipolemoment": "2.3253167", "qpoletens_xx": "6.5579557", "qpoletens_yy": "1.7929363", "qpoletens_zz": "-3.6303504", "sterimol_burL": "7.526129", "vbur_far_vbur": "-0.62927616", "vbur_far_vtot": "-0.8195177", "sterimol_burB1": "4.056001", "sterimol_burB5": "6.299796", "vbur_near_vbur": "52.539314", "vbur_near_vtot": "268.86374", "vbur_ovbur_max": "19.260275", "vbur_ovbur_min": "-0.25367847", "vbur_ovtot_max": "97.89464", "vbur_ovtot_min": "-0.24678637", "vbur_qvbur_max": "19.973038", "vbur_qvbur_min": "10.217108", "vbur_qvtot_max": "96.04278", "vbur_qvtot_min": "50.762722", "vbur_max_delta_qvbur": "9.364197", "vbur_max_delta_qvtot": "57.01289"}, "min_data": {"pyr_P": "0.9088522", "pyr_alpha": "14.797726", "qpole_amp": "5.5786314", "vbur_vbur": "44.764824", "sterimol_L": "7.620865", "sterimol_B1": "3.5069556", "sterimol_B5": "6.2218804", "dipolemoment": "1.1099387", "qpoletens_xx": "3.4124808", "qpoletens_yy": "-1.3734146", "qpoletens_zz": "-6.789066", "sterimol_burL": "7.123266", "vbur_far_vbur": "0.38057277", "vbur_far_vtot": "-1.464477", "sterimol_burB1": "3.471374", "sterimol_burB5": "5.920074", "vbur_near_vbur": "45.56667", "vbur_near_vtot": "266.67072", "vbur_ovbur_max": "13.997941", "vbur_ovbur_min": "-0.019661723", "vbur_ovtot_max": "87.53372", "vbur_ovtot_min": "-0.049456105", "vbur_qvbur_max": "13.669648", "vbur_qvbur_min": "9.549211", "vbur_qvtot_max": "85.690674", "vbur_qvtot_min": "38.533665", "vbur_max_delta_qvbur": "4.241689", "vbur_max_delta_qvtot": "37.45208"}, "delta_data": {"pyr_P": "0.044239413", "pyr_alpha": "6.2215133", "qpole_amp": "3.6232913", "vbur_vbur": "6.5157475", "sterimol_L": "0.77613497", "sterimol_B1": "0.6102352", "sterimol_B5": "0.86263496", "dipolemoment": "1.3006651", "qpoletens_xx": "2.5643525", "qpoletens_yy": "2.857254", "qpoletens_zz": "3.6018324", "sterimol_burL": "0.31502965", "vbur_far_vbur": "0.10644437", "vbur_far_vtot": "1.5911727", "sterimol_burB1": "0.55328166", "sterimol_burB5": "0.55028576", "vbur_near_vbur": "7.0844564", "vbur_near_vtot": "2.8025382", "vbur_ovbur_max": "5.247049", "vbur_ovbur_min": "-0.1863685", "vbur_ovtot_max": "12.186477", "vbur_ovtot_min": "-0.03421543", "vbur_qvbur_max": "6.568358", "vbur_qvbur_min": "0.29103926", "vbur_qvtot_max": "11.698979", "vbur_qvtot_min": "12.595981", "vbur_max_delta_qvbur": "6.184", "vbur_max_delta_qvtot": "22.78585"}, "vburminconf_data": {"pyr_P": "0.9238517", "pyr_alpha": "19.56831", "qpole_amp": "8.051246", "vbur_vbur": "45.11999", "sterimol_L": "7.623439", "sterimol_B1": "3.972013", "sterimol_B5": "6.287417", "dipolemoment": "2.1141672", "qpoletens_xx": "5.477679", "qpoletens_yy": "0.20632751", "qpoletens_zz": "-5.442283", "sterimol_burL": "7.2053585", "vbur_far_vbur": "-0.059924338", "vbur_far_vtot": "-2.182527", "sterimol_burB1": "3.8604937", "sterimol_burB5": "5.9739647", "vbur_near_vbur": "45.606125", "vbur_near_vtot": "266.6507", "vbur_ovbur_max": "14.0495825", "vbur_ovbur_min": "-0.024418743", "vbur_ovtot_max": "91.22091", "vbur_ovtot_min": "-0.028614854", "vbur_qvbur_max": "13.875951", "vbur_qvbur_min": "9.828307", "vbur_qvtot_max": "89.76548", "vbur_qvtot_min": "47.362976", "vbur_max_delta_qvbur": "4.1966333", "vbur_max_delta_qvtot": "44.32716"}, "boltzmann_averaged_data": {"nbo_P": "1.0545387", "nmr_P": "147.89621", "pyr_P": "0.94594425", "fmo_mu": "-0.13416314", "vmin_r": "1.8511891", "volume": "305.29178", "Pint_dP": "3.7994087", "fmo_eta": "0.19693331", "fukui_m": "0.34689012", "fukui_p": "0.1492944", "nuesp_P": "-54.15129", "somo_ra": "0.0638626", "somo_rc": "-0.40135485", "nbo_P_ra": "0.9597453", "nbo_P_rc": "1.39444", "efg_amp_P": "2.267527", "fmo_omega": "0.046224978", "pyr_alpha": "15.868111", "qpole_amp": "7.057401", "vbur_vbur": "47.71504", "vbur_vtot": "263.8049", "vmin_vmin": "-0.046494275", "E_solv_cds": "-5.506621", "Pint_P_int": "18.564018", "Pint_P_max": "31.767504", "Pint_P_min": "12.212998", "fmo_e_homo": "-0.23162359", "fmo_e_lumo": "-0.035175458", "nbo_lp_P_e": "-0.33361775", "sphericity": "0.77761304", "sterimol_L": "7.506694", "E_oxidation": "0.28609052", "E_reduction": "0.014634567", "sterimol_B1": "4.0019126", "sterimol_B5": "6.3920016", "E_solv_total": "-11.543172", "dipolemoment": "1.0561446", "efgtens_xx_P": "-1.4688165", "efgtens_yy_P": "-0.19155312", "efgtens_zz_P": "1.7237601", "nbo_bd_e_avg": "-0.5404051", "nbo_bd_e_max": "-0.4696996", "nbo_lp_P_occ": "1.9333392", "qpoletens_xx": "4.217234", "qpoletens_yy": "1.0882754", "qpoletens_zz": "-5.399363", "surface_area": "282.8068", "E_solv_elstat": "-6.0346966", "nbo_bds_e_avg": "0.21752103", "nbo_bds_e_min": "0.19211076", "nmrtens_sxx_P": "-37.259598", "nmrtens_syy_P": "190.4288", "nmrtens_szz_P": "267.49127", "spindens_P_ra": "0.1830314", "spindens_P_rc": "0.4426396", "sterimol_burL": "7.18391", "vbur_far_vbur": "-0.7194222", "vbur_far_vtot": "-3.364897", "nbo_bd_occ_avg": "1.960762", "nbo_bd_occ_min": "1.9547751", "sterimol_burB1": "3.8915868", "sterimol_burB5": "6.2278595", "vbur_near_vbur": "48.88456", "vbur_near_vtot": "269.4347", "vbur_ovbur_max": "15.97056", "vbur_ovbur_min": "-0.025620533", "vbur_ovtot_max": "92.41909", "vbur_ovtot_min": "-0.5038932", "vbur_qvbur_max": "15.389826", "vbur_qvbur_min": "9.7609215", "vbur_qvtot_max": "92.520424", "vbur_qvtot_min": "46.919167", "nbo_bds_occ_avg": "0.050187692", "nbo_bds_occ_max": "0.05659466", "nbo_lp_P_percent_s": "55.157894", "vbur_max_delta_qvbur": "5.091117", "vbur_max_delta_qvtot": "50.366646", "vbur_ratio_vbur_vtot": "0.18392263"}} CCOP(c1ccccc1)c1ccccc1 {"max_data": {"B1": 3.838435122345413, "B5": 6.487675088158035, "lval": 7.9809662113285, "sasa": 452.502932966565, "vbur": 54.887716482495435, "vtot": 261.274841685812, "alpha": 183.636666, "p_int": 19.444633836488638, "sasa_P": 20.319942376825388, "pyr_val": 0.952544165116288, "dip_norm": 1.2708497157414012, "far_vbur": 0.1398710124845923, "far_vtot": 0.0, "near_vbur": 54.74784547001084, "near_vtot": 261.274841685812, "ovbur_max": 16.621338650252387, "ovbur_min": 0.0, "ovtot_max": 92.86232202946717, "ovtot_min": 0.0, "pyr_alpha": 23.636359810767452, "qvbur_max": 16.749553745029928, "qvbur_min": 11.737509130998703, "qvtot_max": 92.86232202946717, "qvtot_min": 43.58280423476158, "cone_angle": 176.51152383038558, "p_int_area": 319.5462370666944, "p_int_atom": 25.98614887233817, "sasa_volume": 698.9349103501314, "EA_delta_SCC": 1.4401, "IP_delta_SCC": 6.7734, "HOMO_LUMO_gap": 3.388655299121, "sasa_volume_P": 21.601684998222833, "max_delta_qvbur": 6.247571890978456, "max_delta_qvtot": 59.54210073717328, "nucleophilicity": -6.5045, "p_int_atom_area": 19.79724524283688, "p_int_times_p_int_area": 6180.93726893747, "global_electrophilicity_index": 1.5762, "p_int_atom_times_p_int_atom_area": 462.90373930473476}, "min_data": {"B1": 3.262141858848179, "B5": 6.162746524634537, "lval": 7.253939886416482, "sasa": 428.43217902884305, "vbur": 46.82182142921727, "vtot": 258.8886377629273, "alpha": 183.571368, "p_int": 19.12990819436572, "sasa_P": 10.86996917500453, "pyr_val": 0.8873819261115257, "dip_norm": 0.3691774641009389, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.82182142921727, "near_vtot": 254.0600466333659, "ovbur_max": 14.430026121327106, "ovbur_min": 0.0, "ovtot_max": 87.37702153881622, "ovtot_min": 0.0, "pyr_alpha": 14.86855046437729, "qvbur_max": 14.430026121327106, "qvbur_min": 10.059056981183597, "qvtot_max": 87.37702153881622, "qvtot_min": 27.64259262306556, "cone_angle": 141.2870679131027, "p_int_area": 297.4552798900032, "p_int_atom": 23.349394972457, "sasa_volume": 672.5309687865954, "EA_delta_SCC": 1.2466, "IP_delta_SCC": 6.5045, "HOMO_LUMO_gap": 3.176588182367, "sasa_volume_P": 10.805169081532775, "max_delta_qvbur": 2.2729039528746267, "max_delta_qvtot": 42.937171207300686, "nucleophilicity": -6.7734, "p_int_atom_area": 15.497843498180387, "p_int_times_p_int_area": 5778.735881919608, "global_electrophilicity_index": 1.4378, "p_int_atom_times_p_int_atom_area": 383.9266097366909}, "boltzmann_averaged_data": {"B1": 3.6825028557968897, "B5": 6.252475872330082, "lval": 7.73473142401449, "sasa": 441.423333032274, "vbur": 51.305617521581475, "vtot": 259.95713540805457, "alpha": 183.60215284538, "p_int": 19.430240136247832, "B1_std": 0.03139546094236283, "B5_std": 0.019972911862402846, "sasa_P": 15.311962078426838, "pyr_val": 0.9401108651323496, "dip_norm": 0.5921903171514658, "far_vbur": 0.003635946969536977, "far_vtot": 0.0, "lval_std": 0.027363300504294034, "sasa_std": 3.0178595123663747, "vbur_std": 0.5042038292927592, "vtot_std": 0.13806598507001708, "alpha_std": 0.004558201075341772, "near_vbur": 51.301981574611936, "near_vtot": 255.6131964710777, "ovbur_max": 14.875900640729927, "ovbur_min": 0.0, "ovtot_max": 91.69347527894317, "ovtot_min": 0.0, "p_int_std": 0.03919523149315569, "pyr_alpha": 16.785607425937393, "qvbur_max": 14.879532624687444, "qvbur_min": 10.096379346240747, "qvtot_max": 91.69347527894317, "qvtot_min": 34.83415384677848, "cone_angle": 156.00640517651436, "p_int_area": 312.8827625410738, "p_int_atom": 24.35546414578118, "sasa_P_std": 0.5867933862007355, "pyr_val_std": 0.0010026742993451156, "sasa_volume": 687.9743628493203, "EA_delta_SCC": 1.2957971089999996, "IP_delta_SCC": 6.592782994999999, "dip_norm_std": 0.03252610016658015, "far_vbur_std": 0.01691784657698644, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.3477105827938543, "near_vbur_std": 0.4894739871881863, "near_vtot_std": 0.4894568427295006, "ovbur_max_std": 0.33736005561900945, "ovbur_min_std": 0.0, "ovtot_max_std": 0.3635960837706787, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.13904423669296653, "qvbur_max_std": 0.3539351030338384, "qvbur_min_std": 0.10469154388847493, "qvtot_max_std": 0.3635960837706787, "qvtot_min_std": 1.6460303595281582, "sasa_volume_P": 15.615316897973962, "cone_angle_std": 2.6973509133280706, "p_int_area_std": 1.8707395955448893, "p_int_atom_std": 0.23350039138033016, "max_delta_qvbur": 4.767467793429145, "max_delta_qvtot": 45.60000129256132, "nucleophilicity": -6.592782994999999, "p_int_atom_area": 16.07813475151755, "sasa_volume_std": 2.815164413461669, "EA_delta_SCC_std": 0.016562500099384737, "IP_delta_SCC_std": 0.01583082993181263, "HOMO_LUMO_gap_std": 0.02343974403728055, "sasa_volume_P_std": 0.6847128902393251, "max_delta_qvbur_std": 0.35238684519232044, "max_delta_qvtot_std": 2.1305951631885938, "nucleophilicity_std": 0.01583082993181263, "p_int_atom_area_std": 0.36093058209956624, "p_int_times_p_int_area": 6079.332434016056, "p_int_times_p_int_area_std": 28.206490138791164, "global_electrophilicity_index": 1.468552888, "p_int_atom_times_p_int_atom_area": 391.65821048475436, "global_electrophilicity_index_std": 0.01069594244839865, "p_int_atom_times_p_int_atom_area_std": 12.30425209412591}} \\x8680000802000020001840008410141018c000c90300400a242001000000a03080810012440408080406c00004000028508100491202100040800401004084008810012002800482000008800040800008100000002280001181085000da0803400000030000480c8014002002020c0031801020000010a000002c1000001004 \\x00000004022008000100010000000000000000000080800000004000000800000000000040000000080002001000000022000000000010000000000002000002 pco (-5.022158622741699, -0.5414280891418457, -0.9084664583206176, 1.1484835147857666) (1.6914994716644287, 4.160795211791992) -140 CC(C)OP(c1ccccc1)c1ccccc1 244.2740020751953 {"max_data": {"pyr_P": 0.957768191240502, "pyr_alpha": 21.43964012898473, "qpole_amp": 8.276580224997234, "vbur_vbur": 62.06398219689392, "vbur_vtot": 281.9525665215106, "sterimol_L": 7.769727244599377, "sterimol_B1": 4.428861489545665, "sterimol_B5": 6.3954141374824225, "dipolemoment": 2.702757400533815, "qpoletens_xx": 6.225789962407402, "qpoletens_yy": 2.11806929133642, "qpoletens_zz": -4.770563367547784, "sterimol_burL": 7.370840868010785, "vbur_far_vbur": 3.1324844401701597, "vbur_far_vtot": 4.585657662987348, "sterimol_burB1": 4.233375311489554, "sterimol_burB5": 6.072410456721988, "vbur_near_vbur": 58.93149775672376, "vbur_near_vtot": 281.7569286493328, "vbur_ovbur_max": 21.211992297526212, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 93.24170581407608, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 23.988869155172882, "vbur_qvbur_min": 11.446380538638474, "vbur_qvtot_max": 93.24170581407608, "vbur_qvtot_min": 55.4633347409149, "vbur_max_delta_qvbur": 12.138769419904799, "vbur_max_delta_qvtot": 41.85832909674224}, "min_data": {"pyr_P": 0.9061224862149028, "pyr_alpha": 13.973333555826867, "qpole_amp": 6.210188814064075, "vbur_vbur": 45.26466163662243, "vbur_vtot": 280.66368732337776, "sterimol_L": 7.596706992286321, "sterimol_B1": 4.118953168748932, "sterimol_B5": 6.192565528115527, "dipolemoment": 0.38307123952190425, "qpoletens_xx": 2.9307722933936935, "qpoletens_yy": -0.8744329603222543, "qpoletens_zz": -5.388975959200327, "sterimol_burL": 7.173365973869555, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.915704399152953, "sterimol_burB5": 6.037323818338436, "vbur_near_vbur": 45.26466163662243, "vbur_near_vtot": 276.8463434649084, "vbur_ovbur_max": 14.470090894742624, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.39501965164031, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.470090894742624, "vbur_qvbur_min": 9.665204912057579, "vbur_qvtot_max": 89.39501965164031, "vbur_qvtot_min": 46.382215072396036, "vbur_max_delta_qvbur": 4.174205476033091, "vbur_max_delta_qvtot": 32.49892739084939}, "delta_data": {"pyr_P": 0.05164570502559929, "pyr_alpha": 7.466306573157864, "qpole_amp": 2.066391410933159, "vbur_vbur": 16.79932056027149, "vbur_vtot": 1.288879198132861, "sterimol_L": 0.17302025231305596, "sterimol_B1": 0.30990832079673325, "sterimol_B5": 0.20284860936689508, "dipolemoment": 2.319686161011911, "qpoletens_xx": 3.295017669013708, "qpoletens_yy": 2.9925022516586743, "qpoletens_zz": 0.6184125916525423, "sterimol_burL": 0.1974748941412301, "vbur_far_vbur": 3.1324844401701597, "vbur_far_vtot": 4.585657662987348, "sterimol_burB1": 0.3176709123366006, "sterimol_burB5": 0.03508663838355197, "vbur_near_vbur": 13.66683612010133, "vbur_near_vtot": 4.910585184424406, "vbur_ovbur_max": 6.741901402783588, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 3.8466861624357733, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.518778260430258, "vbur_qvbur_min": 1.781175626580895, "vbur_qvtot_max": 3.8466861624357733, "vbur_qvtot_min": 9.081119668518866, "vbur_max_delta_qvbur": 7.964563943871708, "vbur_max_delta_qvtot": 9.35940170589285}, "vburminconf_data": {"pyr_P": 0.9128509747126335, "pyr_alpha": 20.573450004921817, "qpole_amp": 8.181805597059531, "vbur_vbur": 45.26466163662243, "vbur_vtot": 280.8171351242289, "sterimol_L": 7.596706992286321, "sterimol_B1": 4.312691465623072, "sterimol_B5": 6.326122994673758, "dipolemoment": 2.683249887685225, "qpoletens_xx": 6.172850409817079, "qpoletens_yy": -0.8744329603222543, "qpoletens_zz": -5.298417449494825, "sterimol_burL": 7.173365973869555, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.081003766597845, "sterimol_burB5": 6.037323818338436, "vbur_near_vbur": 45.26466163662243, "vbur_near_vtot": 280.3837382681066, "vbur_ovbur_max": 14.470090894742624, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 92.76346115423192, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.470090894742624, "vbur_qvbur_min": 10.081474964540957, "vbur_qvtot_max": 92.76346115423192, "vbur_qvtot_min": 54.00240995669791, "vbur_max_delta_qvbur": 4.174205476033091, "vbur_max_delta_qvtot": 35.926354947820606}, "boltzmann_averaged_data": {"nbo_P": 1.0620639594244983, "nmr_P": 161.6414798161063, "pyr_P": 0.9546072640781432, "fmo_mu": -0.13364281260765232, "vmin_r": 1.8419004543121043, "volume": 329.46626431898045, "Pint_dP": 3.8960241871212626, "fmo_eta": 0.19834772470227208, "fukui_m": 0.36105358089789086, "fukui_p": 0.15229727526256323, "nuesp_P": -54.15181207539247, "somo_ra": 0.06300978127566252, "somo_rc": -0.39937637142880683, "nbo_P_ra": 0.9097666841619351, "nbo_P_rc": 1.4231175403223892, "efg_amp_P": 2.197596927824624, "fmo_omega": 0.045024234136487554, "pyr_alpha": 14.52326906550359, "qpole_amp": 6.317433403591738, "vbur_vbur": 54.813763037930364, "vbur_vtot": 281.8625012476247, "vmin_vmin": -0.045058940280879894, "E_solv_cds": -6.075399691344541, "Pint_P_int": 18.670059272735482, "Pint_P_max": 32.07246348967236, "Pint_P_min": 12.38697430011429, "fmo_e_homo": -0.23281667495878838, "fmo_e_lumo": -0.03446895025651628, "nbo_lp_P_e": -0.3375676891673022, "sphericity": 0.7632960578912706, "sterimol_L": 7.731789496501106, "E_oxidation": 0.2848266947121812, "E_reduction": 0.014796104273723121, "sterimol_B1": 4.302332833091535, "sterimol_B5": 6.222820312855317, "E_solv_total": -12.186531801626636, "dipolemoment": 0.9349217324526503, "efgtens_xx_P": -1.3788131480986254, "efgtens_yy_P": -0.3049893242731376, "efgtens_zz_P": 1.683802259147919, "nbo_bd_e_avg": -0.5333755565627327, "nbo_bd_e_max": -0.4763564237347135, "nbo_lp_P_occ": 1.9368503010938054, "qpoletens_xx": 3.6723540014580203, "qpoletens_yy": 1.2739622414217138, "qpoletens_zz": -4.9463162428797345, "surface_area": 302.2352687822138, "E_solv_elstat": -6.111132110282095, "nbo_bds_e_avg": 0.2157584504015325, "nbo_bds_e_min": 0.19440661056120193, "nmrtens_sxx_P": -0.9594646932201882, "nmrtens_syy_P": 204.94178349939574, "nmrtens_szz_P": 280.94215845892154, "spindens_P_ra": 0.18720162947208352, "spindens_P_rc": 0.44002473375840695, "sterimol_burL": 7.268452564965222, "vbur_far_vbur": 0.9449207850318357, "vbur_far_vtot": 1.531718320785012, "nbo_bd_occ_avg": 1.9618921528227813, "nbo_bd_occ_min": 1.9550250464028034, "sterimol_burB1": 4.2045788124477, "sterimol_burB5": 6.066668533776733, "vbur_near_vbur": 53.86884225289853, "vbur_near_vtot": 280.3302909128513, "vbur_ovbur_max": 18.321239252902988, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.57136651476897, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.261195787615254, "vbur_qvbur_min": 10.389632668316127, "vbur_qvtot_max": 91.57136651476897, "vbur_qvtot_min": 52.156905467057136, "nbo_bds_occ_avg": 0.046232701612084946, "nbo_bds_occ_max": 0.05478462846460215, "nbo_lp_P_percent_s": 55.7409110478411, "vbur_max_delta_qvbur": 8.789707053558429, "vbur_max_delta_qvtot": 34.881692812560786, "vbur_ratio_vbur_vtot": 0.19446874336635087}} {"max_data": {"B1": 4.316027405541297, "B5": 6.378256006517196, "lval": 7.592165021118549, "sasa": 469.412994914392, "vbur": 66.92827947387742, "vtot": 278.8518205379978, "alpha": 195.26734, "p_int": 19.585197233692362, "sasa_P": 21.879937952998997, "pyr_val": 0.9724591780050411, "dip_norm": 1.1683501187572156, "far_vbur": 2.6808610726213526, "far_vtot": 3.603789336611463, "near_vbur": 64.57378409705345, "near_vtot": 278.75765625821236, "ovbur_max": 21.58675959345541, "ovbur_min": 0.0, "ovtot_max": 90.38313054922183, "ovtot_min": 0.0, "pyr_alpha": 18.649181680345887, "qvbur_max": 23.556609685946754, "qvbur_min": 12.90310090170364, "qvtot_max": 90.38313054922183, "qvtot_min": 53.25059033386966, "cone_angle": 182.91878221771188, "p_int_area": 338.5452278441429, "p_int_atom": 27.090558766171917, "sasa_volume": 738.8780435138284, "EA_delta_SCC": 1.4729, "IP_delta_SCC": 6.8748, "HOMO_LUMO_gap": 3.647669956024, "sasa_volume_P": 31.955204820044496, "max_delta_qvbur": 12.296993180937076, "max_delta_qvtot": 40.136032893000895, "nucleophilicity": -6.6619, "p_int_atom_area": 20.59713393951716, "p_int_times_p_int_area": 6602.400042328558, "global_electrophilicity_index": 1.6107, "p_int_atom_times_p_int_atom_area": 486.2683335404665}, "min_data": {"B1": 3.755377525896442, "B5": 6.113790577634457, "lval": 7.222193758594906, "sasa": 448.8924131570759, "vbur": 49.84070411534306, "vtot": 277.259346087221, "alpha": 195.17022, "p_int": 19.446880888795945, "sasa_P": 8.149976888342854, "pyr_val": 0.9271072528740862, "dip_norm": 0.3724969798535285, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.84070411534306, "near_vtot": 274.10798835011315, "ovbur_max": 14.977854253558425, "ovbur_min": 0.0, "ovtot_max": 85.23544621978462, "ovtot_min": 0.0, "pyr_alpha": 11.16130782235553, "qvbur_max": 14.977854253558425, "qvbur_min": 10.513637771758521, "qvtot_max": 85.23544621978462, "qvtot_min": 43.17807375905677, "cone_angle": 143.96050835112342, "p_int_area": 318.5561666817761, "p_int_atom": 23.608543546319513, "sasa_volume": 714.7622379683436, "EA_delta_SCC": 1.2235, "IP_delta_SCC": 6.6619, "HOMO_LUMO_gap": 3.485870407148, "sasa_volume_P": 10.844146473492273, "max_delta_qvbur": 3.7998291724980895, "max_delta_qvtot": 31.940603654978624, "nucleophilicity": -6.8748, "p_int_atom_area": 13.298149582309623, "p_int_times_p_int_area": 6226.661237464981, "global_electrophilicity_index": 1.4422, "p_int_atom_times_p_int_atom_area": 360.25430274090337}, "boltzmann_averaged_data": {"B1": 4.0696483847550455, "B5": 6.142494683685118, "lval": 7.553218760182494, "sasa": 462.5588932707611, "vbur": 63.60445791350663, "vtot": 277.77734443224665, "alpha": 195.1894012208222, "p_int": 19.50260214389089, "B1_std": 0.03458530484299796, "B5_std": 0.011995716994440422, "sasa_P": 11.049441660787442, "pyr_val": 0.9719671915759858, "dip_norm": 0.5147808050811662, "far_vbur": 2.232795538960529, "far_vtot": 3.3171955991746818, "lval_std": 0.05972779824957633, "sasa_std": 1.4649141742059109, "vbur_std": 2.272314760104571, "vtot_std": 0.16658022958556182, "alpha_std": 0.010410419518300438, "near_vbur": 61.3716623745461, "near_vtot": 274.46014883307197, "ovbur_max": 20.570058507671863, "ovbur_min": 0.0, "ovtot_max": 90.03404408295128, "ovtot_min": 0.0, "p_int_std": 0.017926313046642887, "pyr_alpha": 11.200066460725283, "qvbur_max": 22.737967235072674, "qvbur_min": 11.581602679051775, "qvtot_max": 90.03404408295128, "qvtot_min": 46.62335820939357, "cone_angle": 180.5083270480729, "p_int_area": 331.0178385834485, "p_int_atom": 25.762319142099503, "sasa_P_std": 1.6473875740745443, "pyr_val_std": 0.0008611055744377054, "sasa_volume": 731.0682296021988, "EA_delta_SCC": 1.25939999399994, "IP_delta_SCC": 6.704768451684518, "dip_norm_std": 0.03195302744214984, "far_vbur_std": 0.6245061283682989, "far_vtot_std": 0.9281809630035527, "HOMO_LUMO_gap": 3.583914629024812, "near_vbur_std": 1.6937358496689607, "near_vtot_std": 1.036429160493232, "ovbur_max_std": 1.148837025006947, "ovbur_min_std": 0.0, "ovtot_max_std": 0.8797224095511811, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.16040182236911205, "qvbur_max_std": 1.7426247202058205, "qvbur_min_std": 0.4165070097355764, "qvtot_max_std": 0.8797224095511811, "qvtot_min_std": 1.4363906377770208, "sasa_volume_P": 14.908817333223029, "cone_angle_std": 5.797466917117446, "p_int_area_std": 1.5339655938684311, "p_int_atom_std": 0.5537030486219553, "max_delta_qvbur": 11.142397246718625, "max_delta_qvtot": 33.95953116988666, "nucleophilicity": -6.704768451684518, "p_int_atom_area": 14.659660747066868, "sasa_volume_std": 1.4225315947406183, "EA_delta_SCC_std": 0.01432679830148592, "IP_delta_SCC_std": 0.017894503906128383, "HOMO_LUMO_gap_std": 0.017068916103006943, "sasa_volume_P_std": 2.5007601868192646, "max_delta_qvbur_std": 1.4605538578971111, "max_delta_qvtot_std": 1.1267859940460907, "nucleophilicity_std": 0.017894503906128383, "p_int_atom_area_std": 0.5783033274526738, "p_int_times_p_int_area": 6455.70056662156, "p_int_times_p_int_area_std": 28.60227583552168, "global_electrophilicity_index": 1.4560322153221532, "p_int_atom_times_p_int_atom_area": 377.36945433389957, "global_electrophilicity_index_std": 0.00860185700897412, "p_int_atom_times_p_int_atom_area_std": 7.483682640069819}} {"max_data": {"pyr_P": "0.95659035", "pyr_alpha": "19.779404", "qpole_amp": "7.8190403", "vbur_vbur": "59.096066", "sterimol_L": "8.11624", "sterimol_B1": "4.241533", "sterimol_B5": "6.878858", "dipolemoment": "2.0535548", "qpoletens_xx": "5.3201246", "qpoletens_yy": "1.7146422", "qpoletens_zz": "-3.0882628", "sterimol_burL": "7.4857774", "vbur_far_vbur": "1.3972219", "vbur_far_vtot": "2.3471627", "sterimol_burB1": "4.12263", "sterimol_burB5": "6.463897", "vbur_near_vbur": "58.110523", "vbur_near_vtot": "284.6841", "vbur_ovbur_max": "20.052433", "vbur_ovbur_min": "-0.19365203", "vbur_ovtot_max": "95.35096", "vbur_ovtot_min": "-0.51570505", "vbur_qvbur_max": "23.438433", "vbur_qvbur_min": "11.1027565", "vbur_qvtot_max": "100.93344", "vbur_qvtot_min": "53.88249", "vbur_max_delta_qvbur": "11.944424", "vbur_max_delta_qvtot": "49.84031"}, "min_data": {"pyr_P": "0.92210066", "pyr_alpha": "14.90586", "qpole_amp": "5.73471", "vbur_vbur": "45.932167", "sterimol_L": "7.6374474", "sterimol_B1": "3.537586", "sterimol_B5": "6.2362595", "dipolemoment": "1.2930874", "qpoletens_xx": "3.4189627", "qpoletens_yy": "-1.2215636", "qpoletens_zz": "-6.1716013", "sterimol_burL": "7.149607", "vbur_far_vbur": "0.4938513", "vbur_far_vtot": "-0.8473646", "sterimol_burB1": "3.5038633", "sterimol_burB5": "5.9362216", "vbur_near_vbur": "47.258038", "vbur_near_vtot": "280.2313", "vbur_ovbur_max": "14.569962", "vbur_ovbur_min": "-0.00950201", "vbur_ovtot_max": "88.04696", "vbur_ovtot_min": "-0.03209559", "vbur_qvbur_max": "13.910838", "vbur_qvbur_min": "9.676375", "vbur_qvtot_max": "87.58167", "vbur_qvtot_min": "40.72879", "vbur_max_delta_qvbur": "4.6531205", "vbur_max_delta_qvtot": "33.177113"}, "delta_data": {"pyr_P": "0.037780736", "pyr_alpha": "5.7503386", "qpole_amp": "2.1696494", "vbur_vbur": "11.048379", "sterimol_L": "0.6937219", "sterimol_B1": "0.6515825", "sterimol_B5": "0.50647616", "dipolemoment": "0.97745913", "qpoletens_xx": "1.8114284", "qpoletens_yy": "2.4390595", "qpoletens_zz": "2.4442358", "sterimol_burL": "0.28734812", "vbur_far_vbur": "2.1536798", "vbur_far_vtot": "1.9082011", "sterimol_burB1": "0.59239024", "sterimol_burB5": "0.36771688", "vbur_near_vbur": "9.988652", "vbur_near_vtot": "2.842745", "vbur_ovbur_max": "4.9121923", "vbur_ovbur_min": "-0.101791166", "vbur_ovtot_max": "7.7137294", "vbur_ovtot_min": "0.013821234", "vbur_qvbur_max": "7.7918773", "vbur_qvbur_min": "1.1175845", "vbur_qvtot_max": "9.952857", "vbur_qvtot_min": "14.493261", "vbur_max_delta_qvbur": "7.741677", "vbur_max_delta_qvtot": "17.914804"}, "vburminconf_data": {"pyr_P": "0.92396957", "pyr_alpha": "19.198242", "qpole_amp": "7.492206", "vbur_vbur": "46.17263", "sterimol_L": "7.80282", "sterimol_B1": "4.1391306", "sterimol_B5": "6.2980666", "dipolemoment": "2.057282", "qpoletens_xx": "5.156188", "qpoletens_yy": "0.29074207", "qpoletens_zz": "-4.9610066", "sterimol_burL": "7.1946187", "vbur_far_vbur": "-0.0029275024", "vbur_far_vtot": "-1.1884001", "sterimol_burB1": "3.9635975", "sterimol_burB5": "6.008343", "vbur_near_vbur": "47.47713", "vbur_near_vtot": "284.55704", "vbur_ovbur_max": "14.369418", "vbur_ovbur_min": "-0.017412864", "vbur_ovtot_max": "91.54017", "vbur_ovtot_min": "-0.01094369", "vbur_qvbur_max": "14.466825", "vbur_qvbur_min": "9.966277", "vbur_qvtot_max": "92.07246", "vbur_qvtot_min": "54.76373", "vbur_max_delta_qvbur": "4.483708", "vbur_max_delta_qvtot": "39.24038"}, "boltzmann_averaged_data": {"nbo_P": "1.0513972", "nmr_P": "144.59285", "pyr_P": "0.94474965", "fmo_mu": "-0.13300203", "vmin_r": "1.8413119", "volume": "328.2116", "Pint_dP": "3.8608296", "fmo_eta": "0.1967304", "fukui_m": "0.35824293", "fukui_p": "0.16109316", "nuesp_P": "-54.15334", "somo_ra": "0.062797256", "somo_rc": "-0.4012488", "nbo_P_ra": "0.926603", "nbo_P_rc": "1.3801448", "efg_amp_P": "2.2815175", "fmo_omega": "0.045901436", "pyr_alpha": "15.990211", "qpole_amp": "6.371769", "vbur_vbur": "49.408653", "vbur_vtot": "281.3481", "vmin_vmin": "-0.045644343", "E_solv_cds": "-5.849124", "Pint_P_int": "18.693851", "Pint_P_max": "31.883366", "Pint_P_min": "12.5359125", "fmo_e_homo": "-0.23145449", "fmo_e_lumo": "-0.03524662", "nbo_lp_P_e": "-0.33175367", "sphericity": "0.7708511", "sterimol_L": "7.630857", "E_oxidation": "0.28499088", "E_reduction": "0.015024885", "sterimol_B1": "4.11046", "sterimol_B5": "6.5197225", "E_solv_total": "-11.9278145", "dipolemoment": "1.4178483", "efgtens_xx_P": "-1.4681749", "efgtens_yy_P": "-0.13598375", "efgtens_zz_P": "1.721651", "nbo_bd_e_avg": "-0.5389981", "nbo_bd_e_max": "-0.4687141", "nbo_lp_P_occ": "1.9324001", "qpoletens_xx": "3.2886186", "qpoletens_yy": "1.1087148", "qpoletens_zz": "-4.855722", "surface_area": "297.22723", "E_solv_elstat": "-6.1905", "nbo_bds_e_avg": "0.2192944", "nbo_bds_e_min": "0.19138029", "nmrtens_sxx_P": "-42.32411", "nmrtens_syy_P": "201.75345", "nmrtens_szz_P": "273.02573", "spindens_P_ra": "0.20706499", "spindens_P_rc": "0.44747144", "sterimol_burL": "7.2368426", "vbur_far_vbur": "-0.42501593", "vbur_far_vtot": "-2.261797", "nbo_bd_occ_avg": "1.9607061", "nbo_bd_occ_min": "1.9565265", "sterimol_burB1": "3.9302125", "sterimol_burB5": "6.1869144", "vbur_near_vbur": "49.919666", "vbur_near_vtot": "285.95148", "vbur_ovbur_max": "16.110443", "vbur_ovbur_min": "-0.025781747", "vbur_ovtot_max": "92.6394", "vbur_ovtot_min": "0.10546096", "vbur_qvbur_max": "15.968587", "vbur_qvbur_min": "9.91777", "vbur_qvtot_max": "92.33109", "vbur_qvtot_min": "49.44008", "nbo_bds_occ_avg": "0.050701752", "nbo_bds_occ_max": "0.052971054", "nbo_lp_P_percent_s": "54.848064", "vbur_max_delta_qvbur": "6.0352387", "vbur_max_delta_qvtot": "41.520073", "vbur_ratio_vbur_vtot": "0.17912231"}} CC(C)OP(c1ccccc1)c1ccccc1 {"max_data": {"B1": 4.372068941939954, "B5": 6.536706224024321, "lval": 7.730809087959745, "sasa": 472.6330537922715, "vbur": 57.183932270784155, "vtot": 278.516138020185, "alpha": 195.228259, "p_int": 19.61580774216743, "sasa_P": 19.979943340992676, "pyr_val": 0.9464607354187544, "dip_norm": 1.2500999960003198, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 57.18393227078415, "near_vtot": 278.51613802018494, "ovbur_max": 17.20413453560485, "ovbur_min": 0.0, "ovtot_max": 93.76372623228046, "ovtot_min": 0.0, "pyr_alpha": 23.60434125439974, "qvbur_max": 17.2157904533119, "qvbur_min": 12.763229889219048, "qvtot_max": 93.76372623228046, "qvtot_min": 50.99350515905527, "cone_angle": 177.29132312729723, "p_int_area": 341.8468300239941, "p_int_atom": 26.943648189016077, "sasa_volume": 739.0404966616617, "EA_delta_SCC": 1.436, "IP_delta_SCC": 6.7109, "HOMO_LUMO_gap": 3.333521799271, "sasa_volume_P": 21.713176748083708, "max_delta_qvbur": 6.329163314927801, "max_delta_qvtot": 48.8599567779016, "nucleophilicity": -6.4805, "p_int_atom_area": 19.597273068666812, "p_int_times_p_int_area": 6705.6016950200565, "global_electrophilicity_index": 1.5618, "p_int_atom_times_p_int_atom_area": 473.09698854932225}, "min_data": {"B1": 3.697101453839589, "B5": 6.169227260363501, "lval": 7.023889004733945, "sasa": 450.2124507135131, "vbur": 47.11321937189351, "vtot": 276.258260010507, "alpha": 195.142476, "p_int": 19.29024269981289, "sasa_P": 7.429978930108889, "pyr_val": 0.8876093135436166, "dip_norm": 0.47637905075685266, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 47.11321937189351, "near_vtot": 271.47350236403054, "ovbur_max": 14.418370203620057, "ovbur_min": 0.0, "ovtot_max": 88.14364868405632, "ovtot_min": 0.0, "pyr_alpha": 15.722143718801744, "qvbur_max": 14.418370203620057, "qvbur_min": 9.9891214749413, "qvtot_max": 88.14364868405632, "qvtot_min": 35.429911068221664, "cone_angle": 143.31352950688418, "p_int_area": 319.25552584838874, "p_int_atom": 24.01933309547995, "sasa_volume": 715.9098923765825, "EA_delta_SCC": 1.2605, "IP_delta_SCC": 6.4805, "HOMO_LUMO_gap": 3.177205500303, "sasa_volume_P": 7.257923893385953, "max_delta_qvbur": 2.389463129945117, "max_delta_qvtot": 35.05190506131606, "nucleophilicity": -6.7109, "p_int_atom_area": 13.49812175647969, "p_int_times_p_int_area": 6224.884483811461, "global_electrophilicity_index": 1.4439, "p_int_atom_times_p_int_atom_area": 361.22618754254216}, "boltzmann_averaged_data": {"B1": 4.30943305283295, "B5": 6.327838779893503, "lval": 7.713118487745651, "sasa": 462.73073768037085, "vbur": 52.822132349997084, "vtot": 277.2634406007801, "alpha": 195.18418979377788, "p_int": 19.50197977840376, "B1_std": 0.08155266712300843, "B5_std": 0.11585325902435542, "sasa_P": 13.823682736100132, "pyr_val": 0.9415390867121439, "dip_norm": 0.6761106451029402, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.02299561659482752, "sasa_std": 2.4157538660713844, "vbur_std": 2.035109143461782, "vtot_std": 0.50006724152342, "alpha_std": 0.010176216480739651, "near_vbur": 52.822132349997084, "near_vtot": 273.9500413270147, "ovbur_max": 15.796134668008161, "ovbur_min": 0.0, "ovtot_max": 92.3959236775006, "ovtot_min": 0.0, "p_int_std": 0.053092465200892745, "pyr_alpha": 16.5539317800306, "qvbur_max": 15.80035706642152, "qvbur_min": 10.329713826803403, "qvtot_max": 92.3959236775006, "qvtot_min": 43.348799403599195, "cone_angle": 160.42869204489978, "p_int_area": 334.65983559939866, "p_int_atom": 25.134061091570356, "sasa_P_std": 1.7673305225911204, "pyr_val_std": 0.002931394046996358, "sasa_volume": 731.3811371829809, "EA_delta_SCC": 1.2835548555485554, "IP_delta_SCC": 6.540968630686305, "dip_norm_std": 0.017077121853846307, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.3003833300036773, "near_vbur_std": 2.0351091434617787, "near_vtot_std": 0.4002588939604811, "ovbur_max_std": 1.085019180676553, "ovbur_min_std": 0.0, "ovtot_max_std": 1.092507025098178, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.4592939853312367, "qvbur_max_std": 1.090499097904258, "qvbur_min_std": 0.4339960759729297, "qvtot_max_std": 1.092507025098178, "qvtot_min_std": 1.3583608485625132, "sasa_volume_P": 14.118152154434197, "cone_angle_std": 5.4562230386308075, "p_int_area_std": 3.3421231595013237, "p_int_atom_std": 0.24677892066385348, "max_delta_qvbur": 5.466885916972026, "max_delta_qvtot": 36.64824589047026, "nucleophilicity": -6.540968630686305, "p_int_atom_area": 15.533444900361905, "sasa_volume_std": 2.777263146073675, "EA_delta_SCC_std": 0.028508991290902026, "IP_delta_SCC_std": 0.04356485671322009, "HOMO_LUMO_gap_std": 0.04076612528675568, "sasa_volume_P_std": 2.088070212353875, "max_delta_qvbur_std": 0.6839235176518926, "max_delta_qvtot_std": 2.035907172417237, "nucleophilicity_std": 0.04356485671322009, "p_int_atom_area_std": 1.0094957982036796, "p_int_times_p_int_area": 6526.6947434298245, "p_int_times_p_int_area_std": 81.96701696990412, "global_electrophilicity_index": 1.4558301233012327, "p_int_atom_times_p_int_atom_area": 390.18130621432124, "global_electrophilicity_index_std": 0.015140684809451724, "p_int_atom_times_p_int_atom_area_std": 21.886759471697758}} \\x8680000802000021041840008410141018c000c90300404a242001002000a03080810012440408080406c00004000028508100c91202100040800401004084008810012002800482000008810040800008100000002280007181085000da0803400020030000480c8014002002020d0031803020000010a000002c1000001004 \\x02000004022008000100000000000000000000000080800000004000000040000000000800000000080002001010000022000000180000040000000000000000 pco (-4.429044723510742, -0.0103333443403244, -0.4859808385372162, 1.3647788763046265) (1.786062240600586, 4.126868724822998) -141 c1ccc(OP(c2ccccc2)c2ccccc2)cc1 278.2909851074219 {"max_data": {"pyr_P": 0.9591885584563432, "pyr_alpha": 20.748720297129207, "qpole_amp": 10.977445723000042, "vbur_vbur": 55.63898990441802, "vbur_vtot": 314.6371890122325, "sterimol_L": 9.389780475215725, "sterimol_B1": 4.474119893462098, "sterimol_B5": 7.433092940185425, "dipolemoment": 2.753936754296858, "qpoletens_xx": 8.918098700795195, "qpoletens_yy": 0.6805584467538033, "qpoletens_zz": -3.74077960353578, "sterimol_burL": 7.443874193342924, "vbur_far_vbur": 0.669378978867747, "vbur_far_vtot": 4.458124306934237, "sterimol_burB1": 4.184704501045726, "sterimol_burB5": 7.008687535759866, "vbur_near_vbur": 54.96961092555027, "vbur_near_vtot": 312.6767969560473, "vbur_ovbur_max": 18.448712200387796, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 105.10666223061273, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.12750432114587, "vbur_qvbur_min": 11.188042088981703, "vbur_qvtot_max": 108.78532555968366, "vbur_qvtot_min": 59.16186158219283, "vbur_max_delta_qvbur": 7.6183695032385454, "vbur_max_delta_qvtot": 63.27800848658276}, "min_data": {"pyr_P": 0.9120000210725928, "pyr_alpha": 13.642574959254508, "qpole_amp": 5.118852760214958, "vbur_vbur": 45.12451041292199, "vbur_vtot": 312.67679695604727, "sterimol_L": 7.546766319568941, "sterimol_B1": 3.563752628846638, "sterimol_B5": 6.364191093316558, "dipolemoment": 1.644466692714091, "qpoletens_xx": 3.4847790852767244, "qpoletens_yy": -3.682651511273172, "qpoletens_zz": -6.777144539811982, "sterimol_burL": 7.131943770926799, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.4580423274900736, "sterimol_burB5": 5.981301504724373, "vbur_near_vbur": 45.12451041292199, "vbur_near_vtot": 310.1790647052983, "vbur_ovbur_max": 13.36352377030188, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 95.98539587861977, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.36352377030188, "vbur_qvbur_min": 9.63278186776867, "vbur_qvtot_max": 95.98539587861977, "vbur_qvtot_min": 40.32474756628997, "vbur_max_delta_qvbur": 3.175366531003874, "vbur_max_delta_qvtot": 36.82353429642694}, "delta_data": {"pyr_P": 0.047188537383750395, "pyr_alpha": 7.106145337874699, "qpole_amp": 5.8585929627850835, "vbur_vbur": 10.514479491496026, "vbur_vtot": 1.960392056185242, "sterimol_L": 1.8430141556467836, "sterimol_B1": 0.9103672646154601, "sterimol_B5": 1.068901846868867, "dipolemoment": 1.1094700615827668, "qpoletens_xx": 5.433319615518471, "qpoletens_yy": 4.363209958026975, "qpoletens_zz": 3.0363649362762017, "sterimol_burL": 0.31193042241612456, "vbur_far_vbur": 0.669378978867747, "vbur_far_vtot": 4.458124306934237, "sterimol_burB1": 0.7266621735556522, "sterimol_burB5": 1.0273860310354932, "vbur_near_vbur": 9.845100512628278, "vbur_near_vtot": 2.4977322507490385, "vbur_ovbur_max": 5.085188430085916, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 9.121266351992958, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 5.763980550843991, "vbur_qvbur_min": 1.5552602212130324, "vbur_qvtot_max": 12.799929681063887, "vbur_qvtot_min": 18.837114015902856, "vbur_max_delta_qvbur": 4.443002972234671, "vbur_max_delta_qvtot": 26.45447419015582}, "vburminconf_data": {"pyr_P": 0.9120000210725928, "pyr_alpha": 20.748720297129207, "qpole_amp": 8.850181040254112, "vbur_vbur": 45.12451041292199, "vbur_vtot": 312.863274473492, "sterimol_L": 8.99249365211546, "sterimol_B1": 3.6501618975664067, "sterimol_B5": 6.386936146310132, "dipolemoment": 2.3918464459010984, "qpoletens_xx": 6.7096220271674225, "qpoletens_yy": -1.0313262574363913, "qpoletens_zz": -5.678295769731031, "sterimol_burL": 7.443874193342924, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.4580423274900736, "sterimol_burB5": 5.981301504724373, "vbur_near_vbur": 45.12451041292199, "vbur_near_vtot": 311.27721455654154, "vbur_ovbur_max": 13.36352377030188, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 98.1296047419359, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.36352377030188, "vbur_qvbur_min": 9.63278186776867, "vbur_qvtot_max": 98.1296047419359, "vbur_qvtot_min": 44.641824944598255, "vbur_max_delta_qvbur": 3.175366531003874, "vbur_max_delta_qvtot": 53.48777979733765}, "boltzmann_averaged_data": {"nbo_P": 1.0681702299588158, "nmr_P": 157.7143012767284, "pyr_P": 0.9588901123078569, "fmo_mu": -0.13773613765733864, "vmin_r": 1.8852889037377052, "volume": 355.91817195341366, "Pint_dP": 3.877023583392906, "fmo_eta": 0.19013058350720036, "fukui_m": 0.18778342613008547, "fukui_p": 0.16553555434736633, "nuesp_P": -54.13946613866587, "somo_ra": 0.049337006767533984, "somo_rc": -0.3889812770040488, "nbo_P_ra": 0.9026346756114495, "nbo_P_rc": 1.2559536560889013, "efg_amp_P": 2.3946013692283175, "fmo_omega": 0.049890288155844766, "pyr_alpha": 13.71194778609469, "qpole_amp": 8.083156315056147, "vbur_vbur": 54.103075723221735, "vbur_vtot": 314.5474323543552, "vmin_vmin": -0.03984438098816466, "E_solv_cds": -7.3092333314743865, "Pint_P_int": 19.284163628336522, "Pint_P_max": 32.750397591593675, "Pint_P_min": 13.126983933074195, "fmo_e_homo": -0.23280142941093881, "fmo_e_lumo": -0.0426708459037385, "nbo_lp_P_e": -0.35055051579651064, "sphericity": 0.7513516552200201, "sterimol_L": 7.601765737466816, "E_oxidation": 0.2806942729463005, "E_reduction": 0.0035744329007949584, "sterimol_B1": 4.383622447218302, "sterimol_B5": 7.415866121650993, "E_solv_total": -14.738756522683916, "dipolemoment": 1.7070181550966836, "efgtens_xx_P": -1.5955512242804022, "efgtens_yy_P": -0.18084995978403934, "efgtens_zz_P": 1.7764011864353393, "nbo_bd_e_avg": -0.5409445079996492, "nbo_bd_e_max": -0.48741951912715825, "nbo_lp_P_occ": 1.9375792553169453, "qpoletens_xx": 5.41738555649869, "qpoletens_yy": 0.5483869572370068, "qpoletens_zz": -5.965772513735698, "surface_area": 323.25461482882395, "E_solv_elstat": -7.4295231912095305, "nbo_bds_e_avg": 0.19975535496016322, "nbo_bds_e_min": 0.16178471797902244, "nmrtens_sxx_P": -23.33234378002158, "nmrtens_syy_P": 230.46347384989485, "nmrtens_szz_P": 266.01180032423594, "spindens_P_ra": 0.20677267383344994, "spindens_P_rc": 0.2331292828086709, "sterimol_burL": 7.177543894773527, "vbur_far_vbur": 0.3838299707444095, "vbur_far_vtot": 3.0309995545993194, "nbo_bd_occ_avg": 1.9612735986091563, "nbo_bd_occ_min": 1.954021967167773, "sterimol_burB1": 4.147350425349666, "sterimol_burB5": 6.995736343439295, "vbur_near_vbur": 53.719245752477335, "vbur_near_vtot": 311.51267241357385, "vbur_ovbur_max": 17.927743670191777, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 104.84928124728282, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 18.32321927670466, "vbur_qvbur_min": 10.473556627456407, "vbur_qvtot_max": 107.87966858684206, "vbur_qvtot_min": 44.68743951972416, "nbo_bds_occ_avg": 0.046958467920276095, "nbo_bds_occ_max": 0.04979278942282231, "nbo_lp_P_percent_s": 56.93871120303961, "vbur_max_delta_qvbur": 7.593628349182458, "vbur_max_delta_qvtot": 57.55242735468464, "vbur_ratio_vbur_vtot": 0.17200159045698787}} {"max_data": {"B1": 4.149678273352141, "B5": 7.423445715267221, "lval": 8.989966560166856, "sasa": 507.4644382390577, "vbur": 61.91623485984619, "vtot": 310.7284480811409, "alpha": 222.892529, "p_int": 20.892008918045356, "sasa_P": 23.439933529172592, "pyr_val": 0.9772768243041926, "dip_norm": 1.1965851411412394, "far_vbur": 3.5550549006500543, "far_vtot": 11.790963919208682, "near_vbur": 58.81576074977106, "near_vtot": 309.02245893289484, "ovbur_max": 19.372135229116033, "ovbur_min": 0.0, "ovtot_max": 103.64061091200797, "ovtot_min": 0.0, "pyr_alpha": 19.163136347053275, "qvbur_max": 22.892222376644938, "qvbur_min": 12.14546625074543, "qvtot_max": 107.12756669982925, "qvtot_min": 59.403758344821526, "cone_angle": 183.86891364760098, "p_int_area": 355.41424011000356, "p_int_atom": 26.730343183252334, "sasa_volume": 799.9346038649785, "EA_delta_SCC": 1.7087, "IP_delta_SCC": 6.8734, "HOMO_LUMO_gap": 3.723319910014, "sasa_volume_P": 36.003330931422624, "max_delta_qvbur": 11.108089574818036, "max_delta_qvtot": 66.40861121908725, "nucleophilicity": -6.5808, "p_int_atom_area": 20.6971200266022, "p_int_times_p_int_area": 7254.695313257781, "global_electrophilicity_index": 1.7826, "p_int_atom_times_p_int_atom_area": 489.1635564920684}, "min_data": {"B1": 3.276399102745386, "B5": 6.258592017901366, "lval": 7.286040661106745, "sasa": 471.31278610713827, "vbur": 49.03644579355665, "vtot": 307.7327309690179, "alpha": 222.835372, "p_int": 20.232658034468173, "sasa_P": 11.61996704816491, "pyr_val": 0.9237483202750203, "dip_norm": 0.27747972898934437, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.036445793556645, "near_vtot": 298.9374841619323, "ovbur_max": 14.371746532791859, "ovbur_min": 0.0, "ovtot_max": 92.15709541878611, "ovtot_min": 0.0, "pyr_alpha": 10.198418048469202, "qvbur_max": 14.371746532791859, "qvbur_min": 10.443702265516226, "qvtot_max": 92.15709541878611, "qvtot_min": 35.01484919073523, "cone_angle": 140.3442892380089, "p_int_area": 339.42545199818545, "p_int_atom": 23.253619303257302, "sasa_volume": 766.7794780900103, "EA_delta_SCC": 1.2844, "IP_delta_SCC": 6.5808, "HOMO_LUMO_gap": 3.513312210997, "sasa_volume_P": 15.365573370891434, "max_delta_qvbur": 3.0888181923680786, "max_delta_qvtot": 32.75333707396459, "nucleophilicity": -6.8734, "p_int_atom_area": 15.697815672350456, "p_int_times_p_int_area": 6988.93982752067, "global_electrophilicity_index": 1.4618, "p_int_atom_times_p_int_atom_area": 406.0095579582634}, "boltzmann_averaged_data": {"B1": 3.827722985018015, "B5": 7.411079089254056, "lval": 7.601331687669022, "sasa": 501.2473794779022, "vbur": 58.27482772326747, "vtot": 310.18092986894715, "alpha": 222.8797812325277, "p_int": 20.408448661136003, "B1_std": 0.3169223662497875, "B5_std": 0.07626034798658614, "sasa_P": 16.322448487947604, "pyr_val": 0.9722676516055988, "dip_norm": 0.4764377274340845, "far_vbur": 0.5706554359916531, "far_vtot": 2.072592742236292, "lval_std": 0.10840745967325667, "sasa_std": 1.8677311339600604, "vbur_std": 1.2146971972746563, "vtot_std": 0.2189166071884827, "alpha_std": 0.0031215726054121453, "near_vbur": 57.70417228727583, "near_vtot": 306.1227536248885, "ovbur_max": 18.51269181744144, "ovbur_min": 0.0, "ovtot_max": 103.40167892639421, "ovtot_min": 0.0, "p_int_std": 0.04296410101672162, "pyr_alpha": 11.087936569374174, "qvbur_max": 19.099602084041507, "qvbur_min": 10.71137762234587, "qvtot_max": 105.61357335832315, "qvtot_min": 38.56099726709868, "cone_angle": 169.51945300787503, "p_int_area": 354.37941082807185, "p_int_atom": 24.85220727069449, "sasa_P_std": 1.2357283160296, "pyr_val_std": 0.003025538936123114, "sasa_volume": 793.5041026524699, "EA_delta_SCC": 1.3193736892631076, "IP_delta_SCC": 6.616957234427657, "dip_norm_std": 0.062320326781336935, "far_vbur_std": 0.47673944703643373, "far_vtot_std": 1.3140594222173607, "HOMO_LUMO_gap": 3.577340174328521, "near_vbur_std": 0.8638731750398361, "near_vtot_std": 3.08677722473052, "ovbur_max_std": 0.39723399888077837, "ovbur_min_std": 0.0, "ovtot_max_std": 1.1695262504240207, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.5246699466269609, "qvbur_max_std": 0.8110191822747966, "qvbur_min_std": 0.18368192142782336, "qvtot_max_std": 1.1822457335965688, "qvtot_min_std": 3.6839005542375105, "sasa_volume_P": 22.354715823275775, "cone_angle_std": 11.087536889978228, "p_int_area_std": 1.0733784346070954, "p_int_atom_std": 0.310409051778516, "max_delta_qvbur": 8.341938342868715, "max_delta_qvtot": 63.44849971134011, "nucleophilicity": -6.616957234427657, "p_int_atom_area": 16.6194482109488, "sasa_volume_std": 1.697216632415093, "EA_delta_SCC_std": 0.023499349421717376, "IP_delta_SCC_std": 0.0380079873476158, "HOMO_LUMO_gap_std": 0.018479861623548567, "sasa_volume_P_std": 2.0425259721650195, "max_delta_qvbur_std": 0.7173828926972667, "max_delta_qvtot_std": 3.212220599694009, "nucleophilicity_std": 0.0380079873476158, "p_int_atom_area_std": 0.32551407570925456, "p_int_times_p_int_area": 7232.330140068172, "p_int_times_p_int_area_std": 25.716669985692395, "global_electrophilicity_index": 1.4862813181868184, "p_int_atom_times_p_int_atom_area": 412.9666280780802, "global_electrophilicity_index_std": 0.015990146976759243, "p_int_atom_times_p_int_atom_area_std": 6.061938179173339}} {"max_data": {"pyr_P": "0.9632861", "pyr_alpha": "20.136803", "qpole_amp": "15.041176", "vbur_vbur": "56.967754", "sterimol_L": "8.915688", "sterimol_B1": "4.332261", "sterimol_B5": "7.32153", "dipolemoment": "2.7716694", "qpoletens_xx": "9.593114", "qpoletens_yy": "2.0013533", "qpoletens_zz": "-5.938132", "sterimol_burL": "7.4435453", "vbur_far_vbur": "1.4413844", "vbur_far_vtot": "8.453663", "sterimol_burB1": "4.1448636", "sterimol_burB5": "6.8530602", "vbur_near_vbur": "55.368782", "vbur_near_vtot": "316.89337", "vbur_ovbur_max": "19.69896", "vbur_ovbur_min": "-0.24366985", "vbur_ovtot_max": "117.72159", "vbur_ovtot_min": "-0.35209608", "vbur_qvbur_max": "20.23791", "vbur_qvbur_min": "10.821309", "vbur_qvtot_max": "114.46024", "vbur_qvtot_min": "55.431667", "vbur_max_delta_qvbur": "10.28306", "vbur_max_delta_qvtot": "65.337265"}, "min_data": {"pyr_P": "0.9186121", "pyr_alpha": "13.368247", "qpole_amp": "8.594407", "vbur_vbur": "44.85491", "sterimol_L": "7.7612844", "sterimol_B1": "3.4258885", "sterimol_B5": "6.757673", "dipolemoment": "1.5697224", "qpoletens_xx": "5.8855715", "qpoletens_yy": "-1.9577715", "qpoletens_zz": "-8.452939", "sterimol_burL": "7.1838503", "vbur_far_vbur": "0.30714297", "vbur_far_vtot": "-1.3744731", "sterimol_burB1": "3.4662604", "sterimol_burB5": "6.1335564", "vbur_near_vbur": "46.203716", "vbur_near_vtot": "306.31757", "vbur_ovbur_max": "14.462836", "vbur_ovbur_min": "-0.015324743", "vbur_ovtot_max": "99.37745", "vbur_ovtot_min": "-0.0065836445", "vbur_qvbur_max": "14.013058", "vbur_qvbur_min": "9.483186", "vbur_qvtot_max": "103.10111", "vbur_qvtot_min": "42.081127", "vbur_max_delta_qvbur": "4.3407493", "vbur_max_delta_qvtot": "45.823746"}, "delta_data": {"pyr_P": "0.044658817", "pyr_alpha": "7.132225", "qpole_amp": "4.24614", "vbur_vbur": "9.2845955", "sterimol_L": "1.6881083", "sterimol_B1": "0.99804664", "sterimol_B5": "0.40895158", "dipolemoment": "1.3455998", "qpoletens_xx": "3.2796388", "qpoletens_yy": "3.854619", "qpoletens_zz": "4.1153936", "sterimol_burL": "0.22234052", "vbur_far_vbur": "1.9882123", "vbur_far_vtot": "9.875719", "sterimol_burB1": "0.7025281", "sterimol_burB5": "0.60764825", "vbur_near_vbur": "8.481065", "vbur_near_vtot": "10.936369", "vbur_ovbur_max": "4.8498197", "vbur_ovbur_min": "-0.08816023", "vbur_ovtot_max": "11.682173", "vbur_ovtot_min": "0.046546623", "vbur_qvbur_max": "7.1039057", "vbur_qvbur_min": "0.8715487", "vbur_qvtot_max": "9.193904", "vbur_qvtot_min": "15.124901", "vbur_max_delta_qvbur": "4.696971", "vbur_max_delta_qvtot": "17.626444"}, "vburminconf_data": {"pyr_P": "0.9208244", "pyr_alpha": "20.733074", "qpole_amp": "11.915677", "vbur_vbur": "45.279533", "sterimol_L": "9.331808", "sterimol_B1": "3.7651207", "sterimol_B5": "6.702134", "dipolemoment": "2.2376053", "qpoletens_xx": "9.0713", "qpoletens_yy": "0.3925668", "qpoletens_zz": "-6.910862", "sterimol_burL": "7.371804", "vbur_far_vbur": "-0.06908852", "vbur_far_vtot": "-2.1784525", "sterimol_burB1": "3.6789212", "sterimol_burB5": "6.1926374", "vbur_near_vbur": "46.27535", "vbur_near_vtot": "317.01047", "vbur_ovbur_max": "14.461273", "vbur_ovbur_min": "-0.0053802454", "vbur_ovtot_max": "108.73617", "vbur_ovtot_min": "0.012549091", "vbur_qvbur_max": "14.13533", "vbur_qvbur_min": "9.646489", "vbur_qvtot_max": "105.73768", "vbur_qvtot_min": "48.83255", "vbur_max_delta_qvbur": "4.5391135", "vbur_max_delta_qvtot": "54.87369"}, "boltzmann_averaged_data": {"nbo_P": "1.0583446", "nmr_P": "139.78749", "pyr_P": "0.9552677", "fmo_mu": "-0.14043045", "vmin_r": "1.9040151", "volume": "355.53845", "Pint_dP": "3.9084368", "fmo_eta": "0.19115163", "fukui_m": "0.15171756", "fukui_p": "0.15055928", "nuesp_P": "-54.14084", "somo_ra": "0.048619222", "somo_rc": "-0.38093376", "nbo_P_ra": "0.94312996", "nbo_P_rc": "1.2543199", "efg_amp_P": "2.5257013", "fmo_omega": "0.051328823", "pyr_alpha": "14.241217", "qpole_amp": "10.100708", "vbur_vbur": "51.867947", "vbur_vtot": "313.85287", "vmin_vmin": "-0.039351072", "E_solv_cds": "-7.285565", "Pint_P_int": "19.325949", "Pint_P_max": "33.07279", "Pint_P_min": "13.107176", "fmo_e_homo": "-0.23291321", "fmo_e_lumo": "-0.045354545", "nbo_lp_P_e": "-0.34833458", "sphericity": "0.75731164", "sterimol_L": "8.075789", "E_oxidation": "0.2810319", "E_reduction": "0.002027565", "sterimol_B1": "4.1695", "sterimol_B5": "7.2230687", "E_solv_total": "-14.710494", "dipolemoment": "1.9713695", "efgtens_xx_P": "-1.6719568", "efgtens_yy_P": "-0.19449452", "efgtens_zz_P": "1.8512582", "nbo_bd_e_avg": "-0.5439257", "nbo_bd_e_max": "-0.48288366", "nbo_lp_P_occ": "1.9358928", "qpoletens_xx": "6.5441585", "qpoletens_yy": "1.1004564", "qpoletens_zz": "-6.985305", "surface_area": "320.78333", "E_solv_elstat": "-7.4252157", "nbo_bds_e_avg": "0.20200795", "nbo_bds_e_min": "0.15806569", "nmrtens_sxx_P": "-49.31134", "nmrtens_syy_P": "207.1627", "nmrtens_szz_P": "269.68118", "spindens_P_ra": "0.19729847", "spindens_P_rc": "0.18309742", "sterimol_burL": "7.279366", "vbur_far_vbur": "-0.17911716", "vbur_far_vtot": "1.8052973", "nbo_bd_occ_avg": "1.9587095", "nbo_bd_occ_min": "1.953529", "sterimol_burB1": "3.98546", "sterimol_burB5": "6.8596196", "vbur_near_vbur": "52.091732", "vbur_near_vtot": "313.84906", "vbur_ovbur_max": "17.335148", "vbur_ovbur_min": "0.0053189225", "vbur_ovtot_max": "107.79303", "vbur_ovtot_min": "0.14146921", "vbur_qvbur_max": "17.32239", "vbur_qvbur_min": "10.228157", "vbur_qvtot_max": "109.99243", "vbur_qvtot_min": "46.392887", "nbo_bds_occ_avg": "0.051993925", "nbo_bds_occ_max": "0.056786023", "nbo_lp_P_percent_s": "56.67323", "vbur_max_delta_qvbur": "7.251108", "vbur_max_delta_qvtot": "61.439625", "vbur_ratio_vbur_vtot": "0.16623083"}} c1ccc(OP(c2ccccc2)c2ccccc2)cc1 {"max_data": {"B1": 4.55338611415094, "B5": 7.360821446404454, "lval": 9.188969763814702, "sasa": 507.4440529771408, "vbur": 56.880878410400875, "vtot": 310.5096816029096, "alpha": 222.867501, "p_int": 20.845384504308164, "sasa_P": 21.639938633587665, "pyr_val": 0.9504338591900938, "dip_norm": 1.2783086481753927, "far_vbur": 1.1306240175837878, "far_vtot": 8.014787222480567, "near_vbur": 55.750254392817084, "near_vtot": 309.93714817947625, "ovbur_max": 18.579532825036676, "ovbur_min": 0.0, "ovtot_max": 105.07022699032406, "ovtot_min": 0.0, "pyr_alpha": 24.253536763456772, "qvbur_max": 19.710156842620464, "qvbur_min": 11.481078941443618, "qvtot_max": 106.14658020114301, "qvtot_min": 57.53674494426157, "cone_angle": 173.83674648272125, "p_int_area": 360.1179573317632, "p_int_atom": 27.029885010568876, "sasa_volume": 802.3860060680648, "EA_delta_SCC": 1.6404, "IP_delta_SCC": 6.7763, "HOMO_LUMO_gap": 3.393694586476, "sasa_volume_P": 25.263308701632397, "max_delta_qvbur": 9.103271729205547, "max_delta_qvtot": 59.07881633341779, "nucleophilicity": -6.4925, "p_int_atom_area": 19.597273068666812, "p_int_times_p_int_area": 7325.706575759815, "global_electrophilicity_index": 1.7241, "p_int_atom_times_p_int_atom_area": 469.17922553018593}, "min_data": {"B1": 3.5363411692409303, "B5": 6.316030840548629, "lval": 7.49083326446973, "sasa": 472.7328327046596, "vbur": 45.399799468957255, "vtot": 306.9676118256898, "alpha": 222.787149, "p_int": 20.26121551356212, "sasa_P": 12.099965686987558, "pyr_val": 0.8821297701372144, "dip_norm": 0.2956112311804137, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 45.399799468957255, "near_vtot": 296.3940480760993, "ovbur_max": 13.241122515208072, "ovbur_min": 0.0, "ovtot_max": 92.67388768879256, "ovtot_min": 0.0, "pyr_alpha": 15.049405798039585, "qvbur_max": 13.241122515208072, "qvbur_min": 9.546196602073424, "qvtot_max": 93.13197149516259, "qvtot_min": 40.44418527969492, "cone_angle": 136.16074583534845, "p_int_area": 340.3266435739685, "p_int_atom": 23.570337660677776, "sasa_volume": 767.8561768626258, "EA_delta_SCC": 1.3056, "IP_delta_SCC": 6.4925, "HOMO_LUMO_gap": 3.273319232507, "sasa_volume_P": 11.940378529917492, "max_delta_qvbur": 3.426839805872513, "max_delta_qvtot": 34.97062859795622, "nucleophilicity": -6.7763, "p_int_atom_area": 15.897787846520524, "p_int_times_p_int_area": 6981.969370085812, "global_electrophilicity_index": 1.4672, "p_int_atom_times_p_int_atom_area": 411.2924566973209}, "boltzmann_averaged_data": {"B1": 4.474462595946714, "B5": 7.243097592285618, "lval": 7.664903924186914, "sasa": 501.9165706648715, "vbur": 54.39264763481716, "vtot": 309.84489070212214, "alpha": 222.83169162465373, "p_int": 20.362127791725865, "B1_std": 0.12168685936440224, "B5_std": 0.06316517015994554, "sasa_P": 15.09128109099384, "pyr_val": 0.9414369328799564, "dip_norm": 0.4362352677744527, "far_vbur": 0.14964661635027887, "far_vtot": 2.0659176186472785, "lval_std": 0.09176790672245864, "sasa_std": 0.6767290184232189, "vbur_std": 0.5320438382090207, "vtot_std": 0.10953475194293806, "alpha_std": 0.018694171825047772, "near_vbur": 54.24300101846688, "near_vtot": 302.8621082629753, "ovbur_max": 17.84620180161234, "ovbur_min": 0.0, "ovtot_max": 103.11941262220452, "ovtot_min": 0.0, "p_int_std": 0.042090072915711076, "pyr_alpha": 16.56080593700931, "qvbur_max": 18.021656809424826, "qvbur_min": 10.172289242932118, "qvtot_max": 105.38695352031512, "qvtot_min": 46.00313579176332, "cone_angle": 161.62861573822147, "p_int_area": 353.83038062385424, "p_int_atom": 25.995698877305095, "sasa_P_std": 0.8532857714909031, "pyr_val_std": 0.0029346432724937895, "sasa_volume": 794.7832231069616, "EA_delta_SCC": 1.3505222387776121, "IP_delta_SCC": 6.519345560544396, "dip_norm_std": 0.048317049912943874, "far_vbur_std": 0.2051707789572498, "far_vtot_std": 1.6338391715102334, "HOMO_LUMO_gap": 3.3606120315047248, "near_vbur_std": 0.36595387244909006, "near_vtot_std": 2.475718987930758, "ovbur_max_std": 0.3513502503719455, "ovbur_min_std": 0.0, "ovtot_max_std": 2.332780798570408, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.4205828408054876, "qvbur_max_std": 0.5305421963223439, "qvbur_min_std": 0.4107954857299672, "qvtot_max_std": 0.7496251615956258, "qvtot_min_std": 1.2595027157320344, "sasa_volume_P": 15.29861328560513, "cone_angle_std": 3.1714369367579716, "p_int_area_std": 1.69487942024637, "p_int_atom_std": 0.4409493684309045, "max_delta_qvbur": 7.637389338895732, "max_delta_qvtot": 51.800934723067776, "nucleophilicity": -6.519345560544396, "p_int_atom_area": 16.38542911487375, "sasa_volume_std": 0.9909157101653802, "EA_delta_SCC_std": 0.06088664881147414, "IP_delta_SCC_std": 0.029269276848093766, "HOMO_LUMO_gap_std": 0.04607436779643333, "sasa_volume_P_std": 0.9375392218379917, "max_delta_qvbur_std": 0.8993573887691398, "max_delta_qvtot_std": 1.2746449353734715, "nucleophilicity_std": 0.029269276848093766, "p_int_atom_area_std": 0.45296652843821616, "p_int_times_p_int_area": 7204.802495808802, "p_int_times_p_int_area_std": 48.13115614952193, "global_electrophilicity_index": 1.498320766792332, "p_int_atom_times_p_int_atom_area": 425.9778844306566, "global_electrophilicity_index_std": 0.04217550134979877, "p_int_atom_times_p_int_atom_area_std": 14.797597110066437}} \\x048000000200002100184400b410348458c00849030440082c2041001002a00080b40002440400c00406884844000029528500480208100048a084240140840088100120022008c20440008c0140d8000a1520000822800411810c5005420807000040410001480ca02406200a004c08b1801302200040a50000203100401000 \\x2000000400204c0001000000000000000000000000808000000040000080000000000000000000000c0002001000000022100000000000000000000000000000 pco (-2.5684499740600586, -2.6541497707366943, -2.0927748680114746, 2.538360834121704) (1.8258098363876345, 3.921042680740357) -142 Clc1ccccc1OP(c1ccccc1)c1ccccc1 312.7359924316406 {"max_data": {"pyr_P": 0.9615178601562953, "pyr_alpha": 19.381120480148972, "qpole_amp": 9.894721842343332, "vbur_vbur": 59.86026108990275, "vbur_vtot": 336.76134236638575, "sterimol_L": 9.391213772998427, "sterimol_B1": 4.4315279509453696, "sterimol_B5": 7.424833480338062, "dipolemoment": 3.505059254057864, "qpoletens_xx": 7.361158538288759, "qpoletens_yy": 2.7145851786810526, "qpoletens_zz": -5.842519593916565, "sterimol_burL": 7.43349936283092, "vbur_far_vbur": 2.489253077664434, "vbur_far_vtot": 9.997892426924086, "sterimol_burB1": 4.171936052154662, "sterimol_burB5": 7.005388158113076, "vbur_near_vbur": 57.37100801223831, "vbur_near_vtot": 334.05167394940094, "vbur_ovbur_max": 20.650341498069995, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 117.61535031226984, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 23.139594575734428, "vbur_qvbur_min": 10.238360662713086, "vbur_qvtot_max": 120.06899603925771, "vbur_qvtot_min": 58.880291553411745, "vbur_max_delta_qvbur": 12.271599311023868, "vbur_max_delta_qvtot": 55.769852276161316}, "min_data": {"pyr_P": 0.9223220931447201, "pyr_alpha": 13.227538884491265, "qpole_amp": 9.519871557667381, "vbur_vbur": 46.9757616513531, "vbur_vtot": 334.05167394940094, "sterimol_L": 7.685010278645518, "sterimol_B1": 3.4991003214610945, "sterimol_B5": 6.354961577659878, "dipolemoment": 2.612914621685644, "qpoletens_xx": 5.2325504019178375, "qpoletens_yy": -1.518638944372194, "qpoletens_zz": -7.94713558059889, "sterimol_burL": 7.215741247908952, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.4234392454258415, "sterimol_burB5": 6.027516168747924, "vbur_near_vbur": 46.9757616513531, "vbur_near_vtot": 323.2875914023626, "vbur_ovbur_max": 15.45533307926359, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 103.77538848815635, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.45533307926359, "vbur_qvbur_min": 9.665204912057579, "vbur_qvtot_max": 111.46486584516614, "vbur_qvtot_min": 58.23083044133838, "vbur_max_delta_qvbur": 5.433474680028041, "vbur_max_delta_qvtot": 38.656374219362704}, "delta_data": {"pyr_P": 0.03919576701157512, "pyr_alpha": 6.153581595657707, "qpole_amp": 0.3748502846759507, "vbur_vbur": 12.884499438549646, "vbur_vtot": 2.7096684169848118, "sterimol_L": 1.7062034943529083, "sterimol_B1": 0.932427629484275, "sterimol_B5": 1.0698719026781847, "dipolemoment": 0.89214463237222, "qpoletens_xx": 2.1286081363709215, "qpoletens_yy": 4.233224123053247, "qpoletens_zz": 2.104615986682325, "sterimol_burL": 0.21775811492196784, "vbur_far_vbur": 2.489253077664434, "vbur_far_vtot": 9.997892426924086, "sterimol_burB1": 0.74849680672882, "sterimol_burB5": 0.977871989365152, "vbur_near_vbur": 10.39524636088521, "vbur_near_vtot": 10.764082547038356, "vbur_ovbur_max": 5.195008418806404, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 13.839961824113487, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 7.684261496470837, "vbur_qvbur_min": 0.5731557506555074, "vbur_qvtot_max": 8.604130194091567, "vbur_qvtot_min": 0.649461112073368, "vbur_max_delta_qvbur": 6.838124630995827, "vbur_max_delta_qvtot": 17.113478056798613}, "vburminconf_data": {"pyr_P": 0.9223220931447201, "pyr_alpha": 19.381120480148972, "qpole_amp": 9.519871557667381, "vbur_vbur": 46.9757616513531, "vbur_vtot": 334.05167394940094, "sterimol_L": 9.391213772998427, "sterimol_B1": 3.4991003214610945, "sterimol_B5": 6.354961577659878, "dipolemoment": 3.505059254057864, "qpoletens_xx": 7.361158538288759, "qpoletens_yy": -1.518638944372194, "qpoletens_zz": -5.842519593916565, "sterimol_burL": 7.43349936283092, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.4234392454258415, "sterimol_burB5": 6.027516168747924, "vbur_near_vbur": 46.9757616513531, "vbur_near_vtot": 334.05167394940094, "vbur_ovbur_max": 15.45533307926359, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 113.46882704023298, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.45533307926359, "vbur_qvbur_min": 10.02185839923555, "vbur_qvtot_max": 113.46882704023298, "vbur_qvtot_min": 58.880291553411745, "vbur_max_delta_qvbur": 5.433474680028041, "vbur_max_delta_qvtot": 48.98882534547286}, "boltzmann_averaged_data": {"nbo_P": 1.0748078570107036, "nmr_P": 141.59923914966222, "pyr_P": 0.9612119409803077, "fmo_mu": -0.14267834287095224, "vmin_r": 1.9063959338894294, "volume": 376.48198907472033, "Pint_dP": 4.060295263723425, "fmo_eta": 0.19178953879086266, "fukui_m": 0.21243128965327868, "fukui_p": 0.1868769428526545, "nuesp_P": -54.136589892041485, "somo_ra": 0.04520015080939911, "somo_rc": -0.38861817036329444, "nbo_P_ra": 0.8879309141580493, "nbo_P_rc": 1.2872391466639823, "efg_amp_P": 2.459462996673085, "fmo_omega": 0.0530720023100252, "pyr_alpha": 13.302996037934571, "qpole_amp": 9.840589646034873, "vbur_vbur": 55.48421517281415, "vbur_vtot": 336.48245232343277, "vmin_vmin": -0.03856784364657295, "E_solv_cds": -7.724295727117419, "Pint_P_int": 19.657245731948432, "Pint_P_max": 32.95353283659009, "Pint_P_min": 13.327443823248423, "fmo_e_homo": -0.2385731122663836, "fmo_e_lumo": -0.04678357347552095, "nbo_lp_P_e": -0.35445942592915586, "sphericity": 0.7500048998718322, "sterimol_L": 7.706436665515185, "E_oxidation": 0.285392433525644, "E_reduction": -0.0002962431142948832, "sterimol_B1": 4.388530970815064, "sterimol_B5": 7.356683426237603, "E_solv_total": -14.956618684667246, "dipolemoment": 2.621567658192189, "efgtens_xx_P": -1.6611662839348385, "efgtens_yy_P": -0.14651232636918138, "efgtens_zz_P": 1.8076792574657288, "nbo_bd_e_avg": -0.5391828370354541, "nbo_bd_e_max": -0.4893622861355424, "nbo_lp_P_occ": 1.9402406586608183, "qpoletens_xx": 5.386881716069293, "qpoletens_yy": 2.4564673199154194, "qpoletens_zz": -7.843349035984711, "surface_area": 336.19373722245194, "E_solv_elstat": -7.232322957549824, "nbo_bds_e_avg": 0.19554666435053647, "nbo_bds_e_min": 0.15316289755574683, "nmrtens_sxx_P": -53.46727460076315, "nmrtens_syy_P": 219.29381220068058, "nmrtens_szz_P": 258.9711803120245, "spindens_P_ra": 0.24459957095553378, "spindens_P_rc": 0.2632846055449208, "sterimol_burL": 7.226174358841324, "vbur_far_vbur": 0.9784631305309115, "vbur_far_vtot": 5.063336499724014, "nbo_bd_occ_avg": 1.9579715295158098, "nbo_bd_occ_min": 1.9535466959448125, "sterimol_burB1": 4.138052977104399, "sterimol_burB5": 6.951402560159729, "vbur_near_vbur": 54.505752042283234, "vbur_near_vtot": 330.2087915096144, "vbur_ovbur_max": 18.647801546693444, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 112.77695812400991, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.630325893886425, "vbur_qvbur_min": 9.86643389884514, "vbur_qvtot_max": 117.04240689113668, "vbur_qvtot_min": 58.53640721539666, "nbo_bds_occ_avg": 0.04707965376800257, "nbo_bds_occ_max": 0.0507012385321892, "nbo_lp_P_percent_s": 57.38229366725875, "vbur_max_delta_qvbur": 9.544647724982854, "vbur_max_delta_qvtot": 49.779396557568546, "vbur_ratio_vbur_vtot": 0.1648885791436814}} {"max_data": {"B1": 4.505732707897273, "B5": 7.523885525264673, "lval": 8.788122438108688, "sasa": 520.5441744349098, "vbur": 68.94475323719696, "vtot": 332.09762651507486, "alpha": 235.201145, "p_int": 21.28081336262708, "sasa_P": 23.389933670961902, "pyr_val": 0.9786617924426875, "dip_norm": 1.8528845080036696, "far_vbur": 4.860517683839582, "far_vtot": 11.905620402085734, "near_vbur": 64.08423555335737, "near_vtot": 330.0884730015691, "ovbur_max": 22.052996301737384, "ovbur_min": 0.0, "ovtot_max": 125.53497604633843, "ovtot_min": 0.0, "pyr_alpha": 18.434520198291924, "qvbur_max": 26.738675219971228, "qvbur_min": 12.425208275714615, "qvtot_max": 131.67322086304756, "qvtot_min": 58.32346713867196, "cone_angle": 192.68628735706187, "p_int_area": 368.73593205821595, "p_int_atom": 27.966631771112183, "sasa_volume": 834.0359629660607, "EA_delta_SCC": 1.8467, "IP_delta_SCC": 6.8944, "HOMO_LUMO_gap": 3.742754545656, "sasa_volume_P": 35.03968069623389, "max_delta_qvbur": 15.350843620184005, "max_delta_qvtot": 94.98015740316413, "nucleophilicity": -6.5789, "p_int_atom_area": 20.397161765347093, "p_int_times_p_int_area": 7844.816565985279, "global_electrophilicity_index": 1.8921, "p_int_atom_times_p_int_atom_area": 487.6059535510651}, "min_data": {"B1": 3.402862373210885, "B5": 6.226469137380452, "lval": 7.189457352090434, "sasa": 483.1126352038334, "vbur": 49.549306172666824, "vtot": 326.83886783597393, "alpha": 235.026257, "p_int": 20.789627737751598, "sasa_P": 9.639972663021487, "pyr_val": 0.9291514459239648, "dip_norm": 0.4998209679475242, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.54930617266682, "near_vtot": 320.19200611298913, "ovbur_max": 14.406714285913006, "ovbur_min": 0.0, "ovtot_max": 107.0198734676502, "ovtot_min": 0.0, "pyr_alpha": 9.706388615225084, "qvbur_max": 14.406714285913006, "qvbur_min": 10.443702265516226, "qvtot_max": 108.05603184070674, "qvtot_min": 36.69306345988343, "cone_angle": 146.2846010323364, "p_int_area": 351.84690489900413, "p_int_atom": 23.905578587873087, "sasa_volume": 797.7132071423698, "EA_delta_SCC": 1.337, "IP_delta_SCC": 6.5789, "HOMO_LUMO_gap": 3.434864995835, "sasa_volume_P": 12.811062515508588, "max_delta_qvbur": 3.426839805872511, "max_delta_qvtot": 49.05661855957372, "nucleophilicity": -6.8944, "p_int_atom_area": 13.998052191904865, "p_int_times_p_int_area": 7470.695255189657, "global_electrophilicity_index": 1.4954, "p_int_atom_times_p_int_atom_area": 391.4783711638131}, "boltzmann_averaged_data": {"B1": 3.8987090388826133, "B5": 7.515763066608076, "lval": 7.548448163152429, "sasa": 513.6227621434037, "vbur": 67.9031244399688, "vtot": 328.8065040171379, "alpha": 235.1976911611716, "p_int": 20.810950346963537, "B1_std": 0.07691745106466956, "B5_std": 0.024729939172302068, "sasa_P": 11.59090993999299, "pyr_val": 0.9774809691159162, "dip_norm": 0.7864387511269073, "far_vbur": 4.661269667193468, "far_vtot": 7.347330646070231, "lval_std": 0.06736635249562727, "sasa_std": 1.005363846654392, "vbur_std": 1.4405757501777945, "vtot_std": 0.4425438865674831, "alpha_std": 0.019243849464557785, "near_vbur": 63.24185477277535, "near_vtot": 321.4576072680832, "ovbur_max": 21.771754844520046, "ovbur_min": 0.0, "ovtot_max": 108.28039092606554, "ovtot_min": 0.0, "p_int_std": 0.06026022706519377, "pyr_alpha": 9.79473701451199, "qvbur_max": 26.203938212946305, "qvbur_min": 11.090590370572404, "qvtot_max": 113.20845723701034, "qvtot_min": 45.226706356931516, "cone_angle": 190.72380448777383, "p_int_area": 364.14757727098794, "p_int_atom": 27.13375589716768, "sasa_P_std": 0.8608814674589894, "pyr_val_std": 0.0012778979027170993, "sasa_volume": 824.0093310137199, "EA_delta_SCC": 1.3897520875208753, "IP_delta_SCC": 6.62248855488555, "dip_norm_std": 0.034817241669124234, "far_vbur_std": 0.6569077223564596, "far_vtot_std": 0.8995522155487161, "HOMO_LUMO_gap": 3.5270128675217283, "near_vbur_std": 0.8304393830774008, "near_vtot_std": 1.231555413841863, "ovbur_max_std": 0.47491956999370477, "ovbur_min_std": 0.0, "ovtot_max_std": 1.7026406472191848, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.2971837009262423, "qvbur_max_std": 1.0742173731553766, "qvbur_min_std": 0.17973244953943798, "qvtot_max_std": 1.4873106047751499, "qvtot_min_std": 2.015133338105579, "sasa_volume_P": 15.277069285556859, "cone_angle_std": 5.702391569773254, "p_int_area_std": 0.920639160240883, "p_int_atom_std": 0.2948919565936657, "max_delta_qvbur": 15.094413080947891, "max_delta_qvtot": 66.43238417437608, "nucleophilicity": -6.62248855488555, "p_int_atom_area": 14.720521887026058, "sasa_volume_std": 1.050535720041222, "EA_delta_SCC_std": 0.024637676058591962, "IP_delta_SCC_std": 0.015545115445592768, "HOMO_LUMO_gap_std": 0.01170777135462791, "sasa_volume_P_std": 1.3108713730881552, "max_delta_qvbur_std": 1.0296643246117652, "max_delta_qvtot_std": 1.3875994031109347, "nucleophilicity_std": 0.015545115445592768, "p_int_atom_area_std": 0.2994012993786848, "p_int_times_p_int_area": 7578.304768373176, "p_int_times_p_int_area_std": 39.75185028101868, "global_electrophilicity_index": 1.5335918959189592, "p_int_atom_times_p_int_atom_area": 399.34785640495926, "global_electrophilicity_index_std": 0.017581634607262243, "p_int_atom_times_p_int_atom_area_std": 4.5844432516511695}} {"max_data": {"pyr_P": "0.962085", "pyr_alpha": "19.98251", "qpole_amp": "10.477575", "vbur_vbur": "59.7523", "sterimol_L": "8.813236", "sterimol_B1": "4.360853", "sterimol_B5": "7.1232667", "dipolemoment": "3.07688", "qpoletens_xx": "7.790694", "qpoletens_yy": "2.0029128", "qpoletens_zz": "-6.0272374", "sterimol_burL": "7.5402036", "vbur_far_vbur": "2.0210605", "vbur_far_vtot": "9.1393385", "sterimol_burB1": "4.1683064", "sterimol_burB5": "6.9144635", "vbur_near_vbur": "57.697372", "vbur_near_vtot": "334.66968", "vbur_ovbur_max": "20.509483", "vbur_ovbur_min": "0.0013748069", "vbur_ovtot_max": "122.09506", "vbur_ovtot_min": "-0.31435946", "vbur_qvbur_max": "21.673887", "vbur_qvbur_min": "10.9846115", "vbur_qvtot_max": "124.36923", "vbur_qvtot_min": "57.042694", "vbur_max_delta_qvbur": "11.606185", "vbur_max_delta_qvtot": "64.12304"}, "min_data": {"pyr_P": "0.9188494", "pyr_alpha": "13.630854", "qpole_amp": "9.149843", "vbur_vbur": "46.26961", "sterimol_L": "7.7035413", "sterimol_B1": "3.474856", "sterimol_B5": "6.557058", "dipolemoment": "2.57373", "qpoletens_xx": "5.698952", "qpoletens_yy": "-1.668814", "qpoletens_zz": "-7.8469462", "sterimol_burL": "7.1572905", "vbur_far_vbur": "0.36744845", "vbur_far_vtot": "-0.54616237", "sterimol_burB1": "3.4629707", "sterimol_burB5": "6.092239", "vbur_near_vbur": "47.68695", "vbur_near_vtot": "324.3837", "vbur_ovbur_max": "15.076951", "vbur_ovbur_min": "0.0057754037", "vbur_ovtot_max": "102.54057", "vbur_ovtot_min": "-0.025106646", "vbur_qvbur_max": "14.942109", "vbur_qvbur_min": "9.548753", "vbur_qvtot_max": "108.21104", "vbur_qvtot_min": "49.01948", "vbur_max_delta_qvbur": "4.992424", "vbur_max_delta_qvtot": "42.795425"}, "delta_data": {"pyr_P": "0.0417815", "pyr_alpha": "6.9670887", "qpole_amp": "2.8370929", "vbur_vbur": "12.272623", "sterimol_L": "1.5468072", "sterimol_B1": "1.0026958", "sterimol_B5": "0.509269", "dipolemoment": "1.2184317", "qpoletens_xx": "2.739766", "qpoletens_yy": "3.6914845", "qpoletens_zz": "3.526394", "sterimol_burL": "0.3841912", "vbur_far_vbur": "2.665046", "vbur_far_vtot": "8.698027", "sterimol_burB1": "0.734986", "sterimol_burB5": "0.81579065", "vbur_near_vbur": "9.409738", "vbur_near_vtot": "8.828926", "vbur_ovbur_max": "5.2908797", "vbur_ovbur_min": "-0.0020762263", "vbur_ovtot_max": "15.729331", "vbur_ovtot_min": "0.040647026", "vbur_qvbur_max": "8.212827", "vbur_qvbur_min": "0.59413445", "vbur_qvtot_max": "11.813738", "vbur_qvtot_min": "4.9991555", "vbur_max_delta_qvbur": "5.62825", "vbur_max_delta_qvtot": "20.945862"}, "vburminconf_data": {"pyr_P": "0.9206474", "pyr_alpha": "20.341122", "qpole_amp": "11.102175", "vbur_vbur": "46.678135", "sterimol_L": "9.237275", "sterimol_B1": "3.6239293", "sterimol_B5": "6.552669", "dipolemoment": "2.7841172", "qpoletens_xx": "7.995744", "qpoletens_yy": "-0.3966507", "qpoletens_zz": "-7.435491", "sterimol_burL": "7.4104743", "vbur_far_vbur": "-0.03693956", "vbur_far_vtot": "-1.1518984", "sterimol_burB1": "3.5516558", "sterimol_burB5": "6.218028", "vbur_near_vbur": "47.604504", "vbur_near_vtot": "335.4868", "vbur_ovbur_max": "15.257453", "vbur_ovbur_min": "-0.0115935225", "vbur_ovtot_max": "113.9883", "vbur_ovtot_min": "-0.0011405017", "vbur_qvbur_max": "15.206798", "vbur_qvbur_min": "9.983844", "vbur_qvtot_max": "112.97468", "vbur_qvtot_min": "51.815178", "vbur_max_delta_qvbur": "5.4753184", "vbur_max_delta_qvtot": "53.829952"}, "boltzmann_averaged_data": {"nbo_P": "1.0575264", "nmr_P": "139.09726", "pyr_P": "0.9567398", "fmo_mu": "-0.1445988", "vmin_r": "1.9127785", "volume": "376.0366", "Pint_dP": "4.091073", "fmo_eta": "0.19092448", "fukui_m": "0.16105187", "fukui_p": "0.1773805", "nuesp_P": "-54.137394", "somo_ra": "0.044398956", "somo_rc": "-0.38600448", "nbo_P_ra": "0.92600083", "nbo_P_rc": "1.2620909", "efg_amp_P": "2.5210543", "fmo_omega": "0.05464126", "pyr_alpha": "13.932491", "qpole_amp": "9.762386", "vbur_vbur": "53.82339", "vbur_vtot": "336.27734", "vmin_vmin": "-0.03688307", "E_solv_cds": "-7.7295604", "Pint_P_int": "19.703127", "Pint_P_max": "33.639748", "Pint_P_min": "13.158867", "fmo_e_homo": "-0.23587605", "fmo_e_lumo": "-0.048398152", "nbo_lp_P_e": "-0.35434908", "sphericity": "0.7563591", "sterimol_L": "7.746646", "E_oxidation": "0.2841233", "E_reduction": "-0.0009257725", "sterimol_B1": "4.266257", "sterimol_B5": "7.092818", "E_solv_total": "-14.832637", "dipolemoment": "2.4379668", "efgtens_xx_P": "-1.7470797", "efgtens_yy_P": "-0.10513569", "efgtens_zz_P": "1.8427092", "nbo_bd_e_avg": "-0.54315615", "nbo_bd_e_max": "-0.48582244", "nbo_lp_P_occ": "1.9346015", "qpoletens_xx": "5.746179", "qpoletens_yy": "2.514544", "qpoletens_zz": "-7.360771", "surface_area": "333.4401", "E_solv_elstat": "-7.2080936", "nbo_bds_e_avg": "0.19662237", "nbo_bds_e_min": "0.14975013", "nmrtens_sxx_P": "-43.64393", "nmrtens_syy_P": "217.53293", "nmrtens_szz_P": "266.3106", "spindens_P_ra": "0.23308572", "spindens_P_rc": "0.19165608", "sterimol_burL": "7.262475", "vbur_far_vbur": "0.33029085", "vbur_far_vtot": "3.586678", "nbo_bd_occ_avg": "1.9569913", "nbo_bd_occ_min": "1.9530444", "sterimol_burB1": "4.0800133", "sterimol_burB5": "6.8384066", "vbur_near_vbur": "53.819324", "vbur_near_vtot": "333.70068", "vbur_ovbur_max": "18.087769", "vbur_ovbur_min": "0.045618232", "vbur_ovtot_max": "110.45695", "vbur_ovtot_min": "0.013696095", "vbur_qvbur_max": "18.42782", "vbur_qvbur_min": "9.938236", "vbur_qvtot_max": "115.44768", "vbur_qvtot_min": "57.394714", "nbo_bds_occ_avg": "0.049693078", "nbo_bds_occ_max": "0.054954454", "nbo_lp_P_percent_s": "57.259136", "vbur_max_delta_qvbur": "8.826049", "vbur_max_delta_qvtot": "53.436882", "vbur_ratio_vbur_vtot": "0.16406341"}} Clc1ccccc1OP(c1ccccc1)c1ccccc1 {"max_data": {"B1": 4.627704469742508, "B5": 7.393778958179693, "lval": 8.150054694557952, "sasa": 517.50391478273, "vbur": 59.620019071557465, "vtot": 331.907231924914, "alpha": 235.149047, "p_int": 21.01757435371352, "sasa_P": 16.129954258769367, "pyr_val": 0.9559140848275192, "dip_norm": 1.0926014827008061, "far_vbur": 0.7692905686652576, "far_vtot": 6.8433668464384345, "near_vbur": 59.44518030595173, "near_vtot": 331.21856421440464, "ovbur_max": 19.908307443640304, "ovbur_min": 0.0, "ovtot_max": 114.70440139338854, "ovtot_min": 0.0, "pyr_alpha": 17.16659274195636, "qvbur_max": 20.01321070300375, "qvbur_min": 12.19208992157363, "qvtot_max": 115.02018849459085, "qvtot_min": 62.557424748179145, "cone_angle": 177.71554429725555, "p_int_area": 372.73687353977965, "p_int_atom": 27.8863596733599, "sasa_volume": 833.0466954637394, "EA_delta_SCC": 1.6411, "IP_delta_SCC": 6.7371, "HOMO_LUMO_gap": 3.423966558453, "sasa_volume_P": 16.63957269858492, "max_delta_qvbur": 8.39226074907554, "max_delta_qvtot": 54.874228817413105, "nucleophilicity": -6.5632, "p_int_atom_area": 16.197746107775632, "p_int_times_p_int_area": 7823.639713301779, "global_electrophilicity_index": 1.7155, "p_int_atom_times_p_int_atom_area": 436.62085723837026}, "min_data": {"B1": 4.145669891476268, "B5": 7.12257488018594, "lval": 7.386055943300761, "sasa": 508.51378235039846, "vbur": 52.45162968172211, "vtot": 328.24285594878853, "alpha": 235.023042, "p_int": 20.76978317304232, "sasa_P": 10.849969231720241, "pyr_val": 0.9370473661203557, "dip_norm": 0.6640338846775818, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 52.45162968172212, "near_vtot": 321.5083044374209, "ovbur_max": 16.458155802353694, "ovbur_min": 0.0, "ovtot_max": 104.45395614739982, "ovtot_min": 0.0, "pyr_alpha": 14.14061827056262, "qvbur_max": 16.458155802353694, "qvbur_min": 10.000777392648349, "qvtot_max": 109.67132518468125, "qvtot_min": 51.755874047266936, "cone_angle": 158.72925030007298, "p_int_area": 360.8354792229104, "p_int_atom": 25.763515334165504, "sasa_volume": 820.5906393830069, "EA_delta_SCC": 1.3432, "IP_delta_SCC": 6.5632, "HOMO_LUMO_gap": 3.294035063167, "sasa_volume_P": 10.677526408814911, "max_delta_qvbur": 6.445722491998296, "max_delta_qvtot": 36.41046390386947, "nucleophilicity": -6.7371, "p_int_atom_area": 13.898066104819835, "p_int_times_p_int_area": 7517.846053618726, "global_electrophilicity_index": 1.4981, "p_int_atom_times_p_int_atom_area": 379.4203974680812}, "boltzmann_averaged_data": {"B1": 4.49509555980529, "B5": 7.272810454879125, "lval": 7.861535108462963, "sasa": 508.7392353960772, "vbur": 59.18168569779275, "vtot": 328.8463839215362, "alpha": 235.13259717391, "p_int": 20.835538818172658, "B1_std": 0.018342268163449763, "B5_std": 0.02017759919527103, "sasa_P": 12.187822237844458, "pyr_val": 0.9458916502324465, "dip_norm": 0.7476697044032794, "far_vbur": 0.03843072627191244, "far_vtot": 2.75330073648071, "lval_std": 0.03862438779173601, "sasa_std": 1.3078452232150455, "vbur_std": 0.5805014737833177, "vtot_std": 0.30859904127317217, "alpha_std": 0.013785662711723434, "near_vbur": 59.14325497152084, "near_vtot": 326.0166523902147, "ovbur_max": 19.865639091926816, "ovbur_min": 0.0, "ovtot_max": 107.09811289399352, "ovtot_min": 0.0, "p_int_std": 0.019144653037948014, "pyr_alpha": 15.839118505991706, "qvbur_max": 19.91561651995686, "qvbur_min": 11.363954335805154, "qvtot_max": 109.85382588738999, "qvtot_min": 61.324377802144966, "cone_angle": 164.07379622949296, "p_int_area": 360.99935318593754, "p_int_atom": 27.29147453508913, "sasa_P_std": 0.4255421103093702, "pyr_val_std": 0.001326834458417753, "sasa_volume": 820.7923618841619, "EA_delta_SCC": 1.5117497400000002, "IP_delta_SCC": 6.566356407000002, "dip_norm_std": 0.03371357438054824, "far_vbur_std": 0.025235564111983782, "far_vtot_std": 0.45943286746190937, "HOMO_LUMO_gap": 3.356557917252565, "near_vbur_std": 0.5923018557443464, "near_vtot_std": 0.38515933628013055, "ovbur_max_std": 0.246447716368811, "ovbur_min_std": 0.0, "ovtot_max_std": 0.5475483818257576, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.22827910564418244, "qvbur_max_std": 0.23417282103725884, "qvbur_min_std": 0.1919634233817684, "qvtot_max_std": 0.40325955139935127, "qvtot_min_std": 1.1603244527710614, "sasa_volume_P": 12.142622453763591, "cone_angle_std": 1.6395349576179818, "p_int_area_std": 0.8874728532925373, "p_int_atom_std": 0.15184329066481753, "max_delta_qvbur": 6.648310850566738, "max_delta_qvtot": 48.2243666538008, "nucleophilicity": -6.566356407000002, "p_int_atom_area": 13.953178436021107, "sasa_volume_std": 1.214271745747662, "EA_delta_SCC_std": 0.01773772422077873, "IP_delta_SCC_std": 0.020969249374985968, "HOMO_LUMO_gap_std": 0.006758137958762713, "sasa_volume_P_std": 0.47365938370195093, "max_delta_qvbur_std": 0.22604523928272321, "max_delta_qvtot_std": 0.705462046435591, "nucleophilicity_std": 0.020969249374985968, "p_int_atom_area_std": 0.2976409405907979, "p_int_times_p_int_area": 7521.624277107329, "p_int_times_p_int_area_std": 22.750527666060233, "global_electrophilicity_index": 1.613863639, "p_int_atom_times_p_int_atom_area": 380.77918231458943, "global_electrophilicity_index_std": 0.012308090898985064, "p_int_atom_times_p_int_atom_area_std": 7.12667529364795}} \\x048414000200002100184488b510348458c4084903054a282d2041001002a008c1b40102440400c1040688486410002952c510480208100068e095240140a40088100122426008c28550008c0350d8000e1520000822800411810c5005528807000144c10001480ca02406200a004c08b5801302200040a50040203300427004 \\x2000000400200a000100000000080000000008000080c00000004000008000000000000000000000080002001040000026000000000004000040000000000100 pco (-2.131321668624878, -2.397469043731689, -1.9392735958099363, 3.056647539138794) (1.891801714897156, 3.9267640113830566) -143 COP(OC)c1ccccc1 170.1479949951172 {"max_data": {"pyr_P": 0.9680342017801099, "pyr_alpha": 16.55237130369787, "qpole_amp": 10.427220420648645, "vbur_vbur": 51.36751529551822, "vbur_vtot": 189.86100059072268, "sterimol_L": 8.125515613730803, "sterimol_B1": 3.797893027220785, "sterimol_B5": 6.1759137154786625, "dipolemoment": 2.0336302966109137, "qpoletens_xx": 6.751799253367435, "qpoletens_yy": 1.928240621775486, "qpoletens_zz": -2.24406809840614, "sterimol_burL": 7.643521721382462, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.620483612439683, "sterimol_burB5": 6.077887504678434, "vbur_near_vbur": 51.36751529551822, "vbur_near_vtot": 189.84638060468393, "vbur_ovbur_max": 15.828721040913253, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.98869014613392, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.828721040913253, "vbur_qvbur_min": 10.39001683761281, "vbur_qvtot_max": 90.98869014613392, "vbur_qvtot_min": 36.960436947460806, "vbur_max_delta_qvbur": 6.417670959894522, "vbur_max_delta_qvtot": 65.65147534386327}, "min_data": {"pyr_P": 0.940435045744155, "pyr_alpha": 12.042654252114918, "qpole_amp": 3.046413103206539, "vbur_vbur": 44.65071560444216, "vbur_vtot": 189.15805845381126, "sterimol_L": 6.9454343180031906, "sterimol_B1": 2.332856002684066, "sterimol_B5": 5.85565426704438, "dipolemoment": 0.8300739992124848, "qpoletens_xx": 2.051246175136183, "qpoletens_yy": -1.945907573513618, "qpoletens_zz": -8.145685538720828, "sterimol_burL": 6.935361471135419, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.332856002684066, "sterimol_burB5": 5.543682252301401, "vbur_near_vbur": 44.65071560444217, "vbur_near_vtot": 187.5591235782202, "vbur_ovbur_max": 14.1709621635611, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 76.70871878180428, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.1709621635611, "vbur_qvbur_min": 9.163170677906768, "vbur_qvtot_max": 76.70871878180428, "vbur_qvtot_min": 19.25506498353314, "vbur_max_delta_qvbur": 3.0582252097020195, "vbur_max_delta_qvtot": 38.98582058591192}, "delta_data": {"pyr_P": 0.027599156035954864, "pyr_alpha": 4.509717051582953, "qpole_amp": 7.380807317442105, "vbur_vbur": 6.716799691076055, "vbur_vtot": 0.7029421369114175, "sterimol_L": 1.1800812957276126, "sterimol_B1": 1.465037024536719, "sterimol_B5": 0.32025944843428267, "dipolemoment": 1.2035562973984288, "qpoletens_xx": 4.700553078231252, "qpoletens_yy": 3.874148195289104, "qpoletens_zz": 5.901617440314688, "sterimol_burL": 0.708160250247043, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 1.2876276097556172, "sterimol_burB5": 0.5342052523770331, "vbur_near_vbur": 6.716799691076048, "vbur_near_vtot": 2.2872570264637204, "vbur_ovbur_max": 1.657758877352153, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 14.27997136432964, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 1.657758877352153, "vbur_qvbur_min": 1.2268461597060423, "vbur_qvtot_max": 14.27997136432964, "vbur_qvtot_min": 17.705371963927668, "vbur_max_delta_qvbur": 3.359445750192503, "vbur_max_delta_qvtot": 26.66565475795135}, "vburminconf_data": {"pyr_P": 0.940435045744155, "pyr_alpha": 16.55237130369787, "qpole_amp": 7.322261503602607, "vbur_vbur": 44.65071560444216, "vbur_vtot": 189.15805845381126, "sterimol_L": 6.9454343180031906, "sterimol_B1": 3.3610630827311967, "sterimol_B5": 5.984574258889741, "dipolemoment": 1.491686649786964, "qpoletens_xx": 5.826526561572049, "qpoletens_yy": -1.752897849535203, "qpoletens_zz": -4.073628712036846, "sterimol_burL": 6.935361471135419, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.272937285260051, "sterimol_burB5": 5.653782938933109, "vbur_near_vbur": 44.65071560444217, "vbur_near_vtot": 189.1580584538113, "vbur_ovbur_max": 14.738888390944203, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 81.18097714423608, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.738888390944203, "vbur_qvbur_min": 9.163170677906768, "vbur_qvtot_max": 81.18097714423608, "vbur_qvtot_min": 33.34745223877303, "vbur_max_delta_qvbur": 5.5757177130374345, "vbur_max_delta_qvtot": 44.68306159024816}, "boltzmann_averaged_data": {"nbo_P": 1.298919502957108, "nmr_P": 102.83297179068092, "pyr_P": 0.9423001904476838, "fmo_mu": -0.13910675373683085, "vmin_r": 1.85924238058948, "volume": 218.93254657062963, "Pint_dP": 3.338358111736141, "fmo_eta": 0.21849889526133826, "fukui_m": 0.36984808016528664, "fukui_p": 0.13352406832755384, "nuesp_P": -54.125110036044646, "somo_ra": 0.08343037329932386, "somo_rc": -0.4372365156947648, "nbo_P_ra": 1.165395434629554, "nbo_P_rc": 1.6687675831223947, "efg_amp_P": 2.3290535146171214, "fmo_omega": 0.04428586605185577, "pyr_alpha": 16.22653064416925, "qpole_amp": 7.419237843801991, "vbur_vbur": 45.29364468869043, "vbur_vtot": 189.2180602114095, "vmin_vmin": -0.042786691990503764, "E_solv_cds": -1.6817372140301043, "Pint_P_int": 17.3553044606315, "Pint_P_max": 29.404169148982234, "Pint_P_min": 11.830559202116312, "fmo_e_homo": -0.2483562013675, "fmo_e_lumo": -0.02985730610616172, "nbo_lp_P_e": -0.3578209348747728, "sphericity": 0.8239663998692699, "sterimol_L": 7.02050842291418, "E_oxidation": 0.30894074158975027, "E_reduction": 0.026994038930657945, "sterimol_B1": 3.3572026158162687, "sterimol_B5": 5.981553355497286, "E_solv_total": -6.49700710994321, "dipolemoment": 1.4463274412933487, "efgtens_xx_P": -1.2771453327144255, "efgtens_yy_P": -0.5815585194454488, "efgtens_zz_P": 1.8587038521598744, "nbo_bd_e_avg": -0.6019079793337084, "nbo_bd_e_max": -0.48420919167198695, "nbo_lp_P_occ": 1.951669532413225, "qpoletens_xx": 5.82114102318206, "qpoletens_yy": -1.6028172590587886, "qpoletens_zz": -4.21832376412327, "surface_area": 213.2045124635174, "E_solv_elstat": -4.815269895913106, "nbo_bds_e_avg": 0.20848995263458403, "nbo_bds_e_min": 0.19461883980118802, "nmrtens_sxx_P": -25.21396706055558, "nmrtens_syy_P": 98.2228320743991, "nmrtens_szz_P": 235.4899619340386, "spindens_P_ra": 0.13222825069771663, "spindens_P_rc": 0.44238340251179237, "sterimol_burL": 6.97945410921332, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9706377886573434, "nbo_bd_occ_min": 1.9619090290495045, "sterimol_burB1": 3.271479585178661, "sterimol_burB5": 5.6736325696937016, "vbur_near_vbur": 45.293644688690435, "vbur_near_vtot": 189.15479081648292, "vbur_ovbur_max": 14.79106836796797, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 81.4270701434999, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.79106836796797, "vbur_qvbur_min": 9.24099597600672, "vbur_qvtot_max": 81.4270701434999, "vbur_qvtot_min": 32.99757895204571, "nbo_bds_occ_avg": 0.06767230974880582, "nbo_bds_occ_max": 0.08031449302912849, "nbo_lp_P_percent_s": 60.725544142694446, "vbur_max_delta_qvbur": 5.506500140798044, "vbur_max_delta_qvtot": 45.54031873229745, "vbur_ratio_vbur_vtot": 0.23936393356133295}} {"max_data": {"B1": 3.685592058827574, "B5": 6.270541771081593, "lval": 7.923987212871993, "sasa": 365.2515531670552, "vbur": 54.631286292940345, "vtot": 188.31918975220464, "alpha": 125.924285, "p_int": 17.841463089476044, "sasa_P": 24.389930835175743, "pyr_val": 0.9753194551241179, "dip_norm": 1.074564562974231, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.631286292940345, "near_vtot": 188.31918975220464, "ovbur_max": 16.399876213818448, "ovbur_min": 0.0, "ovtot_max": 90.26203514605787, "ovtot_min": 0.0, "pyr_alpha": 16.161926085134706, "qvbur_max": 16.399876213818448, "qvbur_min": 11.481078941443618, "qvtot_max": 90.26203514605787, "qvtot_min": 33.327270084011246, "cone_angle": 170.2076515282058, "p_int_area": 243.0857249990174, "p_int_atom": 23.244812842459318, "sasa_volume": 532.1594159377024, "EA_delta_SCC": 1.5865, "IP_delta_SCC": 7.3456, "HOMO_LUMO_gap": 4.061030396354, "sasa_volume_P": 33.27961275339714, "max_delta_qvbur": 5.746367429575333, "max_delta_qvtot": 65.99891483793265, "nucleophilicity": -6.9483, "p_int_atom_area": 22.196911332877715, "p_int_times_p_int_area": 4285.610213651698, "global_electrophilicity_index": 1.7089, "p_int_atom_times_p_int_atom_area": 466.5861761254915}, "min_data": {"B1": 2.351426236681423, "B5": 5.898544260242698, "lval": 6.530276778284223, "sasa": 349.86096417967514, "vbur": 48.232187471770246, "vtot": 186.65046791084347, "alpha": 125.869168, "p_int": 17.483653583485484, "sasa_P": 15.959954740853012, "pyr_val": 0.9424242287327638, "dip_norm": 0.28796006667591945, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 48.232187471770246, "near_vtot": 182.52415123391177, "ovbur_max": 14.68645631088219, "ovbur_min": 0.0, "ovtot_max": 77.45724768400811, "ovtot_min": 0.0, "pyr_alpha": 10.14297936415363, "qvbur_max": 14.68645631088219, "qvbur_min": 10.105680652011793, "qvtot_max": 77.45724768400811, "qvtot_min": 19.403980161404426, "cone_angle": 146.01677696683987, "p_int_area": 232.58646480926384, "p_int_atom": 20.957499698516443, "sasa_volume": 517.5316651020083, "EA_delta_SCC": 1.3497, "IP_delta_SCC": 6.9483, "HOMO_LUMO_gap": 3.644007851239, "sasa_volume_P": 20.782806571814493, "max_delta_qvbur": 3.776517337083991, "max_delta_qvtot": 42.49139637480806, "nucleophilicity": -7.3456, "p_int_atom_area": 19.197328720326677, "p_int_times_p_int_area": 4141.022511981991, "global_electrophilicity_index": 1.5616, "p_int_atom_times_p_int_atom_area": 414.4136389649264}, "boltzmann_averaged_data": {"B1": 3.0861319790989468, "B5": 6.012932107474608, "lval": 6.9841145493418315, "sasa": 353.45005401391245, "vbur": 49.6309089029694, "vtot": 186.9828483733852, "alpha": 125.88686318344185, "p_int": 17.747606943539157, "B1_std": 0.3120408166226094, "B5_std": 0.0636671891085288, "sasa_P": 22.419081815551866, "pyr_val": 0.9602211541873374, "dip_norm": 0.7066510296164125, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.4528668937404497, "sasa_std": 5.538837514384828, "vbur_std": 2.036785050141257, "vtot_std": 0.43572654852167886, "alpha_std": 0.00935268578617562, "near_vbur": 49.6309089029694, "near_vtot": 184.53644082492536, "ovbur_max": 14.87917624897651, "ovbur_min": 0.0, "ovtot_max": 83.0177022134682, "ovtot_min": 0.0, "p_int_std": 0.06826628232949859, "pyr_alpha": 13.36763403243513, "qvbur_max": 14.87917624897651, "qvbur_min": 10.334377988915502, "qvtot_max": 83.0177022134682, "qvtot_min": 28.204734164866984, "cone_angle": 152.10143062792758, "p_int_area": 236.9596187663412, "p_int_atom": 21.295736759216286, "sasa_P_std": 2.758733469524775, "pyr_val_std": 0.007836962078676393, "sasa_volume": 520.7877110626295, "EA_delta_SCC": 1.428058453584536, "IP_delta_SCC": 7.256711266112663, "dip_norm_std": 0.23289254476735632, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.9042211807344565, "near_vbur_std": 2.03678505014126, "near_vtot_std": 1.574936510886043, "ovbur_max_std": 0.29244557012718503, "ovbur_min_std": 0.0, "ovtot_max_std": 4.039579229389523, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.5056409915034916, "qvbur_max_std": 0.29244557012718503, "qvbur_min_std": 0.17174768258372697, "qvtot_max_std": 4.039579229389523, "qvtot_min_std": 3.79897733216076, "sasa_volume_P": 30.5627117186491, "cone_angle_std": 7.341124595784291, "p_int_area_std": 3.0710006235534344, "p_int_atom_std": 0.5480586081081131, "max_delta_qvbur": 4.317838604745883, "max_delta_qvtot": 52.00808025475023, "nucleophilicity": -7.256711266112663, "p_int_atom_area": 21.166898356084953, "sasa_volume_std": 5.46718789082006, "EA_delta_SCC_std": 0.09997757546804481, "IP_delta_SCC_std": 0.10605555211056765, "HOMO_LUMO_gap_std": 0.08885764304236864, "sasa_volume_P_std": 3.779806548562019, "max_delta_qvbur_std": 0.24737590865039627, "max_delta_qvtot_std": 7.113971608830976, "nucleophilicity_std": 0.10605555211056765, "p_int_atom_area_std": 0.7607155425480564, "p_int_times_p_int_area": 4205.2835080734285, "p_int_times_p_int_area_std": 40.934273417090274, "global_electrophilicity_index": 1.6194902689026889, "p_int_atom_times_p_int_atom_area": 450.3814725759572, "global_electrophilicity_index_std": 0.057137248495691025, "p_int_atom_times_p_int_atom_area_std": 7.4839912656536}} {"max_data": {"pyr_P": "0.958135", "pyr_alpha": "19.900076", "qpole_amp": "8.028616", "vbur_vbur": "49.870632", "sterimol_L": "7.295826", "sterimol_B1": "3.3141432", "sterimol_B5": "6.043589", "dipolemoment": "2.5417023", "qpoletens_xx": "6.2382703", "qpoletens_yy": "1.7231594", "qpoletens_zz": "-2.9794724", "sterimol_burL": "7.1649213", "vbur_far_vbur": "-1.4169787", "vbur_far_vtot": "-3.7449021", "sterimol_burB1": "3.3577197", "sterimol_burB5": "5.7714696", "vbur_near_vbur": "51.02274", "vbur_near_vtot": "192.5671", "vbur_ovbur_max": "18.07272", "vbur_ovbur_min": "-0.17245826", "vbur_ovtot_max": "75.061905", "vbur_ovtot_min": "0.06649988", "vbur_qvbur_max": "16.92874", "vbur_qvbur_min": "9.8813925", "vbur_qvtot_max": "73.20258", "vbur_qvtot_min": "36.738644", "vbur_max_delta_qvbur": "5.977149", "vbur_max_delta_qvtot": "44.178368"}, "min_data": {"pyr_P": "0.9168727", "pyr_alpha": "13.881537", "qpole_amp": "4.7830014", "vbur_vbur": "42.6132", "sterimol_L": "6.9617057", "sterimol_B1": "2.930945", "sterimol_B5": "5.750343", "dipolemoment": "1.0548013", "qpoletens_xx": "2.8657463", "qpoletens_yy": "-1.2670306", "qpoletens_zz": "-6.3459105", "sterimol_burL": "6.9039164", "vbur_far_vbur": "0.38724846", "vbur_far_vtot": "-0.44292906", "sterimol_burB1": "2.9576125", "sterimol_burB5": "5.576861", "vbur_near_vbur": "42.637276", "vbur_near_vtot": "190.48044", "vbur_ovbur_max": "13.103315", "vbur_ovbur_min": "-0.015547204", "vbur_ovtot_max": "72.695404", "vbur_ovtot_min": "-0.030684326", "vbur_qvbur_max": "13.338377", "vbur_qvbur_min": "9.02373", "vbur_qvtot_max": "69.552956", "vbur_qvtot_min": "24.375246", "vbur_max_delta_qvbur": "3.9139786", "vbur_max_delta_qvtot": "36.866425"}, "delta_data": {"pyr_P": "0.042742416", "pyr_alpha": "6.2158155", "qpole_amp": "3.2813654", "vbur_vbur": "8.393832", "sterimol_L": "0.31902793", "sterimol_B1": "0.39287412", "sterimol_B5": "0.24102211", "dipolemoment": "1.6341908", "qpoletens_xx": "1.905669", "qpoletens_yy": "3.0402303", "qpoletens_zz": "2.9663553", "sterimol_burL": "0.2553993", "vbur_far_vbur": "-0.8763781", "vbur_far_vtot": "-1.5872066", "sterimol_burB1": "0.4598855", "sterimol_burB5": "0.1897558", "vbur_near_vbur": "8.123909", "vbur_near_vtot": "0.88423085", "vbur_ovbur_max": "3.6860406", "vbur_ovbur_min": "-0.0494388", "vbur_ovtot_max": "4.100093", "vbur_ovtot_min": "0.015946455", "vbur_qvbur_max": "3.326508", "vbur_qvbur_min": "0.19168937", "vbur_qvtot_max": "3.4814966", "vbur_qvtot_min": "6.7699776", "vbur_max_delta_qvbur": "3.9438243", "vbur_max_delta_qvtot": "10.435148"}, "vburminconf_data": {"pyr_P": "0.924567", "pyr_alpha": "20.060438", "qpole_amp": "7.532691", "vbur_vbur": "43.437504", "sterimol_L": "7.0532055", "sterimol_B1": "3.5042148", "sterimol_B5": "5.8236856", "dipolemoment": "2.0999873", "qpoletens_xx": "4.89554", "qpoletens_yy": "-0.35871395", "qpoletens_zz": "-4.6530313", "sterimol_burL": "6.89393", "vbur_far_vbur": "0.09964581", "vbur_far_vtot": "-1.8135065", "sterimol_burB1": "3.3154628", "sterimol_burB5": "5.668547", "vbur_near_vbur": "42.562996", "vbur_near_vtot": "192.12846", "vbur_ovbur_max": "13.138853", "vbur_ovbur_min": "-0.012150628", "vbur_ovtot_max": "73.73328", "vbur_ovtot_min": "0.00057502574", "vbur_qvbur_max": "13.579679", "vbur_qvbur_min": "9.518307", "vbur_qvtot_max": "74.2796", "vbur_qvtot_min": "36.516827", "vbur_max_delta_qvbur": "5.2843566", "vbur_max_delta_qvtot": "40.333008"}, "boltzmann_averaged_data": {"nbo_P": "1.2901667", "nmr_P": "104.25044", "pyr_P": "0.93910307", "fmo_mu": "-0.13794304", "vmin_r": "1.8648748", "volume": "219.15256", "Pint_dP": "3.3442163", "fmo_eta": "0.21707591", "fukui_m": "0.3711486", "fukui_p": "0.20487018", "nuesp_P": "-54.122334", "somo_ra": "0.07992555", "somo_rc": "-0.4359463", "nbo_P_ra": "1.0068978", "nbo_P_rc": "1.6361609", "efg_amp_P": "2.303486", "fmo_omega": "0.04419543", "pyr_alpha": "17.270296", "qpole_amp": "7.0000086", "vbur_vbur": "45.691475", "vbur_vtot": "189.20369", "vmin_vmin": "-0.040588338", "E_solv_cds": "-1.6660541", "Pint_P_int": "17.227837", "Pint_P_max": "29.261417", "Pint_P_min": "11.8751545", "fmo_e_homo": "-0.24512139", "fmo_e_lumo": "-0.029871432", "nbo_lp_P_e": "-0.3589741", "sphericity": "0.8178146", "sterimol_L": "7.0375814", "E_oxidation": "0.3072585", "E_reduction": "0.025267385", "sterimol_B1": "3.1907506", "sterimol_B5": "5.9257383", "E_solv_total": "-6.660726", "dipolemoment": "1.5575367", "efgtens_xx_P": "-1.2558937", "efgtens_yy_P": "-0.6108655", "efgtens_zz_P": "1.8570507", "nbo_bd_e_avg": "-0.6053179", "nbo_bd_e_max": "-0.47532034", "nbo_lp_P_occ": "1.9526924", "qpoletens_xx": "4.9589663", "qpoletens_yy": "-0.7580281", "qpoletens_zz": "-4.8564343", "surface_area": "213.29076", "E_solv_elstat": "-5.209146", "nbo_bds_e_avg": "0.21052837", "nbo_bds_e_min": "0.19097823", "nmrtens_sxx_P": "-45.358032", "nmrtens_syy_P": "86.7796", "nmrtens_szz_P": "244.22057", "spindens_P_ra": "0.20379663", "spindens_P_rc": "0.43639684", "sterimol_burL": "6.9504476", "vbur_far_vbur": "-0.92226666", "vbur_far_vtot": "-3.377759", "nbo_bd_occ_avg": "1.9700824", "nbo_bd_occ_min": "1.963302", "sterimol_burB1": "3.231597", "sterimol_burB5": "5.6999726", "vbur_near_vbur": "46.061226", "vbur_near_vtot": "191.42908", "vbur_ovbur_max": "15.201936", "vbur_ovbur_min": "-0.007877651", "vbur_ovtot_max": "75.48659", "vbur_ovtot_min": "0.023849135", "vbur_qvbur_max": "14.449765", "vbur_qvbur_min": "9.490373", "vbur_qvtot_max": "70.81521", "vbur_qvtot_min": "33.849113", "nbo_bds_occ_avg": "0.06758181", "nbo_bds_occ_max": "0.0813138", "nbo_lp_P_percent_s": "60.08599", "vbur_max_delta_qvbur": "4.9805136", "vbur_max_delta_qvtot": "35.79473", "vbur_ratio_vbur_vtot": "0.24751203"}} COP(OC)c1ccccc1 {"max_data": {"B1": 3.6198114395895575, "B5": 6.212174468765946, "lval": 7.7973972503904445, "sasa": 365.0014646039186, "vbur": 50.8431130381493, "vtot": 187.62186212401906, "alpha": 125.864009, "p_int": 17.813362408237637, "sasa_P": 21.679938520156224, "pyr_val": 0.9511530616672583, "dip_norm": 1.1334068113435705, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 50.8431130381493, "near_vtot": 187.62186212401912, "ovbur_max": 14.861295076487933, "ovbur_min": 0.0, "ovtot_max": 92.19223180783717, "ovtot_min": 0.0, "pyr_alpha": 18.909891690181638, "qvbur_max": 14.861295076487933, "qvbur_min": 10.455358183223275, "qvtot_max": 92.19223180783717, "qvtot_min": 31.549067423283212, "cone_angle": 165.65760770215172, "p_int_area": 241.78650158344314, "p_int_atom": 23.241134011023284, "sasa_volume": 530.9560944618681, "EA_delta_SCC": 1.4932, "IP_delta_SCC": 7.209, "HOMO_LUMO_gap": 3.75198406472, "sasa_volume_P": 20.273144357884185, "max_delta_qvbur": 4.872173601546633, "max_delta_qvtot": 64.09945835617162, "nucleophilicity": -6.844, "p_int_atom_area": 20.297175678262054, "p_int_times_p_int_area": 4282.97093590126, "global_electrophilicity_index": 1.6333, "p_int_atom_times_p_int_atom_area": 440.2187227477517}, "min_data": {"B1": 2.5442340574609315, "B5": 6.028449433166486, "lval": 6.370716413660966, "sasa": 350.12085293351294, "vbur": 45.42311130437135, "vtot": 186.2866223182189, "alpha": 125.804191, "p_int": 17.56656716220931, "sasa_P": 13.549961575097644, "pyr_val": 0.925615359517679, "dip_norm": 0.349459582784619, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 45.423111304371346, "near_vtot": 181.27127077587198, "ovbur_max": 13.25277843291512, "ovbur_min": 0.0, "ovtot_max": 80.29605540112823, "ovtot_min": 0.0, "pyr_alpha": 14.969208128520345, "qvbur_max": 13.25277843291512, "qvbur_min": 9.406325589588832, "qvtot_max": 80.29605540112823, "qvtot_min": 18.060273265045137, "cone_angle": 147.06694789175512, "p_int_area": 231.5871123739518, "p_int_atom": 21.124608003370767, "sasa_volume": 516.6700799721752, "EA_delta_SCC": 1.2625, "IP_delta_SCC": 6.844, "HOMO_LUMO_gap": 3.409905208203, "sasa_volume_P": 12.36301183697307, "max_delta_qvbur": 3.2753128756808696, "max_delta_qvtot": 47.102581612301194, "nucleophilicity": -7.209, "p_int_atom_area": 17.497565239881084, "p_int_times_p_int_area": 4101.579955173974, "global_electrophilicity_index": 1.506, "p_int_atom_times_p_int_atom_area": 390.84457466910555}, "boltzmann_averaged_data": {"B1": 3.071098483994085, "B5": 6.038426132378208, "lval": 7.71248883377433, "sasa": 364.01546729794893, "vbur": 50.67486954045973, "vtot": 186.978198455486, "alpha": 125.80853278775001, "p_int": 17.65158153150447, "B1_std": 0.13754551165941561, "B5_std": 0.03441388988918902, "sasa_P": 14.027005822298339, "pyr_val": 0.9505338001123289, "dip_norm": 0.36700034287983996, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.213865781443799, "sasa_std": 2.2605200617674015, "vbur_std": 0.5549182430468861, "vtot_std": 0.1450808730327585, "alpha_std": 0.009889414015458996, "near_vbur": 50.67486954045974, "near_vtot": 182.4938186149462, "ovbur_max": 14.40998272179724, "ovbur_min": 0.0, "ovtot_max": 89.70976310908223, "ovtot_min": 0.0, "p_int_std": 0.02552526505641067, "pyr_alpha": 15.075578675461127, "qvbur_max": 14.40998272179724, "qvbur_min": 10.138594982110488, "qvtot_max": 89.70976310908223, "qvtot_min": 23.746288984029622, "cone_angle": 164.41920750916253, "p_int_area": 241.23317315270523, "p_int_atom": 22.868877520116897, "sasa_P_std": 1.1321655699034043, "pyr_val_std": 0.002821891918557713, "sasa_volume": 530.1097491049371, "EA_delta_SCC": 1.436103116, "IP_delta_SCC": 6.935319034, "dip_norm_std": 0.07716988801391307, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.539580654451938, "near_vbur_std": 0.5549182430468856, "near_vtot_std": 0.7511931364421378, "ovbur_max_std": 0.11935541364215664, "ovbur_min_std": 0.0, "ovtot_max_std": 1.7998691516452519, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.4206175732007957, "qvbur_max_std": 0.11935541364215664, "qvbur_min_std": 0.2523546438248533, "qvtot_max_std": 1.7998691516452519, "qvtot_min_std": 1.8369389067837882, "sasa_volume_P": 12.805297980682194, "cone_angle_std": 3.023873855543841, "p_int_area_std": 1.430585203894388, "p_int_atom_std": 0.20701549357395232, "max_delta_qvbur": 3.441410169243031, "max_delta_qvtot": 62.2869253797027, "nucleophilicity": -6.935319034, "p_int_atom_area": 17.69385092702033, "sasa_volume_std": 2.036548775420465, "EA_delta_SCC_std": 0.05411384450296009, "IP_delta_SCC_std": 0.029997651573195575, "HOMO_LUMO_gap_std": 0.04009129330050434, "sasa_volume_P_std": 1.06018973151396, "max_delta_qvbur_std": 0.34495489855791484, "max_delta_qvtot_std": 3.765341430823683, "nucleophilicity_std": 0.029997651573195575, "p_int_atom_area_std": 0.32720102282467023, "p_int_times_p_int_area": 4258.130529192221, "p_int_times_p_int_area_std": 23.180865727183253, "global_electrophilicity_index": 1.593453737, "p_int_atom_times_p_int_atom_area": 404.5976557013404, "global_electrophilicity_index_std": 0.03486740136911315, "p_int_atom_times_p_int_atom_area_std": 5.814029487844335}} \\x04000048200000000098000080104410480000490a004200040001000000202080810000440000080006400004000010508300091000000020000000004080004810002040000482000008000040000008e000200022800010000950008008014020000100000000840608200200088020000000000010a00000001000203800 \\x00000000022008000100000000000000000000002080800000004001000000000000000100020000080202001000000020000000000000001000000000000000 pco (-9.449973106384276, -1.3756476640701294, 0.0862677916884422, 3.283283233642578) (1.040917158126831, 4.37474250793457) -144 CCOP(OCC)c1ccccc1 198.20199584960938 {"max_data": {"pyr_P": 0.9678777522957545, "pyr_alpha": 18.111328623725647, "qpole_amp": 9.800973850435923, "vbur_vbur": 52.33916071953092, "vbur_vtot": 225.71099986851914, "sterimol_L": 8.128418124241193, "sterimol_B1": 4.029455289519429, "sterimol_B5": 6.041831516796132, "dipolemoment": 1.6016322163976673, "qpoletens_xx": 6.039937873441485, "qpoletens_yy": 2.7603895861254344, "qpoletens_zz": -2.5318277685278443, "sterimol_burL": 7.646459024771715, "vbur_far_vbur": 0.42149957575578445, "vbur_far_vtot": 0.8627329789870651, "sterimol_burB1": 3.936105988793596, "sterimol_burB5": 6.041831516796132, "vbur_near_vbur": 52.33916071953092, "vbur_near_vtot": 225.4371878596994, "vbur_ovbur_max": 17.469745443793716, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.27963028097622, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.8912450195495, "vbur_qvbur_min": 10.448587498263738, "vbur_qvtot_max": 89.27963028097622, "vbur_qvtot_min": 44.30546735219375, "vbur_max_delta_qvbur": 7.7365567291948825, "vbur_max_delta_qvtot": 64.67166528354427}, "min_data": {"pyr_P": 0.928740177690169, "pyr_alpha": 12.079532725895922, "qpole_amp": 4.909074619644912, "vbur_vbur": 44.66326646029594, "vbur_vtot": 224.99276086216938, "sterimol_L": 6.99221964828565, "sterimol_B1": 3.20200546019714, "sterimol_B5": 5.853446248175605, "dipolemoment": 0.7151930620629842, "qpoletens_xx": 3.9413985949505705, "qpoletens_yy": -1.6724427437460667, "qpoletens_zz": -7.865125818097342, "sterimol_burL": 6.851806633572469, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.20200546019714, "sterimol_burB5": 5.642174622359861, "vbur_near_vbur": 44.66326646029594, "vbur_near_vtot": 223.07748188102266, "vbur_ovbur_max": 14.048591318986839, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 76.67857748929742, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.048591318986839, "vbur_qvbur_min": 9.155849345325402, "vbur_qvtot_max": 76.67857748929742, "vbur_qvtot_min": 24.151283274897608, "vbur_max_delta_qvbur": 2.71726029234126, "vbur_max_delta_qvtot": 26.061284628865266}, "delta_data": {"pyr_P": 0.03913757460558542, "pyr_alpha": 6.031795897829726, "qpole_amp": 4.891899230791012, "vbur_vbur": 7.675894259234987, "vbur_vtot": 0.7182390063497621, "sterimol_L": 1.1361984759555437, "sterimol_B1": 0.8274498293222892, "sterimol_B5": 0.18838526862052696, "dipolemoment": 0.8864391543346831, "qpoletens_xx": 2.098539278490914, "qpoletens_yy": 4.432832329871501, "qpoletens_zz": 5.333298049569498, "sterimol_burL": 0.7946523911992456, "vbur_far_vbur": 0.42149957575578445, "vbur_far_vtot": 0.8627329789870651, "sterimol_burB1": 0.7341005285964557, "sterimol_burB5": 0.39965689443627106, "vbur_near_vbur": 7.675894259234987, "vbur_near_vtot": 2.359705978676743, "vbur_ovbur_max": 3.4211541248068773, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 12.601052791678796, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 3.8426537005626624, "vbur_qvbur_min": 1.2927381529383357, "vbur_qvtot_max": 12.601052791678796, "vbur_qvtot_min": 20.154184077296144, "vbur_max_delta_qvbur": 5.019296436853622, "vbur_max_delta_qvtot": 38.610380654679005}, "vburminconf_data": {"pyr_P": 0.9394489373038695, "pyr_alpha": 16.688732310784058, "qpole_amp": 7.669290162580542, "vbur_vbur": 44.66326646029594, "vbur_vtot": 224.99276086216938, "sterimol_L": 7.129766406097086, "sterimol_B1": 4.029455289519429, "sterimol_B5": 5.9835359129022665, "dipolemoment": 1.5610714191036088, "qpoletens_xx": 6.039937873441485, "qpoletens_yy": -1.5887566869908003, "qpoletens_zz": -4.451181186450684, "sterimol_burL": 6.93225891133634, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.936105988793596, "sterimol_burB5": 5.864620787265208, "vbur_near_vbur": 44.66326646029594, "vbur_near_vtot": 224.9927608621694, "vbur_ovbur_max": 14.801642670213054, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 81.12408205167692, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.801642670213054, "vbur_qvbur_min": 9.155849345325402, "vbur_qvtot_max": 81.12408205167692, "vbur_qvtot_min": 44.30546735219375, "vbur_max_delta_qvbur": 5.645793324887652, "vbur_max_delta_qvtot": 36.81861469948317}, "boltzmann_averaged_data": {"nbo_P": 1.3076874086782815, "nmr_P": 107.86238946616295, "pyr_P": 0.9393293952392128, "fmo_mu": -0.13668674524181978, "vmin_r": 1.8610571194850192, "volume": 265.9636162428528, "Pint_dP": 3.6585716538059048, "fmo_eta": 0.21711945907618083, "fukui_m": 0.3760109150404667, "fukui_p": 0.12905116579220802, "nuesp_P": -54.127327376548, "somo_ra": 0.08226411152333572, "somo_rc": -0.4316538580777267, "nbo_P_ra": 1.1786362428860735, "nbo_P_rc": 1.6836983237187484, "efg_amp_P": 2.3156616005700443, "fmo_omega": 0.043027704327870016, "pyr_alpha": 16.671942968624673, "qpole_amp": 7.634517097802754, "vbur_vbur": 47.04792368634747, "vbur_vtot": 225.08286295912325, "vmin_vmin": -0.04463816576880079, "E_solv_cds": -3.735603870028576, "Pint_P_int": 17.62914679633059, "Pint_P_max": 30.520640108177236, "Pint_P_min": 11.604551670007202, "fmo_e_homo": -0.2452464747799102, "fmo_e_lumo": -0.02812701570372936, "nbo_lp_P_e": -0.3538867842723475, "sphericity": 0.7838936703524613, "sterimol_L": 7.1876392027149, "E_oxidation": 0.30350846865032, "E_reduction": 0.027315485354561995, "sterimol_B1": 3.7807551336022325, "sterimol_B5": 5.9857520740070305, "E_solv_total": -8.768504281535103, "dipolemoment": 1.4689360197501466, "efgtens_xx_P": -1.2557012712893678, "efgtens_yy_P": -0.596224054441106, "efgtens_zz_P": 1.851925072766578, "nbo_bd_e_avg": -0.6014676399863801, "nbo_bd_e_max": -0.4815281708405683, "nbo_lp_P_occ": 1.9492600746537518, "qpoletens_xx": 5.89635579837527, "qpoletens_yy": -1.3023519769096685, "qpoletens_zz": -4.594003821465602, "surface_area": 255.17360348467514, "E_solv_elstat": -5.032900411506524, "nbo_bds_e_avg": 0.21226101959816054, "nbo_bds_e_min": 0.19911280456859823, "nmrtens_sxx_P": -8.584999116307763, "nmrtens_syy_P": 97.59843831822299, "nmrtens_szz_P": 234.5737806127932, "spindens_P_ra": 0.12997744037726694, "spindens_P_rc": 0.4541887802758828, "sterimol_burL": 6.922065349092328, "vbur_far_vbur": 0.1967130237897469, "vbur_far_vtot": 0.35210956902574697, "nbo_bd_occ_avg": 1.9698128224933646, "nbo_bd_occ_min": 1.9609567381846706, "sterimol_burB1": 3.706368817868294, "sterimol_burB5": 5.7358173465984965, "vbur_near_vbur": 46.851210662557726, "vbur_near_vtot": 224.37247541508108, "vbur_ovbur_max": 16.208983571991855, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 80.96710630374753, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.405696595781603, "vbur_qvbur_min": 9.653736512203796, "vbur_qvtot_max": 80.96710630374753, "vbur_qvtot_min": 39.882514264374436, "nbo_bds_occ_avg": 0.06863524353163397, "nbo_bds_occ_max": 0.08047831748556468, "nbo_lp_P_percent_s": 60.415292424395886, "vbur_max_delta_qvbur": 6.704895633762372, "vbur_max_delta_qvtot": 39.43708653953399, "vbur_ratio_vbur_vtot": 0.20902182807842787}} {"max_data": {"B1": 3.918151087576353, "B5": 6.185551077396097, "lval": 7.763541546657921, "sasa": 423.18165601131915, "vbur": 70.42505478599222, "vtot": 223.68634165109518, "alpha": 149.16912, "p_int": 18.269195731845993, "sasa_P": 24.799929672503428, "pyr_val": 0.9787879295142916, "dip_norm": 1.0412636553726438, "far_vbur": 7.3548840731481455, "far_vtot": 9.122926966949905, "near_vbur": 64.43391308456886, "near_vtot": 223.4572003995437, "ovbur_max": 20.887404531032452, "ovbur_min": 0.0, "ovtot_max": 92.29928779684221, "ovtot_min": 0.0, "pyr_alpha": 15.418060586414482, "qvbur_max": 24.465771267096606, "qvbur_min": 13.159531091258724, "qvtot_max": 92.29928779684221, "qvtot_min": 41.81987611296942, "cone_angle": 202.12826667628445, "p_int_area": 293.9874645364688, "p_int_atom": 26.44541145328468, "sasa_volume": 631.1326749190607, "EA_delta_SCC": 1.5102, "IP_delta_SCC": 7.2751, "HOMO_LUMO_gap": 3.925579279537, "sasa_volume_P": 34.933540559512586, "max_delta_qvbur": 14.325122861963665, "max_delta_qvtot": 67.33977250932851, "nucleophilicity": -6.8395, "p_int_atom_area": 21.39702263619744, "p_int_times_p_int_area": 5290.580243847616, "global_electrophilicity_index": 1.659, "p_int_atom_times_p_int_atom_area": 475.59473847215077}, "min_data": {"B1": 2.5804348516957685, "B5": 5.977198701920235, "lval": 6.413603341359732, "sasa": 394.82133858463806, "vbur": 47.929133611386966, "vtot": 221.5746372312825, "alpha": 149.057774, "p_int": 17.845393618999832, "sasa_P": 6.2599822479786935, "pyr_val": 0.9476023540599485, "dip_norm": 0.24300205760445734, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 47.929133611386966, "near_vtot": 209.74516048918395, "ovbur_max": 14.395058368205957, "ovbur_min": 0.0, "ovtot_max": 77.6021090510263, "ovtot_min": 0.0, "pyr_alpha": 9.747030299786989, "qvbur_max": 14.395058368205957, "qvbur_min": 10.035745145769498, "qvtot_max": 77.6021090510263, "qvtot_min": 20.32678294959414, "cone_angle": 141.38093874810704, "p_int_area": 275.9862875566455, "p_int_atom": 21.342660749114142, "sasa_volume": 604.9603919560382, "EA_delta_SCC": 1.3632, "IP_delta_SCC": 6.8395, "HOMO_LUMO_gap": 3.517354196125, "sasa_volume_P": 7.724583366422508, "max_delta_qvbur": 4.056259362053176, "max_delta_qvtot": 35.57512075611656, "nucleophilicity": -7.2751, "p_int_atom_area": 13.49812175647969, "p_int_times_p_int_area": 4975.889152625497, "global_electrophilicity_index": 1.5653, "p_int_atom_times_p_int_atom_area": 350.7139717921105}, "boltzmann_averaged_data": {"B1": 3.312450215590082, "B5": 6.0348349097273974, "lval": 7.460670179570204, "sasa": 405.88771774210835, "vbur": 60.478924407543765, "vtot": 222.37062924525057, "alpha": 149.08624033048014, "p_int": 17.998813983779993, "B1_std": 0.24364249839398808, "B5_std": 0.027193045612977564, "sasa_P": 12.610456024588467, "pyr_val": 0.9690287434249361, "dip_norm": 0.5235010402721314, "far_vbur": 1.8278892366571762, "far_vtot": 2.212567635671905, "lval_std": 0.35676978841019225, "sasa_std": 6.11903471061643, "vbur_std": 5.14725959812288, "vtot_std": 0.30664134332169973, "alpha_std": 0.018972540609473534, "near_vbur": 58.65103517088659, "near_vtot": 216.08946993067914, "ovbur_max": 19.025332427205942, "ovbur_min": 0.0, "ovtot_max": 87.52545242038005, "ovtot_min": 0.0, "p_int_std": 0.10333385450318314, "pyr_alpha": 11.595603615033852, "qvbur_max": 20.536627413532077, "qvbur_min": 11.385561328244393, "qvtot_max": 87.52545242038005, "qvtot_min": 29.407000857954973, "cone_angle": 176.8058866873643, "p_int_area": 283.3719606768065, "p_int_atom": 23.937093924376168, "sasa_P_std": 4.375137619010109, "pyr_val_std": 0.010803127104367581, "sasa_volume": 615.8418173053034, "EA_delta_SCC": 1.4384688789336322, "IP_delta_SCC": 7.062739346819595, "dip_norm_std": 0.15684156163325344, "far_vbur_std": 1.4271431239385435, "far_vtot_std": 1.7316212295819822, "HOMO_LUMO_gap": 3.773097172770094, "near_vbur_std": 4.168766028630509, "near_vtot_std": 3.473692733074879, "ovbur_max_std": 1.2591540393617973, "ovbur_min_std": 0.0, "ovtot_max_std": 4.618204036391492, "ovtot_min_std": 0.0, "pyr_alpha_std": 2.073057082437855, "qvbur_max_std": 2.1545588893200667, "qvbur_min_std": 0.8263836112466711, "qvtot_max_std": 4.618204036391492, "qvtot_min_std": 5.5155412229911365, "sasa_volume_P": 16.558153835607254, "cone_angle_std": 10.997924024681536, "p_int_area_std": 3.6674666705288974, "p_int_atom_std": 1.1416451309701934, "max_delta_qvbur": 8.566544126864171, "max_delta_qvtot": 55.880135584337026, "nucleophilicity": -7.062739346819595, "p_int_atom_area": 16.451353209453774, "sasa_volume_std": 6.132411025190744, "EA_delta_SCC_std": 0.04268221130535899, "IP_delta_SCC_std": 0.11982256577691569, "HOMO_LUMO_gap_std": 0.09636597734418369, "sasa_volume_P_std": 6.243835767645959, "max_delta_qvbur_std": 1.9842070296922505, "max_delta_qvtot_std": 11.01143042604223, "nucleophilicity_std": 0.11982256577691569, "p_int_atom_area_std": 1.6928641451595745, "p_int_times_p_int_area": 5100.121945607775, "p_int_times_p_int_area_std": 52.81792526705931, "global_electrophilicity_index": 1.6067810765677029, "p_int_atom_times_p_int_atom_area": 392.0626924166858, "global_electrophilicity_index_std": 0.020673778888702504, "p_int_atom_times_p_int_atom_area_std": 24.233522360915167}} {"max_data": {"pyr_P": "0.9662828", "pyr_alpha": "18.519709", "qpole_amp": "8.810179", "vbur_vbur": "52.786503", "sterimol_L": "8.000269", "sterimol_B1": "3.9790552", "sterimol_B5": "6.2713223", "dipolemoment": "1.9077538", "qpoletens_xx": "5.9082294", "qpoletens_yy": "1.7291088", "qpoletens_zz": "-2.4570522", "sterimol_burL": "7.622463", "vbur_far_vbur": "-0.47664562", "vbur_far_vtot": "-3.326978", "sterimol_burB1": "3.925878", "sterimol_burB5": "6.0773726", "vbur_near_vbur": "53.25873", "vbur_near_vtot": "229.22481", "vbur_ovbur_max": "18.101767", "vbur_ovbur_min": "-0.1890153", "vbur_ovtot_max": "91.21045", "vbur_ovtot_min": "0.37289056", "vbur_qvbur_max": "17.739103", "vbur_qvbur_min": "10.554503", "vbur_qvtot_max": "90.11316", "vbur_qvtot_min": "44.05348", "vbur_max_delta_qvbur": "8.456084", "vbur_max_delta_qvtot": "66.31736"}, "min_data": {"pyr_P": "0.928747", "pyr_alpha": "12.645306", "qpole_amp": "3.6157079", "vbur_vbur": "42.439083", "sterimol_L": "7.036633", "sterimol_B1": "3.099481", "sterimol_B5": "5.771923", "dipolemoment": "0.7091552", "qpoletens_xx": "2.6895225", "qpoletens_yy": "-1.369077", "qpoletens_zz": "-6.6978545", "sterimol_burL": "6.8415465", "vbur_far_vbur": "0.31876743", "vbur_far_vtot": "-0.6650912", "sterimol_burB1": "3.0658917", "sterimol_burB5": "5.603718", "vbur_near_vbur": "43.350525", "vbur_near_vtot": "226.73798", "vbur_ovbur_max": "13.575258", "vbur_ovbur_min": "-0.011917333", "vbur_ovtot_max": "77.37274", "vbur_ovtot_min": "-0.024900224", "vbur_qvbur_max": "13.74284", "vbur_qvbur_min": "8.960739", "vbur_qvtot_max": "75.9021", "vbur_qvtot_min": "23.79265", "vbur_max_delta_qvbur": "3.6363604", "vbur_max_delta_qvtot": "30.744661"}, "delta_data": {"pyr_P": "0.04064455", "pyr_alpha": "6.097955", "qpole_amp": "4.1152234", "vbur_vbur": "10.4013815", "sterimol_L": "1.1284434", "sterimol_B1": "0.78370166", "sterimol_B5": "0.61769533", "dipolemoment": "1.3645247", "qpoletens_xx": "2.7668536", "qpoletens_yy": "3.361225", "qpoletens_zz": "4.099659", "sterimol_burL": "0.83812666", "vbur_far_vbur": "-0.40306723", "vbur_far_vtot": "-2.205619", "sterimol_burB1": "0.8173904", "sterimol_burB5": "0.49480945", "vbur_near_vbur": "10.421752", "vbur_near_vtot": "0.6712764", "vbur_ovbur_max": "4.530423", "vbur_ovbur_min": "-0.061471876", "vbur_ovtot_max": "13.471192", "vbur_ovtot_min": "0.13229975", "vbur_qvbur_max": "4.2096887", "vbur_qvbur_min": "1.1476136", "vbur_qvtot_max": "12.19396", "vbur_qvtot_min": "16.414274", "vbur_max_delta_qvbur": "5.377418", "vbur_max_delta_qvtot": "30.97858"}, "vburminconf_data": {"pyr_P": "0.9352601", "pyr_alpha": "17.731094", "qpole_amp": "7.274637", "vbur_vbur": "42.645454", "sterimol_L": "7.273953", "sterimol_B1": "3.8413384", "sterimol_B5": "5.987361", "dipolemoment": "1.5115832", "qpoletens_xx": "4.9960437", "qpoletens_yy": "-0.8390073", "qpoletens_zz": "-4.912338", "sterimol_burL": "6.9680634", "vbur_far_vbur": "0.017154256", "vbur_far_vtot": "-1.4347837", "sterimol_burB1": "3.7623425", "sterimol_burB5": "5.807632", "vbur_near_vbur": "43.28275", "vbur_near_vtot": "225.66689", "vbur_ovbur_max": "14.269411", "vbur_ovbur_min": "-0.010406972", "vbur_ovtot_max": "82.74671", "vbur_ovtot_min": "-0.00572918", "vbur_qvbur_max": "14.1157055", "vbur_qvbur_min": "9.064627", "vbur_qvtot_max": "82.06197", "vbur_qvtot_min": "31.324862", "vbur_max_delta_qvbur": "4.979729", "vbur_max_delta_qvtot": "38.962276"}, "boltzmann_averaged_data": {"nbo_P": "1.3027264", "nmr_P": "93.061386", "pyr_P": "0.94377005", "fmo_mu": "-0.13711743", "vmin_r": "1.8617296", "volume": "266.36334", "Pint_dP": "3.6080368", "fmo_eta": "0.21742475", "fukui_m": "0.36094612", "fukui_p": "0.13302505", "nuesp_P": "-54.125698", "somo_ra": "0.084384486", "somo_rc": "-0.43315774", "nbo_P_ra": "1.1976519", "nbo_P_rc": "1.6803832", "efg_amp_P": "2.3114817", "fmo_omega": "0.04361896", "pyr_alpha": "16.556747", "qpole_amp": "6.966287", "vbur_vbur": "45.331924", "vbur_vtot": "225.04541", "vmin_vmin": "-0.044554893", "E_solv_cds": "-3.6993315", "Pint_P_int": "17.612482", "Pint_P_max": "30.332296", "Pint_P_min": "11.605388", "fmo_e_homo": "-0.24435279", "fmo_e_lumo": "-0.02849591", "nbo_lp_P_e": "-0.35534137", "sphericity": "0.78606594", "sterimol_L": "7.277226", "E_oxidation": "0.30362585", "E_reduction": "0.027926974", "sterimol_B1": "3.731977", "sterimol_B5": "6.034649", "E_solv_total": "-8.805763", "dipolemoment": "1.1609948", "efgtens_xx_P": "-1.2421006", "efgtens_yy_P": "-0.60500664", "efgtens_zz_P": "1.8748598", "nbo_bd_e_avg": "-0.6036699", "nbo_bd_e_max": "-0.47236085", "nbo_lp_P_occ": "1.9538932", "qpoletens_xx": "5.5360713", "qpoletens_yy": "-1.4472016", "qpoletens_zz": "-4.6549335", "surface_area": "254.01776", "E_solv_elstat": "-4.9945784", "nbo_bds_e_avg": "0.21400648", "nbo_bds_e_min": "0.20054649", "nmrtens_sxx_P": "-29.803602", "nmrtens_syy_P": "81.7707", "nmrtens_szz_P": "229.52115", "spindens_P_ra": "0.13164714", "spindens_P_rc": "0.4478963", "sterimol_burL": "6.95372", "vbur_far_vbur": "-0.8256802", "vbur_far_vtot": "-4.0797405", "nbo_bd_occ_avg": "1.9693761", "nbo_bd_occ_min": "1.9614005", "sterimol_burB1": "3.6777835", "sterimol_burB5": "5.883462", "vbur_near_vbur": "46.47092", "vbur_near_vtot": "230.48355", "vbur_ovbur_max": "15.5192175", "vbur_ovbur_min": "-0.010122726", "vbur_ovtot_max": "83.81182", "vbur_ovtot_min": "0.061682586", "vbur_qvbur_max": "15.284111", "vbur_qvbur_min": "9.317994", "vbur_qvtot_max": "83.75803", "vbur_qvtot_min": "38.10456", "nbo_bds_occ_avg": "0.06971963", "nbo_bds_occ_max": "0.08259654", "nbo_lp_P_percent_s": "60.70397", "vbur_max_delta_qvbur": "6.0855207", "vbur_max_delta_qvtot": "46.152435", "vbur_ratio_vbur_vtot": "0.20769788"}} CCOP(OCC)c1ccccc1 {"max_data": {"B1": 4.109466185699295, "B5": 6.373252976031223, "lval": 7.8286117089062515, "sasa": 429.7017987267424, "vbur": 57.31214736556169, "vtot": 223.29099949263843, "alpha": 149.107479, "p_int": 18.296377909501526, "sasa_P": 20.579941639520992, "pyr_val": 0.9581235711524494, "dip_norm": 1.2270126323718107, "far_vbur": 0.24477427184803652, "far_vtot": 0.2619174664553171, "near_vbur": 57.18393227078415, "near_vtot": 223.65210355587905, "ovbur_max": 16.85445700439337, "ovbur_min": 0.0, "ovtot_max": 93.33077002092924, "ovtot_min": 0.0, "pyr_alpha": 20.051012887569897, "qvbur_max": 17.029295769999113, "qvbur_min": 11.807444637241, "qvtot_max": 93.33077002092924, "qvtot_min": 42.09093083637799, "cone_angle": 184.9968514786839, "p_int_area": 294.58626121265445, "p_int_atom": 25.10647481743991, "sasa_volume": 636.9937221117862, "EA_delta_SCC": 1.459, "IP_delta_SCC": 7.1347, "HOMO_LUMO_gap": 3.693852606721, "sasa_volume_P": 20.264616758000912, "max_delta_qvbur": 6.900303282573221, "max_delta_qvtot": 65.05443218881527, "nucleophilicity": -6.6977, "p_int_atom_area": 19.99721741700695, "p_int_times_p_int_area": 5249.314482456412, "global_electrophilicity_index": 1.6006, "p_int_atom_times_p_int_atom_area": 470.8218256225023}, "min_data": {"B1": 2.5402729959335297, "B5": 6.013213137625177, "lval": 6.06124348271305, "sasa": 392.0807318322319, "vbur": 46.75188592297498, "vtot": 221.1293529091286, "alpha": 149.020929, "p_int": 17.705550714115088, "sasa_P": 8.85997487493469, "pyr_val": 0.9154165946588653, "dip_norm": 0.24528350943347169, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.75188592297498, "near_vtot": 215.50503120606413, "ovbur_max": 14.499961627569402, "ovbur_min": 0.0, "ovtot_max": 79.46584451954352, "ovtot_min": 0.0, "pyr_alpha": 13.834888933897975, "qvbur_max": 14.499961627569402, "qvbur_min": 9.021680305256202, "qvtot_max": 79.46584451954352, "qvtot_min": 16.79060100633544, "cone_angle": 146.69595181901408, "p_int_area": 273.19087300434177, "p_int_atom": 22.16110348688042, "sasa_volume": 601.2084480160095, "EA_delta_SCC": 1.2766, "IP_delta_SCC": 6.6977, "HOMO_LUMO_gap": 3.255216301116, "sasa_volume_P": 7.9061031612113135, "max_delta_qvbur": 2.680861072621351, "max_delta_qvtot": 26.188690467743537, "nucleophilicity": -7.1347, "p_int_atom_area": 15.39785741109535, "p_int_times_p_int_area": 4955.442049059127, "global_electrophilicity_index": 1.4951, "p_int_atom_times_p_int_atom_area": 368.7763339845029}, "boltzmann_averaged_data": {"B1": 3.2176772333772488, "B5": 6.057146358105305, "lval": 7.7727974578912455, "sasa": 406.88628542721705, "vbur": 53.21755760106157, "vtot": 221.72407412940908, "alpha": 149.0599468900889, "p_int": 18.09167503322054, "B1_std": 0.18883601228387895, "B5_std": 0.04100308098399712, "sasa_P": 11.870417942453765, "pyr_val": 0.9508797511636, "dip_norm": 0.414468047437243, "far_vbur": 0.0018106483630966781, "far_vtot": 0.00016523386472531144, "lval_std": 0.09997459675671957, "sasa_std": 4.9861995540120345, "vbur_std": 1.0335844298052566, "vtot_std": 0.38345152871911614, "alpha_std": 0.012134140569412328, "near_vbur": 53.21574695269847, "near_vtot": 217.18307382535917, "ovbur_max": 14.967005166543364, "ovbur_min": 0.0, "ovtot_max": 91.06417574495714, "ovtot_min": 0.0, "p_int_std": 0.09051364621566231, "pyr_alpha": 14.995051946996586, "qvbur_max": 14.96866451958167, "qvbur_min": 10.714835842937571, "qvtot_max": 91.06417574495714, "qvtot_min": 24.96683239846414, "cone_angle": 168.21777864493234, "p_int_area": 286.1390586648833, "p_int_atom": 23.99782078698668, "sasa_P_std": 0.8310651885323102, "pyr_val_std": 0.0020724175567202285, "sasa_volume": 616.5552426623037, "EA_delta_SCC": 1.370789721897219, "IP_delta_SCC": 6.867958970589706, "dip_norm_std": 0.05581499990437016, "far_vbur_std": 0.014937255985744965, "far_vtot_std": 0.004872742407585941, "HOMO_LUMO_gap": 3.4939621580516347, "near_vbur_std": 1.02938816160917, "near_vtot_std": 1.1729198276045303, "ovbur_max_std": 0.5620585574462351, "ovbur_min_std": 0.0, "ovtot_max_std": 1.0859568435942935, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.30660554636803045, "qvbur_max_std": 0.5667395097527624, "qvbur_min_std": 0.4404068296238638, "qvtot_max_std": 1.0859568435942935, "qvtot_min_std": 2.3966495126512144, "sasa_volume_P": 11.179118576435236, "cone_angle_std": 3.818736599635674, "p_int_area_std": 1.5769574762543728, "p_int_atom_std": 0.26888890500537427, "max_delta_qvbur": 3.6603259078946353, "max_delta_qvtot": 60.746758648701054, "nucleophilicity": -6.867958970589706, "p_int_atom_area": 15.660560483750686, "sasa_volume_std": 4.2017263059919125, "EA_delta_SCC_std": 0.020943634782912886, "IP_delta_SCC_std": 0.032912726024741, "HOMO_LUMO_gap_std": 0.04358909893389311, "sasa_volume_P_std": 0.9358413436039702, "max_delta_qvbur_std": 0.5637601545919586, "max_delta_qvtot_std": 8.28128379160009, "nucleophilicity_std": 0.032912726024741, "p_int_atom_area_std": 0.3548575649812802, "p_int_times_p_int_area": 5176.61647590743, "p_int_times_p_int_area_std": 16.114923714623988, "global_electrophilicity_index": 1.543519986199862, "p_int_atom_times_p_int_atom_area": 375.8593288973378, "global_electrophilicity_index_std": 0.014156429288514525, "p_int_atom_times_p_int_atom_area_std": 11.066443633770795}} \\x06000048280000000098020080104410480000c90a004210050001000002203080810010440000080006400104000010588300091002000020000001006080004810002040000482000008000040000008e00020002280001301095000d808014020004100000000c40608200202088020000000000010a00000241000203800 \\x00000000022008000100010000000000000000002080800000004001000000004000000040000000080002001000000020000000000010000000000002000000 pco (-7.585164546966553, -2.2645626068115234, 0.7719320058822632, 2.954246282577514) (0.779035210609436, 4.228854656219482) -145 c1ccc(OP(Oc2ccccc2)c2ccccc2)cc1 294.2900085449219 {"max_data": {"pyr_P": 0.974608292269898, "pyr_alpha": 16.75583791102465, "qpole_amp": 11.807667577426152, "vbur_vbur": 63.689318029957164, "vbur_vtot": 326.8477080763381, "sterimol_L": 9.679499508460935, "sterimol_B1": 4.378366385572112, "sterimol_B5": 7.454807052496951, "dipolemoment": 2.7034167152833923, "qpoletens_xx": 9.041409661902172, "qpoletens_yy": 2.0193261736973707, "qpoletens_zz": -4.223567818053122, "sterimol_burL": 7.596460363720247, "vbur_far_vbur": 4.470196493251173, "vbur_far_vtot": 20.08173667556911, "sterimol_burB1": 4.099420821125945, "sterimol_burB5": 7.017158030586385, "vbur_near_vbur": 60.214822767771764, "vbur_near_vtot": 323.3357366093911, "vbur_ovbur_max": 20.479859039389613, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 115.11747485621865, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 24.100780953202335, "vbur_qvbur_min": 11.716223939494533, "vbur_qvtot_max": 118.74897610435295, "vbur_qvtot_min": 50.46452551255765, "vbur_max_delta_qvbur": 13.931449997684986, "vbur_max_delta_qvtot": 80.77060401573209}, "min_data": {"pyr_P": 0.938196331464214, "pyr_alpha": 10.62782434596782, "qpole_amp": 7.648085020741528, "vbur_vbur": 47.705803100180745, "vbur_vtot": 324.74240842978566, "sterimol_L": 6.923313813454096, "sterimol_B1": 3.294855920669088, "sterimol_B5": 7.25211884325784, "dipolemoment": 0.47837098282765994, "qpoletens_xx": 5.286955487044705, "qpoletens_yy": -1.8716453180308203, "qpoletens_zz": -8.486176331914105, "sterimol_burL": 6.923313813454096, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.3454496924496671, "sterimol_burB1": 3.294855920669088, "sterimol_burB5": 6.870528753921779, "vbur_near_vbur": 47.680701388473196, "vbur_near_vtot": 306.0379322881535, "vbur_ovbur_max": 16.35899470073505, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 100.32364275066536, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.35899470073505, "vbur_qvbur_min": 9.105645921910321, "vbur_qvtot_max": 107.480941790785, "vbur_qvtot_min": 30.03570453335847, "vbur_max_delta_qvbur": 6.7377177841656675, "vbur_max_delta_qvtot": 55.59184461901576}, "delta_data": {"pyr_P": 0.036411960805683985, "pyr_alpha": 6.128013565056829, "qpole_amp": 4.159582556684624, "vbur_vbur": 15.983514929776419, "vbur_vtot": 2.105299646552453, "sterimol_L": 2.756185695006839, "sterimol_B1": 1.0835104649030236, "sterimol_B5": 0.20268820923911157, "dipolemoment": 2.2250457324557322, "qpoletens_xx": 3.754454174857467, "qpoletens_yy": 3.890971491728191, "qpoletens_zz": 4.262608513860983, "sterimol_burL": 0.6731465502661509, "vbur_far_vbur": 4.470196493251173, "vbur_far_vtot": 19.736286983119445, "sterimol_burB1": 0.8045649004568571, "sterimol_burB5": 0.1466292766646058, "vbur_near_vbur": 12.534121379298568, "vbur_near_vtot": 17.297804321237606, "vbur_ovbur_max": 4.120864338654563, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 14.793832105553292, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 7.741786252467286, "vbur_qvbur_min": 2.6105780175842117, "vbur_qvtot_max": 11.268034313567952, "vbur_qvtot_min": 20.42882097919918, "vbur_max_delta_qvbur": 7.1937322135193185, "vbur_max_delta_qvtot": 25.17875939671633}, "vburminconf_data": {"pyr_P": 0.938196331464214, "pyr_alpha": 16.75583791102465, "qpole_amp": 10.858776077484341, "vbur_vbur": 47.705803100180745, "vbur_vtot": 324.990892154389, "sterimol_L": 9.357809492710869, "sterimol_B1": 4.378366385572112, "sterimol_B5": 7.366240717770931, "dipolemoment": 1.5811149325115856, "qpoletens_xx": 6.466850158216735, "qpoletens_yy": 2.0193261736973707, "qpoletens_zz": -8.486176331914105, "sterimol_burL": 7.414147934836986, "vbur_far_vbur": 0.02510171170754051, "vbur_far_vtot": 1.479536230090054, "sterimol_burB1": 4.099420821125945, "sterimol_burB5": 6.9557551172793, "vbur_near_vbur": 47.680701388473196, "vbur_near_vtot": 320.5618233909526, "vbur_ovbur_max": 16.853707602304492, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 108.25173531752485, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.878809314012035, "vbur_qvbur_min": 9.228016766484581, "vbur_qvtot_max": 109.7312715476149, "vbur_qvtot_min": 47.343648034672356, "vbur_max_delta_qvbur": 7.650792547527454, "vbur_max_delta_qvtot": 55.59184461901576}, "boltzmann_averaged_data": {"nbo_P": 1.3138174313264275, "nmr_P": 103.91423584470115, "pyr_P": 0.9546005017730045, "fmo_mu": -0.1423272428101492, "vmin_r": 1.925487287855089, "volume": 366.59428842128057, "Pint_dP": 3.865164272688192, "fmo_eta": 0.2032268767727166, "fukui_m": 0.07018359977090098, "fukui_p": 0.1488774773659859, "nuesp_P": -54.10668952204384, "somo_ra": 0.053412486243156754, "somo_rc": -0.38350197473776554, "nbo_P_ra": 1.1649399539604417, "nbo_P_rc": 1.3840010310973285, "efg_amp_P": 2.486639035285849, "fmo_omega": 0.049861054936038804, "pyr_alpha": 14.137018620051839, "qpole_amp": 10.886889159605488, "vbur_vbur": 54.17222206620231, "vbur_vtot": 325.4544985218903, "vmin_vmin": -0.03246522899545577, "E_solv_cds": -7.182353439513204, "Pint_P_int": 19.346397577873496, "Pint_P_max": 34.72152629170192, "Pint_P_min": 13.177094884526205, "fmo_e_homo": -0.24394068119650753, "fmo_e_lumo": -0.04071380442379089, "nbo_lp_P_e": -0.3782620470670556, "sphericity": 0.7481661530528232, "sterimol_L": 8.809692959395887, "E_oxidation": 0.29186971627049313, "E_reduction": 0.007194242157306804, "sterimol_B1": 3.7651283734960397, "sterimol_B5": 7.380299953772111, "E_solv_total": -14.72248373201271, "dipolemoment": 1.3704654760102528, "efgtens_xx_P": -1.3559094190775176, "efgtens_yy_P": -0.6307525156729243, "efgtens_zz_P": 1.98666177519224, "nbo_bd_e_avg": -0.6049613354257627, "nbo_bd_e_max": -0.49766226872517966, "nbo_lp_P_occ": 1.958559840680883, "qpoletens_xx": 7.991484267765981, "qpoletens_yy": -0.815952401851454, "qpoletens_zz": -7.175531865914526, "surface_area": 331.1743654507742, "E_solv_elstat": -7.540130292499509, "nbo_bds_e_avg": 0.1850488842034894, "nbo_bds_e_min": 0.16436193046771314, "nmrtens_sxx_P": -23.10959455497548, "nmrtens_syy_P": 82.43285571588225, "nmrtens_szz_P": 252.41938570949816, "spindens_P_ra": 0.1798102271604163, "spindens_P_rc": 0.06781307920591575, "sterimol_burL": 7.374132959824641, "vbur_far_vbur": 1.5208939569563413, "vbur_far_vtot": 7.269632736205467, "nbo_bd_occ_avg": 1.9633216524926307, "nbo_bd_occ_min": 1.9577685301603083, "sterimol_burB1": 3.6612335529562143, "sterimol_burB5": 6.965403817916667, "vbur_near_vbur": 52.65132810924597, "vbur_near_vtot": 316.14797558528727, "vbur_ovbur_max": 18.1148268200611, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 108.26637403101954, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.433582228160684, "vbur_qvbur_min": 9.90486273887217, "vbur_qvtot_max": 113.46322457253751, "vbur_qvtot_min": 42.07975850972338, "nbo_bds_occ_avg": 0.06956721119577489, "nbo_bds_occ_max": 0.08592867001649096, "nbo_lp_P_percent_s": 62.44287314787749, "vbur_max_delta_qvbur": 9.403016210804799, "vbur_max_delta_qvtot": 68.66111727139516, "vbur_ratio_vbur_vtot": 0.1664074073430116}} {"max_data": {"B1": 4.363937557226588, "B5": 7.441952603946429, "lval": 9.429419598073137, "sasa": 534.1345278159403, "vbur": 69.18952750904499, "vtot": 322.2222336568149, "alpha": 227.665926, "p_int": 20.887351537196253, "sasa_P": 21.389939342534205, "pyr_val": 0.9861959163195538, "dip_norm": 1.1900478981956988, "far_vbur": 5.023700531738273, "far_vtot": 15.665893754842457, "near_vbur": 64.16582697730671, "near_vtot": 321.06993239247794, "ovbur_max": 21.06224329663819, "ovbur_min": 0.0, "ovtot_max": 139.0359944988972, "ovtot_min": 0.0, "pyr_alpha": 15.19682553874382, "qvbur_max": 24.803792880601033, "qvbur_min": 12.133810333038381, "qvtot_max": 139.0359944988972, "qvtot_min": 49.433436738423424, "cone_angle": 203.86244703668126, "p_int_area": 372.02279350103214, "p_int_atom": 27.492701098322247, "sasa_volume": 834.741098990286, "EA_delta_SCC": 1.6435, "IP_delta_SCC": 6.8486, "HOMO_LUMO_gap": 3.939090004531, "sasa_volume_P": 32.492898584274684, "max_delta_qvbur": 12.460176028835763, "max_delta_qvtot": 105.38707450294194, "nucleophilicity": -6.543, "p_int_atom_area": 19.69725915575185, "p_int_times_p_int_area": 7573.3636385309055, "global_electrophilicity_index": 1.7279, "p_int_atom_times_p_int_atom_area": 493.3025475053913}, "min_data": {"B1": 3.0638071299196556, "B5": 7.352324589144413, "lval": 6.381536836364964, "sasa": 489.91306816372906, "vbur": 52.23016724528817, "vtot": 318.94261168417376, "alpha": 227.553744, "p_int": 20.059954014522262, "sasa_P": 9.219973854051672, "pyr_val": 0.9490683498770129, "dip_norm": 0.11971215477135143, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 52.09029623280358, "near_vtot": 303.5909737810707, "ovbur_max": 17.670371243886827, "ovbur_min": 0.0, "ovtot_max": 98.10740324460183, "ovtot_min": 0.0, "pyr_alpha": 7.726020434870744, "qvbur_max": 17.670371243886827, "qvbur_min": 10.198927993668189, "qvtot_max": 105.14849626748907, "qvtot_min": 25.590688725924608, "cone_angle": 152.4827096934082, "p_int_area": 356.63109515508205, "p_int_atom": 23.19826660582826, "sasa_volume": 798.5786092694269, "EA_delta_SCC": 1.2538, "IP_delta_SCC": 6.543, "HOMO_LUMO_gap": 3.588974258586, "sasa_volume_P": 11.19455136311927, "max_delta_qvbur": 6.061077207665667, "max_delta_qvtot": 51.44193190545983, "nucleophilicity": -6.8486, "p_int_atom_area": 14.397996540245009, "p_int_times_p_int_area": 7257.329046958229, "global_electrophilicity_index": 1.4397, "p_int_atom_times_p_int_atom_area": 374.5922163258609}, "boltzmann_averaged_data": {"B1": 3.7325459028240244, "B5": 7.422276815214914, "lval": 7.571083257909342, "sasa": 526.2394915218425, "vbur": 62.93325497128762, "vtot": 321.4596427793677, "alpha": 227.60233989891896, "p_int": 20.196153627153198, "B1_std": 0.41424836767911155, "B5_std": 0.012186050026131197, "sasa_P": 12.804538734713859, "pyr_val": 0.9764666988175191, "dip_norm": 0.3691783202286158, "far_vbur": 1.3361150061835168, "far_vtot": 5.117949322132261, "lval_std": 0.7898770528844732, "sasa_std": 9.78639295051723, "vbur_std": 3.3903052545942742, "vtot_std": 0.6059390968820978, "alpha_std": 0.02011164727678665, "near_vbur": 61.59713996510412, "near_vtot": 314.5895122392471, "ovbur_max": 18.96389766518483, "ovbur_min": 0.0, "ovtot_max": 104.47424171321285, "ovtot_min": 0.0, "p_int_std": 0.15264826909739895, "pyr_alpha": 10.040672426339185, "qvbur_max": 20.011729337608703, "qvbur_min": 10.981532201234003, "qvtot_max": 106.87330204581819, "qvtot_min": 34.444166243155756, "cone_angle": 178.57345123536658, "p_int_area": 366.9624514510435, "p_int_atom": 25.602691840484646, "sasa_P_std": 2.670076724384461, "pyr_val_std": 0.007335501139012386, "sasa_volume": 827.3874653093295, "EA_delta_SCC": 1.390095452954529, "IP_delta_SCC": 6.642449261492614, "dip_norm_std": 0.26062018014398236, "far_vbur_std": 1.2640358002905483, "far_vtot_std": 4.178636729248712, "HOMO_LUMO_gap": 3.6912447675089584, "near_vbur_std": 2.8066766926313496, "near_vtot_std": 4.466502548070171, "ovbur_max_std": 0.892957291238665, "ovbur_min_std": 0.0, "ovtot_max_std": 3.294282645844941, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.5083974225345418, "qvbur_max_std": 1.9434786459871922, "qvbur_min_std": 0.5466545761959122, "qvtot_max_std": 3.015302921604758, "qvtot_min_std": 6.572491076979792, "sasa_volume_P": 17.018214508272326, "cone_angle_std": 7.9250800452314465, "p_int_area_std": 3.560892208432475, "p_int_atom_std": 0.8674258605786687, "max_delta_qvbur": 8.603136825506802, "max_delta_qvtot": 63.15358681829464, "nucleophilicity": -6.642449261492614, "p_int_atom_area": 15.301073910405512, "sasa_volume_std": 7.901120757147228, "EA_delta_SCC_std": 0.09115995595764777, "IP_delta_SCC_std": 0.05219364179660255, "HOMO_LUMO_gap_std": 0.07011291605807306, "sasa_volume_P_std": 4.576711137795053, "max_delta_qvbur_std": 1.4165622929557886, "max_delta_qvtot_std": 10.008105494416212, "nucleophilicity_std": 0.05219364179660255, "p_int_atom_area_std": 1.304439606989087, "p_int_times_p_int_area": 7410.821450545114, "p_int_times_p_int_area_std": 47.440160195513975, "global_electrophilicity_index": 1.5366193841938418, "p_int_atom_times_p_int_atom_area": 390.8905615320981, "global_electrophilicity_index_std": 0.06547334806048834, "p_int_atom_times_p_int_atom_area_std": 23.04867483680605}} {"max_data": {"pyr_P": "0.98119205", "pyr_alpha": "17.904625", "qpole_amp": "12.538381", "vbur_vbur": "64.517845", "sterimol_L": "9.556857", "sterimol_B1": "4.363465", "sterimol_B5": "7.4623437", "dipolemoment": "2.5603962", "qpoletens_xx": "8.870193", "qpoletens_yy": "2.205214", "qpoletens_zz": "-4.1842375", "sterimol_burL": "7.5807414", "vbur_far_vbur": "3.9229484", "vbur_far_vtot": "18.949001", "sterimol_burB1": "4.219705", "sterimol_burB5": "7.0256844", "vbur_near_vbur": "61.079517", "vbur_near_vtot": "327.49066", "vbur_ovbur_max": "20.66122", "vbur_ovbur_min": "-0.11325987", "vbur_ovtot_max": "126.962494", "vbur_ovtot_min": "-0.13321938", "vbur_qvbur_max": "23.481943", "vbur_qvbur_min": "11.87012", "vbur_qvtot_max": "126.12998", "vbur_qvtot_min": "53.920403", "vbur_max_delta_qvbur": "12.849046", "vbur_max_delta_qvtot": "83.10396"}, "min_data": {"pyr_P": "0.9301894", "pyr_alpha": "10.419387", "qpole_amp": "7.4302187", "vbur_vbur": "45.364815", "sterimol_L": "6.848194", "sterimol_B1": "3.1033297", "sterimol_B5": "7.217886", "dipolemoment": "0.63701653", "qpoletens_xx": "5.088949", "qpoletens_yy": "-2.1521766", "qpoletens_zz": "-9.208697", "sterimol_burL": "6.9064403", "vbur_far_vbur": "0.38320842", "vbur_far_vtot": "-1.2628782", "sterimol_burB1": "3.109069", "sterimol_burB5": "6.740593", "vbur_near_vbur": "46.469505", "vbur_near_vtot": "306.0917", "vbur_ovbur_max": "15.289469", "vbur_ovbur_min": "-0.021405187", "vbur_ovtot_max": "98.150856", "vbur_ovtot_min": "-0.026531776", "vbur_qvbur_max": "14.233168", "vbur_qvbur_min": "8.915124", "vbur_qvtot_max": "106.24458", "vbur_qvtot_min": "26.643711", "vbur_max_delta_qvbur": "5.2061763", "vbur_max_delta_qvtot": "48.275402"}, "delta_data": {"pyr_P": "0.047787245", "pyr_alpha": "8.27272", "qpole_amp": "6.135606", "vbur_vbur": "17.991034", "sterimol_L": "2.9686878", "sterimol_B1": "1.3673786", "sterimol_B5": "0.35197285", "dipolemoment": "1.8839346", "qpoletens_xx": "4.4813128", "qpoletens_yy": "5.0961637", "qpoletens_zz": "5.662895", "sterimol_burL": "0.64699876", "vbur_far_vbur": "4.2386675", "vbur_far_vtot": "19.886467", "sterimol_burB1": "1.1399143", "sterimol_burB5": "0.25654495", "vbur_near_vbur": "14.700477", "vbur_near_vtot": "19.176893", "vbur_ovbur_max": "5.258915", "vbur_ovbur_min": "0.090118065", "vbur_ovtot_max": "22.521585", "vbur_ovtot_min": "0.15223838", "vbur_qvbur_max": "8.831639", "vbur_qvbur_min": "2.914568", "vbur_qvtot_max": "11.759755", "vbur_qvtot_min": "24.0404", "vbur_max_delta_qvbur": "6.950881", "vbur_max_delta_qvtot": "31.184557"}, "vburminconf_data": {"pyr_P": "0.9355993", "pyr_alpha": "17.176231", "qpole_amp": "10.930113", "vbur_vbur": "45.529415", "sterimol_L": "9.565817", "sterimol_B1": "4.2215834", "sterimol_B5": "7.0360694", "dipolemoment": "1.5860078", "qpoletens_xx": "6.8938313", "qpoletens_yy": "1.4485233", "qpoletens_zz": "-7.130266", "sterimol_burL": "7.43139", "vbur_far_vbur": "-0.10454155", "vbur_far_vtot": "-0.9926606", "sterimol_burB1": "3.9587326", "sterimol_burB5": "6.7459865", "vbur_near_vbur": "46.412968", "vbur_near_vtot": "325.05356", "vbur_ovbur_max": "15.973644", "vbur_ovbur_min": "-0.0131899705", "vbur_ovtot_max": "112.03149", "vbur_ovtot_min": "0.00414199", "vbur_qvbur_max": "14.701924", "vbur_qvbur_min": "9.177137", "vbur_qvtot_max": "112.53995", "vbur_qvtot_min": "41.92599", "vbur_max_delta_qvbur": "5.885127", "vbur_max_delta_qvtot": "57.617847"}, "boltzmann_averaged_data": {"nbo_P": "1.3181075", "nmr_P": "85.34875", "pyr_P": "0.96073824", "fmo_mu": "-0.14326803", "vmin_r": "1.9326688", "volume": "367.05643", "Pint_dP": "3.871223", "fmo_eta": "0.20172071", "fukui_m": "0.032355994", "fukui_p": "0.14707762", "nuesp_P": "-54.10581", "somo_ra": "0.051263064", "somo_rc": "-0.37939453", "nbo_P_ra": "1.203241", "nbo_P_rc": "1.4072767", "efg_amp_P": "2.561252", "fmo_omega": "0.050811205", "pyr_alpha": "13.2876835", "qpole_amp": "10.377919", "vbur_vbur": "53.89107", "vbur_vtot": "325.48877", "vmin_vmin": "-0.030936869", "E_solv_cds": "-7.2735596", "Pint_P_int": "19.345886", "Pint_P_max": "33.897514", "Pint_P_min": "13.171839", "fmo_e_homo": "-0.24195172", "fmo_e_lumo": "-0.04208979", "nbo_lp_P_e": "-0.38018087", "sphericity": "0.74976736", "sterimol_L": "8.693531", "E_oxidation": "0.28803307", "E_reduction": "0.004931317", "sterimol_B1": "3.779275", "sterimol_B5": "7.378202", "E_solv_total": "-15.153983", "dipolemoment": "1.0241289", "efgtens_xx_P": "-1.3630527", "efgtens_yy_P": "-0.65882784", "efgtens_zz_P": "2.0726614", "nbo_bd_e_avg": "-0.6105706", "nbo_bd_e_max": "-0.4936747", "nbo_lp_P_occ": "1.9582042", "qpoletens_xx": "7.5679946", "qpoletens_yy": "-0.7613771", "qpoletens_zz": "-6.9453197", "surface_area": "332.9682", "E_solv_elstat": "-7.806058", "nbo_bds_e_avg": "0.18416163", "nbo_bds_e_min": "0.15865639", "nmrtens_sxx_P": "-46.431988", "nmrtens_syy_P": "66.41854", "nmrtens_szz_P": "250.36351", "spindens_P_ra": "0.18922877", "spindens_P_rc": "0.02313987", "sterimol_burL": "7.312015", "vbur_far_vbur": "0.31471312", "vbur_far_vtot": "4.7797337", "nbo_bd_occ_avg": "1.9640921", "nbo_bd_occ_min": "1.9587591", "sterimol_burB1": "3.6721034", "sterimol_burB5": "7.0079427", "vbur_near_vbur": "53.721146", "vbur_near_vtot": "319.30124", "vbur_ovbur_max": "17.437273", "vbur_ovbur_min": "0.12115847", "vbur_ovtot_max": "113.9189", "vbur_ovtot_min": "0.061701227", "vbur_qvbur_max": "18.449125", "vbur_qvbur_min": "9.690096", "vbur_qvtot_max": "115.37537", "vbur_qvtot_min": "42.23573", "nbo_bds_occ_avg": "0.07268602", "nbo_bds_occ_max": "0.090201825", "nbo_lp_P_percent_s": "63.05007", "vbur_max_delta_qvbur": "9.220415", "vbur_max_delta_qvtot": "66.88101", "vbur_ratio_vbur_vtot": "0.16500996"}} c1ccc(OP(Oc2ccccc2)c2ccccc2)cc1 {"max_data": {"B1": 4.517110756058794, "B5": 7.515698818403655, "lval": 9.575301712483945, "sasa": 531.7542534268368, "vbur": 62.370815650421115, "vtot": 322.2457014649011, "alpha": 227.577876, "p_int": 20.656938758511814, "sasa_P": 19.35994509918009, "pyr_val": 0.9604717828918216, "dip_norm": 1.1302305074629688, "far_vbur": 1.3637423717247747, "far_vtot": 11.376575376682009, "near_vbur": 61.007073278696346, "near_vtot": 319.9745047982717, "ovbur_max": 18.800995261470614, "ovbur_min": 0.0, "ovtot_max": 109.34206273174067, "ovtot_min": 0.0, "pyr_alpha": 19.64260066116797, "qvbur_max": 19.62856541867112, "qvbur_min": 12.063874826796084, "qvtot_max": 110.62371202173227, "qvtot_min": 54.00223308549013, "cone_angle": 187.71900859691405, "p_int_area": 373.9261890173988, "p_int_atom": 27.913929038260825, "sasa_volume": 834.1846980890886, "EA_delta_SCC": 1.5024, "IP_delta_SCC": 6.861, "HOMO_LUMO_gap": 3.709451186472, "sasa_volume_P": 21.353739498458232, "max_delta_qvbur": 9.289766412518334, "max_delta_qvtot": 77.3703416371022, "nucleophilicity": -6.5691, "p_int_atom_area": 18.89737045907157, "p_int_times_p_int_area": 7569.969492475635, "global_electrophilicity_index": 1.6316, "p_int_atom_times_p_int_atom_area": 485.72394674234215}, "min_data": {"B1": 3.1925631469530305, "B5": 7.131863279940621, "lval": 6.682243191862899, "sasa": 497.77324893100666, "vbur": 50.703242025664714, "vtot": 318.690867285512, "alpha": 227.425242, "p_int": 20.106750888760864, "sasa_P": 10.119971301844133, "pyr_val": 0.9189670869011438, "dip_norm": 0.19119100397246727, "far_vbur": 0.034967753121148075, "far_vtot": 0.9932133753774333, "near_vbur": 50.621650601715366, "near_vtot": 302.5160289819187, "ovbur_max": 17.40228513662469, "ovbur_min": 0.0, "ovtot_max": 98.79126637445836, "ovtot_min": 0.0, "pyr_alpha": 13.415677299666923, "qvbur_max": 17.483876560574036, "qvbur_min": 9.42963742500293, "qvtot_max": 103.69816076936475, "qvtot_min": 27.605111777746437, "cone_angle": 153.0020802816681, "p_int_area": 357.0309733350207, "p_int_atom": 23.902204398826456, "sasa_volume": 803.263046088162, "EA_delta_SCC": 1.1882, "IP_delta_SCC": 6.5691, "HOMO_LUMO_gap": 3.374628156408, "sasa_volume_P": 9.218687739333722, "max_delta_qvbur": 5.326754392121558, "max_delta_qvtot": 49.301484956401666, "nucleophilicity": -6.861, "p_int_atom_area": 14.697954801500108, "p_int_times_p_int_area": 7278.9791691635455, "global_electrophilicity_index": 1.3979, "p_int_atom_times_p_int_atom_area": 397.0082389235407}, "boltzmann_averaged_data": {"B1": 4.333084692185495, "B5": 7.296980483149718, "lval": 7.425605775760192, "sasa": 527.4821447832715, "vbur": 59.839238514887185, "vtot": 321.4784482782631, "alpha": 227.54231808782174, "p_int": 20.14822993304731, "B1_std": 0.3290558257738841, "B5_std": 0.04084524079743077, "sasa_P": 10.862755051179409, "pyr_val": 0.9529870360709222, "dip_norm": 0.2751459342878594, "far_vbur": 0.3508127237408208, "far_vtot": 3.749893362321456, "lval_std": 0.2653065415328007, "sasa_std": 1.4243360741250084, "vbur_std": 0.9546864474839795, "vtot_std": 0.1960737598893473, "alpha_std": 0.031416402843575233, "near_vbur": 59.48842579114636, "near_vtot": 314.2046910693488, "ovbur_max": 17.933847576618685, "ovbur_min": 0.0, "ovtot_max": 103.63007649125898, "ovtot_min": 0.0, "p_int_std": 0.04130595909649898, "pyr_alpha": 14.596351822283538, "qvbur_max": 18.17328216577147, "qvbur_min": 11.3739180022259, "qvtot_max": 105.38706831689655, "qvtot_min": 39.754553669829804, "cone_angle": 179.06389348318234, "p_int_area": 368.09561814763777, "p_int_atom": 27.192967617463708, "sasa_P_std": 1.3324969801600859, "pyr_val_std": 0.001992452350944302, "sasa_volume": 829.8106317778775, "EA_delta_SCC": 1.305116848336967, "IP_delta_SCC": 6.615604190083801, "dip_norm_std": 0.1035803850083945, "far_vbur_std": 0.23373135670352882, "far_vtot_std": 1.8207985022350681, "HOMO_LUMO_gap": 3.4956149505500105, "near_vbur_std": 0.7947832319140673, "near_vtot_std": 2.7165391474498315, "ovbur_max_std": 0.21209652940175774, "ovbur_min_std": 0.0, "ovtot_max_std": 1.2760065974070192, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.3106889846727017, "qvbur_max_std": 0.3862127580070456, "qvbur_min_std": 0.6449641071783888, "qvtot_max_std": 0.42126149002223223, "qvtot_min_std": 5.104707599889078, "sasa_volume_P": 10.069910294839607, "cone_angle_std": 2.634192874481384, "p_int_area_std": 1.6128006232634766, "p_int_atom_std": 0.592260539578537, "max_delta_qvbur": 6.321089215809323, "max_delta_qvtot": 54.30194749435968, "nucleophilicity": -6.615604190083801, "p_int_atom_area": 15.064339148370998, "sasa_volume_std": 1.7679632701806167, "EA_delta_SCC_std": 0.04177961397933333, "IP_delta_SCC_std": 0.03212561180339166, "HOMO_LUMO_gap_std": 0.03773474947131477, "sasa_volume_P_std": 1.453704525125797, "max_delta_qvbur_std": 0.89660288564681, "max_delta_qvtot_std": 9.852628082585438, "nucleophilicity_std": 0.03212561180339166, "p_int_atom_area_std": 0.7018120880340272, "p_int_times_p_int_area": 7416.512813517183, "p_int_times_p_int_area_std": 43.113232536432285, "global_electrophilicity_index": 1.4769643032860658, "p_int_atom_times_p_int_atom_area": 409.5132031033032, "global_electrophilicity_index_std": 0.02877429208803936, "p_int_atom_times_p_int_atom_area_std": 18.530301084873265}} \\x640010002000000140980441b034240c48400049022442000c00414010022000a0a50011440000c0040608684500000152870008040800008220802401408200081000200020ccc20440400c4140c8020a5530280822800410000c40110008850080004100010000a40606200a006808a8001202200040a50000201200203004 \\x2000000000204c0001000000000000000000000020808000000040010000000000000000000000000c0022001000000022000000000000000000000000000000 pco (-2.2964746952056885, -5.34554386138916, -0.0518381521105766, 4.812450885772705) (0.7239024043083191, 3.4430091381073) -146 CCCCOP(OCCCC)c1ccccc1 254.30999755859375 {"max_data": {"pyr_P": 0.9684819795565516, "pyr_alpha": 18.62218549655684, "qpole_amp": 9.61001722837391, "vbur_vbur": 79.42495355662162, "vbur_vtot": 297.11562061701267, "sterimol_L": 10.092248178933199, "sterimol_B1": 4.227670264570163, "sterimol_B5": 8.415043611570054, "dipolemoment": 1.6454795337228512, "qpoletens_xx": 6.795676242284401, "qpoletens_yy": 3.590776529791714, "qpoletens_zz": -2.5652719836194224, "sterimol_burL": 7.908071975226812, "vbur_far_vbur": 19.362832868404062, "vbur_far_vtot": 52.379147117007506, "sterimol_burB1": 4.19312616131605, "sterimol_burB5": 7.62192223519931, "vbur_near_vbur": 63.374500728958424, "vbur_near_vtot": 297.25801892631, "vbur_ovbur_max": 22.017338881476473, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 129.5576076200268, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 39.150303026527354, "vbur_qvbur_min": 12.496468811737252, "vbur_qvtot_max": 129.66233453852402, "vbur_qvtot_min": 49.52854057603298, "vbur_max_delta_qvbur": 29.42861926312781, "vbur_max_delta_qvtot": 92.58804793142497}, "min_data": {"pyr_P": 0.9247364621923225, "pyr_alpha": 11.945832715432186, "qpole_amp": 3.885028367241071, "vbur_vbur": 44.59842037171812, "vbur_vtot": 295.8279212712889, "sterimol_L": 6.930596307143272, "sterimol_B1": 2.97315454029735, "sterimol_B5": 5.968636855832884, "dipolemoment": 0.5713988841358202, "qpoletens_xx": 2.8005999625853546, "qpoletens_yy": -3.0463941054509034, "qpoletens_zz": -7.8129834255439095, "sterimol_burL": 6.902854823688497, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.97315454029735, "sterimol_burB5": 5.583278197912886, "vbur_near_vbur": 44.59842037171812, "vbur_near_vtot": 244.29221027492162, "vbur_ovbur_max": 14.57677316949967, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 77.9348994853665, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.57677316949967, "vbur_qvbur_min": 9.120288587073054, "vbur_qvtot_max": 88.6466934823661, "vbur_qvtot_min": 21.989635602718057, "vbur_max_delta_qvbur": 4.392799548819591, "vbur_max_delta_qvtot": 32.95978920054198}, "delta_data": {"pyr_P": 0.04374551736422905, "pyr_alpha": 6.676352781124653, "qpole_amp": 5.724988861132838, "vbur_vbur": 34.8265331849035, "vbur_vtot": 1.2876993457237518, "sterimol_L": 3.1616518717899265, "sterimol_B1": 1.2545157242728129, "sterimol_B5": 2.4464067557371703, "dipolemoment": 1.074080649587031, "qpoletens_xx": 3.995076279699046, "qpoletens_yy": 6.637170635242617, "qpoletens_zz": 5.247711441924487, "sterimol_burL": 1.0052171515383153, "vbur_far_vbur": 19.362832868404062, "vbur_far_vtot": 52.379147117007506, "sterimol_burB1": 1.2199716210186997, "sterimol_burB5": 2.0386440372864243, "vbur_near_vbur": 18.776080357240303, "vbur_near_vtot": 52.965808651388386, "vbur_ovbur_max": 7.440565711976802, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 51.6227081346603, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 24.573529857027683, "vbur_qvbur_min": 3.376180224664198, "vbur_qvtot_max": 41.01564105615792, "vbur_qvtot_min": 27.538904973314924, "vbur_max_delta_qvbur": 25.035819714308218, "vbur_max_delta_qvtot": 59.62825873088299}, "vburminconf_data": {"pyr_P": 0.9352261428695335, "pyr_alpha": 17.237678470706417, "qpole_amp": 8.416668273008238, "vbur_vbur": 44.59842037171812, "vbur_vtot": 296.2183259704217, "sterimol_L": 7.451763584630791, "sterimol_B1": 3.6526575209542456, "sterimol_B5": 8.415043611570054, "dipolemoment": 1.622132496017697, "qpoletens_xx": 6.309366946260756, "qpoletens_yy": -0.7958555942876044, "qpoletens_zz": -5.513511351973151, "sterimol_burL": 6.989111427824864, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.5469123269290836, "sterimol_burB5": 6.8800567935632175, "vbur_near_vbur": 44.59842037171812, "vbur_near_vtot": 296.2183259704217, "vbur_ovbur_max": 14.57677316949967, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 129.2100356544287, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.57677316949967, "vbur_qvbur_min": 9.148528012744036, "vbur_qvtot_max": 129.2100356544287, "vbur_qvtot_min": 38.748231021205456, "vbur_max_delta_qvbur": 5.428245156755635, "vbur_max_delta_qvtot": 86.81886953734563}, "boltzmann_averaged_data": {"nbo_P": 1.3045146784244945, "nmr_P": 99.8645500268755, "pyr_P": 0.9412594433134477, "fmo_mu": -0.1361961267788117, "vmin_r": 1.8565590137630368, "volume": 358.74571839012583, "Pint_dP": 3.802838428103299, "fmo_eta": 0.21663067230255745, "fukui_m": 0.3778082608928344, "fukui_p": 0.13258678432785403, "nuesp_P": -54.12734721472301, "somo_ra": 0.07887679535591118, "somo_rc": -0.4257338726043287, "nbo_P_ra": 1.1719278940966404, "nbo_P_rc": 1.682322939317329, "efg_amp_P": 2.3008235822728746, "fmo_omega": 0.042820863313094135, "pyr_alpha": 16.26697218415725, "qpole_amp": 8.236843109480755, "vbur_vbur": 49.38071878596216, "vbur_vtot": 296.3685967188662, "vmin_vmin": -0.04410055160293417, "E_solv_cds": -5.911479185475701, "Pint_P_int": 18.13184298177758, "Pint_P_max": 32.20945585782054, "Pint_P_min": 11.542132982851742, "fmo_e_homo": -0.24451146293009046, "fmo_e_lumo": -0.027880790627532983, "nbo_lp_P_e": -0.35493618690189016, "sphericity": 0.7427011892558387, "sterimol_L": 8.0622951624014, "E_oxidation": 0.30079447812025506, "E_reduction": 0.02583833879405548, "sterimol_B1": 3.7956248776928767, "sterimol_B5": 7.375748095604314, "E_solv_total": -11.297627796058906, "dipolemoment": 1.434162748404934, "efgtens_xx_P": -1.2374218672138348, "efgtens_yy_P": -0.6051650544474858, "efgtens_zz_P": 1.8425868761783404, "nbo_bd_e_avg": -0.6010410079356291, "nbo_bd_e_max": -0.48168270932256724, "nbo_lp_P_occ": 1.9514358229052124, "qpoletens_xx": 5.815298802400965, "qpoletens_yy": -0.3199275842012467, "qpoletens_zz": -5.49537121819972, "surface_area": 328.98636596871506, "E_solv_elstat": -5.386148610583204, "nbo_bds_e_avg": 0.21246713468642997, "nbo_bds_e_min": 0.20014383684181594, "nmrtens_sxx_P": -24.321355567010844, "nmrtens_syy_P": 89.53404987298651, "nmrtens_szz_P": 234.38091397628574, "spindens_P_ra": 0.13725380676403326, "spindens_P_rc": 0.45414762502239636, "sterimol_burL": 7.019296225080503, "vbur_far_vbur": 0.762754036358938, "vbur_far_vtot": 3.477588053885951, "nbo_bd_occ_avg": 1.9699644450627585, "nbo_bd_occ_min": 1.9608602547082272, "sterimol_burB1": 3.7020205236806647, "sterimol_burB5": 6.525022669731519, "vbur_near_vbur": 48.6179647496032, "vbur_near_vtot": 291.99375154340765, "vbur_ovbur_max": 16.569216746199025, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 100.5143180479021, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.270674307302396, "vbur_qvbur_min": 9.476929132924083, "vbur_qvtot_max": 101.95522672772368, "vbur_qvtot_min": 38.321350914097756, "nbo_bds_occ_avg": 0.06862887384157466, "nbo_bds_occ_max": 0.08045648622225551, "nbo_lp_P_percent_s": 60.590169451882815, "vbur_max_delta_qvbur": 7.68335337967818, "vbur_max_delta_qvtot": 59.115479477622905, "vbur_ratio_vbur_vtot": 0.16661749855253752}} {"max_data": {"B1": 4.533657460176047, "B5": 8.3664049525445, "lval": 10.115816249005263, "sasa": 543.6216557926722, "vbur": 105.12472179987816, "vtot": 294.76731295306655, "alpha": 195.894172, "p_int": 19.399706706944137, "sasa_P": 25.24992839639966, "pyr_val": 0.9814559497178589, "dip_norm": 1.2158363376704941, "far_vbur": 33.95368828063478, "far_vtot": 62.374359862197764, "near_vbur": 74.84264759696393, "near_vtot": 295.0753057509585, "ovbur_max": 22.36770607982772, "ovbur_min": 0.16318284789869103, "ovtot_max": 124.48033741611833, "ovtot_min": 0.20607585515152763, "pyr_alpha": 16.57447992981291, "qvbur_max": 39.94482998205815, "qvbur_min": 15.374155455598101, "qvtot_max": 127.81230797012567, "qvtot_min": 57.14510201437786, "cone_angle": 259.3738267457484, "p_int_area": 392.69184509328966, "p_int_atom": 31.993863526804777, "sasa_volume": 834.338558173115, "EA_delta_SCC": 1.5124, "IP_delta_SCC": 7.3008, "HOMO_LUMO_gap": 3.961439619109, "sasa_volume_P": 38.19318406192269, "max_delta_qvbur": 26.936825820991064, "max_delta_qvtot": 92.23242754070279, "nucleophilicity": -6.7715, "p_int_atom_area": 21.996939158707647, "p_int_times_p_int_area": 7184.570222202186, "global_electrophilicity_index": 1.6636, "p_int_atom_times_p_int_atom_area": 497.96221164575167}, "min_data": {"B1": 2.436163691608738, "B5": 5.963750230456139, "lval": 6.382651490045992, "sasa": 461.71102097364803, "vbur": 47.82423035202351, "vtot": 291.3898364021876, "alpha": 195.658804, "p_int": 17.91913057246594, "sasa_P": 0.17999948955849826, "pyr_val": 0.9400391897872342, "dip_norm": 0.1516212386178137, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 47.82423035202351, "near_vtot": 222.69254038908406, "ovbur_max": 14.243531438014315, "ovbur_min": 0.0, "ovtot_max": 77.18234509852198, "ovtot_min": 0.0, "pyr_alpha": 8.948555080901139, "qvbur_max": 14.243531438014315, "qvbur_min": 9.97746555723425, "qvtot_max": 82.2390434759917, "qvtot_min": 16.807240214620364, "cone_angle": 142.1486106949169, "p_int_area": 346.5902330869564, "p_int_atom": 21.895687249920428, "sasa_volume": 760.105961684154, "EA_delta_SCC": 1.2754, "IP_delta_SCC": 6.7715, "HOMO_LUMO_gap": 3.468393104272, "sasa_volume_P": 0.19177960838259375, "max_delta_qvbur": 3.112130027782177, "max_delta_qvtot": 24.417439995661844, "nucleophilicity": -7.3008, "p_int_atom_area": 6.999026095952432, "p_int_times_p_int_area": 6579.251889762454, "global_electrophilicity_index": 1.4896, "p_int_atom_times_p_int_atom_area": 212.92094297654532}, "boltzmann_averaged_data": {"B1": 3.343000935405146, "B5": 6.748703828074586, "lval": 7.778327935042403, "sasa": 494.16864345044075, "vbur": 70.19805525238942, "vtot": 292.6995441595439, "alpha": 195.76149715952556, "p_int": 18.654069593285914, "B1_std": 0.32952391860376634, "B5_std": 0.4091290136029445, "sasa_P": 8.482509150662649, "pyr_val": 0.9741658903020677, "dip_norm": 0.46608880722944096, "far_vbur": 6.579365800251928, "far_vtot": 20.35841994214762, "lval_std": 0.43283436647530094, "sasa_std": 13.175704641152597, "vbur_std": 8.450762855044484, "vtot_std": 0.44863424902078985, "alpha_std": 0.029294520283783796, "near_vbur": 63.6186894521375, "near_vtot": 267.18521760119677, "ovbur_max": 20.35549242013245, "ovbur_min": 0.00005409211289877283, "ovtot_max": 104.94170370852497, "ovtot_min": 0.0000412217665129476, "p_int_std": 0.2176443168104855, "pyr_alpha": 10.611499218852137, "qvbur_max": 25.87657948935696, "qvbur_min": 12.469400832485938, "qvtot_max": 106.23801256048446, "qvtot_min": 30.642518576108987, "cone_angle": 202.1699098899575, "p_int_area": 367.884507862801, "p_int_atom": 26.27154816445027, "sasa_P_std": 4.127542533006045, "pyr_val_std": 0.007197658274735285, "sasa_volume": 789.5300714699904, "EA_delta_SCC": 1.4010011791886703, "IP_delta_SCC": 7.001620088214115, "dip_norm_std": 0.12558713859441856, "far_vbur_std": 5.082024626125062, "far_vtot_std": 14.172080080927042, "HOMO_LUMO_gap": 3.7215595078322656, "near_vbur_std": 4.109148255875424, "near_vtot_std": 14.803032236830967, "ovbur_max_std": 1.5909616260237518, "ovbur_min_std": 0.002514706216281648, "ovtot_max_std": 10.092684926875076, "ovtot_min_std": 0.0029142943487194006, "pyr_alpha_std": 1.383452603596852, "qvbur_max_std": 5.175122529937444, "qvbur_min_std": 1.4394012275023294, "qvtot_max_std": 8.904090104426363, "qvtot_min_std": 6.655509517046198, "sasa_volume_P": 10.96265919582819, "cone_angle_std": 19.522665665514964, "p_int_area_std": 5.708666168275036, "p_int_atom_std": 1.582631179763474, "max_delta_qvbur": 12.970650992398234, "max_delta_qvtot": 69.77961543505945, "nucleophilicity": -7.001620088214115, "p_int_atom_area": 13.453272820314012, "sasa_volume_std": 12.292716747694593, "EA_delta_SCC_std": 0.030664524829239027, "IP_delta_SCC_std": 0.08141327871385828, "HOMO_LUMO_gap_std": 0.07501468640638921, "sasa_volume_P_std": 6.127372719808626, "max_delta_qvbur_std": 4.406539609441521, "max_delta_qvtot_std": 12.902744655608316, "nucleophilicity_std": 0.08141327871385828, "p_int_atom_area_std": 2.0620922425003956, "p_int_times_p_int_area": 6861.482049859314, "p_int_times_p_int_area_std": 55.88787215207659, "global_electrophilicity_index": 1.5759761051768282, "p_int_atom_times_p_int_atom_area": 350.56332796735194, "global_electrophilicity_index_std": 0.021939424859528257, "p_int_atom_times_p_int_atom_area_std": 36.10368525873945}} {"max_data": {"pyr_P": "0.9682612", "pyr_alpha": "18.91856", "qpole_amp": "9.14565", "vbur_vbur": "71.379776", "sterimol_L": "9.821228", "sterimol_B1": "4.56683", "sterimol_B5": "7.8457503", "dipolemoment": "1.8371217", "qpoletens_xx": "6.4521646", "qpoletens_yy": "2.2399993", "qpoletens_zz": "-2.4188566", "sterimol_burL": "7.728662", "vbur_far_vbur": "7.8504233", "vbur_far_vtot": "32.370388", "sterimol_burB1": "4.3842554", "sterimol_burB5": "7.3057055", "vbur_near_vbur": "64.18819", "vbur_near_vtot": "296.65793", "vbur_ovbur_max": "21.041517", "vbur_ovbur_min": "-0.122083515", "vbur_ovtot_max": "113.82542", "vbur_ovtot_min": "1.1880333", "vbur_qvbur_max": "25.755224", "vbur_qvbur_min": "12.21455", "vbur_qvtot_max": "115.80518", "vbur_qvtot_min": "54.125385", "vbur_max_delta_qvbur": "17.225039", "vbur_max_delta_qvtot": "84.25046"}, "min_data": {"pyr_P": "0.9248922", "pyr_alpha": "12.30387", "qpole_amp": "3.5523753", "vbur_vbur": "43.704727", "sterimol_L": "6.804406", "sterimol_B1": "3.113301", "sterimol_B5": "6.0217185", "dipolemoment": "0.6426634", "qpoletens_xx": "2.5050287", "qpoletens_yy": "-1.6111907", "qpoletens_zz": "-7.030958", "sterimol_burL": "6.8135543", "vbur_far_vbur": "0.12821202", "vbur_far_vtot": "-0.12398069", "sterimol_burB1": "3.045139", "sterimol_burB5": "5.7056065", "vbur_near_vbur": "44.55768", "vbur_near_vtot": "259.97113", "vbur_ovbur_max": "13.765684", "vbur_ovbur_min": "0.021608029", "vbur_ovtot_max": "82.87986", "vbur_ovtot_min": "0.061509203", "vbur_qvbur_max": "14.080089", "vbur_qvbur_min": "8.91118", "vbur_qvtot_max": "88.17969", "vbur_qvtot_min": "23.85702", "vbur_max_delta_qvbur": "3.2613912", "vbur_max_delta_qvtot": "30.148619"}, "delta_data": {"pyr_P": "0.044955015", "pyr_alpha": "6.83312", "qpole_amp": "5.474459", "vbur_vbur": "28.805962", "sterimol_L": "2.9479868", "sterimol_B1": "1.4864002", "sterimol_B5": "2.156064", "dipolemoment": "1.4500601", "qpoletens_xx": "3.674252", "qpoletens_yy": "4.1754756", "qpoletens_zz": "5.1401277", "sterimol_burL": "1.2027732", "vbur_far_vbur": "8.875211", "vbur_far_vtot": "29.773235", "sterimol_burB1": "1.3691826", "sterimol_burB5": "1.5655676", "vbur_near_vbur": "19.496264", "vbur_near_vtot": "31.133528", "vbur_ovbur_max": "6.892897", "vbur_ovbur_min": "0.11167692", "vbur_ovtot_max": "31.7127", "vbur_ovtot_min": "-0.3533642", "vbur_qvbur_max": "12.991123", "vbur_qvbur_min": "3.30641", "vbur_qvtot_max": "24.986591", "vbur_qvtot_min": "29.726276", "vbur_max_delta_qvbur": "12.649416", "vbur_max_delta_qvtot": "53.85303"}, "vburminconf_data": {"pyr_P": "0.9373502", "pyr_alpha": "16.554146", "qpole_amp": "7.567632", "vbur_vbur": "43.858166", "sterimol_L": "8.171489", "sterimol_B1": "4.002259", "sterimol_B5": "6.841304", "dipolemoment": "1.7620488", "qpoletens_xx": "4.9660707", "qpoletens_yy": "-0.25098217", "qpoletens_zz": "-5.203023", "sterimol_burL": "6.994187", "vbur_far_vbur": "-0.21064484", "vbur_far_vtot": "0.19245532", "sterimol_burB1": "3.7892237", "sterimol_burB5": "6.1946316", "vbur_near_vbur": "44.285713", "vbur_near_vtot": "294.59067", "vbur_ovbur_max": "14.086121", "vbur_ovbur_min": "0.02596773", "vbur_ovtot_max": "99.488594", "vbur_ovtot_min": "0.051007275", "vbur_qvbur_max": "14.033793", "vbur_qvbur_min": "9.237654", "vbur_qvtot_max": "96.81632", "vbur_qvtot_min": "41.557755", "vbur_max_delta_qvbur": "4.444195", "vbur_max_delta_qvtot": "50.68361"}, "boltzmann_averaged_data": {"nbo_P": "1.2871349", "nmr_P": "102.64437", "pyr_P": "0.946604", "fmo_mu": "-0.13149235", "vmin_r": "1.8576865", "volume": "358.55048", "Pint_dP": "3.7736049", "fmo_eta": "0.22032279", "fukui_m": "0.36674252", "fukui_p": "0.15233293", "nuesp_P": "-54.12709", "somo_ra": "0.08187819", "somo_rc": "-0.4164335", "nbo_P_ra": "1.1265787", "nbo_P_rc": "1.649457", "efg_amp_P": "2.2786899", "fmo_omega": "0.040278018", "pyr_alpha": "16.024014", "qpole_amp": "6.8695416", "vbur_vbur": "49.242798", "vbur_vtot": "296.2044", "vmin_vmin": "-0.044642754", "E_solv_cds": "-5.9125595", "Pint_P_int": "18.21101", "Pint_P_max": "31.715834", "Pint_P_min": "11.616977", "fmo_e_homo": "-0.24279916", "fmo_e_lumo": "-0.023117147", "nbo_lp_P_e": "-0.35395217", "sphericity": "0.7458511", "sterimol_L": "7.9094305", "E_oxidation": "0.29769325", "E_reduction": "0.029270064", "sterimol_B1": "3.7956903", "sterimol_B5": "7.0267825", "E_solv_total": "-11.100672", "dipolemoment": "1.396479", "efgtens_xx_P": "-1.1725551", "efgtens_yy_P": "-0.5997171", "efgtens_zz_P": "1.8549964", "nbo_bd_e_avg": "-0.6033187", "nbo_bd_e_max": "-0.47025383", "nbo_lp_P_occ": "1.9524173", "qpoletens_xx": "5.0832443", "qpoletens_yy": "-1.2025586", "qpoletens_zz": "-4.7485566", "surface_area": "326.95102", "E_solv_elstat": "-5.0908384", "nbo_bds_e_avg": "0.21516009", "nbo_bds_e_min": "0.20169584", "nmrtens_sxx_P": "-19.347466", "nmrtens_syy_P": "94.8014", "nmrtens_szz_P": "245.69041", "spindens_P_ra": "0.16821593", "spindens_P_rc": "0.4510878", "sterimol_burL": "7.021443", "vbur_far_vbur": "0.16447477", "vbur_far_vtot": "0.7054145", "nbo_bd_occ_avg": "1.9693359", "nbo_bd_occ_min": "1.9635968", "sterimol_burB1": "3.667892", "sterimol_burB5": "6.6308355", "vbur_near_vbur": "49.033657", "vbur_near_vtot": "295.27286", "vbur_ovbur_max": "16.653788", "vbur_ovbur_min": "-0.004276029", "vbur_ovtot_max": "101.60256", "vbur_ovtot_min": "0.0345225", "vbur_qvbur_max": "17.036844", "vbur_qvbur_min": "9.216917", "vbur_qvtot_max": "98.54443", "vbur_qvtot_min": "38.398674", "nbo_bds_occ_avg": "0.06599512", "nbo_bds_occ_max": "0.077738896", "nbo_lp_P_percent_s": "60.3483", "vbur_max_delta_qvbur": "7.5909543", "vbur_max_delta_qvtot": "59.69933", "vbur_ratio_vbur_vtot": "0.17274742"}} CCCCOP(OCCCC)c1ccccc1 {"max_data": {"B1": 4.592300047799309, "B5": 8.324441328638391, "lval": 9.521869507711948, "sasa": 549.2917215853078, "vbur": 60.08625577983944, "vtot": 294.4095818679778, "alpha": 195.841638, "p_int": 19.553598226165068, "sasa_P": 20.28994246189897, "pyr_val": 0.9603786994397387, "dip_norm": 1.137156541554416, "far_vbur": 1.9115705039560946, "far_vtot": 22.12558910773457, "near_vbur": 58.874040338306315, "near_vtot": 295.51569072830375, "ovbur_max": 17.472220642866986, "ovbur_min": 0.0, "ovtot_max": 124.47746913491363, "ovtot_min": 0.0, "pyr_alpha": 20.77827587698924, "qvbur_max": 19.069081368732753, "qvbur_min": 12.821509477754292, "qvtot_max": 124.47746913491363, "qvtot_min": 52.01732319126533, "cone_angle": 204.74801258930802, "p_int_area": 394.3917389273219, "p_int_atom": 27.530207295012165, "sasa_volume": 838.611001490011, "EA_delta_SCC": 1.3935, "IP_delta_SCC": 7.1582, "HOMO_LUMO_gap": 3.705612022372, "sasa_volume_P": 22.426566153402028, "max_delta_qvbur": 9.1382394823267, "max_delta_qvtot": 92.2115026640676, "nucleophilicity": -6.6778, "p_int_atom_area": 18.89737045907157, "p_int_times_p_int_area": 7195.632539628517, "global_electrophilicity_index": 1.5808, "p_int_atom_times_p_int_atom_area": 482.33766697695467}, "min_data": {"B1": 2.544003285125206, "B5": 6.052972504384977, "lval": 5.716716380847255, "sasa": 463.5103503223974, "vbur": 47.1831548781358, "vtot": 291.00393525519763, "alpha": 195.644806, "p_int": 17.892076145084758, "sasa_P": 7.4799787883195785, "pyr_val": 0.9115366535021706, "dip_norm": 0.11166019881766287, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 47.1831548781358, "near_vtot": 263.4491281799399, "ovbur_max": 14.453337956741205, "ovbur_min": 0.0, "ovtot_max": 83.67088492996066, "ovtot_min": 0.0, "pyr_alpha": 13.408974606639775, "qvbur_max": 14.453337956741205, "qvbur_min": 9.010024387549155, "qvtot_max": 87.83421807793853, "qvtot_min": 16.80977492894221, "cone_angle": 153.14568715529543, "p_int_area": 354.59685051104645, "p_int_atom": 22.95182778340271, "sasa_volume": 761.2002955118905, "EA_delta_SCC": 1.2023, "IP_delta_SCC": 6.6778, "HOMO_LUMO_gap": 3.253088213303, "sasa_volume_P": 6.521504319180579, "max_delta_qvbur": 2.412774965359219, "max_delta_qvtot": 36.43508733160259, "nucleophilicity": -7.1582, "p_int_atom_area": 13.49812175647969, "p_int_times_p_int_area": 6615.645371281215, "global_electrophilicity_index": 1.4344, "p_int_atom_times_p_int_atom_area": 338.3373336677112}, "boltzmann_averaged_data": {"B1": 3.01473643455662, "B5": 6.990777593915864, "lval": 7.778177113503037, "sasa": 484.01702704384064, "vbur": 54.43056395761724, "vtot": 291.89715123534825, "alpha": 195.76296508676697, "p_int": 18.981045454258247, "B1_std": 0.32770539661408105, "B5_std": 0.4888863045409895, "sasa_P": 11.827221840863412, "pyr_val": 0.9499902686486315, "dip_norm": 0.42858650172893153, "far_vbur": 0.030834933431715648, "far_vtot": 0.9931674898854723, "lval_std": 0.04525389413486669, "sasa_std": 16.82758796650637, "vbur_std": 0.9721542237168393, "vtot_std": 0.6926048886453815, "alpha_std": 0.027112923610505237, "near_vbur": 54.39972902418553, "near_vtot": 287.54621385589803, "ovbur_max": 15.332521266384587, "ovbur_min": 0.0, "ovtot_max": 107.19963708436154, "ovtot_min": 0.0, "p_int_std": 0.3476638561804116, "pyr_alpha": 15.093350309421597, "qvbur_max": 15.36199934244661, "qvbur_min": 10.486735859602868, "qvtot_max": 107.23677696550084, "qvtot_min": 23.351237686469084, "cone_angle": 172.06803260693076, "p_int_area": 366.8414060084557, "p_int_atom": 24.85246688002063, "sasa_P_std": 1.0671955122033758, "pyr_val_std": 0.0027767063166166985, "sasa_volume": 779.8094298025858, "EA_delta_SCC": 1.311288269061525, "IP_delta_SCC": 6.866489832186577, "dip_norm_std": 0.08483338931829408, "far_vbur_std": 0.15896107521412967, "far_vtot_std": 2.2883634134693187, "HOMO_LUMO_gap": 3.454730542497405, "near_vbur_std": 0.9182829398749403, "near_vtot_std": 3.299561311216114, "ovbur_max_std": 0.5116561911494525, "ovbur_min_std": 0.0, "ovtot_max_std": 3.52264361113717, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.40154829368624395, "qvbur_max_std": 0.572253952781231, "qvbur_min_std": 0.5703707708907992, "qvtot_max_std": 3.4496135984533236, "qvtot_min_std": 4.296441963261872, "sasa_volume_P": 12.41148519719206, "cone_angle_std": 6.577471615936479, "p_int_area_std": 6.274438549972667, "p_int_atom_std": 0.6519873747412384, "max_delta_qvbur": 4.617277453485114, "max_delta_qvtot": 73.65546861794844, "nucleophilicity": -6.866489832186577, "p_int_atom_area": 15.057529537193272, "sasa_volume_std": 15.15630449806109, "EA_delta_SCC_std": 0.014028424321042126, "IP_delta_SCC_std": 0.03598742009753215, "HOMO_LUMO_gap_std": 0.052030461290082416, "sasa_volume_P_std": 1.565634164360806, "max_delta_qvbur_std": 0.638505746567817, "max_delta_qvtot_std": 5.768539222005142, "nucleophilicity_std": 0.03598742009753215, "p_int_atom_area_std": 0.4329727450180012, "p_int_times_p_int_area": 6961.092832675632, "p_int_times_p_int_area_std": 57.696763354604364, "global_electrophilicity_index": 1.5048337977038166, "p_int_atom_times_p_int_atom_area": 374.3988167823001, "global_electrophilicity_index_std": 0.009179269961514473, "p_int_atom_times_p_int_atom_area_std": 18.777356519403863}} \\x06000048a80040000098024080104410c80000c90a004210050003400002203080810010440000080006400104008010588300491002000020000001006080004830002040000483010008000040000008e00020002280003301095000d808216060204100000800c4060c20020a08a0a0000000004410a000002c1000203800 \\x00200000022008000180010000000000000100002080800000404001000000004000000440000000081002001000800020000000000000000000000002000000 pco (-3.931974411010742, -4.361871719360352, 3.1271047592163086, 1.8198267221450808) (0.6956245303153992, 3.8985326290130615) -238 CCCCOP(c1ccccc1)c1ccccc1 258.3009948730469 {"max_data": {"pyr_P": 0.9601075162030541, "pyr_alpha": 21.11018806628762, "qpole_amp": 9.467172449287668, "vbur_vbur": 62.19262846939506, "vbur_vtot": 300.1688610288313, "sterimol_L": 10.280102576919013, "sterimol_B1": 4.431987764203771, "sterimol_B5": 8.446547037137927, "dipolemoment": 2.81033811860962, "qpoletens_xx": 6.90847926551378, "qpoletens_yy": 2.076138659240762, "qpoletens_zz": -3.38560143980224, "sterimol_burL": 7.429120262550221, "vbur_far_vbur": 4.810115505957451, "vbur_far_vtot": 27.270722756220444, "sterimol_burB1": 4.170811054839724, "sterimol_burB5": 7.422238385172649, "vbur_near_vbur": 58.8415499564384, "vbur_near_vtot": 299.77351347231775, "vbur_ovbur_max": 20.837558431222067, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 111.93026285969789, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 24.030705341352117, "vbur_qvbur_min": 11.519593864452132, "vbur_qvtot_max": 111.93026285969789, "vbur_qvtot_min": 58.71014100618683, "vbur_max_delta_qvbur": 13.030926090176967, "vbur_max_delta_qvtot": 70.50099892995928}, "min_data": {"pyr_P": 0.9088479037980788, "pyr_alpha": 13.605091223698832, "qpole_amp": 4.30085377136223, "vbur_vbur": 45.01364451954702, "vbur_vtot": 298.42225538944916, "sterimol_L": 7.55858728799585, "sterimol_B1": 3.540974363343551, "sterimol_B5": 6.2034947056568805, "dipolemoment": 0.3028410299472618, "qpoletens_xx": 2.500234153335177, "qpoletens_yy": -1.226385537282134, "qpoletens_zz": -6.457298535068062, "sterimol_burL": 7.154582081149247, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.5276415295211194, "sterimol_burB5": 6.028172068975533, "vbur_near_vbur": 45.01364451954703, "vbur_near_vtot": 272.8611735571144, "vbur_ovbur_max": 14.284965770899513, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 88.69921233087246, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.284965770899513, "vbur_qvbur_min": 9.446610839271079, "vbur_qvtot_max": 89.96845308392109, "vbur_qvtot_min": 32.0485962736319, "vbur_max_delta_qvbur": 4.095762626947026, "vbur_max_delta_qvtot": 30.069664674687672}, "delta_data": {"pyr_P": 0.05125961240497534, "pyr_alpha": 7.505096842588788, "qpole_amp": 5.166318677925438, "vbur_vbur": 17.17898394984804, "vbur_vtot": 1.7466056393821532, "sterimol_L": 2.7215152889231637, "sterimol_B1": 0.8910134008602197, "sterimol_B5": 2.2430523314810467, "dipolemoment": 2.507497088662358, "qpoletens_xx": 4.408245112178603, "qpoletens_yy": 3.3025241965228957, "qpoletens_zz": 3.071697095265822, "sterimol_burL": 0.27453818140097397, "vbur_far_vbur": 4.810115505957451, "vbur_far_vtot": 27.270722756220444, "sterimol_burB1": 0.6431695253186049, "sterimol_burB5": 1.3940663161971152, "vbur_near_vbur": 13.82790543689137, "vbur_near_vtot": 26.912339915203347, "vbur_ovbur_max": 6.552592660322555, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 23.231050528825435, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.745739570452605, "vbur_qvbur_min": 2.0729830251810526, "vbur_qvtot_max": 21.9618097757768, "vbur_qvtot_min": 26.66154473255493, "vbur_max_delta_qvbur": 8.93516346322994, "vbur_max_delta_qvtot": 40.43133425527161}, "vburminconf_data": {"pyr_P": 0.919791039340664, "pyr_alpha": 19.7095517649982, "qpole_amp": 8.268696377881064, "vbur_vbur": 45.01364451954702, "vbur_vtot": 298.5162241603822, "sterimol_L": 7.566687043097734, "sterimol_B1": 4.211407151334148, "sterimol_B5": 6.937652042842867, "dipolemoment": 2.638567168992519, "qpoletens_xx": 6.189087599582187, "qpoletens_yy": -0.7585074327121886, "qpoletens_zz": -5.430580166869999, "sterimol_burL": 7.164210691684967, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.988426426367627, "sterimol_burB5": 6.654550519352874, "vbur_near_vbur": 45.01364451954703, "vbur_near_vtot": 298.5162241603822, "vbur_ovbur_max": 14.284965770899513, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.54065299985034, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.284965770899513, "vbur_qvbur_min": 9.91203841051506, "vbur_qvtot_max": 91.54065299985034, "vbur_qvtot_min": 42.74071980020497, "vbur_max_delta_qvbur": 4.095762626947026, "vbur_max_delta_qvtot": 44.392302861824604}, "boltzmann_averaged_data": {"nbo_P": 1.0617771417400512, "nmr_P": 156.8329021190562, "pyr_P": 0.9560582119501392, "fmo_mu": -0.13472540783577647, "vmin_r": 1.8460242403320855, "volume": 352.4744788037195, "Pint_dP": 3.8928276915405213, "fmo_eta": 0.19706438553497502, "fukui_m": 0.3603603814266731, "fukui_p": 0.15895860092296987, "nuesp_P": -54.150879887697386, "somo_ra": 0.06180302751024812, "somo_rc": -0.3999275762679824, "nbo_P_ra": 0.9028185408170813, "nbo_P_rc": 1.4221375231667241, "efg_amp_P": 2.2047421623485786, "fmo_omega": 0.04605627119784282, "pyr_alpha": 14.252908079335752, "qpole_amp": 6.389764807997415, "vbur_vbur": 52.00461737293455, "vbur_vtot": 299.7300480669815, "vmin_vmin": -0.04529052732103784, "E_solv_cds": -6.678098812060123, "Pint_P_int": 18.728260840928332, "Pint_P_max": 32.17665401192961, "Pint_P_min": 11.839256181726833, "fmo_e_homo": -0.233257600603264, "fmo_e_lumo": -0.03619321506828897, "nbo_lp_P_e": -0.33911237911838144, "sphericity": 0.7525987575076409, "sterimol_L": 7.820975683884339, "E_oxidation": 0.285285029767591, "E_reduction": 0.013278643638569461, "sterimol_B1": 4.044530293892346, "sterimol_B5": 7.006015270376553, "E_solv_total": -12.722297692113958, "dipolemoment": 1.1960506071408525, "efgtens_xx_P": -1.3915847695554453, "efgtens_yy_P": -0.29312403362474165, "efgtens_zz_P": 1.6847090629518167, "nbo_bd_e_avg": -0.5332692599305721, "nbo_bd_e_max": -0.4765166007349748, "nbo_lp_P_occ": 1.9381553254771418, "qpoletens_xx": 3.7573892893477545, "qpoletens_yy": 1.2213185759805456, "qpoletens_zz": -4.9787078653283, "surface_area": 320.7519586707093, "E_solv_elstat": -6.044198880053835, "nbo_bds_e_avg": 0.21387992172950626, "nbo_bds_e_min": 0.1907989332191512, "nmrtens_sxx_P": -14.219047313353194, "nmrtens_syy_P": 207.70048851102152, "nmrtens_szz_P": 277.01723213513526, "spindens_P_ra": 0.19717245106388506, "spindens_P_rc": 0.4405244515692511, "sterimol_burL": 7.267511854824431, "vbur_far_vbur": 0.5262338452978045, "vbur_far_vtot": 3.4780649510971173, "nbo_bd_occ_avg": 1.9620675353869421, "nbo_bd_occ_min": 1.9552187420560718, "sterimol_burB1": 3.863264588479696, "sterimol_burB5": 6.5250903988079925, "vbur_near_vbur": 51.478383527636744, "vbur_near_vtot": 295.93273457921543, "vbur_ovbur_max": 16.430257949249373, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 97.69990731388195, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.9414980175747, "vbur_qvbur_min": 9.929095710722672, "vbur_qvtot_max": 98.22988122069549, "vbur_qvtot_min": 43.86354596672133, "nbo_bds_occ_avg": 0.04555704407358243, "nbo_bds_occ_max": 0.05472132028248906, "nbo_lp_P_percent_s": 56.06093789368874, "vbur_max_delta_qvbur": 6.893851728271655, "vbur_max_delta_qvtot": 49.18425915540863, "vbur_ratio_vbur_vtot": 0.173502487022891}} {"max_data": {"B1": 4.297284730867847, "B5": 8.335352896455975, "lval": 9.91215716161405, "sasa": 511.6929224255857, "vbur": 81.6613594555878, "vtot": 297.2430595192777, "alpha": 207.050592, "p_int": 19.999280290270327, "sasa_P": 22.489936223169437, "pyr_val": 0.9733234686275621, "dip_norm": 1.2690587062858834, "far_vbur": 19.092393204146852, "far_vtot": 30.915647520408957, "near_vbur": 64.78359061578033, "near_vtot": 296.96276665154994, "ovbur_max": 22.32108240899952, "ovbur_min": 0.0, "ovtot_max": 115.56384185313216, "ovtot_min": 0.0, "pyr_alpha": 18.761376930862813, "qvbur_max": 38.03325947810205, "qvbur_min": 13.485896787056108, "qvtot_max": 116.95212244328629, "qvtot_min": 59.019222104946614, "cone_angle": 224.03960486951144, "p_int_area": 367.64886164436484, "p_int_atom": 28.142677072350946, "sasa_volume": 798.5127073385484, "EA_delta_SCC": 1.6051, "IP_delta_SCC": 6.9369, "HOMO_LUMO_gap": 3.714139897169, "sasa_volume_P": 34.72947264773714, "max_delta_qvbur": 25.841169556528428, "max_delta_qvtot": 68.82506198461022, "nucleophilicity": -6.6495, "p_int_atom_area": 20.897092200772267, "p_int_times_p_int_area": 7062.5239261211345, "global_electrophilicity_index": 1.7071, "p_int_atom_times_p_int_atom_area": 496.61694592076645}, "min_data": {"B1": 3.3352399482419233, "B5": 6.110471153570293, "lval": 7.088491258204924, "sasa": 458.50186207416556, "vbur": 49.42109107788928, "vtot": 293.94660260704217, "alpha": 206.913378, "p_int": 19.143138158108407, "sasa_P": 4.799986388226463, "pyr_val": 0.9266113209625872, "dip_norm": 0.22824767249634773, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.42109107788928, "near_vtot": 265.27754806843825, "ovbur_max": 14.348434697377762, "ovbur_min": 0.0, "ovtot_max": 85.32593466554464, "ovtot_min": 0.0, "pyr_alpha": 10.944682482793642, "qvbur_max": 14.348434697377762, "qvbur_min": 10.443702265516226, "qvtot_max": 87.54940457867197, "qvtot_min": 32.053439023292796, "cone_angle": 141.04956543153375, "p_int_area": 336.7579516944521, "p_int_atom": 23.139485262172514, "sasa_volume": 747.3588774756944, "EA_delta_SCC": 1.2487, "IP_delta_SCC": 6.6495, "HOMO_LUMO_gap": 3.40760892887, "sasa_volume_P": 5.90815425492714, "max_delta_qvbur": 3.2403451225597237, "max_delta_qvtot": 28.56587177918111, "nucleophilicity": -6.9369, "p_int_atom_area": 11.298427840608925, "p_int_times_p_int_area": 6653.912160400919, "global_electrophilicity_index": 1.4593, "p_int_atom_times_p_int_atom_area": 316.8102658147966}, "boltzmann_averaged_data": {"B1": 3.6330240943984493, "B5": 6.581834717362196, "lval": 7.590154043766672, "sasa": 484.87153685510316, "vbur": 61.66728781981061, "vtot": 295.80320731265607, "alpha": 206.96193327537904, "p_int": 19.605733079677027, "B1_std": 0.17684859381500848, "B5_std": 0.39655488428139307, "sasa_P": 13.859227927392743, "pyr_val": 0.9714678301600298, "dip_norm": 0.49821857369581385, "far_vbur": 2.9099087603298104, "far_vtot": 8.483796771684178, "lval_std": 0.106638934582804, "sasa_std": 12.998326234596936, "vbur_std": 6.6928395210093194, "vtot_std": 0.3684172595176404, "alpha_std": 0.024153079073599745, "near_vbur": 58.75737905948078, "near_vtot": 287.2117467887566, "ovbur_max": 18.92859844504499, "ovbur_min": 0.0, "ovtot_max": 101.93305258802438, "ovtot_min": 0.0, "p_int_std": 0.2353785389446977, "pyr_alpha": 11.327436019022189, "qvbur_max": 21.587674080179244, "qvbur_min": 10.980789549536896, "qvtot_max": 102.81743267933139, "qvtot_min": 40.142499494937624, "cone_angle": 175.88385109434608, "p_int_area": 353.6456417264896, "p_int_atom": 25.33346051770069, "sasa_P_std": 3.5084961507247865, "pyr_val_std": 0.0017947086946299821, "sasa_volume": 773.559759672106, "EA_delta_SCC": 1.367469397224111, "IP_delta_SCC": 6.769255604775809, "dip_norm_std": 0.07808393080917406, "far_vbur_std": 4.330023896173337, "far_vtot_std": 10.73834655509627, "HOMO_LUMO_gap": 3.6053609165579084, "near_vbur_std": 2.654743715509877, "near_vtot_std": 10.523946383099116, "ovbur_max_std": 1.9705503669910847, "ovbur_min_std": 0.0, "ovtot_max_std": 10.919178913302249, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.32039269683645727, "qvbur_max_std": 5.619980956053187, "qvbur_min_std": 0.6123570796172405, "qvtot_max_std": 10.532625472394226, "qvtot_min_std": 8.28221982274234, "sasa_volume_P": 19.233929135132758, "cone_angle_std": 20.286202354968587, "p_int_area_std": 4.254211396949826, "p_int_atom_std": 1.1577342664674382, "max_delta_qvbur": 10.41161772142991, "max_delta_qvtot": 56.4909784596332, "nucleophilicity": -6.769255604775809, "p_int_atom_area": 15.706072193161113, "sasa_volume_std": 11.465198321339903, "EA_delta_SCC_std": 0.027003191243613254, "IP_delta_SCC_std": 0.04437107887779623, "HOMO_LUMO_gap_std": 0.04874721763443141, "sasa_volume_P_std": 5.567901743023821, "max_delta_qvbur_std": 4.966503749560792, "max_delta_qvtot_std": 14.115186987751676, "nucleophilicity_std": 0.04437107887779623, "p_int_atom_area_std": 1.3741029638343614, "p_int_times_p_int_area": 6932.678094259993, "p_int_times_p_int_area_std": 52.1601254835038, "global_electrophilicity_index": 1.532183037678493, "p_int_atom_times_p_int_atom_area": 396.43653006470953, "global_electrophilicity_index_std": 0.018507101995049628, "p_int_atom_times_p_int_atom_area_std": 20.539419698955314}} {"max_data": {"pyr_P": "0.9579669", "pyr_alpha": "20.280731", "qpole_amp": "9.386777", "vbur_vbur": "59.855453", "sterimol_L": "9.302987", "sterimol_B1": "4.463464", "sterimol_B5": "8.058429", "dipolemoment": "2.4323354", "qpoletens_xx": "6.998059", "qpoletens_yy": "2.231996", "qpoletens_zz": "-3.2491465", "sterimol_burL": "7.472505", "vbur_far_vbur": "3.2004788", "vbur_far_vtot": "17.304573", "sterimol_burB1": "4.2664022", "sterimol_burB5": "7.1061835", "vbur_near_vbur": "57.152866", "vbur_near_vtot": "302.36215", "vbur_ovbur_max": "20.30843", "vbur_ovbur_min": "-0.31370902", "vbur_ovtot_max": "109.109665", "vbur_ovtot_min": "0.1464995", "vbur_qvbur_max": "23.550367", "vbur_qvbur_min": "10.693428", "vbur_qvtot_max": "112.70516", "vbur_qvtot_min": "55.64555", "vbur_max_delta_qvbur": "13.116369", "vbur_max_delta_qvtot": "65.19779"}, "min_data": {"pyr_P": "0.91531545", "pyr_alpha": "14.470387", "qpole_amp": "4.8020873", "vbur_vbur": "44.639046", "sterimol_L": "7.6000233", "sterimol_B1": "3.51526", "sterimol_B5": "6.296246", "dipolemoment": "0.44840565", "qpoletens_xx": "3.0185091", "qpoletens_yy": "-1.3243437", "qpoletens_zz": "-6.6856465", "sterimol_burL": "7.107765", "vbur_far_vbur": "0.3152851", "vbur_far_vtot": "-1.6830729", "sterimol_burB1": "3.4578385", "sterimol_burB5": "5.961184", "vbur_near_vbur": "45.662052", "vbur_near_vtot": "282.69196", "vbur_ovbur_max": "13.978461", "vbur_ovbur_min": "-0.0033254765", "vbur_ovtot_max": "88.91629", "vbur_ovtot_min": "-0.0072953384", "vbur_qvbur_max": "13.7126465", "vbur_qvbur_min": "9.521319", "vbur_qvtot_max": "90.15718", "vbur_qvtot_min": "35.29362", "vbur_max_delta_qvbur": "4.057104", "vbur_max_delta_qvtot": "34.43746"}, "delta_data": {"pyr_P": "0.04070976", "pyr_alpha": "6.150474", "qpole_amp": "4.3498235", "vbur_vbur": "15.004149", "sterimol_L": "2.031396", "sterimol_B1": "0.9010467", "sterimol_B5": "1.7876166", "dipolemoment": "1.3936657", "qpoletens_xx": "3.0312355", "qpoletens_yy": "3.118644", "qpoletens_zz": "3.6702766", "sterimol_burL": "0.4145357", "vbur_far_vbur": "3.708794", "vbur_far_vtot": "18.433405", "sterimol_burB1": "0.7670018", "sterimol_burB5": "1.2518407", "vbur_near_vbur": "11.259258", "vbur_near_vtot": "18.391237", "vbur_ovbur_max": "6.4120035", "vbur_ovbur_min": "-0.17273383", "vbur_ovtot_max": "19.304695", "vbur_ovtot_min": "0.04901189", "vbur_qvbur_max": "9.217492", "vbur_qvbur_min": "1.0984405", "vbur_qvtot_max": "17.129671", "vbur_qvtot_min": "19.657873", "vbur_max_delta_qvbur": "8.653007", "vbur_max_delta_qvtot": "30.460062"}, "vburminconf_data": {"pyr_P": "0.9259482", "pyr_alpha": "18.892355", "qpole_amp": "8.139421", "vbur_vbur": "44.462833", "sterimol_L": "7.8999", "sterimol_B1": "4.173189", "sterimol_B5": "6.708331", "dipolemoment": "2.3556604", "qpoletens_xx": "5.6305037", "qpoletens_yy": "0.06598388", "qpoletens_zz": "-5.5809994", "sterimol_burL": "7.121003", "vbur_far_vbur": "-0.13450503", "vbur_far_vtot": "-1.8480438", "sterimol_burB1": "3.9115536", "sterimol_burB5": "6.2419176", "vbur_near_vbur": "45.592075", "vbur_near_vtot": "299.85513", "vbur_ovbur_max": "13.859413", "vbur_ovbur_min": "-0.0060570645", "vbur_ovtot_max": "98.38385", "vbur_ovtot_min": "0.0040334547", "vbur_qvbur_max": "13.793338", "vbur_qvbur_min": "9.854908", "vbur_qvtot_max": "95.700264", "vbur_qvtot_min": "37.458057", "vbur_max_delta_qvbur": "3.9183996", "vbur_max_delta_qvtot": "48.24546"}, "boltzmann_averaged_data": {"nbo_P": "1.0472585", "nmr_P": "149.43561", "pyr_P": "0.948297", "fmo_mu": "-0.13273127", "vmin_r": "1.8469241", "volume": "351.32602", "Pint_dP": "3.8621855", "fmo_eta": "0.19771725", "fukui_m": "0.350228", "fukui_p": "0.16149475", "nuesp_P": "-54.152378", "somo_ra": "0.06363327", "somo_rc": "-0.39633942", "nbo_P_ra": "0.91853875", "nbo_P_rc": "1.3919456", "efg_amp_P": "2.2546313", "fmo_omega": "0.04516613", "pyr_alpha": "15.426119", "qpole_amp": "6.5246897", "vbur_vbur": "49.136616", "vbur_vtot": "299.2545", "vmin_vmin": "-0.046558335", "E_solv_cds": "-6.5907845", "Pint_P_int": "18.786951", "Pint_P_max": "32.28054", "Pint_P_min": "11.948475", "fmo_e_homo": "-0.23057011", "fmo_e_lumo": "-0.035503417", "nbo_lp_P_e": "-0.3335073", "sphericity": "0.7568485", "sterimol_L": "7.7701354", "E_oxidation": "0.2837727", "E_reduction": "0.014752475", "sterimol_B1": "4.062473", "sterimol_B5": "6.9791555", "E_solv_total": "-12.694701", "dipolemoment": "0.8606145", "efgtens_xx_P": "-1.420042", "efgtens_yy_P": "-0.24639553", "efgtens_zz_P": "1.7239176", "nbo_bd_e_avg": "-0.5398326", "nbo_bd_e_max": "-0.47009355", "nbo_lp_P_occ": "1.9330065", "qpoletens_xx": "3.9603822", "qpoletens_yy": "1.1913699", "qpoletens_zz": "-5.19043", "surface_area": "317.58066", "E_solv_elstat": "-6.108476", "nbo_bds_e_avg": "0.21864055", "nbo_bds_e_min": "0.1941113", "nmrtens_sxx_P": "-17.681599", "nmrtens_syy_P": "202.11241", "nmrtens_szz_P": "275.0032", "spindens_P_ra": "0.20308578", "spindens_P_rc": "0.4425933", "sterimol_burL": "7.212586", "vbur_far_vbur": "-0.3912838", "vbur_far_vtot": "-0.9479236", "nbo_bd_occ_avg": "1.9608614", "nbo_bd_occ_min": "1.9553477", "sterimol_burB1": "3.9038606", "sterimol_burB5": "6.5182714", "vbur_near_vbur": "49.96694", "vbur_near_vtot": "301.69125", "vbur_ovbur_max": "16.303423", "vbur_ovbur_min": "-0.022788577", "vbur_ovtot_max": "97.68044", "vbur_ovtot_min": "0.0247354", "vbur_qvbur_max": "15.880722", "vbur_qvbur_min": "9.945039", "vbur_qvtot_max": "98.312706", "vbur_qvtot_min": "46.367195", "nbo_bds_occ_avg": "0.048274096", "nbo_bds_occ_max": "0.054911505", "nbo_lp_P_percent_s": "55.179382", "vbur_max_delta_qvbur": "6.0257034", "vbur_max_delta_qvtot": "54.15952", "vbur_ratio_vbur_vtot": "0.16980591"}} CCCCOP(c1ccccc1)c1ccccc1 {"max_data": {"B1": 4.43758465298405, "B5": 7.754177719337607, "lval": 8.8354714706421, "sasa": 511.29283217197553, "vbur": 56.75266331562332, "vtot": 296.5930181795846, "alpha": 207.019572, "p_int": 19.931704304999137, "sasa_P": 20.28994246189897, "pyr_val": 0.9527573289091245, "dip_norm": 1.3019258811468493, "far_vbur": 1.5735488904516632, "far_vtot": 15.055777096127215, "near_vbur": 56.193179265684954, "near_vtot": 296.5930181795846, "ovbur_max": 17.507188395988138, "ovbur_min": 0.0, "ovtot_max": 112.45148328246263, "ovtot_min": 0.0, "pyr_alpha": 22.842222747629886, "qvbur_max": 18.24151121153225, "qvbur_min": 12.110498497624285, "qvtot_max": 112.45148328246263, "qvtot_min": 54.99216566078631, "cone_angle": 188.6320146994244, "p_int_area": 367.44534418680274, "p_int_atom": 27.282236982525184, "sasa_volume": 797.5964188442463, "EA_delta_SCC": 1.5047, "IP_delta_SCC": 6.7626, "HOMO_LUMO_gap": 3.449182354457, "sasa_volume_P": 23.588709609323793, "max_delta_qvbur": 7.891056287672418, "max_delta_qvtot": 67.43901497499334, "nucleophilicity": -6.4987, "p_int_atom_area": 19.397300894496745, "p_int_times_p_int_area": 7163.097343530251, "global_electrophilicity_index": 1.6249, "p_int_atom_times_p_int_atom_area": 481.5930590511328}, "min_data": {"B1": 3.2320011990325956, "B5": 6.1456343696901605, "lval": 7.3367608423067345, "sasa": 462.0720828686838, "vbur": 46.81016551151023, "vtot": 294.2721653138941, "alpha": 206.873266, "p_int": 19.097594280277985, "sasa_P": 9.619972719737213, "pyr_val": 0.894148990369191, "dip_norm": 0.381854684402326, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.81016551151022, "near_vtot": 276.70821466696566, "ovbur_max": 14.301811026549563, "ovbur_min": 0.0, "ovtot_max": 88.68958454163102, "ovtot_min": 0.0, "pyr_alpha": 14.791374161900388, "qvbur_max": 14.301811026549563, "qvbur_min": 9.80262679162851, "qvtot_max": 89.75076928153423, "qvtot_min": 26.972586115064352, "cone_angle": 140.99869876840307, "p_int_area": 336.25825929886315, "p_int_atom": 23.58508227354355, "sasa_volume": 749.6793638564205, "EA_delta_SCC": 1.2283, "IP_delta_SCC": 6.4987, "HOMO_LUMO_gap": 3.109922774465, "sasa_volume_P": 9.757431107804205, "max_delta_qvbur": 2.867355755934142, "max_delta_qvtot": 30.435601736551234, "nucleophilicity": -6.7626, "p_int_atom_area": 14.497982627330039, "p_int_times_p_int_area": 6639.235627641494, "global_electrophilicity_index": 1.4277, "p_int_atom_times_p_int_atom_area": 370.5606470809508}, "boltzmann_averaged_data": {"B1": 3.727507199560149, "B5": 6.849122762825885, "lval": 7.761909371572588, "sasa": 483.0482641285226, "vbur": 52.00191095340301, "vtot": 295.0264241409332, "alpha": 206.94211084863548, "p_int": 19.689245081164913, "B1_std": 0.10487107953314334, "B5_std": 0.4800496414399437, "sasa_P": 15.084617162928424, "pyr_val": 0.9398162085374382, "dip_norm": 0.618249751732098, "far_vbur": 0.027949514522575696, "far_vtot": 0.6450066489683218, "lval_std": 0.02486357839880271, "sasa_std": 11.712910348826632, "vbur_std": 0.668930498558576, "vtot_std": 0.38855725519994666, "alpha_std": 0.022195851464258037, "near_vbur": 51.97396143888044, "near_vtot": 290.6589163258577, "ovbur_max": 15.302695775831229, "ovbur_min": 0.0, "ovtot_max": 103.31106304221711, "ovtot_min": 0.0, "p_int_std": 0.24746447508025446, "pyr_alpha": 16.829450187691773, "qvbur_max": 15.333326581542691, "qvbur_min": 10.220087848995806, "qvtot_max": 103.38828580396184, "qvtot_min": 35.23266232054148, "cone_angle": 157.40645057607162, "p_int_area": 354.4409385090676, "p_int_atom": 24.978344324372326, "sasa_P_std": 0.5091528989125697, "pyr_val_std": 0.0012152090123811585, "sasa_volume": 772.0434174906156, "EA_delta_SCC": 1.3697959468784062, "IP_delta_SCC": 6.6157568857065705, "dip_norm_std": 0.03062805296118815, "far_vbur_std": 0.14993121099133638, "far_vtot_std": 1.7158539234044696, "HOMO_LUMO_gap": 3.347347636849289, "near_vbur_std": 0.5847532198830687, "near_vtot_std": 2.839236013081001, "ovbur_max_std": 0.31660634274607447, "ovbur_min_std": 0.0, "ovtot_max_std": 7.346672775109051, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.1879106307825881, "qvbur_max_std": 0.4111418357060333, "qvbur_min_std": 0.14596360892492838, "qvtot_max_std": 7.235863755508272, "qvtot_min_std": 2.167697613759905, "sasa_volume_P": 16.013338236663497, "cone_angle_std": 4.784399831914193, "p_int_area_std": 3.5284214358473687, "p_int_atom_std": 0.23799020286405534, "max_delta_qvbur": 5.0643298504958825, "max_delta_qvtot": 61.47151336948603, "nucleophilicity": -6.6157568857065705, "p_int_atom_area": 16.049614275525926, "sasa_volume_std": 10.56403697235904, "EA_delta_SCC_std": 0.019479666357377363, "IP_delta_SCC_std": 0.012700281824755709, "HOMO_LUMO_gap_std": 0.023192118288070912, "sasa_volume_P_std": 0.8046755265591223, "max_delta_qvbur_std": 0.29680202337215883, "max_delta_qvtot_std": 6.3145307360191945, "nucleophilicity_std": 0.012700281824755709, "p_int_atom_area_std": 0.4524637854654944, "p_int_times_p_int_area": 6977.98222544599, "p_int_times_p_int_area_std": 53.352203560234045, "global_electrophilicity_index": 1.5195270098102942, "p_int_atom_times_p_int_atom_area": 400.93464403064655, "global_electrophilicity_index_std": 0.013341811095564683, "p_int_atom_times_p_int_atom_area_std": 13.315582048763643}} \\x8680000882000020001840408410141018c000c90300400a242003400000a03080810012440408080406c00004000028508100491202100040800401004084008830012002800483810008800040800008100000002280003181085000da0823600020030000480c80140020020a0c00b1801020004410a000002c100000100c \\x00200004022008000180010000000000000000000080800000404000000000000000000440000000081002001000800022000400000000000000000002000002 pco (-3.4173812866210938, -1.6501573324203491, 0.2115060240030288, 0.468033879995346) (1.8939481973648071, 4.001185894012451) -57 CCN(CC)P(c1ccccc1)N(CC)CC 252.3419952392578 {"max_data": {"pyr_P": 0.9485827172619751, "pyr_alpha": 24.447760818894753, "qpole_amp": 6.491064429969215, "vbur_vbur": 78.05063484063378, "vbur_vtot": 300.1634342528242, "sterimol_L": 7.835523165899401, "sterimol_B1": 4.506636627232289, "sterimol_B5": 6.271929779700896, "dipolemoment": 1.8448976186287143, "qpoletens_xx": 3.451994590347278, "qpoletens_yy": 2.208012277138862, "qpoletens_zz": -2.047897091508794, "sterimol_burL": 7.532501429798277, "vbur_far_vbur": 8.372466759119241, "vbur_far_vtot": 10.958821716808115, "sterimol_burB1": 4.506636627232289, "sterimol_burB5": 6.050388729156444, "vbur_near_vbur": 69.67816808151454, "vbur_near_vtot": 300.0187966519219, "vbur_ovbur_max": 21.519488265943586, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 94.23472682092157, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 28.20700262669417, "vbur_qvbur_min": 14.567360027609343, "vbur_qvtot_max": 94.23472682092157, "vbur_qvtot_min": 62.658378769567115, "vbur_max_delta_qvbur": 18.017799482741687, "vbur_max_delta_qvtot": 47.220556273746595}, "min_data": {"pyr_P": 0.8722218576772431, "pyr_alpha": 15.539588658598777, "qpole_amp": 3.0027011767785, "vbur_vbur": 54.6077279150999, "vbur_vtot": 298.6468925768283, "sterimol_L": 7.101696501616644, "sterimol_B1": 3.5579517077380327, "sterimol_B5": 6.027879193948507, "dipolemoment": 0.7528538996248325, "qpoletens_xx": 2.031291054281566, "qpoletens_yy": -0.1433968639062826, "qpoletens_zz": -5.208777610979624, "sterimol_burL": 6.7658273794786306, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.5579517077380327, "sterimol_burB5": 5.684045128821081, "vbur_near_vbur": 54.6077279150999, "vbur_near_vtot": 286.4265508315343, "vbur_ovbur_max": 16.8369731278328, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 85.00595054041318, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.8369731278328, "vbur_qvbur_min": 9.87438584295375, "vbur_qvtot_max": 86.00950776530622, "vbur_qvtot_min": 45.04336199857231, "vbur_max_delta_qvbur": 4.0152279685520025, "vbur_max_delta_qvtot": 24.998893734206256}, "delta_data": {"pyr_P": 0.07636085958473193, "pyr_alpha": 8.908172160295976, "qpole_amp": 3.4883632531907147, "vbur_vbur": 23.442906925533876, "vbur_vtot": 1.5165416759958816, "sterimol_L": 0.7338266642827573, "sterimol_B1": 0.9486849194942559, "sterimol_B5": 0.24405058575238936, "dipolemoment": 1.0920437190038816, "qpoletens_xx": 1.4207035360657123, "qpoletens_yy": 2.3514091410451448, "qpoletens_zz": 3.1608805194708296, "sterimol_burL": 0.7666740503196463, "vbur_far_vbur": 8.372466759119241, "vbur_far_vtot": 10.958821716808115, "sterimol_burB1": 0.9486849194942559, "sterimol_burB5": 0.3663436003353633, "vbur_near_vbur": 15.070440166414642, "vbur_near_vtot": 13.592245820387575, "vbur_ovbur_max": 4.682515138110787, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 9.228776280508384, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.37002949886137, "vbur_qvbur_min": 4.6929741846555935, "vbur_qvtot_max": 8.22521905561534, "vbur_qvtot_min": 17.615016770994806, "vbur_max_delta_qvbur": 14.002571514189684, "vbur_max_delta_qvtot": 22.22166253954034}, "vburminconf_data": {"pyr_P": 0.9420897568186456, "pyr_alpha": 16.510159278322067, "qpole_amp": 4.2010809541000365, "vbur_vbur": 54.6077279150999, "vbur_vtot": 300.0187966519219, "sterimol_L": 7.690125597045249, "sterimol_B1": 4.383471604297699, "sterimol_B5": 6.149650533370309, "dipolemoment": 0.8499497657904052, "qpoletens_xx": 2.486091749929412, "qpoletens_yy": 0.8036713623816554, "qpoletens_zz": -3.2897631123110673, "sterimol_burL": 7.285394257882723, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.383471604297699, "sterimol_burB5": 6.0293626764553325, "vbur_near_vbur": 54.6077279150999, "vbur_near_vtot": 300.0187966519219, "vbur_ovbur_max": 16.8369731278328, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.99121634274934, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.8369731278328, "vbur_qvbur_min": 11.783161837381307, "vbur_qvtot_max": 89.99121634274934, "vbur_qvtot_min": 62.492024952191784, "vbur_max_delta_qvbur": 4.0152279685520025, "vbur_max_delta_qvtot": 27.499191390557556}, "boltzmann_averaged_data": {"nbo_P": 1.1551096688789324, "nmr_P": 173.11688680976235, "pyr_P": 0.8794359169833744, "fmo_mu": -0.11941026833563413, "vmin_r": 1.8098740276937553, "volume": 364.1026882185745, "Pint_dP": 3.900437486963924, "fmo_eta": 0.19841780982768703, "fukui_m": 0.07399015117357709, "fukui_p": 0.08808136983414008, "nuesp_P": -54.16244326306874, "somo_ra": 0.08287312955065038, "somo_rc": -0.3807053123289736, "nbo_P_ra": 1.0670282990447926, "nbo_P_rc": 1.2290998200525098, "efg_amp_P": 2.073305409905185, "fmo_omega": 0.03593273985908852, "pyr_alpha": 23.73913163761291, "qpole_amp": 6.159266293294264, "vbur_vbur": 60.880150465816236, "vbur_vtot": 299.6060107508144, "vmin_vmin": -0.05598454794797466, "E_solv_cds": -5.510122170770709, "Pint_P_int": 18.568739707140335, "Pint_P_max": 33.18417776695381, "Pint_P_min": 12.164922579409458, "fmo_e_homo": -0.21861917324947772, "fmo_e_lumo": -0.02020136342179063, "nbo_lp_P_e": -0.30206056278712007, "sphericity": 0.7909899733777337, "sterimol_L": 7.274042562601551, "E_oxidation": 0.26730802463617453, "E_reduction": 0.031619900941248585, "sterimol_B1": 4.168674101422689, "sterimol_B5": 6.061074614675295, "E_solv_total": -10.54884837524062, "dipolemoment": 1.7300880954100364, "efgtens_xx_P": -1.034120964659812, "efgtens_yy_P": -0.6435604639691135, "efgtens_zz_P": 1.6776814253841925, "nbo_bd_e_avg": -0.5393029389554848, "nbo_bd_e_max": -0.47226144710768014, "nbo_lp_P_occ": 1.9091663266335683, "qpoletens_xx": 2.967024153536256, "qpoletens_yy": 2.0296171747466367, "qpoletens_zz": -4.996641328282894, "surface_area": 311.781980698777, "E_solv_elstat": -5.038726204469913, "nbo_bds_e_avg": 0.23647692226755973, "nbo_bds_e_min": 0.23373493685102614, "nmrtens_sxx_P": 117.26132113477853, "nmrtens_syy_P": 169.61245111273885, "nmrtens_szz_P": 232.47694441512445, "spindens_P_ra": 0.08423037848170453, "spindens_P_rc": 0.039507666115885444, "sterimol_burL": 6.8259062421448995, "vbur_far_vbur": 2.0239421920089953, "vbur_far_vtot": 3.161482118711634, "nbo_bd_occ_avg": 1.9614046414488346, "nbo_bd_occ_min": 1.953917644109207, "sterimol_burB1": 4.101185647865175, "sterimol_burB5": 5.713383420982219, "vbur_near_vbur": 58.85620827380723, "vbur_near_vtot": 295.2063222507584, "vbur_ovbur_max": 19.525725080832583, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 88.30428373991468, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 21.348220283085702, "vbur_qvbur_min": 10.008075452227638, "vbur_qvtot_max": 90.23024141776634, "vbur_qvtot_min": 59.18642358382612, "nbo_bds_occ_avg": 0.08106839429005819, "nbo_bds_occ_max": 0.09105076015616757, "nbo_lp_P_percent_s": 51.34411994741994, "vbur_max_delta_qvbur": 11.121563502347085, "vbur_max_delta_qvtot": 28.881264824679064, "vbur_ratio_vbur_vtot": 0.20320001241270602}} {"max_data": {"B1": 4.480999271470955, "B5": 6.542891618829755, "lval": 7.7073041160057905, "sasa": 481.8623348971613, "vbur": 83.99254299699767, "vtot": 297.44054611686164, "alpha": 205.085743, "p_int": 19.33194413129197, "sasa_P": 11.439967558606426, "pyr_val": 0.9583570250329373, "dip_norm": 0.8570262539735874, "far_vbur": 12.495143781956912, "far_vtot": 15.620242708689142, "near_vbur": 75.26226063441771, "near_vtot": 297.33516790311654, "ovbur_max": 21.7965661121823, "ovbur_min": 0.0, "ovtot_max": 95.58596045041838, "ovtot_min": 0.0, "pyr_alpha": 22.096630502961734, "qvbur_max": 29.046546925967, "qvbur_min": 16.71458599190878, "qvtot_max": 95.58596045041838, "qvtot_min": 67.37940984403379, "cone_angle": 219.69991720078937, "p_int_area": 358.2735100752466, "p_int_atom": 30.978878171517152, "sasa_volume": 785.926729111558, "EA_delta_SCC": 1.2446, "IP_delta_SCC": 6.4098, "HOMO_LUMO_gap": 3.075082962208, "sasa_volume_P": 16.137291826740356, "max_delta_qvbur": 16.44649988464664, "max_delta_qvtot": 49.90104623772767, "nucleophilicity": -5.9296, "p_int_atom_area": 14.098038278989902, "p_int_times_p_int_area": 6869.309322874098, "global_electrophilicity_index": 1.4032, "p_int_atom_times_p_int_atom_area": 380.5722961024775}, "min_data": {"B1": 3.499766587148963, "B5": 6.17301802420403, "lval": 7.101671002524016, "sasa": 462.2819124812604, "vbur": 59.99300843818305, "vtot": 294.11802492190816, "alpha": 204.900107, "p_int": 18.927696102450767, "sasa_P": 1.6299953776685707, "pyr_val": 0.8959045221329689, "dip_norm": 0.38284330998464633, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 59.99300843818305, "near_vtot": 276.07344767714216, "ovbur_max": 17.565467984523384, "ovbur_min": 0.0, "ovtot_max": 79.155926310838, "ovtot_min": 0.0, "pyr_alpha": 13.946202056006744, "qvbur_max": 17.565467984523384, "qvbur_min": 11.702541377877557, "qvtot_max": 83.08332947642613, "qvtot_min": 43.92835452962372, "cone_angle": 168.57932773501562, "p_int_area": 342.973601495802, "p_int_atom": 25.783458130172935, "sasa_volume": 764.5514793084498, "EA_delta_SCC": 1.1057, "IP_delta_SCC": 5.9296, "HOMO_LUMO_gap": 2.650007150904, "sasa_volume_P": 2.089335238450714, "max_delta_qvbur": 3.3802161350443125, "max_delta_qvtot": 14.931229561926656, "nucleophilicity": -6.4098, "p_int_atom_area": 6.0991513121871215, "p_int_times_p_int_area": 6509.745218422089, "global_electrophilicity_index": 1.3111, "p_int_atom_times_p_int_atom_area": 188.94486544989383}, "boltzmann_averaged_data": {"B1": 4.25341359398646, "B5": 6.277760841441469, "lval": 7.3310720654425285, "sasa": 470.89976450159395, "vbur": 69.08046307878416, "vtot": 295.9287777435117, "alpha": 204.92650732060963, "p_int": 19.068689571970555, "B1_std": 0.14953457863959063, "B5_std": 0.03448289891874129, "sasa_P": 6.716337444543992, "pyr_val": 0.9523960101898955, "dip_norm": 0.5374712595429437, "far_vbur": 1.8323947248617038, "far_vtot": 2.035149539579273, "lval_std": 0.09488877024872988, "sasa_std": 2.9383911894285544, "vbur_std": 3.856454732428902, "vtot_std": 0.45128349957709973, "alpha_std": 0.024108299440884818, "near_vbur": 67.24806835392248, "near_vtot": 288.72872566252414, "ovbur_max": 19.85294646789811, "ovbur_min": 0.0, "ovtot_max": 91.66440411809599, "ovtot_min": 0.0, "p_int_std": 0.04880986052269071, "pyr_alpha": 14.884586345591897, "qvbur_max": 21.37538961958282, "qvbur_min": 13.592793967520151, "qvtot_max": 91.7119239625703, "qvtot_min": 57.90234582398412, "cone_angle": 187.36171035617426, "p_int_area": 351.3111573150049, "p_int_atom": 27.889404062228817, "sasa_P_std": 1.9810452417107922, "pyr_val_std": 0.00548333839768219, "sasa_volume": 773.5516232840175, "EA_delta_SCC": 1.184815648469454, "IP_delta_SCC": 6.305984921547646, "dip_norm_std": 0.049360990480216575, "far_vbur_std": 1.9680401586419665, "far_vtot_std": 2.4513314359893115, "HOMO_LUMO_gap": 3.00354215694225, "near_vbur_std": 2.5375635685108726, "near_vtot_std": 3.448988490347874, "ovbur_max_std": 0.9537205272598059, "ovbur_min_std": 0.0, "ovtot_max_std": 1.3776074471583273, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.7806040680234034, "qvbur_max_std": 2.2768989698800453, "qvbur_min_std": 0.8234226996998949, "qvtot_max_std": 1.1648854535366118, "qvtot_min_std": 3.570697206241551, "sasa_volume_P": 9.127241815739533, "cone_angle_std": 9.354826580601864, "p_int_area_std": 2.1627216254453243, "p_int_atom_std": 0.8457234807607517, "max_delta_qvbur": 7.107137919365062, "max_delta_qvtot": 32.17978423142486, "nucleophilicity": -6.305984921547646, "p_int_atom_area": 11.191997456882364, "sasa_volume_std": 2.8966172356648023, "EA_delta_SCC_std": 0.03211913391882879, "IP_delta_SCC_std": 0.041982002290297915, "HOMO_LUMO_gap_std": 0.040102949527233346, "sasa_volume_P_std": 2.7490370849651753, "max_delta_qvbur_std": 1.8127173410849966, "max_delta_qvtot_std": 2.691802754159556, "nucleophilicity_std": 0.041982002290297915, "p_int_atom_area_std": 1.231588780557154, "p_int_times_p_int_area": 6699.07726072982, "p_int_times_p_int_area_std": 49.53096139076649, "global_electrophilicity_index": 1.369826957808734, "p_int_atom_times_p_int_atom_area": 311.60896539655215, "global_electrophilicity_index_std": 0.01894091668183181, "p_int_atom_times_p_int_atom_area_std": 30.990334661995426}} {"max_data": {"pyr_P": "0.93882555", "pyr_alpha": "23.862503", "qpole_amp": "6.5300446", "vbur_vbur": "72.655525", "sterimol_L": "8.111729", "sterimol_B1": "4.3330317", "sterimol_B5": "6.56607", "dipolemoment": "1.4197917", "qpoletens_xx": "4.565314", "qpoletens_yy": "1.2349472", "qpoletens_zz": "-3.73638", "sterimol_burL": "7.69898", "vbur_far_vbur": "8.097099", "vbur_far_vtot": "10.775553", "sterimol_burB1": "4.2708464", "sterimol_burB5": "6.1440144", "vbur_near_vbur": "66.28956", "vbur_near_vtot": "297.20547", "vbur_ovbur_max": "21.227783", "vbur_ovbur_min": "0.034038424", "vbur_ovtot_max": "102.23425", "vbur_ovtot_min": "-0.9531723", "vbur_qvbur_max": "28.653913", "vbur_qvbur_min": "14.044422", "vbur_qvtot_max": "99.85873", "vbur_qvtot_min": "56.1565", "vbur_max_delta_qvbur": "15.38346", "vbur_max_delta_qvtot": "57.89309"}, "min_data": {"pyr_P": "0.8793228", "pyr_alpha": "16.086138", "qpole_amp": "5.0738196", "vbur_vbur": "52.52069", "sterimol_L": "7.2986445", "sterimol_B1": "3.5486372", "sterimol_B5": "6.0965996", "dipolemoment": "0.8119776", "qpoletens_xx": "3.3057365", "qpoletens_yy": "-0.17670253", "qpoletens_zz": "-5.2415934", "sterimol_burL": "7.075714", "vbur_far_vbur": "-0.15205763", "vbur_far_vtot": "-0.23089984", "sterimol_burB1": "3.5137851", "sterimol_burB5": "5.663953", "vbur_near_vbur": "54.506935", "vbur_near_vtot": "288.5139", "vbur_ovbur_max": "16.506403", "vbur_ovbur_min": "0.015823644", "vbur_ovtot_max": "90.855484", "vbur_ovtot_min": "0.026943687", "vbur_qvbur_max": "16.542614", "vbur_qvbur_min": "10.189025", "vbur_qvtot_max": "95.71065", "vbur_qvtot_min": "40.983467", "vbur_max_delta_qvbur": "3.8662267", "vbur_max_delta_qvtot": "44.79203"}, "delta_data": {"pyr_P": "0.06861171", "pyr_alpha": "8.358446", "qpole_amp": "2.5020714", "vbur_vbur": "19.05297", "sterimol_L": "0.9257462", "sterimol_B1": "0.64716345", "sterimol_B5": "0.596294", "dipolemoment": "0.6158206", "qpoletens_xx": "1.4040639", "qpoletens_yy": "1.9177645", "qpoletens_zz": "2.0577703", "sterimol_burL": "0.802492", "vbur_far_vbur": "8.082886", "vbur_far_vtot": "11.76709", "sterimol_burB1": "0.7410173", "sterimol_burB5": "0.58522767", "vbur_near_vbur": "12.19787", "vbur_near_vtot": "14.901704", "vbur_ovbur_max": "3.8114998", "vbur_ovbur_min": "-0.073462024", "vbur_ovtot_max": "12.693883", "vbur_ovtot_min": "-0.8328024", "vbur_qvbur_max": "10.766216", "vbur_qvbur_min": "3.547896", "vbur_qvtot_max": "9.928427", "vbur_qvtot_min": "17.57069", "vbur_max_delta_qvbur": "11.055133", "vbur_max_delta_qvtot": "25.009235"}, "vburminconf_data": {"pyr_P": "0.9210242", "pyr_alpha": "18.670979", "qpole_amp": "7.6875806", "vbur_vbur": "52.9258", "sterimol_L": "7.553", "sterimol_B1": "4.07645", "sterimol_B5": "6.3865914", "dipolemoment": "1.0431734", "qpoletens_xx": "4.9458942", "qpoletens_yy": "0.8387826", "qpoletens_zz": "-5.082217", "sterimol_burL": "7.2055006", "vbur_far_vbur": "-0.50537115", "vbur_far_vtot": "-0.13748832", "sterimol_burB1": "3.9135287", "sterimol_burB5": "6.0686707", "vbur_near_vbur": "54.41683", "vbur_near_vtot": "294.77798", "vbur_ovbur_max": "18.019102", "vbur_ovbur_min": "0.012903327", "vbur_ovtot_max": "101.33414", "vbur_ovtot_min": "0.027109524", "vbur_qvbur_max": "16.795078", "vbur_qvbur_min": "11.608044", "vbur_qvtot_max": "101.10281", "vbur_qvtot_min": "49.98828", "vbur_max_delta_qvbur": "4.8977737", "vbur_max_delta_qvtot": "52.63403"}, "boltzmann_averaged_data": {"nbo_P": "1.1480128", "nmr_P": "172.77649", "pyr_P": "0.8946536", "fmo_mu": "-0.11297015", "vmin_r": "1.7780732", "volume": "364.45676", "Pint_dP": "3.8058236", "fmo_eta": "0.2064289", "fukui_m": "0.09625197", "fukui_p": "0.056716535", "nuesp_P": "-54.162315", "somo_ra": "0.08420633", "somo_rc": "-0.3848456", "nbo_P_ra": "1.10337", "nbo_P_rc": "1.2620324", "efg_amp_P": "2.0770557", "fmo_omega": "0.03354737", "pyr_alpha": "23.144453", "qpole_amp": "5.2963605", "vbur_vbur": "59.460087", "vbur_vtot": "300.30417", "vmin_vmin": "-0.054811608", "E_solv_cds": "-5.3978047", "Pint_P_int": "18.508036", "Pint_P_max": "33.131615", "Pint_P_min": "12.209768", "fmo_e_homo": "-0.2155219", "fmo_e_lumo": "-0.015034324", "nbo_lp_P_e": "-0.30550477", "sphericity": "0.7940089", "sterimol_L": "7.5873523", "E_oxidation": "0.26683983", "E_reduction": "0.037088465", "sterimol_B1": "3.9136102", "sterimol_B5": "6.4634547", "E_solv_total": "-10.505862", "dipolemoment": "0.9270807", "efgtens_xx_P": "-0.97759", "efgtens_yy_P": "-0.6294136", "efgtens_zz_P": "1.7198093", "nbo_bd_e_avg": "-0.5372255", "nbo_bd_e_max": "-0.4761997", "nbo_lp_P_occ": "1.9210966", "qpoletens_xx": "4.1633964", "qpoletens_yy": "-0.04900167", "qpoletens_zz": "-3.7969303", "surface_area": "310.94077", "E_solv_elstat": "-4.984461", "nbo_bds_e_avg": "0.23761961", "nbo_bds_e_min": "0.21538475", "nmrtens_sxx_P": "110.14551", "nmrtens_syy_P": "160.98079", "nmrtens_szz_P": "274.9821", "spindens_P_ra": "0.06374262", "spindens_P_rc": "0.043371752", "sterimol_burL": "7.057864", "vbur_far_vbur": "0.121564224", "vbur_far_vtot": "-1.046812", "nbo_bd_occ_avg": "1.961415", "nbo_bd_occ_min": "1.953601", "sterimol_burB1": "3.8814318", "sterimol_burB5": "6.169254", "vbur_near_vbur": "59.528393", "vbur_near_vtot": "301.19003", "vbur_ovbur_max": "18.679142", "vbur_ovbur_min": "-0.034085706", "vbur_ovtot_max": "102.22307", "vbur_ovtot_min": "-0.12544967", "vbur_qvbur_max": "18.419884", "vbur_qvbur_min": "10.654613", "vbur_qvtot_max": "97.25779", "vbur_qvtot_min": "47.39725", "nbo_bds_occ_avg": "0.08051264", "nbo_bds_occ_max": "0.09147651", "nbo_lp_P_percent_s": "52.2032", "vbur_max_delta_qvbur": "7.5831466", "vbur_max_delta_qvtot": "56.05619", "vbur_ratio_vbur_vtot": "0.1941814"}} CCN(CC)P(c1ccccc1)N(CC)CC {"max_data": {"B1": 4.711435992762912, "B5": 6.716209792886186, "lval": 7.983460564475093, "sasa": 477.82218477049605, "vbur": 61.449998151564216, "vtot": 297.28815468502665, "alpha": 205.033935, "p_int": 19.272869926200705, "sasa_P": 10.909969061573074, "pyr_val": 0.9403816905246701, "dip_norm": 0.9396765400923873, "far_vbur": 0.6643873093018136, "far_vtot": 1.471990962020581, "near_vbur": 61.27515938595848, "near_vtot": 296.7563014717123, "ovbur_max": 17.577123902230433, "ovbur_min": 0.0, "ovtot_max": 95.63067089840048, "ovtot_min": 0.0, "pyr_alpha": 26.070077562619282, "qvbur_max": 18.124952034461753, "qvbur_min": 13.45092903393496, "qvtot_max": 95.63067089840048, "qvtot_min": 66.12579022232036, "cone_angle": 186.10323663933985, "p_int_area": 357.3769458090773, "p_int_atom": 28.221723609249764, "sasa_volume": 781.1364463408246, "EA_delta_SCC": 1.2207, "IP_delta_SCC": 6.3735, "HOMO_LUMO_gap": 3.092134409839, "sasa_volume_P": 11.088343018977348, "max_delta_qvbur": 5.1519156265158195, "max_delta_qvtot": 45.40839743844319, "nucleophilicity": -5.8087, "p_int_atom_area": 13.998052191904865, "p_int_times_p_int_area": 6829.913911082707, "global_electrophilicity_index": 1.3732, "p_int_atom_times_p_int_atom_area": 389.13781226514}, "min_data": {"B1": 3.5669680035109597, "B5": 6.1985034783818715, "lval": 7.175036639928006, "sasa": 463.681892369079, "vbur": 54.5263830335769, "vtot": 293.6417363528496, "alpha": 204.839032, "p_int": 18.895495124595826, "sasa_P": 5.789983580798175, "pyr_val": 0.8610355417735086, "dip_norm": 0.5597410115401587, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.526383033576906, "near_vtot": 287.3264185499622, "ovbur_max": 14.768047734831539, "ovbur_min": 0.0, "ovtot_max": 82.33942645819612, "ovtot_min": 0.0, "pyr_alpha": 16.816322772548435, "qvbur_max": 14.768047734831539, "qvbur_min": 11.27127242271673, "qvtot_max": 82.33942645819612, "qvtot_min": 46.32231696606134, "cone_angle": 160.85997313991746, "p_int_area": 340.0751652614913, "p_int_atom": 25.995356657192392, "sasa_volume": 766.2232617327279, "EA_delta_SCC": 1.09, "IP_delta_SCC": 5.8087, "HOMO_LUMO_gap": 2.408065666283, "sasa_volume_P": 5.662119539197014, "max_delta_qvbur": 1.6085166435728127, "max_delta_qvtot": 17.74469173944071, "nucleophilicity": -6.3735, "p_int_atom_area": 10.79849740518375, "p_int_times_p_int_area": 6459.51697968126, "global_electrophilicity_index": 1.2874, "p_int_atom_times_p_int_atom_area": 286.83545658136273}, "boltzmann_averaged_data": {"B1": 4.284667286493791, "B5": 6.330732118419361, "lval": 7.500254703895706, "sasa": 473.80588831286633, "vbur": 56.7956386842092, "vtot": 296.07722133387097, "alpha": 204.88006106429, "p_int": 19.064997118721294, "B1_std": 0.10021685342699568, "B5_std": 0.0306383768585483, "sasa_P": 8.879372319927528, "pyr_val": 0.9258712743167767, "dip_norm": 0.69233808907899, "far_vbur": 0.11737614034258068, "far_vtot": 0.24461213526451528, "lval_std": 0.10602343960925567, "sasa_std": 3.411158044232481, "vbur_std": 1.2961339752637673, "vtot_std": 0.19815734979321253, "alpha_std": 0.015877393153705455, "near_vbur": 56.67826254386663, "near_vtot": 295.7843307862656, "ovbur_max": 16.09679309708172, "ovbur_min": 0.0, "ovtot_max": 91.23534235868183, "ovtot_min": 0.0, "p_int_std": 0.05412915912450145, "pyr_alpha": 18.84085001519438, "qvbur_max": 16.21910458609982, "qvbur_min": 12.11476106672975, "qvtot_max": 91.23534235868183, "qvtot_min": 60.66187537829496, "cone_angle": 175.06945740183752, "p_int_area": 353.9060840877334, "p_int_atom": 27.482085659105167, "sasa_P_std": 0.8760156446042029, "pyr_val_std": 0.005109206101115181, "sasa_volume": 776.1973058783672, "EA_delta_SCC": 1.163947855, "IP_delta_SCC": 6.186776747999999, "dip_norm_std": 0.017162760572026772, "far_vbur_std": 0.0793040043460409, "far_vtot_std": 0.16599655168363184, "HOMO_LUMO_gap": 2.79194549131678, "near_vbur_std": 1.2315433507306994, "near_vtot_std": 0.5477699161862166, "ovbur_max_std": 0.7427315377805218, "ovbur_min_std": 0.0, "ovtot_max_std": 0.9443914514129744, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.6264673407298939, "qvbur_max_std": 0.8197406401178171, "qvbur_min_std": 0.1890799760166939, "qvtot_max_std": 0.9443914514129744, "qvtot_min_std": 2.1368549051381445, "sasa_volume_P": 9.115720125530157, "cone_angle_std": 6.021707776885387, "p_int_area_std": 2.452828215787753, "p_int_atom_std": 0.43013399633214355, "max_delta_qvbur": 3.345351303676519, "max_delta_qvtot": 29.574345862999703, "nucleophilicity": -6.186776747999999, "p_int_atom_area": 13.695125343724207, "sasa_volume_std": 3.144422277877332, "EA_delta_SCC_std": 0.027114900969743113, "IP_delta_SCC_std": 0.04984311532342752, "HOMO_LUMO_gap_std": 0.03304135762856931, "sasa_volume_P_std": 0.9929898398374363, "max_delta_qvbur_std": 0.4997137475054407, "max_delta_qvtot_std": 2.2796576901330057, "nucleophilicity_std": 0.04984311532342752, "p_int_atom_area_std": 0.5561929410762231, "p_int_times_p_int_area": 6747.160070424589, "p_int_times_p_int_area_std": 42.01021058092658, "global_electrophilicity_index": 1.3449150200000002, "p_int_atom_times_p_int_atom_area": 376.5443742810328, "global_electrophilicity_index_std": 0.013341056344967536, "p_int_atom_times_p_int_atom_area_std": 19.714804676758032}} \\x24004220000900014418026080108130024000014201540084810200050020109081481864020000380e00200080006002d100192100440101100000504000004a02000400060212004100640000a00080400060812080029a602c0a8010084100004003200000001086012202000c01210b480112c000c000000102d0089081 \\x00000000022008000100010000000000000000000480000040004000000200000000000040200000080002011000020020008000100000000000000000000000 pcn (-2.4192135334014893, 1.9522221088409424, 2.0836181640625, 1.5791860818862915) (1.9482804536819456, 5.50447940826416) -58 CC(C)N(C(C)C)P(c1ccccc1)N(C(C)C)C(C)C 308.45001220703125 {"max_data": {"pyr_P": 0.9374534765716187, "pyr_alpha": 28.160043399201626, "qpole_amp": 6.287675771701961, "vbur_vbur": 86.7243221402435, "vbur_vtot": 369.97464774710033, "sterimol_L": 7.8806498236578655, "sterimol_B1": 4.732250700134976, "sterimol_B5": 6.348023357728796, "dipolemoment": 1.4497514876745097, "qpoletens_xx": 3.252879389628493, "qpoletens_yy": 1.8132572749415585, "qpoletens_zz": -1.7842787203327106, "sterimol_burL": 7.454481995708685, "vbur_far_vbur": 13.080083608937567, "vbur_far_vtot": 19.192290477214264, "sterimol_burB1": 4.611138420746224, "sterimol_burB5": 6.034262451464511, "vbur_near_vbur": 75.62727375620163, "vbur_near_vtot": 365.9395428778789, "vbur_ovbur_max": 22.113562109688708, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 113.94928372605857, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 28.926585028976994, "vbur_qvbur_min": 14.95539065442174, "vbur_qvtot_max": 118.85021303550394, "vbur_qvtot_min": 80.51516693811271, "vbur_max_delta_qvbur": 16.807687797507334, "vbur_max_delta_qvtot": 51.59959677265856}, "min_data": {"pyr_P": 0.8416188110726599, "pyr_alpha": 17.218538832931543, "qpole_amp": 2.7009756641568727, "vbur_vbur": 63.77508221162459, "vbur_vtot": 367.18705786736376, "sterimol_L": 7.558686061193746, "sterimol_B1": 4.418303922654108, "sterimol_B5": 6.02241680641948, "dipolemoment": 0.5113859120897469, "qpoletens_xx": 1.628543247007726, "qpoletens_yy": -0.23031191062883116, "qpoletens_zz": -5.066136664570052, "sterimol_burL": 7.112464640477947, "vbur_far_vbur": 0.12655446319218341, "vbur_far_vtot": 0.08449015030201883, "sterimol_burB1": 4.367681569784801, "sterimol_burB5": 5.865456853855029, "vbur_near_vbur": 63.64852774843241, "vbur_near_vtot": 350.7823572698861, "vbur_ovbur_max": 19.122274797873466, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 100.98830724649488, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.232094786593954, "vbur_qvbur_min": 10.467413782044392, "vbur_qvtot_max": 102.72809788818523, "vbur_qvtot_min": 65.5770132685983, "vbur_max_delta_qvbur": 6.331906778227095, "vbur_max_delta_qvtot": 15.954122186052246}, "delta_data": {"pyr_P": 0.0958346654989588, "pyr_alpha": 10.941504566270083, "qpole_amp": 3.5867001075450884, "vbur_vbur": 22.94923992861891, "vbur_vtot": 2.787589879736572, "sterimol_L": 0.3219637624641196, "sterimol_B1": 0.31394677748086863, "sterimol_B5": 0.32560655130931604, "dipolemoment": 0.9383655755847627, "qpoletens_xx": 1.6243361426207672, "qpoletens_yy": 2.04356918557039, "qpoletens_zz": 3.2818579442373412, "sterimol_burL": 0.3420173552307375, "vbur_far_vbur": 12.953529145745383, "vbur_far_vtot": 19.107800326912244, "sterimol_burB1": 0.24345685096142322, "sterimol_burB5": 0.16880559760948177, "vbur_near_vbur": 11.978746007769224, "vbur_near_vtot": 15.157185607992801, "vbur_ovbur_max": 2.991287311815242, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 12.960976479563683, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.69449024238304, "vbur_qvbur_min": 4.487976872377347, "vbur_qvtot_max": 16.12211514731871, "vbur_qvtot_min": 14.93815366951442, "vbur_max_delta_qvbur": 10.47578101928024, "vbur_max_delta_qvtot": 35.64547458660631}, "vburminconf_data": {"pyr_P": 0.9273523626946059, "pyr_alpha": 18.55343828480984, "qpole_amp": 3.222143414153187, "vbur_vbur": 63.77508221162459, "vbur_vtot": 367.18705786736376, "sterimol_L": 7.663983430847203, "sterimol_B1": 4.494709917223347, "sterimol_B5": 6.092002683571002, "dipolemoment": 0.9005345502646616, "qpoletens_xx": 1.9278756287209884, "qpoletens_yy": 0.5864091664225555, "qpoletens_zz": -2.514284795143544, "sterimol_burL": 7.297871636045935, "vbur_far_vbur": 0.12655446319218341, "vbur_far_vtot": 0.08449015030201883, "sterimol_burB1": 4.485087117088224, "sterimol_burB5": 6.01355536575437, "vbur_near_vbur": 63.64852774843241, "vbur_near_vtot": 365.82357521878544, "vbur_ovbur_max": 19.122274797873466, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 107.77605296056535, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.232094786593954, "vbur_qvbur_min": 12.90018800836686, "vbur_qvtot_max": 107.85637075776604, "vbur_qvtot_min": 78.6873775418877, "vbur_max_delta_qvbur": 6.331906778227095, "vbur_max_delta_qvtot": 25.824279946428817}, "boltzmann_averaged_data": {"nbo_P": 1.1681797316596536, "nmr_P": 215.64674840698376, "pyr_P": 0.8780122605150147, "fmo_mu": -0.11142995748896597, "vmin_r": 1.765296416924985, "volume": 448.66183013510783, "Pint_dP": 3.82989070616471, "fmo_eta": 0.18735228064339757, "fukui_m": 0.1944984697493731, "fukui_p": 0.08005154676270554, "nuesp_P": -54.163145819474224, "somo_ra": 0.08249395194293203, "somo_rc": -0.3772142554356066, "nbo_P_ra": 1.088128184896948, "nbo_P_rc": 1.3626782014090268, "efg_amp_P": 2.1272922638639535, "fmo_omega": 0.033137305265847856, "pyr_alpha": 24.351984897980245, "qpole_amp": 5.157670091337267, "vbur_vbur": 86.66823683300089, "vbur_vtot": 369.96941692578037, "vmin_vmin": -0.05346352067419808, "E_solv_cds": -5.720417267429218, "Pint_P_int": 19.18986660351428, "Pint_P_max": 34.00755368417552, "Pint_P_min": 13.219981219271899, "fmo_e_homo": -0.20510609781066472, "fmo_e_lumo": -0.017753817167267164, "nbo_lp_P_e": -0.2966445767493181, "sphericity": 0.806465928849712, "sterimol_L": 7.559193235899183, "E_oxidation": 0.2509007020172666, "E_reduction": 0.03258827076743938, "sterimol_B1": 4.511517289766829, "sterimol_B5": 6.182526276870661, "E_solv_total": -11.152433202526407, "dipolemoment": 1.4484030979378992, "efgtens_xx_P": -1.0178799610402627, "efgtens_yy_P": -0.7099220031774665, "efgtens_zz_P": 1.7278019637987443, "nbo_bd_e_avg": -0.5415548773555471, "nbo_bd_e_max": -0.46898334599535013, "nbo_lp_P_occ": 1.9052441295781237, "qpoletens_xx": 3.1943843628954336, "qpoletens_yy": 0.7786795559577402, "qpoletens_zz": -3.973063918853175, "surface_area": 351.43430859063307, "E_solv_elstat": -5.432015935097189, "nbo_bds_e_avg": 0.24542303973957752, "nbo_bds_e_min": 0.2437087947681732, "nmrtens_sxx_P": 179.1307505869874, "nmrtens_syy_P": 192.08637112720814, "nmrtens_szz_P": 275.7230241799547, "spindens_P_ra": 0.07214119098864091, "spindens_P_rc": 0.19289110679461857, "sterimol_burL": 7.1131856003393095, "vbur_far_vbur": 13.045461176599948, "vbur_far_vtot": 19.14197495046119, "nbo_bd_occ_avg": 1.96331634752441, "nbo_bd_occ_min": 1.953513116742355, "sterimol_burB1": 4.418684571526587, "sterimol_burB5": 5.913973172077346, "vbur_near_vbur": 73.62277565640095, "vbur_near_vtot": 350.82228250076014, "vbur_ovbur_max": 22.003072309804924, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 101.52151287754407, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 28.225683952473116, "vbur_qvbur_min": 11.928805637128825, "vbur_qvtot_max": 108.63033447169481, "vbur_qvtot_min": 75.02936740405868, "nbo_bds_occ_avg": 0.07839575662908568, "nbo_bds_occ_max": 0.08649062299080265, "nbo_lp_P_percent_s": 49.97861029838359, "vbur_max_delta_qvbur": 16.035768563024323, "vbur_max_delta_qvtot": 33.18930954035546, "vbur_ratio_vbur_vtot": 0.2342575212058588}} {"max_data": {"B1": 4.715381531857598, "B5": 6.51357088859497, "lval": 7.649685348775998, "sasa": 524.0226541529036, "vbur": 92.04678213256878, "vtot": 365.4509761517561, "alpha": 251.419871, "p_int": 19.914789369779804, "sasa_P": 4.269987891193126, "pyr_val": 0.9446615230776683, "dip_norm": 0.7536743328520615, "far_vbur": 12.56507928819921, "far_vtot": 17.827133712468253, "near_vbur": 80.2160256599137, "near_vtot": 356.5349050120983, "ovbur_max": 22.32108240899952, "ovbur_min": 0.05827958853524679, "ovtot_max": 111.33961415957641, "ovtot_min": 0.0, "pyr_alpha": 23.669231113520933, "qvbur_max": 28.79011673641191, "qvbur_min": 18.124952034461753, "qvtot_max": 114.85594786678038, "qvtot_min": 78.60929650350374, "cone_angle": 227.07540368078594, "p_int_area": 409.9798147406076, "p_int_atom": 33.70364213848059, "sasa_volume": 910.221214776215, "EA_delta_SCC": 1.4266, "IP_delta_SCC": 6.4195, "HOMO_LUMO_gap": 2.970096681525, "sasa_volume_P": 5.836374371934061, "max_delta_qvbur": 12.833165395461338, "max_delta_qvtot": 33.8014696248041, "nucleophilicity": -6.0999, "p_int_atom_area": 10.09859479558851, "p_int_times_p_int_area": 8156.709599362607, "global_electrophilicity_index": 1.5243, "p_int_atom_times_p_int_atom_area": 315.1830647435594}, "min_data": {"B1": 4.310124127001665, "B5": 6.27820456186428, "lval": 7.357608785452339, "sasa": 515.4422543026358, "vbur": 72.19675427746373, "vtot": 362.19036470491744, "alpha": 251.266678, "p_int": 19.608832846841352, "sasa_P": 0.27999920597987665, "pyr_val": 0.8855706172489036, "dip_norm": 0.5106446905628218, "far_vbur": 1.398710124845923, "far_vtot": 1.3963833215011212, "near_vbur": 69.59748462879172, "near_vtot": 343.05965422712865, "ovbur_max": 20.770845353961956, "ovbur_min": 0.0, "ovtot_max": 96.72583198471936, "ovtot_min": 0.0, "pyr_alpha": 16.130222542162088, "qvbur_max": 22.29777057358542, "qvbur_min": 14.383402450498908, "qvtot_max": 101.10503003644979, "qvtot_min": 71.97408920829214, "cone_angle": 191.93862113927094, "p_int_area": 398.380035676724, "p_int_atom": 29.76471534154767, "sasa_volume": 899.3674755982581, "EA_delta_SCC": 1.3489, "IP_delta_SCC": 6.0999, "HOMO_LUMO_gap": 2.605183118564, "sasa_volume_P": 0.3765135586686901, "max_delta_qvbur": 4.778926259890238, "max_delta_qvtot": 17.645284389781153, "nucleophilicity": -6.4195, "p_int_atom_area": 4.299401744656493, "p_int_times_p_int_area": 7840.195623665673, "global_electrophilicity_index": 1.4744, "p_int_atom_times_p_int_atom_area": 137.63457759701598}, "boltzmann_averaged_data": {"B1": 4.4024589552719755, "B5": 6.38427357984578, "lval": 7.479873755470075, "sasa": 517.3691937766245, "vbur": 89.82803887540032, "vtot": 363.63031973084355, "alpha": 251.360458703677, "p_int": 19.790742509503758, "B1_std": 0.08981350902690872, "B5_std": 0.05391628701454525, "sasa_P": 0.9290280557745376, "pyr_val": 0.9295929228459111, "dip_norm": 0.6171415961600907, "far_vbur": 10.265000573593928, "far_vtot": 12.431103554371516, "lval_std": 0.09592993202055783, "sasa_std": 1.6129799128218265, "vbur_std": 1.5727748260897894, "vtot_std": 1.221139509703228, "alpha_std": 0.04547135797100558, "near_vbur": 79.5630383018064, "near_vtot": 346.073727835115, "ovbur_max": 22.236345487642776, "ovbur_min": 0.03130787492152965, "ovtot_max": 97.36801818761319, "ovtot_min": 0.0, "p_int_std": 0.02930090748840985, "pyr_alpha": 18.229146568399745, "qvbur_max": 27.973230733341587, "qvbur_min": 17.387106299120664, "qvtot_max": 104.28935068044215, "qvtot_min": 75.73157933836984, "cone_angle": 217.35642489280787, "p_int_area": 404.8796978775977, "p_int_atom": 31.953920820424056, "sasa_P_std": 0.2273783086254857, "pyr_val_std": 0.015924851600687306, "sasa_volume": 905.2509087486975, "EA_delta_SCC": 1.4078665896658966, "IP_delta_SCC": 6.240825555255552, "dip_norm_std": 0.06319092598944924, "far_vbur_std": 1.8070058366893524, "far_vtot_std": 3.707131870055233, "HOMO_LUMO_gap": 2.86702867536056, "near_vbur_std": 0.9615211901799393, "near_vtot_std": 1.4073553714116052, "ovbur_max_std": 0.026380681952972093, "ovbur_min_std": 0.029047055340315875, "ovtot_max_std": 0.8322606341005875, "ovtot_min_std": 0.0, "pyr_alpha_std": 2.106071785811265, "qvbur_max_std": 0.21262121347280039, "qvbur_min_std": 0.8199102492605463, "qvtot_max_std": 1.1546549679669493, "qvtot_min_std": 0.9321540878740706, "sasa_volume_P": 1.2426512623116273, "cone_angle_std": 5.345211404590741, "p_int_area_std": 2.4815223761653127, "p_int_atom_std": 1.1698706695314536, "max_delta_qvbur": 10.5458039970435, "max_delta_qvtot": 22.588876882127092, "nucleophilicity": -6.240825555255552, "p_int_atom_area": 4.576759924646956, "sasa_volume_std": 1.0156602721217631, "EA_delta_SCC_std": 0.008007363407478459, "IP_delta_SCC_std": 0.0693118896800248, "HOMO_LUMO_gap_std": 0.03647200987482267, "sasa_volume_P_std": 0.31556699877739447, "max_delta_qvbur_std": 0.9290328460749253, "max_delta_qvtot_std": 2.3554231992350028, "nucleophilicity_std": 0.0693118896800248, "p_int_atom_area_std": 0.27771263165733023, "p_int_times_p_int_area": 8012.930735209426, "p_int_times_p_int_area_std": 59.343885886083314, "global_electrophilicity_index": 1.5131668346683464, "p_int_atom_times_p_int_atom_area": 146.15717203948523, "global_electrophilicity_index_std": 0.010457728214701745, "p_int_atom_times_p_int_atom_area_std": 8.928425451479983}} {"max_data": {"pyr_P": "0.9445367", "pyr_alpha": "24.893389", "qpole_amp": "6.153187", "vbur_vbur": "83.528786", "sterimol_L": "8.335592", "sterimol_B1": "4.7472076", "sterimol_B5": "7.019214", "dipolemoment": "1.2008833", "qpoletens_xx": "3.929925", "qpoletens_yy": "1.4907124", "qpoletens_zz": "-3.2748098", "sterimol_burL": "7.6457024", "vbur_far_vbur": "11.726929", "vbur_far_vtot": "18.075773", "sterimol_burB1": "4.653663", "sterimol_burB5": "6.4250264", "vbur_near_vbur": "73.93755", "vbur_near_vtot": "367.79034", "vbur_ovbur_max": "21.44568", "vbur_ovbur_min": "0.55725825", "vbur_ovtot_max": "122.67414", "vbur_ovtot_min": "0.06126874", "vbur_qvbur_max": "28.064808", "vbur_qvbur_min": "17.056818", "vbur_qvtot_max": "119.80241", "vbur_qvtot_min": "72.19027", "vbur_max_delta_qvbur": "13.440203", "vbur_max_delta_qvtot": "60.080223"}, "min_data": {"pyr_P": "0.8734209", "pyr_alpha": "15.935547", "qpole_amp": "4.8460093", "vbur_vbur": "62.03362", "sterimol_L": "7.548831", "sterimol_B1": "4.4696183", "sterimol_B5": "6.2920504", "dipolemoment": "0.7166258", "qpoletens_xx": "2.9018657", "qpoletens_yy": "-0.37432867", "qpoletens_zz": "-5.0570273", "sterimol_burL": "7.1851463", "vbur_far_vbur": "0.38343847", "vbur_far_vtot": "3.5390978", "sterimol_burB1": "4.3224792", "sterimol_burB5": "5.9096465", "vbur_near_vbur": "63.541763", "vbur_near_vtot": "350.6694", "vbur_ovbur_max": "18.149137", "vbur_ovbur_min": "0.010033906", "vbur_ovtot_max": "114.972145", "vbur_ovtot_min": "-0.03314199", "vbur_qvbur_max": "17.83284", "vbur_qvbur_min": "12.276783", "vbur_qvtot_max": "119.13825", "vbur_qvtot_min": "71.206345", "vbur_max_delta_qvbur": "5.3481846", "vbur_max_delta_qvtot": "59.3809"}, "delta_data": {"pyr_P": "0.07083147", "pyr_alpha": "7.8935466", "qpole_amp": "2.1826115", "vbur_vbur": "20.670097", "sterimol_L": "0.85623014", "sterimol_B1": "0.3510672", "sterimol_B5": "0.85120845", "dipolemoment": "0.76336914", "qpoletens_xx": "1.5111804", "qpoletens_yy": "2.0176013", "qpoletens_zz": "1.7241231", "sterimol_burL": "0.39946607", "vbur_far_vbur": "11.241604", "vbur_far_vtot": "12.014256", "sterimol_burB1": "0.46601266", "sterimol_burB5": "0.4604149", "vbur_near_vbur": "10.016456", "vbur_near_vtot": "15.664796", "vbur_ovbur_max": "3.1990683", "vbur_ovbur_min": "-0.056337986", "vbur_ovtot_max": "13.91973", "vbur_ovtot_min": "-0.38854498", "vbur_qvbur_max": "7.3594313", "vbur_qvbur_min": "4.6601", "vbur_qvtot_max": "11.440096", "vbur_qvtot_min": "12.893194", "vbur_max_delta_qvbur": "5.937725", "vbur_max_delta_qvtot": "20.990263"}, "vburminconf_data": {"pyr_P": "0.91160727", "pyr_alpha": "19.843887", "qpole_amp": "7.0774927", "vbur_vbur": "62.08303", "sterimol_L": "7.8318434", "sterimol_B1": "4.438371", "sterimol_B5": "6.771255", "dipolemoment": "1.1735463", "qpoletens_xx": "4.5636487", "qpoletens_yy": "1.0575674", "qpoletens_zz": "-4.1794796", "sterimol_burL": "7.153089", "vbur_far_vbur": "-0.5216935", "vbur_far_vtot": "2.4767976", "sterimol_burB1": "4.2694087", "sterimol_burB5": "6.2741814", "vbur_near_vbur": "63.507545", "vbur_near_vtot": "367.37393", "vbur_ovbur_max": "19.130426", "vbur_ovbur_min": "0.0041472986", "vbur_ovtot_max": "118.31468", "vbur_ovtot_min": "0.02994496", "vbur_qvbur_max": "18.670813", "vbur_qvbur_min": "12.963508", "vbur_qvtot_max": "120.39595", "vbur_qvtot_min": "62.2134", "vbur_max_delta_qvbur": "5.2049913", "vbur_max_delta_qvtot": "59.453278"}, "boltzmann_averaged_data": {"nbo_P": "1.1537565", "nmr_P": "172.83636", "pyr_P": "0.888798", "fmo_mu": "-0.1113022", "vmin_r": "1.7631243", "volume": "450.17694", "Pint_dP": "3.736299", "fmo_eta": "0.19995773", "fukui_m": "0.083314255", "fukui_p": "0.010846684", "nuesp_P": "-54.163624", "somo_ra": "0.07873423", "somo_rc": "-0.38065273", "nbo_P_ra": "1.2210282", "nbo_P_rc": "1.2642165", "efg_amp_P": "2.1440916", "fmo_omega": "0.03319362", "pyr_alpha": "22.945318", "qpole_amp": "5.330772", "vbur_vbur": "81.07259", "vbur_vtot": "369.7256", "vmin_vmin": "-0.05076784", "E_solv_cds": "-5.8255334", "Pint_P_int": "19.211466", "Pint_P_max": "33.907635", "Pint_P_min": "12.926875", "fmo_e_homo": "-0.2094718", "fmo_e_lumo": "-0.01468578", "nbo_lp_P_e": "-0.30385768", "sphericity": "0.79616857", "sterimol_L": "7.7091846", "E_oxidation": "0.25494233", "E_reduction": "0.03178204", "sterimol_B1": "4.477385", "sterimol_B5": "6.823981", "E_solv_total": "-11.19788", "dipolemoment": "0.9429129", "efgtens_xx_P": "-1.088283", "efgtens_yy_P": "-0.63250697", "efgtens_zz_P": "1.7842475", "nbo_bd_e_avg": "-0.5389196", "nbo_bd_e_max": "-0.49342257", "nbo_lp_P_occ": "1.920236", "qpoletens_xx": "4.2269225", "qpoletens_yy": "0.14764892", "qpoletens_zz": "-3.814675", "surface_area": "350.7075", "E_solv_elstat": "-5.092976", "nbo_bds_e_avg": "0.24620938", "nbo_bds_e_min": "0.21754795", "nmrtens_sxx_P": "96.37121", "nmrtens_syy_P": "184.04713", "nmrtens_szz_P": "252.30121", "spindens_P_ra": "0.015254049", "spindens_P_rc": "0.0695761", "sterimol_burL": "7.31887", "vbur_far_vbur": "8.086225", "vbur_far_vtot": "10.434591", "nbo_bd_occ_avg": "1.9617357", "nbo_bd_occ_min": "1.9563849", "sterimol_burB1": "4.3360643", "sterimol_burB5": "6.189266", "vbur_near_vbur": "73.720146", "vbur_near_vtot": "358.74976", "vbur_ovbur_max": "21.997257", "vbur_ovbur_min": "0.3763176", "vbur_ovtot_max": "118.048096", "vbur_ovtot_min": "0.07400359", "vbur_qvbur_max": "25.874716", "vbur_qvbur_min": "15.75055", "vbur_qvtot_max": "126.20429", "vbur_qvtot_min": "73.41409", "nbo_bds_occ_avg": "0.07927247", "nbo_bds_occ_max": "0.084702045", "nbo_lp_P_percent_s": "52.13452", "vbur_max_delta_qvbur": "11.716747", "vbur_max_delta_qvtot": "68.77313", "vbur_ratio_vbur_vtot": "0.2091282"}} CC(C)N(C(C)C)P(c1ccccc1)N(C(C)C)C(C)C {"max_data": {"B1": 4.867222381794551, "B5": 6.8052311430147245, "lval": 8.216716098579683, "sasa": 526.3923999823384, "vbur": 67.74419371337086, "vtot": 364.7870717972326, "alpha": 251.380228, "p_int": 19.875090949467925, "sasa_P": 8.739975215229023, "pyr_val": 0.9348997078524313, "dip_norm": 0.8854394389228436, "far_vbur": 1.526925219623466, "far_vtot": 2.4256477559039267, "near_vbur": 67.0215268155338, "near_vtot": 364.27365612818, "ovbur_max": 19.232264216631442, "ovbur_min": 0.0, "ovtot_max": 112.71279672351007, "ovtot_min": 0.0, "pyr_alpha": 28.582015368640967, "qvbur_max": 19.884995608226205, "qvbur_min": 15.409123208719251, "qvtot_max": 112.71279672351007, "qvtot_min": 83.06855967854258, "cone_angle": 191.51453053867982, "p_int_area": 406.48079858892754, "p_int_atom": 31.135053970432985, "sasa_volume": 912.054264561203, "EA_delta_SCC": 1.4695, "IP_delta_SCC": 6.316, "HOMO_LUMO_gap": 2.888356612741, "sasa_volume_P": 9.265611591603804, "max_delta_qvbur": 5.886238442059925, "max_delta_qvtot": 34.35630702267419, "nucleophilicity": -5.9034, "p_int_atom_area": 11.7983582760341, "p_int_times_p_int_area": 8051.7740802612925, "global_electrophilicity_index": 1.5541, "p_int_atom_times_p_int_atom_area": 361.11637725145647}, "min_data": {"B1": 4.349516741644481, "B5": 6.090454321932398, "lval": 7.366789557625747, "sasa": 512.4322081963161, "vbur": 58.058126098812856, "vtot": 360.566316321795, "alpha": 251.240135, "p_int": 19.492725391374996, "sasa_P": 3.159991038915763, "pyr_val": 0.8408659731680073, "dip_norm": 0.6290516671943569, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 58.058126098812856, "near_vtot": 355.63185470779996, "ovbur_max": 16.073510518021063, "ovbur_min": 0.0, "ovtot_max": 100.40789291086939, "ovtot_min": 0.0, "pyr_alpha": 17.64961236964591, "qvbur_max": 16.073510518021063, "qvbur_min": 12.39024052259347, "qvtot_max": 100.40789291086939, "qvtot_min": 72.95929960468206, "cone_angle": 167.60922379379213, "p_int_area": 388.4766616732298, "p_int_atom": 28.748337118863905, "sasa_volume": 893.4346662363661, "EA_delta_SCC": 1.3334, "IP_delta_SCC": 5.9034, "HOMO_LUMO_gap": 2.373920959475, "sasa_volume_P": 3.232679575640292, "max_delta_qvbur": 2.517678224722662, "max_delta_qvtot": 19.23989708133017, "nucleophilicity": -6.316, "p_int_atom_area": 7.898900879717743, "p_int_times_p_int_area": 7645.207709965653, "global_electrophilicity_index": 1.4443, "p_int_atom_times_p_int_atom_area": 233.25269443491518}, "boltzmann_averaged_data": {"B1": 4.529112207153609, "B5": 6.511211354430661, "lval": 7.889489477091738, "sasa": 520.1868270376125, "vbur": 61.0253432460689, "vtot": 362.59798408323553, "alpha": 251.26065993758877, "p_int": 19.73779527183741, "B1_std": 0.029733496907885223, "B5_std": 0.026799991392398817, "sasa_P": 5.252718359036865, "pyr_val": 0.9116263641438781, "dip_norm": 0.7787196808136506, "far_vbur": 0.39344964130061083, "far_vtot": 0.6813272261315828, "lval_std": 0.09170220581050752, "sasa_std": 0.789307048875869, "vbur_std": 1.7428155161912544, "vtot_std": 0.2749137208054296, "alpha_std": 0.007978150038598086, "near_vbur": 60.631893604768294, "near_vtot": 361.5242708530377, "ovbur_max": 17.61104912922134, "ovbur_min": 0.0, "ovtot_max": 106.22607876931903, "ovtot_min": 0.0, "p_int_std": 0.03520181600288962, "pyr_alpha": 20.70423140856708, "qvbur_max": 17.94949747440766, "qvbur_min": 12.801327668522596, "qvtot_max": 106.28957296552817, "qvtot_min": 77.04132755101062, "cone_angle": 181.40654144865954, "p_int_area": 403.16363278860564, "p_int_atom": 30.16023597509496, "sasa_P_std": 0.37889412304902315, "pyr_val_std": 0.0053498473459007035, "sasa_volume": 906.4779436453927, "EA_delta_SCC": 1.365894935898718, "IP_delta_SCC": 6.245245257905158, "dip_norm_std": 0.025064640333268124, "far_vbur_std": 0.10284105894564327, "far_vtot_std": 0.10143559602590346, "HOMO_LUMO_gap": 2.6870522666716545, "near_vbur_std": 1.6786382566219704, "near_vtot_std": 1.0399640162804151, "ovbur_max_std": 0.38265793715528684, "ovbur_min_std": 0.0, "ovtot_max_std": 0.8566407803926904, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.6693605122357923, "qvbur_max_std": 0.30766247602496427, "qvbur_min_std": 0.7106922429181146, "qvtot_max_std": 0.7041259857937276, "qvtot_min_std": 0.3133063219040716, "sasa_volume_P": 5.590803374381347, "cone_angle_std": 1.0221209298360288, "p_int_area_std": 1.140909145362179, "p_int_atom_std": 0.24731163690929026, "max_delta_qvbur": 4.0507887807841, "max_delta_qvtot": 23.945535221205716, "nucleophilicity": -6.245245257905158, "p_int_atom_area": 11.348503874263526, "sasa_volume_std": 1.2086437553903115, "EA_delta_SCC_std": 0.015265836952848293, "IP_delta_SCC_std": 0.01874804532336789, "HOMO_LUMO_gap_std": 0.019786533791374645, "sasa_volume_P_std": 0.4534603046669468, "max_delta_qvbur_std": 0.3042520159873693, "max_delta_qvtot_std": 0.7255433978306511, "nucleophilicity_std": 0.01874804532336789, "p_int_atom_area_std": 0.8269484257727339, "p_int_times_p_int_area": 7957.594044574686, "p_int_times_p_int_area_std": 35.023660168782506, "global_electrophilicity_index": 1.4841255175103505, "p_int_atom_times_p_int_atom_area": 342.4292850220305, "global_electrophilicity_index_std": 0.01042738387978401, "p_int_atom_times_p_int_atom_area_std": 26.921514070448765}} \\x240042200209004144181260a01081300240000142055488848102000d0020109181481864020400380f10200080006002d100192100440101100000504000004a020084000f0212004100640800b00080400160c1208002ba602c0a80101c4100006003240100101086012202000c01210b480512c000c000000102d0089081 \\x02000000022008000100000000000000000000084480000000004000000100000000000800240000080002001000020020000000000000001000000000000000 pcn (1.1937345266342163, 4.123979091644287, 2.1854467391967773, 3.341646671295166) (1.9426419734954836, 5.365811824798584) -59 CN(C)P(c1ccccc1)N(C)C 196.23399353027344 {"max_data": {"pyr_P": 0.9467520836612335, "pyr_alpha": 23.00657989857456, "qpole_amp": 6.399463945804566, "vbur_vbur": 54.22701862086887, "vbur_vtot": 228.29513697401512, "sterimol_L": 7.643760771186072, "sterimol_B1": 3.8586308065326325, "sterimol_B5": 6.236913429561472, "dipolemoment": 1.695675452359953, "qpoletens_xx": 2.900024741876341, "qpoletens_yy": 2.3141557668055563, "qpoletens_zz": -2.860737711652273, "sterimol_burL": 7.220455826337309, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.726800504749641, "sterimol_burB5": 6.043257750628931, "vbur_near_vbur": 54.227018620868876, "vbur_near_vtot": 226.81046389328395, "vbur_ovbur_max": 17.363063169036668, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.31370672276597, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.363063169036668, "vbur_qvbur_min": 11.716223939494533, "vbur_qvtot_max": 91.31370672276597, "vbur_qvtot_min": 46.15570329152393, "vbur_max_delta_qvbur": 7.595359600839966, "vbur_max_delta_qvtot": 46.01692081622971}, "min_data": {"pyr_P": 0.8855617171759925, "pyr_alpha": 15.682059020454304, "qpole_amp": 3.7548159320370846, "vbur_vbur": 53.591108590944515, "vbur_vtot": 228.06024870890488, "sterimol_L": 6.807682199838159, "sterimol_B1": 3.5808569234303294, "sterimol_B5": 6.03885951153834, "dipolemoment": 0.9677127145223134, "qpoletens_xx": 2.3850709824539384, "qpoletens_yy": 0.4756667291983345, "qpoletens_zz": -5.214180508681897, "sterimol_burL": 6.807682199838159, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.5808569234303294, "sterimol_burB5": 5.6926775831757865, "vbur_near_vbur": 53.591108590944515, "vbur_near_vtot": 226.1748974225551, "vbur_ovbur_max": 15.756553619754074, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 77.79759455824107, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.756553619754074, "vbur_qvbur_min": 9.767703568196701, "vbur_qvtot_max": 77.79759455824107, "vbur_qvtot_min": 40.304952201875025, "vbur_max_delta_qvbur": 4.040329680259541, "vbur_max_delta_qvtot": 31.641891266717145}, "delta_data": {"pyr_P": 0.06119036648524101, "pyr_alpha": 7.324520878120257, "qpole_amp": 2.6446480137674815, "vbur_vbur": 0.6359100299243536, "vbur_vtot": 0.23488826511024286, "sterimol_L": 0.8360785713479126, "sterimol_B1": 0.2777738831023031, "sterimol_B5": 0.198053918023132, "dipolemoment": 0.7279627378376397, "qpoletens_xx": 0.5149537594224025, "qpoletens_yy": 1.8384890376072218, "qpoletens_zz": 2.3534427970296243, "sterimol_burL": 0.41277362649914995, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.14594358131931173, "sterimol_burB5": 0.3505801674531446, "vbur_near_vbur": 0.6359100299243607, "vbur_near_vtot": 0.6355664707288611, "vbur_ovbur_max": 1.6065095492825936, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 13.516112164524898, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 1.6065095492825936, "vbur_qvbur_min": 1.9485203712978318, "vbur_qvtot_max": 13.516112164524898, "vbur_qvtot_min": 5.850751089648902, "vbur_max_delta_qvbur": 3.5550299205804254, "vbur_max_delta_qvtot": 14.375029549512561}, "vburminconf_data": {"pyr_P": 0.9467520836612335, "pyr_alpha": 15.682059020454304, "qpole_amp": 3.7548159320370846, "vbur_vbur": 53.591108590944515, "vbur_vtot": 228.29513697401512, "sterimol_L": 7.643760771186072, "sterimol_B1": 3.5808569234303294, "sterimol_B5": 6.236913429561472, "dipolemoment": 0.9677127145223134, "qpoletens_xx": 2.3850709824539384, "qpoletens_yy": 0.4756667291983345, "qpoletens_zz": -2.860737711652273, "sterimol_burL": 7.220455826337309, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.5808569234303294, "sterimol_burB5": 6.043257750628931, "vbur_near_vbur": 53.591108590944515, "vbur_near_vtot": 226.81046389328395, "vbur_ovbur_max": 15.756553619754074, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.31370672276597, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.756553619754074, "vbur_qvbur_min": 11.716223939494533, "vbur_qvtot_max": 91.31370672276597, "vbur_qvtot_min": 40.304952201875025, "vbur_max_delta_qvbur": 4.040329680259541, "vbur_max_delta_qvtot": 46.01692081622971}, "boltzmann_averaged_data": {"nbo_P": 1.1384633987102675, "nmr_P": 169.99261896522273, "pyr_P": 0.8856369235672807, "fmo_mu": -0.1223175910501049, "vmin_r": 1.8174183487168853, "volume": 274.3716490319324, "Pint_dP": 3.729705026543458, "fmo_eta": 0.20226134292887374, "fukui_m": -0.0003995055644242476, "fukui_p": 0.08984368842684934, "nuesp_P": -54.16003506300763, "somo_ra": 0.08631295750872506, "somo_rc": -0.382328578811361, "nbo_P_ra": 1.0486197102834183, "nbo_P_rc": 1.138063893145843, "efg_amp_P": 2.095229609676534, "fmo_omega": 0.03698596586635633, "pyr_alpha": 22.997577651737352, "qpole_amp": 6.396213525113079, "vbur_vbur": 54.226237051787294, "vbur_vtot": 228.0605373997526, "vmin_vmin": -0.054158505473001876, "E_solv_cds": -3.8900245811213785, "Pint_P_int": 17.97982793215035, "Pint_P_max": 35.755587688712566, "Pint_P_min": 12.42014748672827, "fmo_e_homo": -0.22344826251454178, "fmo_e_lumo": -0.021186919585668037, "nbo_lp_P_e": -0.30805550291343015, "sphericity": 0.8143105908501933, "sterimol_L": 6.80870978728037, "E_oxidation": 0.2777850006834447, "E_reduction": 0.03285302002250853, "sterimol_B1": 3.8582894068558167, "sterimol_B5": 6.0391029309082604, "E_solv_total": -8.267080014329597, "dipolemoment": 1.6947807453390635, "efgtens_xx_P": -1.0906278356250698, "efgtens_yy_P": -0.5961237735870801, "efgtens_zz_P": 1.6867516092121497, "nbo_bd_e_avg": -0.5398418740143699, "nbo_bd_e_max": -0.47590904911042586, "nbo_lp_P_occ": 1.9126189287221038, "qpoletens_xx": 2.8993918348331076, "qpoletens_yy": 2.3118961606962367, "qpoletens_zz": -5.211287995529344, "surface_area": 250.75726981208794, "E_solv_elstat": -4.377055433208219, "nbo_bds_e_avg": 0.22967120363585256, "nbo_bds_e_min": 0.22624247691821578, "nmrtens_sxx_P": 103.35094414905392, "nmrtens_syy_P": 170.88999534290895, "nmrtens_szz_P": 235.73691752661094, "spindens_P_ra": 0.08141157570905305, "spindens_P_rc": -0.06869883232317625, "sterimol_burL": 6.808189521768899, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9612214938460832, "nbo_bd_occ_min": 1.9552132078363398, "sterimol_burB1": 3.7266211319052998, "sterimol_burB5": 5.693108465858238, "vbur_near_vbur": 54.2262370517873, "vbur_near_vtot": 226.1756785693831, "vbur_ovbur_max": 17.361088678725338, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 77.81420661792512, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.361088678725338, "vbur_qvbur_min": 9.770098408984465, "vbur_qvtot_max": 77.81420661792512, "vbur_qvtot_min": 46.148512390389435, "nbo_bds_occ_avg": 0.08064458312049465, "nbo_bds_occ_max": 0.09147605347137633, "nbo_lp_P_percent_s": 52.044535216894324, "vbur_max_delta_qvbur": 7.590990269740873, "vbur_max_delta_qvtot": 31.65955898402592, "vbur_ratio_vbur_vtot": 0.23777124505511896}} {"max_data": {"B1": 3.812880854857498, "B5": 6.416459153811772, "lval": 7.318719123634983, "sasa": 399.49209807988467, "vbur": 59.39855663512353, "vtot": 226.08466278817488, "alpha": 158.502662, "p_int": 18.445691782961063, "sasa_P": 13.659961263161167, "pyr_val": 0.9608811124002861, "dip_norm": 0.8054942582042408, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 59.39855663512353, "near_vtot": 225.8124017653742, "ovbur_max": 17.378973301210593, "ovbur_min": 0.0, "ovtot_max": 90.56793950140411, "ovtot_min": 0.0, "pyr_alpha": 21.13808481183663, "qvbur_max": 17.378973301210593, "qvbur_min": 12.844821313168392, "qvtot_max": 90.56793950140411, "qvtot_min": 43.286662265674686, "cone_angle": 173.54058134142142, "p_int_area": 283.871868600103, "p_int_atom": 25.545432591015995, "sasa_volume": 618.607324998975, "EA_delta_SCC": 1.0469, "IP_delta_SCC": 6.3703, "HOMO_LUMO_gap": 3.103292855799, "sasa_volume_P": 18.224265487537515, "max_delta_qvbur": 5.571528663969595, "max_delta_qvtot": 49.82793369895184, "nucleophilicity": -6.0602, "p_int_atom_area": 16.497704369030735, "p_int_times_p_int_area": 5209.4609363291665, "global_electrophilicity_index": 1.2762, "p_int_atom_times_p_int_atom_area": 421.44099486558474}, "min_data": {"B1": 3.5254684690043923, "B5": 6.21028845815208, "lval": 6.329125593936478, "sasa": 395.1319297781652, "vbur": 58.01150242798466, "vtot": 225.62549451164875, "alpha": 158.369866, "p_int": 18.35145187869199, "sasa_P": 11.07996857948943, "pyr_val": 0.9023952662956993, "dip_norm": 0.4611648295349505, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 58.01150242798465, "near_vtot": 221.922586566602, "ovbur_max": 17.005983934585014, "ovbur_min": 0.0, "ovtot_max": 78.53880200822412, "ovtot_min": 0.0, "pyr_alpha": 13.418833886502732, "qvbur_max": 17.005983934585014, "qvbur_min": 11.43445527061542, "qvtot_max": 78.53880200822412, "qvtot_min": 39.0034805084965, "cone_angle": 162.41127040561233, "p_int_area": 280.57141564069667, "p_int_atom": 24.702029561713235, "sasa_volume": 612.9976661551651, "EA_delta_SCC": 0.9665, "IP_delta_SCC": 6.0602, "HOMO_LUMO_gap": 2.870596559937, "sasa_volume_P": 14.777531864660281, "max_delta_qvbur": 3.858108761033339, "max_delta_qvtot": 32.26343006764553, "nucleophilicity": -6.3703, "p_int_atom_area": 15.497843498180387, "p_int_times_p_int_area": 5151.197766135419, "global_electrophilicity_index": 1.2285, "p_int_atom_times_p_int_atom_area": 385.29804751379186}, "boltzmann_averaged_data": {"B1": 3.5400338540270497, "B5": 6.215258287860415, "lval": 7.268053024243079, "sasa": 395.15253500161214, "vbur": 58.20044706864029, "vtot": 225.67533814665384, "alpha": 158.37656465400005, "p_int": 18.441336894716805, "B1_std": 0.06277591748433467, "B5_std": 0.021897538015576947, "sasa_P": 13.279888540969182, "pyr_val": 0.957965342642946, "dip_norm": 0.4784292657504448, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.21799327625950593, "sasa_std": 0.09576917547472931, "vbur_std": 0.04565590405924276, "vtot_std": 0.013058941455416728, "alpha_std": 0.028924659840777, "near_vbur": 58.20044706864029, "near_vtot": 225.61760591175894, "ovbur_max": 17.082722184078676, "ovbur_min": 0.0, "ovtot_max": 87.37870733244267, "ovtot_min": 0.0, "p_int_std": 0.018776814984820568, "pyr_alpha": 13.804748011046145, "qvbur_max": 17.082722184078676, "qvbur_min": 12.347535687857558, "qvtot_max": 87.37870733244267, "qvtot_min": 39.729853933031904, "cone_angle": 167.34180457339326, "p_int_area": 280.85755890323287, "p_int_atom": 24.822415865559954, "sasa_P_std": 0.08815115700716998, "pyr_val_std": 0.012685074248105391, "sasa_volume": 613.0845252958576, "EA_delta_SCC": 1.0175900260000001, "IP_delta_SCC": 6.366615642, "dip_norm_std": 0.0747984851015732, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.0991124818567837, "near_vbur_std": 0.04565590405924422, "near_vtot_std": 0.26498242346791234, "ovbur_max_std": 0.0305432776584861, "ovbur_min_std": 0.0, "ovtot_max_std": 2.0199610160283963, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.6753165194932187, "qvbur_max_std": 0.0305432776584861, "qvbur_min_std": 0.13457287421791006, "qvtot_max_std": 2.0199610160283963, "qvtot_min_std": 0.8255592637968073, "sasa_volume_P": 18.188962958619005, "cone_angle_std": 1.1256200988235494, "p_int_area_std": 0.0792384228970321, "p_int_atom_std": 0.16496431327377317, "max_delta_qvbur": 4.735150595994583, "max_delta_qvtot": 43.69762401419955, "nucleophilicity": -6.366615642, "p_int_atom_area": 15.737168196505387, "sasa_volume_std": 0.37453299899483494, "EA_delta_SCC_std": 0.011715985921779004, "IP_delta_SCC_std": 0.01849656901503182, "HOMO_LUMO_gap_std": 0.018469960502595906, "sasa_volume_P_std": 0.15294576598967616, "max_delta_qvbur_std": 0.1631852947756784, "max_delta_qvtot_std": 2.6171753189745104, "nucleophilicity_std": 0.01849656901503182, "p_int_atom_area_std": 0.17348363458019214, "p_int_times_p_int_area": 5179.389972826108, "p_int_times_p_int_area_std": 6.4323364491231665, "global_electrophilicity_index": 1.2742399180000004, "p_int_atom_times_p_int_atom_area": 390.66313856556326, "global_electrophilicity_index_std": 0.008442040651008273, "p_int_atom_times_p_int_atom_area_std": 7.020403721062235}} {"max_data": {"pyr_P": "0.94608754", "pyr_alpha": "21.471483", "qpole_amp": "6.28805", "vbur_vbur": "51.950203", "sterimol_L": "7.3323207", "sterimol_B1": "3.7082663", "sterimol_B5": "6.3576174", "dipolemoment": "1.6546586", "qpoletens_xx": "3.9450545", "qpoletens_yy": "0.86096126", "qpoletens_zz": "-4.199021", "sterimol_burL": "7.0999265", "vbur_far_vbur": "-2.6931925", "vbur_far_vtot": "-2.6977863", "sterimol_burB1": "3.8110547", "sterimol_burB5": "5.9221954", "vbur_near_vbur": "54.59385", "vbur_near_vtot": "232.72377", "vbur_ovbur_max": "18.347898", "vbur_ovbur_min": "-0.027975133", "vbur_ovtot_max": "89.102486", "vbur_ovtot_min": "-0.12974606", "vbur_qvbur_max": "15.340968", "vbur_qvbur_min": "12.065324", "vbur_qvtot_max": "80.81791", "vbur_qvtot_min": "43.33041", "vbur_max_delta_qvbur": "6.294578", "vbur_max_delta_qvtot": "50.4349"}, "min_data": {"pyr_P": "0.8992455", "pyr_alpha": "15.2382", "qpole_amp": "5.6671195", "vbur_vbur": "49.930977", "sterimol_L": "7.3806233", "sterimol_B1": "3.4903934", "sterimol_B5": "6.118077", "dipolemoment": "1.0159352", "qpoletens_xx": "3.510375", "qpoletens_yy": "0.42080158", "qpoletens_zz": "-5.0576553", "sterimol_burL": "6.892119", "vbur_far_vbur": "0.11774162", "vbur_far_vtot": "-0.54292536", "sterimol_burB1": "3.5651438", "sterimol_burB5": "5.5468926", "vbur_near_vbur": "52.38724", "vbur_near_vtot": "228.37527", "vbur_ovbur_max": "15.640532", "vbur_ovbur_min": "-0.0074889865", "vbur_ovtot_max": "86.928215", "vbur_ovtot_min": "-0.00076256244", "vbur_qvbur_max": "14.755486", "vbur_qvbur_min": "9.784698", "vbur_qvtot_max": "84.98716", "vbur_qvtot_min": "38.668587", "vbur_max_delta_qvbur": "4.083959", "vbur_max_delta_qvtot": "47.698425"}, "delta_data": {"pyr_P": "0.049188443", "pyr_alpha": "6.4635096", "qpole_amp": "1.6318164", "vbur_vbur": "2.8411076", "sterimol_L": "0.2310908", "sterimol_B1": "0.07489099", "sterimol_B5": "0.1994227", "dipolemoment": "0.5602778", "qpoletens_xx": "0.46605173", "qpoletens_yy": "0.9708635", "qpoletens_zz": "0.9617452", "sterimol_burL": "0.31826305", "vbur_far_vbur": "-0.7783643", "vbur_far_vtot": "2.8446524", "sterimol_burB1": "0.16993682", "sterimol_burB5": "0.1521011", "vbur_near_vbur": "1.9540071", "vbur_near_vtot": "4.855567", "vbur_ovbur_max": "2.532419", "vbur_ovbur_min": "-0.0422726", "vbur_ovtot_max": "2.6012468", "vbur_ovtot_min": "-0.14881732", "vbur_qvbur_max": "1.4706242", "vbur_qvbur_min": "1.4840689", "vbur_qvtot_max": "2.8404217", "vbur_qvtot_min": "3.7979882", "vbur_max_delta_qvbur": "2.9402533", "vbur_max_delta_qvtot": "3.5672572"}, "vburminconf_data": {"pyr_P": "0.9451785", "pyr_alpha": "16.024014", "qpole_amp": "7.5558767", "vbur_vbur": "51.138344", "sterimol_L": "7.1829085", "sterimol_B1": "3.589763", "sterimol_B5": "6.4448924", "dipolemoment": "1.6093681", "qpoletens_xx": "4.7830534", "qpoletens_yy": "0.9345354", "qpoletens_zz": "-5.163788", "sterimol_burL": "7.108089", "vbur_far_vbur": "-0.067160815", "vbur_far_vtot": "-1.5334636", "sterimol_burB1": "3.5995035", "sterimol_burB5": "5.723161", "vbur_near_vbur": "51.97827", "vbur_near_vtot": "234.93678", "vbur_ovbur_max": "15.966814", "vbur_ovbur_min": "0.0070751444", "vbur_ovtot_max": "94.24628", "vbur_ovtot_min": "-0.005871271", "vbur_qvbur_max": "14.726883", "vbur_qvbur_min": "11.517952", "vbur_qvtot_max": "91.58457", "vbur_qvtot_min": "39.553", "vbur_max_delta_qvbur": "4.0529475", "vbur_max_delta_qvtot": "51.00299"}, "boltzmann_averaged_data": {"nbo_P": "1.1312617", "nmr_P": "165.81593", "pyr_P": "0.88897747", "fmo_mu": "-0.12653019", "vmin_r": "1.7953082", "volume": "273.99573", "Pint_dP": "3.5893188", "fmo_eta": "0.19379969", "fukui_m": "0.029815959", "fukui_p": "0.092670165", "nuesp_P": "-54.157906", "somo_ra": "0.07861456", "somo_rc": "-0.38655627", "nbo_P_ra": "1.0610114", "nbo_P_rc": "1.2132436", "efg_amp_P": "2.1028104", "fmo_omega": "0.042052194", "pyr_alpha": "23.36393", "qpole_amp": "5.554076", "vbur_vbur": "51.459835", "vbur_vtot": "227.77151", "vmin_vmin": "-0.052599117", "E_solv_cds": "-3.9703", "Pint_P_int": "17.95439", "Pint_P_max": "32.71409", "Pint_P_min": "12.229365", "fmo_e_homo": "-0.22068955", "fmo_e_lumo": "-0.027539834", "nbo_lp_P_e": "-0.30614343", "sphericity": "0.82081544", "sterimol_L": "7.2618785", "E_oxidation": "0.2753842", "E_reduction": "0.02572265", "sterimol_B1": "3.634859", "sterimol_B5": "6.330675", "E_solv_total": "-8.320197", "dipolemoment": "1.8486912", "efgtens_xx_P": "-1.1215566", "efgtens_yy_P": "-0.5964391", "efgtens_zz_P": "1.6977516", "nbo_bd_e_avg": "-0.54336596", "nbo_bd_e_max": "-0.4776347", "nbo_lp_P_occ": "1.913679", "qpoletens_xx": "4.2649136", "qpoletens_yy": "0.07487275", "qpoletens_zz": "-4.01879", "surface_area": "248.30162", "E_solv_elstat": "-4.4869246", "nbo_bds_e_avg": "0.23469953", "nbo_bds_e_min": "0.225945", "nmrtens_sxx_P": "94.25109", "nmrtens_syy_P": "153.42865", "nmrtens_szz_P": "249.46515", "spindens_P_ra": "0.09093971", "spindens_P_rc": "0.003154655", "sterimol_burL": "6.801299", "vbur_far_vbur": "-2.6312628", "vbur_far_vtot": "-9.765289", "nbo_bd_occ_avg": "1.9613994", "nbo_bd_occ_min": "1.9519511", "sterimol_burB1": "3.6658201", "sterimol_burB5": "5.82904", "vbur_near_vbur": "55.171276", "vbur_near_vtot": "243.32335", "vbur_ovbur_max": "16.895487", "vbur_ovbur_min": "-0.008303479", "vbur_ovtot_max": "84.61772", "vbur_ovtot_min": "-0.044302315", "vbur_qvbur_max": "16.089626", "vbur_qvbur_min": "10.34301", "vbur_qvtot_max": "79.83592", "vbur_qvtot_min": "40.767006", "nbo_bds_occ_avg": "0.083251804", "nbo_bds_occ_max": "0.10370896", "nbo_lp_P_percent_s": "51.421474", "vbur_max_delta_qvbur": "5.643568", "vbur_max_delta_qvtot": "43.45523", "vbur_ratio_vbur_vtot": "0.2324654"}} CN(C)P(c1ccccc1)N(C)C {"max_data": {"B1": 3.801921129626935, "B5": 6.567997806400998, "lval": 7.471655871904851, "sasa": 397.2619575976922, "vbur": 54.374856103385255, "vtot": 225.3169378167613, "alpha": 158.439379, "p_int": 18.467511681587098, "sasa_P": 12.499964552673099, "pyr_val": 0.9391867645158622, "dip_norm": 0.8762933298844628, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.37485610338526, "near_vtot": 225.3169378167613, "ovbur_max": 15.001166088972525, "ovbur_min": 0.0, "ovtot_max": 90.8787649287022, "ovtot_min": 0.0, "pyr_alpha": 25.197481494769374, "qvbur_max": 15.001166088972525, "qvbur_min": 12.052218909089037, "qvtot_max": 90.8787649287022, "qvtot_min": 42.41042757977018, "cone_angle": 163.37628240893616, "p_int_area": 281.67082617527535, "p_int_atom": 25.989809957177634, "sasa_volume": 615.0998004159966, "EA_delta_SCC": 1.0165, "IP_delta_SCC": 6.3273, "HOMO_LUMO_gap": 3.106846194275, "sasa_volume_P": 11.36198734028622, "max_delta_qvbur": 3.0888181923680804, "max_delta_qvtot": 46.62885917713402, "nucleophilicity": -5.9868, "p_int_atom_area": 15.997773933605563, "p_int_times_p_int_area": 5201.759272754187, "global_electrophilicity_index": 1.2553, "p_int_atom_times_p_int_atom_area": 414.11039507129357}, "min_data": {"B1": 3.5570234879514846, "B5": 6.196349452743192, "lval": 6.528694644410745, "sasa": 396.552113409084, "vbur": 52.719715788984246, "vtot": 224.52795877239814, "alpha": 158.308736, "p_int": 18.294476673684887, "sasa_P": 11.059968636205156, "pyr_val": 0.8671167838257796, "dip_norm": 0.35587778801155884, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 52.719715788984246, "near_vtot": 219.12728731950162, "ovbur_max": 14.628176722346947, "ovbur_min": 0.0, "ovtot_max": 78.48083478114219, "ovtot_min": 0.0, "pyr_alpha": 16.956688824188394, "qvbur_max": 14.628176722346947, "qvbur_min": 11.63260587163526, "qvtot_max": 78.48083478114219, "qvtot_min": 39.918405116374444, "cone_angle": 157.35479553127217, "p_int_area": 279.27221535708384, "p_int_atom": 25.181697693558412, "sasa_volume": 614.057576853865, "EA_delta_SCC": 0.9585, "IP_delta_SCC": 5.9868, "HOMO_LUMO_gap": 2.571483033075, "sasa_volume_P": 10.29978871093262, "max_delta_qvbur": 2.5759578132579097, "max_delta_qvtot": 28.02740400288633, "nucleophilicity": -6.3273, "p_int_atom_area": 14.497982627330039, "p_int_times_p_int_area": 5109.139029458473, "global_electrophilicity_index": 1.2335, "p_int_atom_times_p_int_atom_area": 365.0838156878868}, "boltzmann_averaged_data": {"B1": 3.5574757079369523, "B5": 6.196539526004368, "lval": 7.471254964215684, "sasa": 396.8225785901286, "vbur": 53.86249529690801, "vtot": 224.5287516823025, "alpha": 158.30882275053, "p_int": 18.29477506981239, "B1_std": 0.01037163832501231, "B5_std": 0.0066483047646899805, "sasa_P": 11.379774129302602, "pyr_val": 0.9307862008936734, "dip_norm": 0.540477152290669, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.016362364216843273, "sasa_std": 0.018285599782312107, "vbur_std": 0.02835921671619357, "vtot_std": 0.019399024493253435, "alpha_std": 0.00253297514546292, "near_vbur": 53.86249529690801, "near_vtot": 219.13839551188101, "ovbur_max": 14.628808006849962, "ovbur_min": 0.0, "ovtot_max": 90.87329513481863, "ovtot_min": 0.0, "p_int_std": 0.007038656538648333, "pyr_alpha": 18.07320013684998, "qvbur_max": 14.628808006849962, "qvbur_min": 12.051492978534244, "qvtot_max": 90.87329513481863, "qvtot_min": 39.92105783309327, "cone_angle": 163.37278000932497, "p_int_area": 279.2763036746587, "p_int_atom": 25.183210938419062, "sasa_P_std": 0.023013550687131394, "pyr_val_std": 0.0011357581663979457, "sasa_volume": 614.0579650253388, "EA_delta_SCC": 1.001312212, "IP_delta_SCC": 6.278241216, "dip_norm_std": 0.009378133703938309, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 2.915237628911863, "near_vbur_std": 0.028359216716193777, "near_vtot_std": 0.25402264127655805, "ovbur_max_std": 0.015083075905275595, "ovbur_min_std": 0.0, "ovtot_max_std": 0.2161349876399121, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.1293778029887217, "qvbur_max_std": 0.015083075905275595, "qvbur_min_std": 0.016610566929381905, "qvtot_max_std": 0.2161349876399121, "qvtot_min_std": 0.06397895809301772, "sasa_volume_P": 10.834452944007047, "cone_angle_std": 0.11138412738064686, "p_int_area_std": 0.09718632836210599, "p_int_atom_std": 0.03463079660875592, "max_delta_qvbur": 2.5761631905279083, "max_delta_qvtot": 46.46726038379633, "nucleophilicity": -6.278241216, "p_int_atom_area": 14.498741521731016, "sasa_volume_std": 0.01787214749454199, "EA_delta_SCC_std": 0.0009515089421839374, "IP_delta_SCC_std": 0.011768924073225388, "HOMO_LUMO_gap_std": 0.014224264930002851, "sasa_volume_P_std": 0.02333060408426618, "max_delta_qvbur_std": 0.00884398880139383, "max_delta_qvtot_std": 0.31412804310109294, "nucleophilicity_std": 0.011768924073225388, "p_int_atom_area_std": 0.026767975240850735, "p_int_times_p_int_area": 5109.2978418359235, "p_int_times_p_int_area_std": 3.7599248284892, "global_electrophilicity_index": 1.255259058, "p_int_atom_times_p_int_atom_area": 365.1254328388149, "global_electrophilicity_index_std": 0.000936673343613452, "p_int_atom_times_p_int_atom_area_std": 1.0764417577272818}} \\x24004220000900004418024080108030000000014200400084010000000020009081480064020000380600200080006000c100192100440001000000004000004a02000000020212004100240000800000400020812080029a202c008000084100004003200000001084012202000c0121004801108000800000010290089080 \\x00000000022008000100000100000000000800000480000000004000000000000000000008200000080002001000020020000000000000000000000000080000 pcn (-5.8696722984313965, 2.423834085464477, -0.7834516763687134, 2.043715238571167) (2.044620513916016, 5.17310094833374) -129 CN(C)P(c1ccccc1)c1ccccc1 229.26300048828125 {"max_data": {"pyr_P": 0.954302294766486, "pyr_alpha": 19.582222605948346, "qpole_amp": 6.901302749915617, "vbur_vbur": 52.931142753967094, "vbur_vtot": 265.65108861043194, "sterimol_L": 7.712699998943803, "sterimol_B1": 3.8519054756059026, "sterimol_B5": 6.354020525433896, "dipolemoment": 1.6524566855196543, "qpoletens_xx": 3.9423612522194658, "qpoletens_yy": 1.515555740349563, "qpoletens_zz": -2.5342264192726955, "sterimol_burL": 7.245246009783993, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.8519054756059026, "sterimol_burB5": 6.057651506412128, "vbur_near_vbur": 52.93114275396709, "vbur_near_vtot": 264.94883040345485, "vbur_ovbur_max": 16.37468327055226, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.82124410562767, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.37468327055226, "vbur_qvbur_min": 12.17642198746611, "vbur_qvtot_max": 91.82124410562767, "vbur_qvtot_min": 44.89800618700901, "vbur_max_delta_qvbur": 6.349687157353268, "vbur_max_delta_qvtot": 48.6152256977982}, "min_data": {"pyr_P": 0.9205038596900796, "pyr_alpha": 14.664420440765504, "qpole_amp": 4.071263143361564, "vbur_vbur": 51.870595434323505, "vbur_vtot": 264.94883040345485, "sterimol_L": 7.517398717003813, "sterimol_B1": 3.821646329295418, "sterimol_B5": 6.2597803739726725, "dipolemoment": 1.020960668950021, "qpoletens_xx": 3.130138725712584, "qpoletens_yy": -0.5959123064398884, "qpoletens_zz": -5.457916992569029, "sterimol_burL": 7.092421753770022, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.651532409257113, "sterimol_burB5": 6.046564361522698, "vbur_near_vbur": 51.870595434323505, "vbur_near_vtot": 264.48003894015636, "vbur_ovbur_max": 14.67508820702087, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.5243197262882, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.67508820702087, "vbur_qvbur_min": 10.024996113198993, "vbur_qvtot_max": 90.5243197262882, "vbur_qvtot_min": 42.099242825644716, "vbur_max_delta_qvbur": 2.2915770979675525, "vbur_max_delta_qvtot": 40.707688815684186}, "delta_data": {"pyr_P": 0.03379843507640634, "pyr_alpha": 4.917802165182842, "qpole_amp": 2.8300396065540534, "vbur_vbur": 1.0605473196435895, "vbur_vtot": 0.702258206977092, "sterimol_L": 0.1953012819399902, "sterimol_B1": 0.030259146310484653, "sterimol_B5": 0.09424015146122322, "dipolemoment": 0.6314960165696333, "qpoletens_xx": 0.8122225265068819, "qpoletens_yy": 2.1114680467894513, "qpoletens_zz": 2.923690573296333, "sterimol_burL": 0.15282425601397076, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.20037306634878949, "sterimol_burB5": 0.011087144889430078, "vbur_near_vbur": 1.0605473196435824, "vbur_near_vtot": 0.4687914632984871, "vbur_ovbur_max": 1.6995950635313903, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 1.2969243793394725, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 1.6995950635313903, "vbur_qvbur_min": 2.151425874267117, "vbur_qvtot_max": 1.2969243793394725, "vbur_qvtot_min": 2.798763361364294, "vbur_max_delta_qvbur": 4.058110059385715, "vbur_max_delta_qvtot": 7.907536882114016}, "vburminconf_data": {"pyr_P": 0.9205038596900796, "pyr_alpha": 19.582222605948346, "qpole_amp": 6.901302749915617, "vbur_vbur": 51.870595434323505, "vbur_vtot": 264.94883040345485, "sterimol_L": 7.517398717003813, "sterimol_B1": 3.821646329295418, "sterimol_B5": 6.354020525433896, "dipolemoment": 1.6524566855196543, "qpoletens_xx": 3.9423612522194658, "qpoletens_yy": 1.515555740349563, "qpoletens_zz": -5.457916992569029, "sterimol_burL": 7.092421753770022, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.651532409257113, "sterimol_burB5": 6.046564361522698, "vbur_near_vbur": 51.870595434323505, "vbur_near_vtot": 264.94883040345485, "vbur_ovbur_max": 16.37468327055226, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.5243197262882, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.37468327055226, "vbur_qvbur_min": 10.024996113198993, "vbur_qvtot_max": 90.5243197262882, "vbur_qvtot_min": 44.89800618700901, "vbur_max_delta_qvbur": 6.349687157353268, "vbur_max_delta_qvtot": 40.707688815684186}, "boltzmann_averaged_data": {"nbo_P": 0.9768007631295926, "nmr_P": 216.36694904441146, "pyr_P": 0.9205647944391155, "fmo_mu": -0.1309387229436997, "vmin_r": 1.8413723797450552, "volume": 309.0823620752264, "Pint_dP": 3.680090144334935, "fmo_eta": 0.200098731923467, "fukui_m": 0.3926381188033246, "fukui_p": 0.0977584915616846, "nuesp_P": -54.16771034735502, "somo_ra": 0.06778523435793773, "somo_rc": -0.38656227765841816, "nbo_P_ra": 0.879042271567908, "nbo_P_rc": 1.3694388819329173, "efg_amp_P": 1.992734711102771, "fmo_omega": 0.04284161017974223, "pyr_alpha": 19.573356365837945, "qpole_amp": 6.896200509152193, "vbur_vbur": 51.87250748097943, "vbur_vtot": 264.9500964954353, "vmin_vmin": -0.050641273559857286, "E_solv_cds": -5.480090144334935, "Pint_P_int": 18.729981971133014, "Pint_P_max": 31.510090144334942, "Pint_P_min": 12.790540866009609, "fmo_e_homo": -0.2309880889054332, "fmo_e_lumo": -0.03088935698196621, "nbo_lp_P_e": -0.31112762022422397, "sphericity": 0.7980025907343197, "sterimol_L": 7.51775082308726, "E_oxidation": 0.2831553183540062, "E_reduction": 0.019091354552329725, "sterimol_B1": 3.821700883107815, "sterimol_B5": 6.353850621118345, "E_solv_total": -11.147518311681955, "dipolemoment": 1.6513181697511048, "efgtens_xx_P": -1.0502611134709303, "efgtens_yy_P": -0.5510703622450281, "efgtens_zz_P": 1.6013314757159585, "nbo_bd_e_avg": -0.5043506289801745, "nbo_bd_e_max": -0.4702659495261058, "nbo_lp_P_occ": 1.9122573678547525, "qpoletens_xx": 3.9408969070300497, "qpoletens_yy": 1.5117490026932956, "qpoletens_zz": -5.452645909723346, "surface_area": 277.0317710626393, "E_solv_elstat": -5.667428167347018, "nbo_bds_e_avg": 0.22333546471909008, "nbo_bds_e_min": 0.2147586898445553, "nmrtens_sxx_P": 137.8294108033463, "nmrtens_syy_P": 228.96583562318585, "nmrtens_szz_P": 282.30570070670234, "spindens_P_ra": 0.1169850600557794, "spindens_P_rc": 0.49620795041834537, "sterimol_burL": 7.092697278588428, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9565983173057482, "nbo_bd_occ_min": 1.9530178185070948, "sterimol_burB1": 3.6518936591932096, "sterimol_burB5": 6.046584350388747, "vbur_near_vbur": 51.87250748097943, "vbur_near_vtot": 264.94798522556124, "vbur_ovbur_max": 16.37161909321906, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.52665793400092, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.37161909321906, "vbur_qvbur_min": 10.028874890290929, "vbur_qvtot_max": 90.52665793400092, "vbur_qvtot_min": 44.892960333772024, "nbo_bds_occ_avg": 0.053674911833835805, "nbo_bds_occ_max": 0.06143117184168794, "nbo_lp_P_percent_s": 50.886039670440624, "vbur_max_delta_qvbur": 6.342370844705378, "vbur_max_delta_qvtot": 40.72194520874836, "vbur_ratio_vbur_vtot": 0.19578216341768542}} {"max_data": {"B1": 3.803560000703596, "B5": 6.34146526012797, "lval": 7.469535438482895, "sasa": 439.5028445246943, "vbur": 57.2189000239053, "vtot": 262.01039240368857, "alpha": 188.273566, "p_int": 19.526449306394834, "sasa_P": 15.919954854284452, "pyr_val": 0.973385548739686, "dip_norm": 0.7696505700641038, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 57.2189000239053, "near_vtot": 262.01039240368857, "ovbur_max": 16.819489251272223, "ovbur_min": 0.0, "ovtot_max": 87.99035799782995, "ovtot_min": 0.0, "pyr_alpha": 16.832668414271588, "qvbur_max": 16.819489251272223, "qvbur_min": 12.938068654824786, "qvtot_max": 87.99035799782995, "qvtot_min": 43.85240687258992, "cone_angle": 164.25250509101636, "p_int_area": 307.1440799324339, "p_int_atom": 24.873664812123994, "sasa_volume": 687.7107311900904, "EA_delta_SCC": 1.2466, "IP_delta_SCC": 6.5981, "HOMO_LUMO_gap": 3.427755632925, "sasa_volume_P": 21.912536948424037, "max_delta_qvbur": 5.501593157727298, "max_delta_qvtot": 44.99788867064777, "nucleophilicity": -6.459, "p_int_atom_area": 16.697676543200807, "p_int_times_p_int_area": 5997.433306559953, "global_electrophilicity_index": 1.4239, "p_int_atom_times_p_int_atom_area": 415.26997346505686}, "min_data": {"B1": 3.750410990714184, "B5": 6.162222170959907, "lval": 7.2365685084654325, "sasa": 433.4828776148267, "vbur": 56.286426607341355, "vtot": 261.9966662893562, "alpha": 188.19665, "p_int": 19.398374942941718, "sasa_P": 14.259959561689465, "pyr_val": 0.9405272936025456, "dip_norm": 0.5146076175106622, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 56.28642660734135, "near_vtot": 261.9966662893562, "ovbur_max": 15.688865233688437, "ovbur_min": 0.0, "ovtot_max": 87.17858486270876, "ovtot_min": 0.0, "pyr_alpha": 11.006935839848875, "qvbur_max": 15.688865233688437, "qvbur_min": 11.317896093544926, "qvtot_max": 87.17858486270876, "qvtot_min": 42.99246932718218, "cone_angle": 159.07341234862207, "p_int_area": 307.14392129853246, "p_int_atom": 24.86992560855135, "sasa_volume": 683.173390749482, "EA_delta_SCC": 1.0923, "IP_delta_SCC": 6.459, "HOMO_LUMO_gap": 2.903842921805, "sasa_volume_P": 20.5462024579979, "max_delta_qvbur": 2.6925169903284036, "max_delta_qvtot": 37.02174961384769, "nucleophilicity": -6.5981, "p_int_atom_area": 16.297732194860668, "p_int_times_p_int_area": 5958.092946794315, "global_electrophilicity_index": 1.3427, "p_int_atom_times_p_int_atom_area": 405.38432781272616}, "boltzmann_averaged_data": {"B1": 3.7948297443227355, "B5": 6.312022790301224, "lval": 7.274835656390101, "sasa": 434.47171737944154, "vbur": 56.43959469074615, "vtot": 262.00813775214834, "alpha": 188.26093177784, "p_int": 19.505411811454024, "B1_std": 0.019692310862896113, "B5_std": 0.06641159699167443, "sasa_P": 15.6472840275228, "pyr_val": 0.9459245905913723, "dip_norm": 0.7277572146776755, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.08631688920625932, "sasa_std": 2.2304660010991264, "vbur_std": 0.34549197424415107, "vtot_std": 0.005085681001895546, "alpha_std": 0.02849825015803538, "near_vbur": 56.43959469074615, "near_vtot": 262.00813775214834, "ovbur_max": 16.63377295014391, "ovbur_min": 0.0, "ovtot_max": 87.31192671788376, "ovtot_min": 0.0, "p_int_std": 0.047453003907104684, "pyr_alpha": 15.875733581596913, "qvbur_max": 16.63377295014391, "qvbur_min": 11.584025638460755, "qvtot_max": 87.31192671788376, "qvtot_min": 43.71115353138124, "cone_angle": 159.92413012248778, "p_int_area": 307.14405387522925, "p_int_atom": 24.870539810130193, "sasa_P_std": 0.6150470787553122, "pyr_val_std": 0.012174356111277046, "sasa_volume": 683.9186942902563, "EA_delta_SCC": 1.117645318, "IP_delta_SCC": 6.575251433999999, "dip_norm_std": 0.09449630587801683, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.341697730996429, "near_vbur_std": 0.3454919742441537, "near_vtot_std": 0.005085681001895546, "ovbur_max_std": 0.4189090187710346, "ovbur_min_std": 0.0, "ovtot_max_std": 0.3007711513373207, "ovtot_min_std": 0.0, "pyr_alpha_std": 2.15849997737468, "qvbur_max_std": 0.4189090187710346, "qvbur_min_std": 0.6002923052492151, "qvtot_max_std": 0.3007711513373207, "qvtot_min_std": 0.31861661148944437, "sasa_volume_P": 21.68810284502664, "cone_angle_std": 1.9189125872958912, "p_int_area_std": 0.00005877565924706341, "p_int_atom_std": 0.0013854173228602066, "max_delta_qvbur": 5.040174306470355, "max_delta_qvtot": 38.33191021531767, "nucleophilicity": -6.575251433999999, "p_int_atom_area": 16.631981684542456, "sasa_volume_std": 1.6811360825921566, "EA_delta_SCC_std": 0.057169899622781135, "IP_delta_SCC_std": 0.05153812726849554, "HOMO_LUMO_gap_std": 0.19411560016739823, "sasa_volume_P_std": 0.5062424217032154, "max_delta_qvbur_std": 1.0407945724105097, "max_delta_qvtot_std": 2.955249962764777, "nucleophilicity_std": 0.05153812726849554, "p_int_atom_area_std": 0.1481839160680775, "p_int_times_p_int_area": 5990.97125906485, "p_int_times_p_int_area_std": 14.57604937735333, "global_electrophilicity_index": 1.3560379120000001, "p_int_atom_times_p_int_atom_area": 413.646157310205, "global_electrophilicity_index_std": 0.030085520734736415, "p_int_atom_times_p_int_atom_area_std": 3.662743808490796}} {"max_data": {"pyr_P": "0.9346806", "pyr_alpha": "21.753574", "qpole_amp": "6.603775", "vbur_vbur": "51.09496", "sterimol_L": "7.685662", "sterimol_B1": "3.9975972", "sterimol_B5": "6.552081", "dipolemoment": "1.7851055", "qpoletens_xx": "4.114275", "qpoletens_yy": "0.9807812", "qpoletens_zz": "-3.575769", "sterimol_burL": "7.2938743", "vbur_far_vbur": "-1.6793774", "vbur_far_vtot": "-3.423551", "sterimol_burB1": "3.9890437", "sterimol_burB5": "6.3235083", "vbur_near_vbur": "53.00629", "vbur_near_vtot": "267.3488", "vbur_ovbur_max": "19.247747", "vbur_ovbur_min": "-0.2573796", "vbur_ovtot_max": "87.82017", "vbur_ovtot_min": "-0.5181148", "vbur_qvbur_max": "19.035402", "vbur_qvbur_min": "10.906793", "vbur_qvtot_max": "91.34699", "vbur_qvtot_min": "49.976112", "vbur_max_delta_qvbur": "8.194575", "vbur_max_delta_qvtot": "51.17184"}, "min_data": {"pyr_P": "0.89905596", "pyr_alpha": "17.257765", "qpole_amp": "4.8983493", "vbur_vbur": "48.672436", "sterimol_L": "7.7162156", "sterimol_B1": "3.867226", "sterimol_B5": "6.2495165", "dipolemoment": "0.9309327", "qpoletens_xx": "3.4123569", "qpoletens_yy": "0.29284775", "qpoletens_zz": "-5.1819797", "sterimol_burL": "7.138372", "vbur_far_vbur": "1.1122701", "vbur_far_vtot": "-0.5423992", "sterimol_burB1": "3.8043623", "sterimol_burB5": "5.922145", "vbur_near_vbur": "50.326553", "vbur_near_vtot": "267.6272", "vbur_ovbur_max": "15.87528", "vbur_ovbur_min": "-0.03624299", "vbur_ovtot_max": "91.7905", "vbur_ovtot_min": "-0.12034929", "vbur_qvbur_max": "16.608503", "vbur_qvbur_min": "10.312085", "vbur_qvtot_max": "92.29311", "vbur_qvtot_min": "46.43808", "vbur_max_delta_qvbur": "5.3253026", "vbur_max_delta_qvtot": "45.385868"}, "delta_data": {"pyr_P": "0.029395757", "pyr_alpha": "4.4448223", "qpole_amp": "1.5602973", "vbur_vbur": "1.5526794", "sterimol_L": "0.27503347", "sterimol_B1": "0.1510483", "sterimol_B5": "0.20563357", "dipolemoment": "0.5576366", "qpoletens_xx": "0.6524969", "qpoletens_yy": "0.6946848", "qpoletens_zz": "1.4935181", "sterimol_burL": "0.21518196", "vbur_far_vbur": "-0.61899686", "vbur_far_vtot": "-0.9177205", "sterimol_burB1": "0.14309187", "sterimol_burB5": "0.18378648", "vbur_near_vbur": "1.3405615", "vbur_near_vtot": "-0.6427543", "vbur_ovbur_max": "2.2078102", "vbur_ovbur_min": "-0.16820696", "vbur_ovtot_max": "-1.5749446", "vbur_ovtot_min": "-0.26536185", "vbur_qvbur_max": "1.3152944", "vbur_qvbur_min": "0.012045059", "vbur_qvtot_max": "1.0195057", "vbur_qvtot_min": "-0.42433754", "vbur_max_delta_qvbur": "1.7543654", "vbur_max_delta_qvtot": "0.12710758"}, "vburminconf_data": {"pyr_P": "0.9253036", "pyr_alpha": "17.900766", "qpole_amp": "7.172569", "vbur_vbur": "50.53383", "sterimol_L": "7.773997", "sterimol_B1": "3.9673676", "sterimol_B5": "6.309982", "dipolemoment": "1.7078365", "qpoletens_xx": "4.4997873", "qpoletens_yy": "0.3262461", "qpoletens_zz": "-5.2650304", "sterimol_burL": "7.156654", "vbur_far_vbur": "0.24334055", "vbur_far_vtot": "-0.7493593", "sterimol_burB1": "3.9127145", "sterimol_burB5": "5.914688", "vbur_near_vbur": "50.56827", "vbur_near_vtot": "268.6413", "vbur_ovbur_max": "16.128817", "vbur_ovbur_min": "-0.062422954", "vbur_ovtot_max": "91.66145", "vbur_ovtot_min": "-0.09875549", "vbur_qvbur_max": "16.689524", "vbur_qvbur_min": "11.235434", "vbur_qvtot_max": "92.08971", "vbur_qvtot_min": "49.5366", "vbur_max_delta_qvbur": "4.871535", "vbur_max_delta_qvtot": "45.79409"}, "boltzmann_averaged_data": {"nbo_P": "0.9596523", "nmr_P": "219.12944", "pyr_P": "0.91670793", "fmo_mu": "-0.12839997", "vmin_r": "1.829981", "volume": "309.09802", "Pint_dP": "3.7379315", "fmo_eta": "0.18961643", "fukui_m": "0.19823982", "fukui_p": "0.08042374", "nuesp_P": "-54.165653", "somo_ra": "0.06626869", "somo_rc": "-0.38461655", "nbo_P_ra": "0.8685374", "nbo_P_rc": "1.1539633", "efg_amp_P": "2.0626247", "fmo_omega": "0.042599592", "pyr_alpha": "20.378492", "qpole_amp": "5.228027", "vbur_vbur": "51.334553", "vbur_vtot": "265.12793", "vmin_vmin": "-0.049367532", "E_solv_cds": "-5.667649", "Pint_P_int": "18.759626", "Pint_P_max": "32.95094", "Pint_P_min": "12.750803", "fmo_e_homo": "-0.22347936", "fmo_e_lumo": "-0.031224668", "nbo_lp_P_e": "-0.30913407", "sphericity": "0.79744047", "sterimol_L": "7.5261307", "E_oxidation": "0.27339938", "E_reduction": "0.017480465", "sterimol_B1": "3.9193041", "sterimol_B5": "6.4907527", "E_solv_total": "-11.181525", "dipolemoment": "1.3854495", "efgtens_xx_P": "-1.1699373", "efgtens_yy_P": "-0.5568932", "efgtens_zz_P": "1.6387095", "nbo_bd_e_avg": "-0.5107431", "nbo_bd_e_max": "-0.46669462", "nbo_lp_P_occ": "1.9068525", "qpoletens_xx": "3.771953", "qpoletens_yy": "0.25321913", "qpoletens_zz": "-3.9946177", "surface_area": "278.063", "E_solv_elstat": "-5.6954885", "nbo_bds_e_avg": "0.22601238", "nbo_bds_e_min": "0.21874702", "nmrtens_sxx_P": "123.33656", "nmrtens_syy_P": "204.51103", "nmrtens_szz_P": "274.4222", "spindens_P_ra": "0.096052706", "spindens_P_rc": "0.20890012", "sterimol_burL": "7.078364", "vbur_far_vbur": "-0.683946", "vbur_far_vtot": "-4.0617085", "nbo_bd_occ_avg": "1.9565805", "nbo_bd_occ_min": "1.9506348", "sterimol_burB1": "3.9543204", "sterimol_burB5": "6.084137", "vbur_near_vbur": "53.322098", "vbur_near_vtot": "275.4331", "vbur_ovbur_max": "17.476824", "vbur_ovbur_min": "-0.027958343", "vbur_ovtot_max": "92.09992", "vbur_ovtot_min": "0.029559895", "vbur_qvbur_max": "19.713274", "vbur_qvbur_min": "10.7242775", "vbur_qvtot_max": "91.02475", "vbur_qvtot_min": "50.385315", "nbo_bds_occ_avg": "0.05860928", "nbo_bds_occ_max": "0.07141069", "nbo_lp_P_percent_s": "50.267563", "vbur_max_delta_qvbur": "9.704498", "vbur_max_delta_qvtot": "43.8024", "vbur_ratio_vbur_vtot": "0.19654243"}} CN(C)P(c1ccccc1)c1ccccc1 {"max_data": {"B1": 3.8439838836737508, "B5": 6.577384940631486, "lval": 7.706589388648808, "sasa": 441.1129096064207, "vbur": 53.69881287637639, "vtot": 262.0610014848707, "alpha": 188.250986, "p_int": 19.61406735234369, "sasa_P": 15.819955137863074, "pyr_val": 0.9419364760334786, "dip_norm": 0.8477476039482507, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 53.698812876376394, "near_vtot": 262.0610014848707, "ovbur_max": 15.176004854578263, "ovbur_min": 0.0, "ovtot_max": 91.31920097134598, "ovtot_min": 0.0, "pyr_alpha": 23.61587595310389, "qvbur_max": 15.176004854578263, "qvbur_min": 12.005595238260838, "qvtot_max": 91.31920097134598, "qvtot_min": 43.37091233178939, "cone_angle": 164.62477020418967, "p_int_area": 310.74217169056715, "p_int_atom": 26.013773829701293, "sasa_volume": 688.908000104524, "EA_delta_SCC": 1.234, "IP_delta_SCC": 6.5451, "HOMO_LUMO_gap": 3.41339768993, "sasa_volume_P": 15.790027529919104, "max_delta_qvbur": 3.613334489185302, "max_delta_qvtot": 50.51615917438691, "nucleophilicity": -6.246, "p_int_atom_area": 15.997773933605563, "p_int_times_p_int_area": 6094.917884752331, "global_electrophilicity_index": 1.3989, "p_int_atom_times_p_int_atom_area": 412.36943218040904}, "min_data": {"B1": 3.711136486525304, "B5": 6.218698967892713, "lval": 7.266618780775357, "sasa": 432.62289371073814, "vbur": 50.23700531738273, "vtot": 260.79366045004116, "alpha": 188.150546, "p_int": 19.452923180491094, "sasa_P": 11.199968239195094, "pyr_val": 0.8852769008979717, "dip_norm": 0.5693127435777281, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 50.23700531738273, "near_vtot": 256.9314547135179, "ovbur_max": 13.6257677995407, "ovbur_min": 0.0, "ovtot_max": 88.34923876198975, "ovtot_min": 0.0, "pyr_alpha": 16.63796376327013, "qvbur_max": 13.6257677995407, "qvbur_min": 10.53694960717262, "qvtot_max": 88.34923876198975, "qvtot_min": 40.05552224440169, "cone_angle": 151.58979245283882, "p_int_area": 305.44459897995284, "p_int_atom": 24.620257801262333, "sasa_volume": 681.5888134911046, "EA_delta_SCC": 1.0783, "IP_delta_SCC": 6.246, "HOMO_LUMO_gap": 2.693637185574, "sasa_volume_P": 11.416468798459055, "max_delta_qvbur": 2.2146243643393806, "max_delta_qvtot": 41.92490838051764, "nucleophilicity": -6.5451, "p_int_atom_area": 15.29787132401032, "p_int_times_p_int_area": 5949.511867199565, "global_electrophilicity_index": 1.3289, "p_int_atom_times_p_int_atom_area": 388.94595201053755}, "boltzmann_averaged_data": {"B1": 3.8063196460574953, "B5": 6.230344053252078, "lval": 7.696882529672346, "sasa": 440.91624856754277, "vbur": 53.61844136077426, "vtot": 261.2615660501283, "alpha": 188.15335907259998, "p_int": 19.45530037580582, "B1_std": 0.007774938759826802, "B5_std": 0.05647182199439248, "sasa_P": 11.327241678273815, "pyr_val": 0.9403397625678908, "dip_norm": 0.5806689414319203, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.04708247302063686, "sasa_std": 0.9538338825452548, "vbur_std": 0.3898128181794085, "vtot_std": 0.049498008163943445, "alpha_std": 0.013641838516498413, "near_vbur": 53.61844136077427, "near_vtot": 257.1635567459195, "ovbur_max": 14.615081298803073, "ovbur_min": 0.0, "ovtot_max": 90.60211095792998, "ovtot_min": 0.0, "p_int_std": 0.01153329121180211, "pyr_alpha": 16.849071115167533, "qvbur_max": 14.615081298803073, "qvbur_min": 11.963279478057988, "qvtot_max": 90.60211095792998, "qvtot_min": 40.190713653779454, "cone_angle": 164.23207015049675, "p_int_area": 306.94673358874746, "p_int_atom": 25.99235675011347, "sasa_P_std": 0.6172606053320507, "pyr_val_std": 0.007743284764523116, "sasa_volume": 688.7575669510592, "EA_delta_SCC": 1.229385955, "IP_delta_SCC": 6.293739423, "dip_norm_std": 0.055070439950423704, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 2.719986409962696, "near_vbur_std": 0.3898128181794099, "near_vtot_std": 0.05028821037442865, "ovbur_max_std": 0.008398149373485297, "ovbur_min_std": 0.0, "ovtot_max_std": 0.14816044094151776, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.0237543507938829, "qvbur_max_std": 0.008398149373485297, "qvbur_min_std": 0.20522488386080784, "qvtot_max_std": 0.14816044094151776, "qvtot_min_std": 0.6556558951531064, "sasa_volume_P": 11.534220422526914, "cone_angle_std": 1.9044669831824739, "p_int_area_std": 0.02417481610432932, "p_int_atom_std": 0.10394042919674801, "max_delta_qvbur": 2.2716618982837646, "max_delta_qvtot": 50.38409014754666, "nucleophilicity": -6.293739423, "p_int_atom_area": 15.326415352151356, "sasa_volume_std": 0.7297569279439475, "EA_delta_SCC_std": 0.022375802212166042, "IP_delta_SCC_std": 0.05063250443269694, "HOMO_LUMO_gap_std": 0.12778287294269042, "sasa_volume_P_std": 0.5710899908547561, "max_delta_qvbur_std": 0.27660784638002056, "max_delta_qvtot_std": 0.6408929003724864, "nucleophilicity_std": 0.05063250443269694, "p_int_atom_area_std": 0.13842210432288618, "p_int_times_p_int_area": 5971.741135742237, "p_int_times_p_int_area_std": 3.944994355083715, "global_electrophilicity_index": 1.397055592, "p_int_atom_times_p_int_atom_area": 398.35528264162167, "global_electrophilicity_index_std": 0.00894502672603813, "p_int_atom_times_p_int_atom_area_std": 1.9412060112810232}} \\x248000200204040040180200821090100000000143004000841000000000204090814800440200004c0682200480c02810c108d9320058004280040100000600ca40010000002210804100a40000820000100100812080021aa10c0080000a0300000003000008043004c1220200080431801801100010800000010010081080 \\x00000000022008002100000000000000000800000080000000004000000080100000000008000000080002001000020020000000000000000000000000000200 pcn (-4.1337995529174805, 3.3302135467529297, -1.7044285535812378, 0.8722435235977173) (2.159601926803589, 5.0302557945251465) -247 CCN(CC)P(CC)N(CC)CC 204.29800415039062 {"max_data": {"pyr_P": 0.9525179908904249, "pyr_alpha": 24.32601508008756, "qpole_amp": 4.573276079947025, "vbur_vbur": 77.57161050888155, "vbur_vtot": 250.78382410572584, "sterimol_L": 7.803352204186217, "sterimol_B1": 3.830661724850976, "sterimol_B5": 5.769111364354751, "dipolemoment": 1.6352712892293242, "qpoletens_xx": 2.7353685744528624, "qpoletens_yy": 0.9382650900679792, "qpoletens_zz": -1.1900685815579137, "sterimol_burL": 7.384576981396323, "vbur_far_vbur": 12.935748766619211, "vbur_far_vtot": 15.864171690562547, "sterimol_burB1": 3.830661724850976, "sterimol_burB5": 5.769111364354751, "vbur_near_vbur": 67.9210482619867, "vbur_near_vtot": 250.78054344696375, "vbur_ovbur_max": 21.518442361289104, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.76493846288638, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 28.815719135602027, "vbur_qvbur_min": 12.443127674358728, "vbur_qvtot_max": 91.31460078515951, "vbur_qvtot_min": 42.40930434804257, "vbur_max_delta_qvbur": 18.708096554699047, "vbur_max_delta_qvtot": 65.83696331066687}, "min_data": {"pyr_P": 0.8739418659850745, "pyr_alpha": 14.897595001563465, "qpole_amp": 1.8846405684484249, "vbur_vbur": 51.73776554320444, "vbur_vtot": 248.36806492947062, "sterimol_L": 7.014420333649364, "sterimol_B1": 3.0099325897345697, "sterimol_B5": 5.265759867039152, "dipolemoment": 0.6933009370402328, "qpoletens_xx": 1.096788855240077, "qpoletens_yy": -0.43632183812243475, "qpoletens_zz": -3.5991758382294057, "sterimol_burL": 6.560616122821944, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.0099325897345697, "sterimol_burB5": 5.265759867039152, "vbur_near_vbur": 51.73776554320444, "vbur_near_vtot": 230.60452787700007, "vbur_ovbur_max": 16.93947178397192, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 76.998924530395, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.93947178397192, "vbur_qvbur_min": 9.288679236444471, "vbur_qvtot_max": 80.94554805966324, "vbur_qvtot_min": 25.39543599551215, "vbur_max_delta_qvbur": 4.581062386626144, "vbur_max_delta_qvtot": 36.24024940219038}, "delta_data": {"pyr_P": 0.07857612490535038, "pyr_alpha": 9.428420078524097, "qpole_amp": 2.6886355114986, "vbur_vbur": 25.83384496567711, "vbur_vtot": 2.4157591762552215, "sterimol_L": 0.7889318705368531, "sterimol_B1": 0.8207291351164061, "sterimol_B5": 0.5033514973155997, "dipolemoment": 0.9419703521890914, "qpoletens_xx": 1.6385797192127853, "qpoletens_yy": 1.374586928190414, "qpoletens_zz": 2.4091072566714917, "sterimol_burL": 0.8239608585743792, "vbur_far_vbur": 12.935748766619211, "vbur_far_vtot": 15.864171690562547, "sterimol_burB1": 0.8207291351164061, "sterimol_burB5": 0.5033514973155997, "vbur_near_vbur": 16.18328271878226, "vbur_near_vtot": 20.17601556996368, "vbur_ovbur_max": 4.5789705773171825, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 13.766013932491376, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.876247351630106, "vbur_qvbur_min": 3.1544484379142563, "vbur_qvtot_max": 10.369052725496275, "vbur_qvtot_min": 17.01386835253042, "vbur_max_delta_qvbur": 14.127034168072903, "vbur_max_delta_qvtot": 29.596713908476495}, "vburminconf_data": {"pyr_P": 0.9216311281955119, "pyr_alpha": 19.161227954639617, "qpole_amp": 4.210972618838025, "vbur_vbur": 51.73776554320444, "vbur_vtot": 249.4920217325516, "sterimol_L": 7.164018797646886, "sterimol_B1": 3.5510002049892666, "sterimol_B5": 5.680602454752524, "dipolemoment": 0.8245482419665178, "qpoletens_xx": 2.6917487747820923, "qpoletens_yy": 0.5066945312719326, "qpoletens_zz": -3.198443306054025, "sterimol_burL": 6.75542459428501, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.5510002049892666, "sterimol_burB5": 5.680602454752524, "vbur_near_vbur": 51.73776554320444, "vbur_near_vtot": 248.02366466815124, "vbur_ovbur_max": 17.699844467779503, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 82.52636760994386, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.699844467779503, "vbur_qvbur_min": 10.417210358629312, "vbur_qvtot_max": 82.52636760994386, "vbur_qvtot_min": 40.93211598890568, "vbur_max_delta_qvbur": 7.282634109150191, "vbur_max_delta_qvtot": 41.59425162103818}, "boltzmann_averaged_data": {"nbo_P": 1.1310363580771288, "nmr_P": 183.62446959223058, "pyr_P": 0.8793772489252555, "fmo_mu": -0.0911583614706819, "vmin_r": 1.790886754436063, "volume": 314.99617143851015, "Pint_dP": 3.492974590461699, "fmo_eta": 0.2485269159049514, "fukui_m": 0.019572176797117, "fukui_p": 0.05640299823435289, "nuesp_P": -54.16972675319222, "somo_ra": 0.11459676873225723, "somo_rc": -0.40411313834463014, "nbo_P_ra": 1.0746333598427762, "nbo_P_rc": 1.1506085348742459, "efg_amp_P": 2.094936641781411, "fmo_omega": 0.01672113626842771, "pyr_alpha": 23.807413197092515, "qpole_amp": 2.341939728951005, "vbur_vbur": 58.89641758733951, "vbur_vtot": 250.56795023893105, "vmin_vmin": -0.061707008343720185, "E_solv_cds": -3.87104525118517, "Pint_P_int": 17.610846809663435, "Pint_P_max": 30.242625367064875, "Pint_P_min": 11.939046803856582, "fmo_e_homo": -0.2154218194231576, "fmo_e_lumo": 0.033105096481793786, "nbo_lp_P_e": -0.30307599493882725, "sphericity": 0.8175020860372492, "sterimol_L": 7.387568056930123, "E_oxidation": 0.2669744324191963, "E_reduction": 0.07431839636131506, "sterimol_B1": 3.384880104243815, "sterimol_B5": 5.658514596406625, "E_solv_total": -7.805310350572898, "dipolemoment": 1.4818097567554915, "efgtens_xx_P": -1.0669334321878878, "efgtens_yy_P": -0.6242726014437703, "efgtens_zz_P": 1.6912066799278018, "nbo_bd_e_avg": -0.5305774839965556, "nbo_bd_e_max": -0.45469316040642677, "nbo_lp_P_occ": 1.9334433402721738, "qpoletens_xx": 1.267509070481803, "qpoletens_yy": 0.5870447370603906, "qpoletens_zz": -1.8545538075421935, "surface_area": 273.88057576119496, "E_solv_elstat": -3.9342650993877246, "nbo_bds_e_avg": 0.22974495763770392, "nbo_bds_e_min": 0.2132167455274167, "nmrtens_sxx_P": 111.66072571552043, "nmrtens_syy_P": 166.32179127476823, "nmrtens_szz_P": 272.8908906552441, "spindens_P_ra": 0.06551486765839626, "spindens_P_rc": -0.04041951386787496, "sterimol_burL": 6.921629465730187, "vbur_far_vbur": 0.31971216741563113, "vbur_far_vtot": 0.5362244184462414, "nbo_bd_occ_avg": 1.9664470091656079, "nbo_bd_occ_min": 1.9638294153627784, "sterimol_burB1": 3.3848328886118995, "sterimol_burB5": 5.65849128035522, "vbur_near_vbur": 58.57670541992387, "vbur_near_vtot": 249.3199907877137, "vbur_ovbur_max": 19.003617429178032, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.10470766292723, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.217687129151233, "vbur_qvbur_min": 9.47513125891688, "vbur_qvtot_max": 89.37159375166046, "vbur_qvtot_min": 31.429755105900767, "nbo_bds_occ_avg": 0.07994368966223063, "nbo_bds_occ_max": 0.09472810693546074, "nbo_lp_P_percent_s": 52.65658381384155, "vbur_max_delta_qvbur": 9.255498986374274, "vbur_max_delta_qvtot": 51.48345314347895, "vbur_ratio_vbur_vtot": 0.23505371022936336}} {"max_data": {"B1": 3.9183832866019683, "B5": 5.711627245400706, "lval": 7.726249631554877, "sasa": 430.3814257325019, "vbur": 86.13723185509475, "vtot": 249.23922765775836, "alpha": 165.788984, "p_int": 18.186825817365175, "sasa_P": 14.069960100488837, "pyr_val": 0.9624213787115421, "dip_norm": 0.7461112517580739, "far_vbur": 15.222628525406463, "far_vtot": 19.010897779730854, "near_vbur": 73.54884073148145, "near_vtot": 248.6956850013818, "ovbur_max": 21.843189783010498, "ovbur_min": 0.0, "ovtot_max": 90.04257231765668, "ovtot_min": 0.0, "pyr_alpha": 22.315927764842552, "qvbur_max": 29.60603097590537, "qvbur_min": 15.444090961840399, "qvtot_max": 90.7743333742646, "qvtot_min": 43.50345796701347, "cone_angle": 224.89348626724507, "p_int_area": 319.9998043152379, "p_int_atom": 29.934960942224055, "sasa_volume": 686.0712050416383, "EA_delta_SCC": 1.1641, "IP_delta_SCC": 6.4725, "HOMO_LUMO_gap": 5.411988832438, "sasa_volume_P": 19.67141719476889, "max_delta_qvbur": 17.98508102197716, "max_delta_qvtot": 61.475855585819076, "nucleophilicity": -6.0293, "p_int_atom_area": 14.997913062755213, "p_int_times_p_int_area": 5772.501161430996, "global_electrophilicity_index": 1.3388, "p_int_atom_times_p_int_atom_area": 380.6595672565196}, "min_data": {"B1": 3.0717574552440503, "B5": 4.843528725305514, "lval": 7.0412466330636585, "sasa": 410.49123314684783, "vbur": 57.81335182696482, "vtot": 245.35750552008267, "alpha": 165.612204, "p_int": 17.49743048490351, "sasa_P": 0.8599975612239028, "pyr_val": 0.8954896880995915, "dip_norm": 0.3162198602238639, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 57.77838407384367, "near_vtot": 223.8541542097858, "ovbur_max": 17.856865927199618, "ovbur_min": 0.0, "ovtot_max": 73.46376334977707, "ovtot_min": 0.0, "pyr_alpha": 13.234261477997938, "qvbur_max": 17.856865927199618, "qvbur_min": 10.618541031121966, "qvtot_max": 78.11588483614732, "qvtot_min": 26.05228467309944, "cone_angle": 161.9791764759734, "p_int_area": 299.501629635156, "p_int_atom": 24.20446951825, "sasa_volume": 664.1972646438815, "EA_delta_SCC": 0.8453, "IP_delta_SCC": 6.0293, "HOMO_LUMO_gap": 4.751776387612, "sasa_volume_P": 1.132589872955632, "max_delta_qvbur": 4.382625057850564, "max_delta_qvtot": 31.320436438518485, "nucleophilicity": -6.4725, "p_int_atom_area": 6.999026095952432, "p_int_times_p_int_area": 5274.485673561196, "global_electrophilicity_index": 1.1637, "p_int_atom_times_p_int_atom_area": 190.3336780833982}, "boltzmann_averaged_data": {"B1": 3.649663025949782, "B5": 5.49384703789586, "lval": 7.4800031398173275, "sasa": 419.1674306534447, "vbur": 68.85434745750935, "vtot": 247.21052784903407, "alpha": 165.644220442791, "p_int": 17.643989345876413, "B1_std": 0.06756667851356915, "B5_std": 0.08697601001039369, "sasa_P": 7.229548768336468, "pyr_val": 0.9563439641999806, "dip_norm": 0.4638941080522185, "far_vbur": 1.4754943118262935, "far_vtot": 1.496080028925035, "lval_std": 0.07591788773389156, "sasa_std": 2.3628190268019993, "vbur_std": 3.7841945361658293, "vtot_std": 0.4015071437850542, "alpha_std": 0.017737670110874057, "near_vbur": 67.37885314568304, "near_vtot": 241.4123291263176, "ovbur_max": 19.90486579302175, "ovbur_min": 0.0, "ovtot_max": 82.6172591975833, "ovtot_min": 0.0, "p_int_std": 0.05198174923770389, "pyr_alpha": 14.228034903351034, "qvbur_max": 20.97972376355337, "qvbur_min": 13.667399124469108, "qvtot_max": 83.47874754477698, "qvtot_min": 36.33212734076877, "cone_angle": 183.68144972317967, "p_int_area": 308.7959480381774, "p_int_atom": 25.984588246971608, "sasa_P_std": 1.724112206003562, "pyr_val_std": 0.0047122843301128856, "sasa_volume": 674.2756950975963, "EA_delta_SCC": 1.0297335583490843, "IP_delta_SCC": 6.179079186543058, "dip_norm_std": 0.03980657038597906, "far_vbur_std": 1.9855908706414367, "far_vtot_std": 2.210543567989361, "HOMO_LUMO_gap": 5.0854117184238765, "near_vbur_std": 2.5041502734758074, "near_vtot_std": 3.367044709692424, "ovbur_max_std": 0.8415607207609624, "ovbur_min_std": 0.0, "ovtot_max_std": 3.748636845284475, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.6572220541423877, "qvbur_max_std": 2.138969096332543, "qvbur_min_std": 0.5901051624019792, "qvtot_max_std": 3.092477930393862, "qvtot_min_std": 1.0036124888037885, "sasa_volume_P": 9.414951964580089, "cone_angle_std": 5.976900417164601, "p_int_area_std": 1.6648112762196798, "p_int_atom_std": 0.39500473413073084, "max_delta_qvbur": 7.003552917697044, "max_delta_qvtot": 39.29706894767839, "nucleophilicity": -6.179079186543058, "p_int_atom_area": 10.915473317613179, "sasa_volume_std": 2.5067098733026763, "EA_delta_SCC_std": 0.03598755378457886, "IP_delta_SCC_std": 0.05778773651221083, "HOMO_LUMO_gap_std": 0.054282358260733084, "sasa_volume_P_std": 2.360340648925718, "max_delta_qvbur_std": 2.0370907242218297, "max_delta_qvtot_std": 3.805180400405984, "nucleophilicity_std": 0.05778773651221083, "p_int_atom_area_std": 1.3453674462750749, "p_int_times_p_int_area": 5448.4605354120295, "p_int_times_p_int_area_std": 43.217865761826054, "global_electrophilicity_index": 1.261755316872181, "p_int_atom_times_p_int_atom_area": 283.25764052856476, "global_electrophilicity_index_std": 0.01955494817885562, "p_int_atom_times_p_int_atom_area_std": 32.377911718561215}} {"max_data": {"pyr_P": "0.94515246", "pyr_alpha": "23.826065", "qpole_amp": "4.14542", "vbur_vbur": "73.292046", "sterimol_L": "7.6436944", "sterimol_B1": "3.9447408", "sterimol_B5": "5.6252646", "dipolemoment": "1.1889927", "qpoletens_xx": "2.5310037", "qpoletens_yy": "1.7457818", "qpoletens_zz": "-0.9345134", "sterimol_burL": "7.442765", "vbur_far_vbur": "8.336134", "vbur_far_vtot": "8.93291", "sterimol_burB1": "3.948564", "sterimol_burB5": "5.6499386", "vbur_near_vbur": "66.55646", "vbur_near_vtot": "250.01976", "vbur_ovbur_max": "21.767958", "vbur_ovbur_min": "-0.082696885", "vbur_ovtot_max": "84.63797", "vbur_ovtot_min": "-0.27240053", "vbur_qvbur_max": "28.248629", "vbur_qvbur_min": "13.452811", "vbur_qvtot_max": "82.333145", "vbur_qvtot_min": "48.05427", "vbur_max_delta_qvbur": "17.441843", "vbur_max_delta_qvtot": "48.490364"}, "min_data": {"pyr_P": "0.87706065", "pyr_alpha": "15.156216", "qpole_amp": "1.7006183", "vbur_vbur": "51.07967", "sterimol_L": "6.8370686", "sterimol_B1": "3.1764982", "sterimol_B5": "5.0715528", "dipolemoment": "0.67070884", "qpoletens_xx": "1.23202", "qpoletens_yy": "-0.26332253", "qpoletens_zz": "-3.3136163", "sterimol_burL": "6.591446", "vbur_far_vbur": "-0.008419895", "vbur_far_vtot": "-1.2867644", "sterimol_burB1": "3.140932", "sterimol_burB5": "5.1835127", "vbur_near_vbur": "51.825386", "vbur_near_vtot": "237.02153", "vbur_ovbur_max": "16.389551", "vbur_ovbur_min": "0.023294382", "vbur_ovtot_max": "72.54864", "vbur_ovtot_min": "0.053562615", "vbur_qvbur_max": "17.281149", "vbur_qvbur_min": "9.612626", "vbur_qvtot_max": "74.843956", "vbur_qvtot_min": "28.108698", "vbur_max_delta_qvbur": "3.8537765", "vbur_max_delta_qvtot": "25.039927"}, "delta_data": {"pyr_P": "0.08284431", "pyr_alpha": "10.046671", "qpole_amp": "2.20505", "vbur_vbur": "22.082499", "sterimol_L": "0.84772784", "sterimol_B1": "0.7956926", "sterimol_B5": "0.8482524", "dipolemoment": "0.6579119", "qpoletens_xx": "1.1007259", "qpoletens_yy": "1.4334176", "qpoletens_zz": "1.5595964", "sterimol_burL": "0.9122827", "vbur_far_vbur": "9.75198", "vbur_far_vtot": "9.12461", "sterimol_burB1": "0.80309194", "sterimol_burB5": "0.5456698", "vbur_near_vbur": "15.45674", "vbur_near_vtot": "13.476454", "vbur_ovbur_max": "4.4324803", "vbur_ovbur_min": "0.033102244", "vbur_ovtot_max": "11.582408", "vbur_ovtot_min": "0.03355257", "vbur_qvbur_max": "12.082281", "vbur_qvbur_min": "3.6392953", "vbur_qvtot_max": "9.162162", "vbur_qvtot_min": "17.669096", "vbur_max_delta_qvbur": "12.640055", "vbur_max_delta_qvtot": "30.839998"}, "vburminconf_data": {"pyr_P": "0.9133748", "pyr_alpha": "19.389652", "qpole_amp": "4.165451", "vbur_vbur": "51.743824", "sterimol_L": "7.3961906", "sterimol_B1": "3.617864", "sterimol_B5": "5.5360184", "dipolemoment": "0.8354354", "qpoletens_xx": "2.844822", "qpoletens_yy": "0.70802927", "qpoletens_zz": "-3.0979319", "sterimol_burL": "6.935698", "vbur_far_vbur": "-0.18690056", "vbur_far_vtot": "-0.85234207", "sterimol_burB1": "3.5843704", "sterimol_burB5": "5.482275", "vbur_near_vbur": "51.8962", "vbur_near_vtot": "248.11403", "vbur_ovbur_max": "17.994516", "vbur_ovbur_min": "0.027632972", "vbur_ovtot_max": "77.46466", "vbur_ovtot_min": "0.01650515", "vbur_qvbur_max": "17.604399", "vbur_qvbur_min": "10.460167", "vbur_qvtot_max": "78.177086", "vbur_qvtot_min": "35.660652", "vbur_max_delta_qvbur": "6.218429", "vbur_max_delta_qvtot": "31.31864"}, "boltzmann_averaged_data": {"nbo_P": "1.119433", "nmr_P": "181.37718", "pyr_P": "0.8952791", "fmo_mu": "-0.08771429", "vmin_r": "1.780215", "volume": "314.66925", "Pint_dP": "3.484029", "fmo_eta": "0.25140026", "fukui_m": "0.017222056", "fukui_p": "0.06440465", "nuesp_P": "-54.169254", "somo_ra": "0.11677285", "somo_rc": "-0.39932665", "nbo_P_ra": "1.0452346", "nbo_P_rc": "1.1763108", "efg_amp_P": "2.0925586", "fmo_omega": "0.014990111", "pyr_alpha": "23.114532", "qpole_amp": "1.9602377", "vbur_vbur": "58.07273", "vbur_vtot": "250.23933", "vmin_vmin": "-0.060644966", "E_solv_cds": "-3.8425663", "Pint_P_int": "17.516624", "Pint_P_max": "30.727507", "Pint_P_min": "11.854676", "fmo_e_homo": "-0.21573237", "fmo_e_lumo": "0.03670485", "nbo_lp_P_e": "-0.30702072", "sphericity": "0.81917304", "sterimol_L": "7.191898", "E_oxidation": "0.26686886", "E_reduction": "0.07716735", "sterimol_B1": "3.5238335", "sterimol_B5": "5.5858264", "E_solv_total": "-7.8087373", "dipolemoment": "1.1819419", "efgtens_xx_P": "-1.0343451", "efgtens_yy_P": "-0.61601937", "efgtens_zz_P": "1.6990774", "nbo_bd_e_avg": "-0.52850217", "nbo_bd_e_max": "-0.45337528", "nbo_lp_P_occ": "1.9405038", "qpoletens_xx": "1.3908767", "qpoletens_yy": "0.32125348", "qpoletens_zz": "-1.6795125", "surface_area": "274.69064", "E_solv_elstat": "-3.7761245", "nbo_bds_e_avg": "0.22990496", "nbo_bds_e_min": "0.20792256", "nmrtens_sxx_P": "103.17984", "nmrtens_syy_P": "173.20186", "nmrtens_szz_P": "276.2274", "spindens_P_ra": "0.072281174", "spindens_P_rc": "-0.0473185", "sterimol_burL": "6.944134", "vbur_far_vbur": "-0.049266506", "vbur_far_vtot": "-0.37099454", "nbo_bd_occ_avg": "1.966659", "nbo_bd_occ_min": "1.9641769", "sterimol_burB1": "3.4845443", "sterimol_burB5": "5.6150746", "vbur_near_vbur": "58.446613", "vbur_near_vtot": "249.0349", "vbur_ovbur_max": "18.841112", "vbur_ovbur_min": "0.0020513933", "vbur_ovtot_max": "82.55364", "vbur_ovtot_min": "-0.010688277", "vbur_qvbur_max": "18.518421", "vbur_qvbur_min": "9.717562", "vbur_qvtot_max": "81.29955", "vbur_qvtot_min": "34.910564", "nbo_bds_occ_avg": "0.07769697", "nbo_bds_occ_max": "0.09158464", "nbo_lp_P_percent_s": "53.404316", "vbur_max_delta_qvbur": "8.681224", "vbur_max_delta_qvtot": "38.170967", "vbur_ratio_vbur_vtot": "0.24560255"}} CCN(CC)P(CC)N(CC)CC {"max_data": {"B1": 3.9346331683477525, "B5": 5.784889433290029, "lval": 8.056369763666284, "sasa": 431.73137011835723, "vbur": 59.678298660092715, "vtot": 249.0565045131288, "alpha": 165.732116, "p_int": 17.922575015675395, "sasa_P": 13.649961291519023, "pyr_val": 0.9417770547761248, "dip_norm": 0.833486652562595, "far_vbur": 0.2564301895550859, "far_vtot": 0.5730946776002342, "near_vbur": 59.678298660092715, "near_vtot": 248.87956104372057, "ovbur_max": 17.157510864776658, "ovbur_min": 0.0, "ovtot_max": 88.38002402178718, "ovtot_min": 0.0, "pyr_alpha": 25.149410465263216, "qvbur_max": 17.320693712675347, "qvbur_min": 13.26443435062217, "qvtot_max": 88.38002402178718, "qvtot_min": 46.72207127845279, "cone_angle": 178.90574540257504, "p_int_area": 320.90181443398905, "p_int_atom": 26.609285997453895, "sasa_volume": 687.0775112853491, "EA_delta_SCC": 1.0987, "IP_delta_SCC": 6.3909, "HOMO_LUMO_gap": 5.711703960141, "sasa_volume_P": 13.71681730682437, "max_delta_qvbur": 6.084389043079765, "max_delta_qvtot": 56.92135404220433, "nucleophilicity": -5.8164, "p_int_atom_area": 14.098038278989902, "p_int_times_p_int_area": 5694.679954632595, "global_electrophilicity_index": 1.2922, "p_int_atom_times_p_int_atom_area": 366.79665168184164}, "min_data": {"B1": 3.1516746977162313, "B5": 5.429021208262316, "lval": 7.054046987153726, "sasa": 408.5712829342899, "vbur": 51.39094117038062, "vtot": 245.79856273852891, "alpha": 165.544095, "p_int": 17.502748239038837, "sasa_P": 6.829980631580576, "pyr_val": 0.8729943315261455, "dip_norm": 0.5571328387377646, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 51.39094117038062, "near_vtot": 240.26643532489948, "ovbur_max": 14.977854253558425, "ovbur_min": 0.0, "ovtot_max": 76.39800900577592, "ovtot_min": 0.0, "pyr_alpha": 16.633439803282407, "qvbur_max": 14.977854253558425, "qvbur_min": 9.942497804113103, "qvtot_max": 76.39800900577592, "qvtot_min": 30.112166332112395, "cone_angle": 153.52772529556765, "p_int_area": 300.1020111330592, "p_int_atom": 24.131642381690856, "sasa_volume": 662.9287706205137, "EA_delta_SCC": 0.8206, "IP_delta_SCC": 5.8164, "HOMO_LUMO_gap": 4.988097212998, "sasa_volume_P": 6.117795805745963, "max_delta_qvbur": 2.16800069351118, "max_delta_qvtot": 29.99875438000091, "nucleophilicity": -6.3909, "p_int_atom_area": 11.098455666438857, "p_int_times_p_int_area": 5272.346703668156, "global_electrophilicity_index": 1.1337, "p_int_atom_times_p_int_atom_area": 289.35794240928885}, "boltzmann_averaged_data": {"B1": 3.733997178360398, "B5": 5.650865556781355, "lval": 7.795698573888546, "sasa": 421.4216496400575, "vbur": 54.469458499677295, "vtot": 247.38847577782545, "alpha": 165.5856616540262, "p_int": 17.767312019980405, "B1_std": 0.06825299713235644, "B5_std": 0.04518356776421611, "sasa_P": 11.045206787591106, "pyr_val": 0.928464894366699, "dip_norm": 0.6609519436003353, "far_vbur": 0.003273229180483751, "far_vtot": 0.0012472786518729106, "lval_std": 0.06709885314603467, "sasa_std": 2.540369132379558, "vbur_std": 1.3217686528338364, "vtot_std": 0.19062840790872262, "alpha_std": 0.01364583377473681, "near_vbur": 54.46618527049681, "near_vtot": 246.53650173821597, "ovbur_max": 15.383492801971192, "ovbur_min": 0.0, "ovtot_max": 81.29566578956974, "ovtot_min": 0.0, "p_int_std": 0.06359530895365842, "pyr_alpha": 18.50755074872596, "qvbur_max": 15.386733509840424, "qvbur_min": 11.814393007720994, "qvtot_max": 81.29567640285867, "qvtot_min": 39.111645662395134, "cone_angle": 162.29504082363604, "p_int_area": 312.54740790556684, "p_int_atom": 25.195125969580687, "sasa_P_std": 1.2317592576327152, "pyr_val_std": 0.0023793574836658395, "sasa_volume": 677.1065728955166, "EA_delta_SCC": 0.950565538621545, "IP_delta_SCC": 6.095829700188009, "dip_norm_std": 0.01935113636117162, "far_vbur_std": 0.016468010996401196, "far_vtot_std": 0.012389845862672381, "HOMO_LUMO_gap": 5.224292575236548, "near_vbur_std": 1.3136690886456939, "near_vtot_std": 1.4735270525655515, "ovbur_max_std": 0.3396853153005169, "ovbur_min_std": 0.0, "ovtot_max_std": 1.7809132755836488, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.3063145385167924, "qvbur_max_std": 0.3495088054080626, "qvbur_min_std": 0.39294679181757763, "qvtot_max_std": 1.7809402751088743, "qvtot_min_std": 1.5508410549853775, "sasa_volume_P": 10.650986351879466, "cone_angle_std": 5.7497331071385736, "p_int_area_std": 2.567521358114756, "p_int_atom_std": 0.27613063340359356, "max_delta_qvbur": 2.776417427376862, "max_delta_qvtot": 36.22709156088572, "nucleophilicity": -6.095829700188009, "p_int_atom_area": 13.347180721218201, "sasa_volume_std": 2.484314031842978, "EA_delta_SCC_std": 0.0338495060794596, "IP_delta_SCC_std": 0.038971739264402346, "HOMO_LUMO_gap_std": 0.05191611359339188, "sasa_volume_P_std": 1.3307404489761432, "max_delta_qvbur_std": 0.5481452340739583, "max_delta_qvtot_std": 2.764325541386029, "nucleophilicity_std": 0.038971739264402346, "p_int_atom_area_std": 0.5445118168164534, "p_int_times_p_int_area": 5553.233489914905, "p_int_times_p_int_area_std": 60.2911006311313, "global_electrophilicity_index": 1.2064223858954362, "p_int_atom_times_p_int_atom_area": 336.20230471767064, "global_electrophilicity_index_std": 0.02114904799467277, "p_int_atom_times_p_int_atom_area_std": 12.239933245791264}} \\x0000100000100000000c2620000001010040000041088400800002000d10200000800038200103083008200088800020030000100180000105000000400000000202000001040214008a0044000024000044004000000000000020804010840000020020200000000284000000240400010f0810120001440000000010000081 \\x00200000022000000000010000000000000000000000000000000000000000004000000040000000080000010000020000048000100000000000000100000000 pcn (-5.852454662322998, 2.3686084747314453, 5.247030258178711, 1.0142494440078735) (1.5642861127853394, 6.0367960929870605) -272 CCCCP(CCCC)N(CC)CC 217.33700561523438 {"max_data": {"pyr_P": 0.9716936169344231, "pyr_alpha": 23.672748761536994, "qpole_amp": 5.6011645721004895, "vbur_vbur": 89.83484258266958, "vbur_vtot": 273.0622917668679, "sterimol_L": 9.245990684029874, "sterimol_B1": 4.85745050155062, "sterimol_B5": 7.460558073378757, "dipolemoment": 1.4261947260709777, "qpoletens_xx": 3.173891303139792, "qpoletens_yy": 1.9219569910578644, "qpoletens_zz": -0.5326397775965726, "sterimol_burL": 7.7050359859517386, "vbur_far_vbur": 16.843248555759683, "vbur_far_vtot": 28.14990457001221, "sterimol_burB1": 4.85745050155062, "sterimol_burB5": 7.145650020980872, "vbur_near_vbur": 74.51338529917953, "vbur_near_vtot": 273.64463002325283, "vbur_ovbur_max": 21.15132982756632, "vbur_ovbur_min": 1.4830928000538517, "vbur_ovtot_max": 110.79654163762856, "vbur_ovtot_min": 2.952815792466775, "vbur_qvbur_max": 29.718334852419005, "vbur_qvbur_min": 16.984445684114597, "vbur_qvtot_max": 110.79654163762856, "vbur_qvtot_min": 57.922348279733114, "vbur_max_delta_qvbur": 17.15701995210394, "vbur_max_delta_qvtot": 79.49469464612935}, "min_data": {"pyr_P": 0.8861966197967759, "pyr_alpha": 11.397934380056963, "qpole_amp": 0.9769467513528668, "vbur_vbur": 47.02596507476818, "vbur_vtot": 271.40111251701694, "sterimol_L": 5.749686881036569, "sterimol_B1": 3.0040493220876687, "sterimol_B5": 5.555149600883057, "dipolemoment": 0.5609924291817618, "qpoletens_xx": 0.7805509924675075, "qpoletens_yy": -1.0039602488697794, "qpoletens_zz": -4.50796059422575, "sterimol_burL": 5.749686881036569, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.0040493220876687, "sterimol_burB5": 5.5396964544623275, "vbur_near_vbur": 47.02596507476819, "vbur_near_vtot": 243.52141765462835, "vbur_ovbur_max": 13.876017050997499, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 72.28503331756271, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.876017050997499, "vbur_qvbur_min": 9.504135595267526, "vbur_qvtot_max": 78.36494302993754, "vbur_qvtot_min": 22.472406372777698, "vbur_max_delta_qvbur": 2.3972134680701185, "vbur_max_delta_qvtot": 16.746786200249467}, "delta_data": {"pyr_P": 0.08549699713764725, "pyr_alpha": 12.27481438148003, "qpole_amp": 4.6242178207476226, "vbur_vbur": 42.8088775079014, "vbur_vtot": 1.6611792498509317, "sterimol_L": 3.496303802993305, "sterimol_B1": 1.853401179462951, "sterimol_B5": 1.9054084724957, "dipolemoment": 0.8652022968892159, "qpoletens_xx": 2.3933403106722846, "qpoletens_yy": 2.925917239927644, "qpoletens_zz": 3.9753208166291776, "sterimol_burL": 1.9553491049151699, "vbur_far_vbur": 16.843248555759683, "vbur_far_vtot": 28.14990457001221, "sterimol_burB1": 1.853401179462951, "sterimol_burB5": 1.6059535665185445, "vbur_near_vbur": 27.487420224411345, "vbur_near_vtot": 30.12321236862448, "vbur_ovbur_max": 7.275312776568823, "vbur_ovbur_min": 1.4830928000538517, "vbur_ovtot_max": 38.51150832006586, "vbur_ovtot_min": 2.952815792466775, "vbur_qvbur_max": 15.842317801421506, "vbur_qvbur_min": 7.480310088847071, "vbur_qvtot_max": 32.43159860769103, "vbur_qvtot_min": 35.44994190695542, "vbur_max_delta_qvbur": 14.759806484033822, "vbur_max_delta_qvtot": 62.74790844587988}, "vburminconf_data": {"pyr_P": 0.9557031246126956, "pyr_alpha": 14.418000806131989, "qpole_amp": 5.462092154365814, "vbur_vbur": 47.02596507476818, "vbur_vtot": 271.8274401303022, "sterimol_L": 8.925238209338618, "sterimol_B1": 4.406960827711452, "sterimol_B5": 7.252837731088728, "dipolemoment": 0.7802446071317206, "qpoletens_xx": 2.635970682675744, "qpoletens_yy": 1.7974551205306835, "qpoletens_zz": -4.433425803206427, "sterimol_burL": 7.3936143434793, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.171226746497045, "sterimol_burB5": 6.986001610299172, "vbur_near_vbur": 47.02596507476819, "vbur_near_vtot": 271.105520433811, "vbur_ovbur_max": 13.876017050997499, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 80.32235638049293, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.876017050997499, "vbur_qvbur_min": 10.418256263283793, "vbur_qvtot_max": 80.32235638049293, "vbur_qvtot_min": 48.056226836391346, "vbur_max_delta_qvbur": 3.106336823808139, "vbur_max_delta_qvtot": 27.991303688735968}, "boltzmann_averaged_data": {"nbo_P": 0.959036628480705, "nmr_P": 232.6125938697537, "pyr_P": 0.9304772222619788, "fmo_mu": -0.09481302582757542, "vmin_r": 1.7966448424316341, "volume": 347.66026731427945, "Pint_dP": 3.663865285925423, "fmo_eta": 0.25562979561806826, "fukui_m": -0.0014119488887637398, "fukui_p": 0.05002920369156309, "nuesp_P": -54.18270217131485, "somo_ra": 0.110570419960044, "somo_rc": -0.4017397941969071, "nbo_P_ra": 0.9090074247891415, "nbo_P_rc": 0.9576246795919408, "efg_amp_P": 2.009012500764908, "fmo_omega": 0.017586323281958426, "pyr_alpha": 18.129902024001932, "qpole_amp": 2.6569700485015275, "vbur_vbur": 58.49538784758199, "vbur_vtot": 272.8145539816536, "vmin_vmin": -0.06073309949440056, "E_solv_cds": -5.343440493383486, "Pint_P_int": 17.554051168748874, "Pint_P_max": 30.769368036809308, "Pint_P_min": 11.391695352651903, "fmo_e_homo": -0.2226279236366095, "fmo_e_lumo": 0.03300187198145879, "nbo_lp_P_e": -0.3106798234898257, "sphericity": 0.7649168984269095, "sterimol_L": 7.427403620272605, "E_oxidation": 0.2756957419433659, "E_reduction": 0.07253075680453983, "sterimol_B1": 3.3683884785058043, "sterimol_B5": 7.055701394867995, "E_solv_total": -8.863076619834814, "dipolemoment": 1.22239600252727, "efgtens_xx_P": -1.1251858936487729, "efgtens_yy_P": -0.47108721502031164, "efgtens_zz_P": 1.5962730067978157, "nbo_bd_e_avg": -0.4919386207910694, "nbo_bd_e_max": -0.4478034340254085, "nbo_lp_P_occ": 1.9450273341978048, "qpoletens_xx": 2.0900402888649503, "qpoletens_yy": -0.6338009638458895, "qpoletens_zz": -1.4562393250190604, "surface_area": 312.6609480633908, "E_solv_elstat": -3.5196361264513243, "nbo_bds_e_avg": 0.21947766654179982, "nbo_bds_e_min": 0.20799528953664517, "nmrtens_sxx_P": 130.1573822535782, "nmrtens_syy_P": 215.3379032108646, "nmrtens_szz_P": 352.34246789127644, "spindens_P_ra": 0.06098461492087839, "spindens_P_rc": -0.029041127653282546, "sterimol_burL": 6.978823828201657, "vbur_far_vbur": 1.005396945721552, "vbur_far_vtot": 3.257634510002647, "nbo_bd_occ_avg": 1.968296278820022, "nbo_bd_occ_min": 1.9663414190119763, "sterimol_burB1": 3.368387859829132, "sterimol_burB5": 6.857695008392467, "vbur_near_vbur": 57.48999090186041, "vbur_near_vtot": 267.88051524894115, "vbur_ovbur_max": 19.512634663065654, "vbur_ovbur_min": 0.0004722918350689106, "vbur_ovtot_max": 86.03743448330862, "vbur_ovtot_min": 0.00014281102906935764, "vbur_qvbur_max": 20.13893916433102, "vbur_qvbur_min": 10.161554629916397, "vbur_qvtot_max": 86.85930493450468, "vbur_qvtot_min": 29.454794148938223, "nbo_bds_occ_avg": 0.04883634459672593, "nbo_bds_occ_max": 0.05486943022741967, "nbo_lp_P_percent_s": 52.557988400400454, "vbur_max_delta_qvbur": 8.102683061547992, "vbur_max_delta_qvtot": 56.690514556275794, "vbur_ratio_vbur_vtot": 0.21442196104989503}} {"max_data": {"B1": 4.577375290556052, "B5": 7.393851540657852, "lval": 8.999180963962752, "sasa": 500.58100892592677, "vbur": 104.54192591452569, "vtot": 271.3907039551539, "alpha": 179.696568, "p_int": 18.101787910842518, "sasa_P": 19.6999441350128, "pyr_val": 0.9791907366192689, "dip_norm": 0.7781265963839046, "far_vbur": 28.440439205200434, "far_vtot": 42.02946806367619, "near_vbur": 79.27189632564269, "near_vtot": 271.2684319372653, "ovbur_max": 22.274458738171326, "ovbur_min": 3.356904299630215, "ovtot_max": 107.6184802287149, "ovtot_min": 4.514295515690207, "pyr_alpha": 22.087136061965676, "qvbur_max": 35.98181796166137, "qvbur_min": 20.945684119567698, "qvtot_max": 107.6184802287149, "qvtot_min": 57.11813330792701, "cone_angle": 252.973945975373, "p_int_area": 368.80702476313587, "p_int_atom": 35.06941816448117, "sasa_volume": 781.6091637336818, "EA_delta_SCC": 1.2168, "IP_delta_SCC": 6.6937, "HOMO_LUMO_gap": 5.541797851859, "sasa_volume_P": 29.157974923071777, "max_delta_qvbur": 21.35364123931442, "max_delta_qvtot": 71.15371684855128, "nucleophilicity": -6.1868, "p_int_atom_area": 17.597551326966116, "p_int_times_p_int_area": 6449.539328724773, "global_electrophilicity_index": 1.4124, "p_int_atom_times_p_int_atom_area": 410.33916859409715}, "min_data": {"B1": 2.9864746523392016, "B5": 5.39827675054239, "lval": 5.545021767684108, "sasa": 443.8211392713666, "vbur": 51.48418851203701, "vtot": 267.5793533182025, "alpha": 179.479126, "p_int": 17.244588023205058, "sasa_P": 0.0, "pyr_val": 0.8957091425341484, "dip_norm": 0.2788996235207212, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 51.48418851203701, "near_vtot": 218.4204629595542, "ovbur_max": 14.418370203620057, "ovbur_min": 0.0, "ovtot_max": 69.21897141630214, "ovtot_min": 0.0, "pyr_alpha": 9.709151422227801, "qvbur_max": 14.418370203620057, "qvbur_min": 10.571917360293767, "qvtot_max": 72.31890059595183, "qvtot_min": 21.94158486981192, "cone_angle": 153.7121886746377, "p_int_area": 332.5029399039018, "p_int_atom": 22.865789393879297, "sasa_volume": 728.0155972735046, "EA_delta_SCC": 0.9667, "IP_delta_SCC": 6.1868, "HOMO_LUMO_gap": 4.748650318367, "sasa_volume_P": 0.0, "max_delta_qvbur": 2.1213770226829833, "max_delta_qvtot": 16.34180412781827, "nucleophilicity": -6.6937, "p_int_atom_area": 3.0995686996360763, "p_int_times_p_int_area": 5901.870653442471, "global_electrophilicity_index": 1.2456, "p_int_atom_times_p_int_atom_area": 108.22973344793276}, "boltzmann_averaged_data": {"B1": 3.4169041121710593, "B5": 6.682504852277769, "lval": 7.372794741586493, "sasa": 471.1071214248174, "vbur": 73.46580252205291, "vtot": 270.29513514732366, "alpha": 179.59473476572816, "p_int": 17.605707183362302, "B1_std": 0.38358556131248184, "B5_std": 0.4493646042590258, "sasa_P": 5.894646408820846, "pyr_val": 0.9404068664609768, "dip_norm": 0.6791822612276449, "far_vbur": 5.070300295503499, "far_vtot": 14.136293615398722, "lval_std": 0.0870993655570302, "sasa_std": 8.160648532738511, "vbur_std": 6.628085961510549, "vtot_std": 0.4974179346502257, "alpha_std": 0.020639684507003014, "near_vbur": 68.3955022265494, "near_vtot": 253.82096117794242, "ovbur_max": 20.7244722991256, "ovbur_min": 0.04950627952354747, "ovtot_max": 83.320590757161, "ovtot_min": 0.06814829788881886, "p_int_std": 0.10680484677394977, "pyr_alpha": 16.608067576919527, "qvbur_max": 23.84895364859777, "qvbur_min": 12.533425170625824, "qvtot_max": 85.29790295625783, "qvtot_min": 31.419956847538472, "cone_angle": 200.6471869196214, "p_int_area": 351.29876725501646, "p_int_atom": 26.909995919593623, "sasa_P_std": 3.119350974467446, "pyr_val_std": 0.0026733445110720434, "sasa_volume": 754.407162628241, "EA_delta_SCC": 1.113173868411574, "IP_delta_SCC": 6.571341822747829, "dip_norm_std": 0.0300239456762256, "far_vbur_std": 3.2484015823340884, "far_vtot_std": 7.286759240546948, "HOMO_LUMO_gap": 5.33152800725418, "near_vbur_std": 3.860938422764252, "near_vtot_std": 8.940471871971157, "ovbur_max_std": 0.5328257686010892, "ovbur_min_std": 0.14811435480421908, "ovtot_max_std": 3.8376732752088683, "ovtot_min_std": 0.24136096263726337, "pyr_alpha_std": 0.39320094747371315, "qvbur_max_std": 2.5659263561702668, "qvbur_min_std": 1.9680744124366156, "qvtot_max_std": 4.005858988978377, "qvtot_min_std": 8.081462931756644, "sasa_volume_P": 7.347889287731953, "cone_angle_std": 13.944346606908574, "p_int_area_std": 5.8806987969984315, "p_int_atom_std": 1.5782676062177234, "max_delta_qvbur": 10.479826304146492, "max_delta_qvtot": 51.495500766177244, "nucleophilicity": -6.571341822747829, "p_int_atom_area": 9.949033824247802, "sasa_volume_std": 7.657105477595904, "EA_delta_SCC_std": 0.03682543027717429, "IP_delta_SCC_std": 0.030925068814887786, "HOMO_LUMO_gap_std": 0.052363715708222375, "sasa_volume_P_std": 4.207898667068391, "max_delta_qvbur_std": 2.6507375408336347, "max_delta_qvtot_std": 11.550831758436965, "nucleophilicity_std": 0.030925068814887786, "p_int_atom_area_std": 1.929052105823196, "p_int_times_p_int_area": 6184.630906783304, "p_int_times_p_int_area_std": 96.19334332329294, "global_electrophilicity_index": 1.3525431394325047, "p_int_atom_times_p_int_atom_area": 264.9046855307859, "global_electrophilicity_index_std": 0.02265535241954052, "p_int_atom_times_p_int_atom_area_std": 37.90425625958457}} {"max_data": {"pyr_P": "0.95765007", "pyr_alpha": "22.660608", "qpole_amp": "3.9206963", "vbur_vbur": "93.5583", "sterimol_L": "9.462218", "sterimol_B1": "4.5498505", "sterimol_B5": "7.134476", "dipolemoment": "1.5104446", "qpoletens_xx": "1.9763503", "qpoletens_yy": "1.6271095", "qpoletens_zz": "-1.6833639", "sterimol_burL": "7.804833", "vbur_far_vbur": "19.995716", "vbur_far_vtot": "29.11631", "sterimol_burB1": "4.469624", "sterimol_burB5": "6.856755", "vbur_near_vbur": "74.73969", "vbur_near_vtot": "272.4151", "vbur_ovbur_max": "22.365156", "vbur_ovbur_min": "1.4410632", "vbur_ovtot_max": "98.70354", "vbur_ovtot_min": "1.1011524", "vbur_qvbur_max": "34.771664", "vbur_qvbur_min": "17.195223", "vbur_qvtot_max": "96.400055", "vbur_qvtot_min": "54.923717", "vbur_max_delta_qvbur": "23.75654", "vbur_max_delta_qvtot": "65.48855"}, "min_data": {"pyr_P": "0.8895281", "pyr_alpha": "13.0718775", "qpole_amp": "1.7847048", "vbur_vbur": "47.27438", "sterimol_L": "6.128809", "sterimol_B1": "2.930287", "sterimol_B5": "5.4344463", "dipolemoment": "1.1210951", "qpoletens_xx": "0.96287245", "qpoletens_yy": "0.066745795", "qpoletens_zz": "-3.5898025", "sterimol_burL": "6.180308", "vbur_far_vbur": "-0.47135", "vbur_far_vtot": "-0.080785066", "sterimol_burB1": "2.9069672", "sterimol_burB5": "5.46111", "vbur_near_vbur": "47.765873", "vbur_near_vtot": "237.51974", "vbur_ovbur_max": "15.014358", "vbur_ovbur_min": "0.027713845", "vbur_ovtot_max": "65.21726", "vbur_ovtot_min": "0.079228856", "vbur_qvbur_max": "14.697419", "vbur_qvbur_min": "9.447005", "vbur_qvtot_max": "75.38468", "vbur_qvtot_min": "23.66676", "vbur_max_delta_qvbur": "2.468554", "vbur_max_delta_qvtot": "20.55779"}, "delta_data": {"pyr_P": "0.07705973", "pyr_alpha": "10.117766", "qpole_amp": "2.9386175", "vbur_vbur": "44.628456", "sterimol_L": "2.8554027", "sterimol_B1": "1.5681049", "sterimol_B5": "1.9651761", "dipolemoment": "0.80030054", "qpoletens_xx": "1.6488811", "qpoletens_yy": "2.289931", "qpoletens_zz": "2.8503966", "sterimol_burL": "1.7985198", "vbur_far_vbur": "22.083797", "vbur_far_vtot": "33.609547", "sterimol_burB1": "1.4573989", "sterimol_burB5": "1.5460843", "vbur_near_vbur": "26.77971", "vbur_near_vtot": "38.834843", "vbur_ovbur_max": "6.0400333", "vbur_ovbur_min": "1.4171933", "vbur_ovtot_max": "33.107014", "vbur_ovtot_min": "3.07771", "vbur_qvbur_max": "19.837114", "vbur_qvbur_min": "8.135582", "vbur_qvtot_max": "28.670906", "vbur_qvtot_min": "30.891249", "vbur_max_delta_qvbur": "19.032698", "vbur_max_delta_qvtot": "51.85143"}, "vburminconf_data": {"pyr_P": "0.91151", "pyr_alpha": "19.945341", "qpole_amp": "4.9522233", "vbur_vbur": "48.323162", "sterimol_L": "8.530471", "sterimol_B1": "3.495865", "sterimol_B5": "6.8030486", "dipolemoment": "1.3153888", "qpoletens_xx": "2.5189817", "qpoletens_yy": "0.8688589", "qpoletens_zz": "-4.1173215", "sterimol_burL": "7.3834696", "vbur_far_vbur": "-0.024051404", "vbur_far_vtot": "-0.51134413", "sterimol_burB1": "3.6183586", "sterimol_burB5": "6.245739", "vbur_near_vbur": "47.73848", "vbur_near_vtot": "269.35278", "vbur_ovbur_max": "15.744682", "vbur_ovbur_min": "0.03643818", "vbur_ovtot_max": "87.66517", "vbur_ovtot_min": "0.04280225", "vbur_qvbur_max": "15.534803", "vbur_qvbur_min": "9.790249", "vbur_qvtot_max": "86.99669", "vbur_qvtot_min": "38.79863", "vbur_max_delta_qvbur": "4.574246", "vbur_max_delta_qvtot": "38.64063"}, "boltzmann_averaged_data": {"nbo_P": "0.9293564", "nmr_P": "250.39297", "pyr_P": "0.9417334", "fmo_mu": "-0.096220456", "vmin_r": "1.7932557", "volume": "346.54367", "Pint_dP": "3.6135273", "fmo_eta": "0.2522023", "fukui_m": "0.2315091", "fukui_p": "0.103167556", "nuesp_P": "-54.18383", "somo_ra": "0.113063954", "somo_rc": "-0.4192449", "nbo_P_ra": "0.81726545", "nbo_P_rc": "1.205258", "efg_amp_P": "1.983928", "fmo_omega": "0.016759554", "pyr_alpha": "16.828018", "qpole_amp": "2.1234934", "vbur_vbur": "63.43369", "vbur_vtot": "272.1209", "vmin_vmin": "-0.059654314", "E_solv_cds": "-5.293082", "Pint_P_int": "17.58273", "Pint_P_max": "31.049822", "Pint_P_min": "11.322512", "fmo_e_homo": "-0.22497551", "fmo_e_lumo": "0.032749068", "nbo_lp_P_e": "-0.31628162", "sphericity": "0.7716029", "sterimol_L": "6.797186", "E_oxidation": "0.27880585", "E_reduction": "0.07324454", "sterimol_B1": "3.6104665", "sterimol_B5": "6.555894", "E_solv_total": "-8.836321", "dipolemoment": "1.9072609", "efgtens_xx_P": "-1.0083892", "efgtens_yy_P": "-0.6314613", "efgtens_zz_P": "1.582894", "nbo_bd_e_avg": "-0.48756295", "nbo_bd_e_max": "-0.4459581", "nbo_lp_P_occ": "1.9477199", "qpoletens_xx": "1.3448262", "qpoletens_yy": "0.5748028", "qpoletens_zz": "-1.7462052", "surface_area": "307.30164", "E_solv_elstat": "-3.5096967", "nbo_bds_e_avg": "0.21303749", "nbo_bds_e_min": "0.20160237", "nmrtens_sxx_P": "162.47093", "nmrtens_syy_P": "229.08922", "nmrtens_szz_P": "325.5578", "spindens_P_ra": "0.14220943", "spindens_P_rc": "0.27704775", "sterimol_burL": "6.772714", "vbur_far_vbur": "3.8186607", "vbur_far_vtot": "10.534648", "nbo_bd_occ_avg": "1.9678845", "nbo_bd_occ_min": "1.9650445", "sterimol_burB1": "3.6544654", "sterimol_burB5": "6.39594", "vbur_near_vbur": "60.520702", "vbur_near_vtot": "259.80563", "vbur_ovbur_max": "18.865824", "vbur_ovbur_min": "-0.029754836", "vbur_ovtot_max": "80.31568", "vbur_ovtot_min": "0.025763033", "vbur_qvbur_max": "20.353075", "vbur_qvbur_min": "10.88004", "vbur_qvtot_max": "81.40684", "vbur_qvtot_min": "34.9738", "nbo_bds_occ_avg": "0.051800277", "nbo_bds_occ_max": "0.064814925", "nbo_lp_P_percent_s": "54.387543", "vbur_max_delta_qvbur": "8.224686", "vbur_max_delta_qvtot": "39.175438", "vbur_ratio_vbur_vtot": "0.23157875"}} CCCCP(CCCC)N(CC)CC {"max_data": {"B1": 4.684295685446634, "B5": 7.42186776866512, "lval": 9.263986760125064, "sasa": 500.79104443782563, "vbur": 64.04926780023622, "vtot": 271.1064230360536, "alpha": 179.612171, "p_int": 18.010752992739157, "sasa_P": 17.439950543889502, "pyr_val": 0.9609098420999856, "dip_norm": 0.8612194842199055, "far_vbur": 1.6784521498151077, "far_vtot": 13.650394013624263, "near_vbur": 62.930299700359484, "near_vtot": 271.8247989625826, "ovbur_max": 17.82189817407847, "ovbur_min": 0.05827958853524679, "ovtot_max": 107.6151284905117, "ovtot_min": 0.05528764344370143, "pyr_alpha": 26.579308006655626, "qvbur_max": 18.52125323650143, "qvbur_min": 13.707359223490045, "qvtot_max": 107.6151284905117, "qvtot_min": 56.70247533176885, "cone_angle": 197.40172773124084, "p_int_area": 366.9056157838357, "p_int_atom": 27.32726217670363, "sasa_volume": 777.2557304997797, "EA_delta_SCC": 1.2361, "IP_delta_SCC": 6.6842, "HOMO_LUMO_gap": 5.847259078038, "sasa_volume_P": 18.62337345179112, "max_delta_qvbur": 7.926024040793564, "max_delta_qvtot": 73.64198522621433, "nucleophilicity": -6.044, "p_int_atom_area": 15.697815672350456, "p_int_times_p_int_area": 6419.161658157124, "global_electrophilicity_index": 1.3988, "p_int_atom_times_p_int_atom_area": 388.1608510013485}, "min_data": {"B1": 3.058611012328588, "B5": 5.736180939007481, "lval": 5.822402779741595, "sasa": 442.5810360677017, "vbur": 47.55614424476138, "vtot": 267.63489434135124, "alpha": 179.433693, "p_int": 17.32292966355348, "sasa_P": 5.379984743470503, "pyr_val": 0.859306869817121, "dip_norm": 0.4959284222546637, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 47.55614424476138, "near_vtot": 253.8277251980349, "ovbur_max": 13.567488211005452, "ovbur_min": 0.0, "ovtot_max": 75.46738330198501, "ovtot_min": 0.0, "pyr_alpha": 13.49122661150321, "qvbur_max": 13.567488211005452, "qvbur_min": 9.779314956214412, "qvtot_max": 76.3971081702826, "qvtot_min": 22.64982838108535, "cone_angle": 149.460403537765, "p_int_area": 332.8037126364733, "p_int_atom": 23.226642913579003, "sasa_volume": 725.5910772922242, "EA_delta_SCC": 0.8767, "IP_delta_SCC": 6.044, "HOMO_LUMO_gap": 4.822989261216, "sasa_volume_P": 4.432467357922437, "max_delta_qvbur": 1.864946833127897, "max_delta_qvtot": 19.819415183902223, "nucleophilicity": -6.6842, "p_int_atom_area": 10.79849740518375, "p_int_times_p_int_area": 5887.376168171554, "global_electrophilicity_index": 1.1744, "p_int_atom_times_p_int_atom_area": 287.0751744466449}, "boltzmann_averaged_data": {"B1": 3.752883428838119, "B5": 7.183859631032854, "lval": 7.711109248023754, "sasa": 480.5655356021143, "vbur": 53.87550248162803, "vtot": 270.14347760957736, "alpha": 179.52907181419354, "p_int": 17.514700379883642, "B1_std": 0.4772932931187334, "B5_std": 0.2551189858833621, "sasa_P": 10.946812367945755, "pyr_val": 0.9122646346184776, "dip_norm": 0.764918121027225, "far_vbur": 0.03356822687803309, "far_vtot": 0.3146772032555878, "lval_std": 0.3550454944006138, "sasa_std": 6.775213281638271, "vbur_std": 2.0659675164615927, "vtot_std": 0.6871325409243505, "alpha_std": 0.024346034557550907, "near_vbur": 53.84193425475001, "near_vtot": 268.7029428241877, "ovbur_max": 15.973092761252701, "ovbur_min": 0.0000002331766483030629, "ovtot_max": 85.1352360321392, "ovtot_min": 0.0000005288074153946799, "p_int_std": 0.08391613077368011, "pyr_alpha": 20.48906216348765, "qvbur_max": 16.004328755294406, "qvbur_min": 10.958038069868534, "qvtot_max": 85.16227488614861, "qvtot_min": 34.36084686563266, "cone_angle": 169.16441478550692, "p_int_area": 355.89607236333825, "p_int_atom": 24.873788631776677, "sasa_P_std": 1.6767103163362307, "pyr_val_std": 0.011504062703425712, "sasa_volume": 761.751749766178, "EA_delta_SCC": 1.0597360720180042, "IP_delta_SCC": 6.507979339834957, "dip_norm_std": 0.07802659562325343, "far_vbur_std": 0.12575534300723615, "far_vtot_std": 1.0788808255660305, "HOMO_LUMO_gap": 5.65802930818674, "near_vbur_std": 1.9989787564247694, "near_vtot_std": 2.7240861267843197, "ovbur_max_std": 0.38981573324366237, "ovbur_min_std": 0.00007372734415603799, "ovtot_max_std": 3.1572616136776577, "ovtot_min_std": 0.00016720184714378358, "pyr_alpha_std": 1.454517394261367, "qvbur_max_std": 0.4749237724863751, "qvbur_min_std": 0.9542345331090045, "qvtot_max_std": 3.134666814534827, "qvtot_min_std": 9.117116139012634, "sasa_volume_P": 10.541829222201043, "cone_angle_std": 7.5334983051267095, "p_int_area_std": 4.980532263243328, "p_int_atom_std": 0.5984707200369136, "max_delta_qvbur": 4.073713217120281, "max_delta_qvtot": 48.94012577061225, "nucleophilicity": -6.507979339834957, "p_int_atom_area": 13.257261048332284, "sasa_volume_std": 6.706559932610437, "EA_delta_SCC_std": 0.02812370391529703, "IP_delta_SCC_std": 0.17038400224322536, "HOMO_LUMO_gap_std": 0.21969973601879353, "sasa_volume_P_std": 1.9542392589696669, "max_delta_qvbur_std": 0.8748434811118503, "max_delta_qvtot_std": 12.840764196836995, "nucleophilicity_std": 0.17038400224322536, "p_int_atom_area_std": 0.56542484019835, "p_int_times_p_int_area": 6233.247650678053, "p_int_times_p_int_area_std": 80.16347990104816, "global_electrophilicity_index": 1.3141442850712675, "p_int_atom_times_p_int_atom_area": 329.54408453042146, "global_electrophilicity_index_std": 0.025497228478557767, "p_int_atom_times_p_int_atom_area_std": 11.154726057413662}} \\x080000000010100002042220000241044044000041c080009000020009002000100001b0004548080009a00000000800030000100080020100000000430061000200000000042210000601440900600020484004212000002800409048908000000220201240010002040000000c040180000010100000440000200010000080 \\x40000000022000000080010000000000000000000000000000000000002000000000000440000000000000010000820000008040100000000220000000000000 pcn (-3.5408642292022705, -0.6618607640266418, 7.891569137573242, -1.8257763385772705) (3.486659049987793, 7.551972389221191) -297 CC(C)(C)P(N[Si](C)(C)C)C(C)(C)C 233.41200256347656 {"max_data": {"pyr_P": 0.8825582151613531, "pyr_alpha": 28.71572967074315, "qpole_amp": 2.839888676058736, "vbur_vbur": 73.476893786589, "vbur_vtot": 285.9381398581021, "sterimol_L": 8.187164783094635, "sterimol_B1": 4.006367468520579, "sterimol_B5": 6.546843705015846, "dipolemoment": 1.2702504025747896, "qpoletens_xx": 2.105802360255564, "qpoletens_yy": -0.21225787832856402, "qpoletens_zz": -1.207875620745157, "sterimol_burL": 7.995765169856554, "vbur_far_vbur": 4.507849060812483, "vbur_far_vtot": 10.853531156871398, "sterimol_burB1": 4.006367468520579, "sterimol_burB5": 6.166263953719931, "vbur_near_vbur": 68.96904472577651, "vbur_near_vtot": 285.91727304625937, "vbur_ovbur_max": 20.844879763803434, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 99.25307470898183, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 24.472077105543036, "vbur_qvbur_min": 13.70553459231712, "vbur_qvtot_max": 99.77600202768178, "vbur_qvtot_min": 55.074552235055734, "vbur_max_delta_qvbur": 8.465552273368036, "vbur_max_delta_qvtot": 39.26034651233258}, "min_data": {"pyr_P": 0.839426225960636, "pyr_alpha": 24.01395432024381, "qpole_amp": 1.9966741958494336, "vbur_vbur": 57.117899085853956, "vbur_vtot": 285.91727304625937, "sterimol_L": 6.723730940973603, "sterimol_B1": 3.9394814822831528, "sterimol_B5": 6.134656623137341, "dipolemoment": 1.1077740698693348, "qpoletens_xx": 1.5521631452970457, "qpoletens_yy": -0.3442875245518886, "qpoletens_zz": -1.8935444819270002, "sterimol_burL": 6.723730940973603, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.9394814822831528, "sterimol_burB5": 6.011372016172568, "vbur_near_vbur": 57.11789908585395, "vbur_near_vtot": 275.08460870123076, "vbur_ovbur_max": 17.205131566210056, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.68036851563062, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.205131566210056, "vbur_qvbur_min": 10.956897160341432, "vbur_qvtot_max": 99.25307470898183, "vbur_qvtot_min": 52.90489418216592, "vbur_max_delta_qvbur": 5.7597969322260685, "vbur_max_delta_qvtot": 37.82144004180462}, "delta_data": {"pyr_P": 0.04313198920071715, "pyr_alpha": 4.701775350499343, "qpole_amp": 0.8432144802093022, "vbur_vbur": 16.358994700735046, "vbur_vtot": 0.020866811842722655, "sterimol_L": 1.4634338421210327, "sterimol_B1": 0.06688598623742603, "sterimol_B5": 0.4121870818785043, "dipolemoment": 0.1624763327054548, "qpoletens_xx": 0.5536392149585185, "qpoletens_yy": 0.13202964622332458, "qpoletens_zz": 0.6856688611818431, "sterimol_burL": 1.2720342288829514, "vbur_far_vbur": 4.507849060812483, "vbur_far_vtot": 10.853531156871398, "sterimol_burB1": 0.06688598623742603, "sterimol_burB5": 0.1548919375473634, "vbur_near_vbur": 11.851145639922564, "vbur_near_vtot": 10.832664345028604, "vbur_ovbur_max": 3.639748197593377, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 7.572706193351209, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 7.26694553933298, "vbur_qvbur_min": 2.7486374319756877, "vbur_qvtot_max": 0.5229273186999563, "vbur_qvtot_min": 2.1696580528898153, "vbur_max_delta_qvbur": 2.705755341141968, "vbur_max_delta_qvtot": 1.4389064705279608}, "vburminconf_data": {"pyr_P": 0.839426225960636, "pyr_alpha": 28.71572967074315, "qpole_amp": 2.839888676058736, "vbur_vbur": 57.117899085853956, "vbur_vtot": 285.91727304625937, "sterimol_L": 8.187164783094635, "sterimol_B1": 3.9394814822831528, "sterimol_B5": 6.134656623137341, "dipolemoment": 1.1077740698693348, "qpoletens_xx": 2.105802360255564, "qpoletens_yy": -0.21225787832856402, "qpoletens_zz": -1.8935444819270002, "sterimol_burL": 7.995765169856554, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.9394814822831528, "sterimol_burB5": 6.011372016172568, "vbur_near_vbur": 57.11789908585395, "vbur_near_vtot": 285.91727304625937, "vbur_ovbur_max": 17.205131566210056, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 99.25307470898183, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.205131566210056, "vbur_qvbur_min": 10.956897160341432, "vbur_qvtot_max": 99.25307470898183, "vbur_qvtot_min": 55.074552235055734, "vbur_max_delta_qvbur": 5.7597969322260685, "vbur_max_delta_qvtot": 39.26034651233258}, "boltzmann_averaged_data": {"nbo_P": 0.9646699960831185, "nmr_P": 227.53252589239435, "pyr_P": 0.8825581248175636, "fmo_mu": -0.10302498835408523, "vmin_r": 1.780162199026198, "volume": 359.01928475615455, "Pint_dP": 3.6599996858116515, "fmo_eta": 0.2475099869297647, "fukui_m": 0.6246199313603189, "fukui_p": 0.056779963030504435, "nuesp_P": -54.18103900116877, "somo_ra": 0.09968000464998754, "somo_rc": -0.4036100092371374, "nbo_P_ra": 0.9078900330526141, "nbo_P_rc": 1.5892899274434373, "efg_amp_P": 1.978334510311499, "fmo_omega": 0.021441858520301484, "pyr_alpha": 24.01396416853067, "qpole_amp": 1.9966759620371966, "vbur_vbur": 73.47685952121886, "vbur_vtot": 285.9381398143947, "vmin_vmin": -0.06105451069245785, "E_solv_cds": -2.7099989317596167, "Pint_P_int": 18.380000146621224, "Pint_P_max": 32.1199970885213, "Pint_P_min": 13.300000125675338, "fmo_e_homo": -0.22677998181896758, "fmo_e_lumo": 0.02073000511079712, "nbo_lp_P_e": -0.3051499793682984, "sphericity": 0.8198270424761699, "sterimol_L": 6.723734006266009, "E_oxidation": 0.2839354821541996, "E_reduction": 0.06044130519949141, "sterimol_B1": 4.006367328421928, "sterimol_B5": 6.546842841653323, "E_solv_total": -6.94031702471269, "dipolemoment": 1.2702500622536523, "efgtens_xx_P": -1.1195791472454164, "efgtens_yy_P": -0.44857992460526935, "efgtens_zz_P": 1.5681600718485913, "nbo_bd_e_avg": -0.4840233353371567, "nbo_bd_e_max": -0.43098999627163154, "nbo_lp_P_occ": 1.9348399990364886, "qpoletens_xx": 1.5521643049436473, "qpoletens_yy": -0.3442872480040457, "qpoletens_zz": -1.2078770569396018, "surface_area": 297.97065209991473, "E_solv_elstat": -4.230318092953074, "nbo_bds_e_avg": 0.20515333434571797, "nbo_bds_e_min": 0.18566000163377938, "nmrtens_sxx_P": 215.10027457852502, "nmrtens_syy_P": 223.19891265019334, "nmrtens_szz_P": 244.29849044825525, "spindens_P_ra": 0.08462996022375513, "spindens_P_rc": 0.7620199624021275, "sterimol_burL": 6.723733605362487, "vbur_far_vbur": 4.507839618721488, "vbur_far_vtot": 10.853508423184573, "nbo_bd_occ_avg": 1.9549300030511176, "nbo_bd_occ_min": 1.9425300044405285, "sterimol_burB1": 4.006367328421928, "sterimol_burB5": 6.166263629284984, "vbur_near_vbur": 68.96901990249737, "vbur_near_vtot": 275.08463139121017, "vbur_ovbur_max": 20.844872140026943, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.68038437733759, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 24.472061884278943, "vbur_qvbur_min": 13.705528835051426, "vbur_qvtot_max": 99.77600093236397, "vbur_qvtot_min": 52.90489872670777, "nbo_bds_occ_avg": 0.05729667450042947, "nbo_bds_occ_max": 0.07488001359388251, "nbo_lp_P_percent_s": 51.86999719325075, "vbur_max_delta_qvbur": 8.465546605922698, "vbur_max_delta_qvtot": 37.82144305572226, "vbur_ratio_vbur_vtot": 0.2569676768772907}} {"max_data": {"B1": 4.008424356535311, "B5": 6.396251942113654, "lval": 8.157544116829655, "sasa": 450.50158992073716, "vbur": 79.60991793914712, "vtot": 285.4805273971094, "alpha": 194.155263, "p_int": 18.72203412187744, "sasa_P": 8.489975924175562, "pyr_val": 0.9063467784488167, "dip_norm": 0.625884174588238, "far_vbur": 7.518066921046836, "far_vtot": 11.614849631732568, "near_vbur": 72.69795873886684, "near_vtot": 284.38275261998785, "ovbur_max": 21.07389921434524, "ovbur_min": 0.0, "ovtot_max": 102.6219157563171, "ovtot_min": 0.0, "pyr_alpha": 25.89056713170735, "qvbur_max": 28.16069718023125, "qvbur_min": 16.469811720060743, "qvtot_max": 104.96881500364198, "qvtot_min": 55.31363707972396, "cone_angle": 204.7493693222213, "p_int_area": 347.50839612635633, "p_int_atom": 28.690422351356084, "sasa_volume": 754.6285974248898, "EA_delta_SCC": 1.1577, "IP_delta_SCC": 6.5489, "HOMO_LUMO_gap": 5.152431516034, "sasa_volume_P": 12.031493604188427, "max_delta_qvbur": 12.192089921573627, "max_delta_qvtot": 49.28799259424784, "nucleophilicity": -6.4698, "p_int_atom_area": 10.598525231013683, "p_int_times_p_int_area": 6494.478502788176, "global_electrophilicity_index": 1.3766, "p_int_atom_times_p_int_atom_area": 270.6172082299143}, "min_data": {"B1": 3.9206270685539897, "B5": 6.024013420670219, "lval": 6.473063074122347, "sasa": 439.5814754462026, "vbur": 62.802084605581946, "vtot": 283.567580253254, "alpha": 193.599823, "p_int": 18.5828966801408, "sasa_P": 3.049991350852241, "pyr_val": 0.8662934450410277, "dip_norm": 0.5364447781458964, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 62.80208460558194, "near_vtot": 273.627621698863, "ovbur_max": 18.53290915420848, "ovbur_min": 0.0, "ovtot_max": 90.520460987025, "ovtot_min": 0.0, "pyr_alpha": 20.9875603661972, "qvbur_max": 18.53290915420848, "qvbur_min": 11.854068308069197, "qvtot_max": 97.75063910237586, "qvtot_min": 52.05556133881192, "cone_angle": 174.82109310910616, "p_int_area": 331.90548448215776, "p_int_atom": 25.530184955991714, "sasa_volume": 738.7087464746406, "EA_delta_SCC": 1.0374, "IP_delta_SCC": 6.4698, "HOMO_LUMO_gap": 4.765654414362, "sasa_volume_P": 3.892271238882994, "max_delta_qvbur": 6.457378409705344, "max_delta_qvtot": 36.921457276666075, "nucleophilicity": -6.5489, "p_int_atom_area": 7.398970444292569, "p_int_times_p_int_area": 6167.765325704013, "global_electrophilicity_index": 1.2994, "p_int_atom_times_p_int_atom_area": 209.7198997449939}, "boltzmann_averaged_data": {"B1": 3.994341258183353, "B5": 6.393499581334759, "lval": 6.502650714081532, "sasa": 449.58190691185933, "vbur": 79.60939366121144, "vtot": 285.2423876805342, "alpha": 193.6074764303757, "p_int": 18.717733736955104, "B1_std": 0.0003340163837497399, "B5_std": 0.0011914033840305443, "sasa_P": 3.2701182253427383, "pyr_val": 0.9063449159506695, "dip_norm": 0.6258767036272118, "far_vbur": 7.517489725773936, "far_vtot": 11.6142718025884, "lval_std": 0.00508627296280291, "sasa_std": 0.03688202385548884, "vbur_std": 0.05601961355747649, "vtot_std": 0.007580163529953837, "alpha_std": 0.0016904905177885625, "near_vbur": 72.0919039354375, "near_vtot": 273.6281158779458, "ovbur_max": 20.770977297630964, "ovbur_min": 0.0, "ovtot_max": 93.62245046100497, "ovtot_min": 0.0, "p_int_std": 0.0006806770740875024, "pyr_alpha": 20.987770318711505, "qvbur_max": 28.160348088986833, "qvbur_min": 15.595744474032518, "qvtot_max": 104.96744805200225, "qvtot_min": 53.225556402691936, "cone_angle": 202.82161054155864, "p_int_area": 345.5088758220503, "p_int_atom": 28.344552798087907, "sasa_P_std": 0.017107546794286724, "pyr_val_std": 0.00016665758021652493, "sasa_volume": 753.4408686454457, "EA_delta_SCC": 1.1576961400385997, "IP_delta_SCC": 6.5446941410585895, "dip_norm_std": 0.0003776490798813459, "far_vbur_std": 0.03288978653769454, "far_vtot_std": 0.0423084731708017, "HOMO_LUMO_gap": 5.097683212709264, "near_vbur_std": 0.030368109558764483, "near_vtot_std": 0.0382229224012068, "ovbur_max_std": 0.00917866077509012, "ovbur_min_std": 0.0, "ovtot_max_std": 0.04834534805644222, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.019611913393538318, "qvbur_max_std": 0.03179822918518599, "qvbur_min_std": 0.016450138935201284, "qvtot_max_std": 0.06529540716759602, "qvtot_min_std": 0.024854809750322098, "sasa_volume_P": 4.181172116068335, "cone_angle_std": 0.09261826932760096, "p_int_area_std": 0.05667947843145893, "p_int_atom_std": 0.010363957631197523, "max_delta_qvbur": 12.191716819378847, "max_delta_qvtot": 49.28477634312588, "nucleophilicity": -6.5446941410585895, "p_int_atom_area": 7.399217407458037, "sasa_volume_std": 0.049093412073701805, "EA_delta_SCC_std": 0.0004055609149713967, "IP_delta_SCC_std": 0.00037388230044029376, "HOMO_LUMO_gap_std": 0.0011105811565084263, "sasa_volume_P_std": 0.025166910261082222, "max_delta_qvbur_std": 0.025519373262921707, "max_delta_qvtot_std": 0.1580176923979764, "nucleophilicity_std": 0.00037388230044029376, "p_int_atom_area_std": 0.014925641070892873, "p_int_times_p_int_area": 6467.143140203357, "p_int_times_p_int_area_std": 1.0739700155283205, "global_electrophilicity_index": 1.3765970710292896, "p_int_atom_times_p_int_atom_area": 209.727455324673, "global_electrophilicity_index_std": 0.0002634183500679444, "p_int_atom_times_p_int_atom_area_std": 0.38986671419059454}} {"max_data": {"pyr_P": "0.8814959", "pyr_alpha": "29.610458", "qpole_amp": "2.509311", "vbur_vbur": "72.996155", "sterimol_L": "7.501726", "sterimol_B1": "3.8859212", "sterimol_B5": "6.2912674", "dipolemoment": "0.9819567", "qpoletens_xx": "1.3147854", "qpoletens_yy": "1.4510317", "qpoletens_zz": "-1.192633", "sterimol_burL": "7.9992704", "vbur_far_vbur": "3.9428267", "vbur_far_vtot": "8.841998", "sterimol_burB1": "3.9631672", "sterimol_burB5": "5.872303", "vbur_near_vbur": "69.07073", "vbur_near_vtot": "280.5582", "vbur_ovbur_max": "20.827112", "vbur_ovbur_min": "-0.09507797", "vbur_ovtot_max": "93.20612", "vbur_ovtot_min": "-0.42805687", "vbur_qvbur_max": "23.05293", "vbur_qvbur_min": "14.3006115", "vbur_qvtot_max": "91.73399", "vbur_qvtot_min": "53.554115", "vbur_max_delta_qvbur": "7.678231", "vbur_max_delta_qvtot": "32.255478"}, "min_data": {"pyr_P": "0.83373094", "pyr_alpha": "23.728481", "qpole_amp": "1.86749", "vbur_vbur": "60.07589", "sterimol_L": "6.750318", "sterimol_B1": "3.8426337", "sterimol_B5": "5.973371", "dipolemoment": "1.1001376", "qpoletens_xx": "1.201934", "qpoletens_yy": "0.18830091", "qpoletens_zz": "-1.7245141", "sterimol_burL": "6.64057", "vbur_far_vbur": "0.49533883", "vbur_far_vtot": "1.2759739", "sterimol_burB1": "3.8529468", "sterimol_burB5": "5.881195", "vbur_near_vbur": "58.84414", "vbur_near_vtot": "273.978", "vbur_ovbur_max": "17.794361", "vbur_ovbur_min": "0.037647143", "vbur_ovtot_max": "87.19308", "vbur_ovtot_min": "0.07303289", "vbur_qvbur_max": "16.5999", "vbur_qvbur_min": "11.119846", "vbur_qvtot_max": "97.083", "vbur_qvtot_min": "51.52257", "vbur_max_delta_qvbur": "5.467087", "vbur_max_delta_qvtot": "29.814459"}, "delta_data": {"pyr_P": "0.043910883", "pyr_alpha": "5.0417995", "qpole_amp": "-0.33114156", "vbur_vbur": "14.3081255", "sterimol_L": "0.9645917", "sterimol_B1": "0.046516936", "sterimol_B5": "0.39694145", "dipolemoment": "0.115005694", "qpoletens_xx": "0.04146937", "qpoletens_yy": "-0.08505923", "qpoletens_zz": "0.108727016", "sterimol_burL": "1.1825813", "vbur_far_vbur": "4.160295", "vbur_far_vtot": "7.67714", "sterimol_burB1": "0.02356953", "sterimol_burB5": "0.03599539", "vbur_near_vbur": "10.386266", "vbur_near_vtot": "8.827049", "vbur_ovbur_max": "3.0252445", "vbur_ovbur_min": "-0.025857663", "vbur_ovtot_max": "6.806154", "vbur_ovtot_min": "0.009487877", "vbur_qvbur_max": "6.725655", "vbur_qvbur_min": "1.6666597", "vbur_qvtot_max": "-3.7669806", "vbur_qvtot_min": "2.1948743", "vbur_max_delta_qvbur": "2.6378386", "vbur_max_delta_qvtot": "1.5169197"}, "vburminconf_data": {"pyr_P": "0.83226866", "pyr_alpha": "29.606544", "qpole_amp": "3.144298", "vbur_vbur": "60.08304", "sterimol_L": "7.7731223", "sterimol_B1": "3.9078555", "sterimol_B5": "5.759812", "dipolemoment": "0.7960371", "qpoletens_xx": "1.8175822", "qpoletens_yy": "0.33348513", "qpoletens_zz": "-2.9255133", "sterimol_burL": "7.831382", "vbur_far_vbur": "0.9871777", "vbur_far_vtot": "2.6192725", "sterimol_burB1": "3.933354", "sterimol_burB5": "5.7971034", "vbur_near_vbur": "58.893475", "vbur_near_vtot": "283.44763", "vbur_ovbur_max": "18.133083", "vbur_ovbur_min": "0.037913684", "vbur_ovtot_max": "95.536", "vbur_ovtot_min": "0.018049067", "vbur_qvbur_max": "17.076601", "vbur_qvbur_min": "11.249583", "vbur_qvtot_max": "97.604164", "vbur_qvtot_min": "52.456097", "vbur_max_delta_qvbur": "4.9157996", "vbur_max_delta_qvtot": "32.673077"}, "boltzmann_averaged_data": {"nbo_P": "0.96255845", "nmr_P": "224.71257", "pyr_P": "0.881286", "fmo_mu": "-0.099079154", "vmin_r": "1.774185", "volume": "358.6383", "Pint_dP": "3.5458481", "fmo_eta": "0.24794789", "fukui_m": "0.60944206", "fukui_p": "0.059770793", "nuesp_P": "-54.181633", "somo_ra": "0.10381938", "somo_rc": "-0.41269675", "nbo_P_ra": "0.9004765", "nbo_P_rc": "1.5527215", "efg_amp_P": "1.9411935", "fmo_omega": "0.019653896", "pyr_alpha": "24.467863", "qpole_amp": "1.8903683", "vbur_vbur": "72.68095", "vbur_vtot": "285.86057", "vmin_vmin": "-0.06117017", "E_solv_cds": "-2.6165297", "Pint_P_int": "18.270046", "Pint_P_max": "31.655727", "Pint_P_min": "13.150626", "fmo_e_homo": "-0.22430806", "fmo_e_lumo": "0.026099058", "nbo_lp_P_e": "-0.30401397", "sphericity": "0.8294398", "sterimol_L": "6.5521336", "E_oxidation": "0.2814313", "E_reduction": "0.06433633", "sterimol_B1": "4.0039263", "sterimol_B5": "6.3285747", "E_solv_total": "-6.88429", "dipolemoment": "1.2475879", "efgtens_xx_P": "-1.1171794", "efgtens_yy_P": "-0.4557013", "efgtens_zz_P": "1.5521183", "nbo_bd_e_avg": "-0.4841815", "nbo_bd_e_max": "-0.43151554", "nbo_lp_P_occ": "1.9353664", "qpoletens_xx": "1.0473515", "qpoletens_yy": "-0.15480743", "qpoletens_zz": "-1.3666323", "surface_area": "296.53366", "E_solv_elstat": "-4.224988", "nbo_bds_e_avg": "0.20596465", "nbo_bds_e_min": "0.18506145", "nmrtens_sxx_P": "199.92586", "nmrtens_syy_P": "225.37245", "nmrtens_szz_P": "248.59546", "spindens_P_ra": "0.09226311", "spindens_P_rc": "0.7532552", "sterimol_burL": "6.67417", "vbur_far_vbur": "4.672298", "vbur_far_vtot": "8.359882", "nbo_bd_occ_avg": "1.9548036", "nbo_bd_occ_min": "1.9446588", "sterimol_burB1": "3.9728663", "sterimol_burB5": "5.91298", "vbur_near_vbur": "69.111374", "vbur_near_vtot": "275.203", "vbur_ovbur_max": "20.258162", "vbur_ovbur_min": "0.008414733", "vbur_ovtot_max": "86.14366", "vbur_ovtot_min": "-0.0030716457", "vbur_qvbur_max": "24.317236", "vbur_qvbur_min": "14.011375", "vbur_qvtot_max": "90.61513", "vbur_qvtot_min": "52.86412", "nbo_bds_occ_avg": "0.057064224", "nbo_bds_occ_max": "0.07205775", "nbo_lp_P_percent_s": "51.5869", "vbur_max_delta_qvbur": "7.190412", "vbur_max_delta_qvtot": "25.313494", "vbur_ratio_vbur_vtot": "0.26058227"}} CC(C)(C)P(N[Si](C)(C)C)C(C)(C)C {"max_data": {"B1": 3.997744107572843, "B5": 6.3100934551738845, "lval": 8.017022185864947, "sasa": 453.22155586783407, "vbur": 64.56212817934639, "vtot": 285.47629392465996, "alpha": 194.072357, "p_int": 18.797445358916207, "sasa_P": 8.449976037607017, "pyr_val": 0.8911866926422904, "dip_norm": 0.7101809628538348, "far_vbur": 1.7833554091785517, "far_vtot": 4.540233955935763, "near_vbur": 63.443160079469656, "near_vtot": 284.1083895482121, "ovbur_max": 18.02004877509831, "ovbur_min": 0.0, "ovtot_max": 103.95063375741819, "ovtot_min": 0.0, "pyr_alpha": 29.156790363794705, "qvbur_max": 19.197296463510295, "qvbur_min": 13.835574318267588, "qvtot_max": 104.31858215324431, "qvtot_min": 53.9486622999426, "cone_angle": 187.56041934723183, "p_int_area": 351.30891534161447, "p_int_atom": 28.6846820153062, "sasa_volume": 757.4339121211868, "EA_delta_SCC": 1.1743, "IP_delta_SCC": 6.5222, "HOMO_LUMO_gap": 5.176394060678, "sasa_volume_P": 8.512079748200192, "max_delta_qvbur": 5.81630293581763, "max_delta_qvtot": 46.66141485584128, "nucleophilicity": -6.2797, "p_int_atom_area": 11.498400014779001, "p_int_times_p_int_area": 6602.207602483798, "global_electrophilicity_index": 1.382, "p_int_atom_times_p_int_atom_area": 329.82794810872775}, "min_data": {"B1": 3.9446066039520735, "B5": 6.240468382954601, "lval": 6.688753812615824, "sasa": 439.8314684379207, "vbur": 54.200017337779514, "vtot": 284.1083895482121, "alpha": 193.734214, "p_int": 18.606105147872057, "sasa_P": 5.189985282269876, "pyr_val": 0.8344270019211796, "dip_norm": 0.6607087104011873, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.200017337779514, "near_vtot": 280.92954402915655, "ovbur_max": 15.712177069102536, "ovbur_min": 0.0, "ovtot_max": 98.23135140410348, "ovtot_min": 0.0, "pyr_alpha": 22.794437600339503, "qvbur_max": 15.712177069102536, "qvbur_min": 10.979874480040495, "qvtot_max": 102.8126734501382, "qvtot_min": 52.21217685259657, "cone_angle": 164.73135861886848, "p_int_area": 331.10594875828247, "p_int_atom": 25.555968244999434, "sasa_volume": 738.1628182515137, "EA_delta_SCC": 1.0305, "IP_delta_SCC": 6.2797, "HOMO_LUMO_gap": 4.691964446412, "sasa_volume_P": 4.793023213418595, "max_delta_qvbur": 3.4734634767007098, "max_delta_qvtot": 42.27543398017996, "nucleophilicity": -6.5222, "p_int_atom_area": 10.198580882673546, "p_int_times_p_int_area": 6160.592097682541, "global_electrophilicity_index": 1.2726, "p_int_atom_times_p_int_atom_area": 263.18985044815025}, "boltzmann_averaged_data": {"B1": 3.9973750014823004, "B5": 6.241638472540436, "lval": 6.694647305364014, "sasa": 452.09943348916516, "vbur": 64.55943924880124, "vtot": 285.4612811227239, "alpha": 193.7408305291053, "p_int": 18.79532378344678, "B1_std": 0.002432960126555821, "B5_std": 0.0035728008939575136, "sasa_P": 5.426198974560077, "pyr_val": 0.8873508409530525, "dip_norm": 0.6610763453783093, "far_vbur": 1.1663143282691715, "far_vtot": 3.0364123728397785, "lval_std": 0.003033179894126146, "sasa_std": 0.052127964744919125, "vbur_std": 0.018643920660661138, "vtot_std": 0.09900940427891856, "alpha_std": 0.0019342543670882095, "near_vbur": 63.39312492053209, "near_vtot": 282.4248687498841, "ovbur_max": 18.01946131097123, "ovbur_min": 0.0, "ovtot_max": 100.4880109184886, "ovtot_min": 0.0, "p_int_std": 0.013992462252886594, "pyr_alpha": 23.26167551245046, "qvbur_max": 19.18577598892143, "qvbur_min": 13.83189357576663, "qvtot_max": 102.92049103698237, "qvtot_min": 53.48538000182757, "cone_angle": 186.06710641983355, "p_int_area": 348.1146344529931, "p_int_atom": 28.313261361914776, "sasa_P_std": 0.10702421533608876, "pyr_val_std": 0.00033661596066744475, "sasa_volume": 755.5861710109754, "EA_delta_SCC": 1.155810381103811, "IP_delta_SCC": 6.512339327393273, "dip_norm_std": 0.0024331892253959637, "far_vbur_std": 0.009689665498526703, "far_vtot_std": 0.06283472637554993, "HOMO_LUMO_gap": 5.135866131418219, "near_vbur_std": 0.022943324095701285, "near_vtot_std": 0.1595565093185454, "ovbur_max_std": 0.00676628968923502, "ovbur_min_std": 0.0, "ovtot_max_std": 0.15675571772971314, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.030536766636914073, "qvbur_max_std": 0.011760325112765925, "qvbur_min_std": 0.024368523189345067, "qvtot_max_std": 0.21170704398159337, "qvtot_min_std": 0.05469412769044148, "sasa_volume_P": 4.926243152553606, "cone_angle_std": 0.22601900807568748, "p_int_area_std": 0.6222241957500352, "p_int_atom_std": 0.05619534935794362, "max_delta_qvbur": 3.5134534653066485, "max_delta_qvtot": 45.24390699327766, "nucleophilicity": -6.512339327393273, "p_int_atom_area": 10.227759114389018, "sasa_volume_std": 0.12912370016102087, "EA_delta_SCC_std": 0.0007319160407944838, "IP_delta_SCC_std": 0.0009267147671248404, "HOMO_LUMO_gap_std": 0.0037672044388143765, "sasa_volume_P_std": 0.09651030490761371, "max_delta_qvbur_std": 0.2640392659841987, "max_delta_qvtot_std": 0.2742655465767726, "nucleophilicity_std": 0.0009267147671248404, "p_int_atom_area_std": 0.1923976876950384, "p_int_times_p_int_area": 6542.935965294298, "p_int_times_p_int_area_std": 16.506128560421196, "global_electrophilicity_index": 1.3721810718107181, "p_int_atom_times_p_int_atom_area": 289.59201330579026, "global_electrophilicity_index_std": 0.0005355541012962172, "p_int_atom_times_p_int_atom_area_std": 6.0911073610122255}} \\x000010800814008000802000000800000000000000600020900002000162100200010090140568080000800000400930010000010000f00100000000000034401300000000000012100003112080008100041081020000802131218048102002004220080000200000000000000440000200001100014820040028c040000020 \\x00020000022000000000000000000400010001008000000000000000004000000100000000000000000002000000000400010000000100000008000000800000 pcn (-3.610373735427856, 7.207688808441162, 3.825605630874634, 0.7921618223190308) (3.6059823036193848, 6.4926347732543945) -307 COc1ccccc1-c1cc2ccccc2n1P(C1CCCCC1)C1CCCCC1 419.54901123046875 {"max_data": {"pyr_P": 0.9308307535582162, "pyr_alpha": 26.92504523415692, "qpole_amp": 14.379344853178612, "vbur_vbur": 118.10041587001466, "vbur_vtot": 467.90962252026276, "sterimol_L": 10.431557412963073, "sterimol_B1": 4.944119460156595, "sterimol_B5": 7.504081954672553, "dipolemoment": 4.219692029185862, "qpoletens_xx": 11.299767865016653, "qpoletens_yy": 1.9302538468384833, "qpoletens_zz": -1.877596048994775, "sterimol_burL": 8.353386591026608, "vbur_far_vbur": 37.972614385581906, "vbur_far_vtot": 88.7628103234012, "sterimol_burB1": 4.932175242644516, "sterimol_burB5": 7.162806025140839, "vbur_near_vbur": 80.12780148443275, "vbur_near_vtot": 460.55850836428175, "vbur_ovbur_max": 22.411644936215755, "vbur_ovbur_min": 0.5083096620776953, "vbur_ovtot_max": 164.8192011236897, "vbur_ovtot_min": 0.6822613602542241, "vbur_qvbur_max": 43.8453690204919, "vbur_qvbur_min": 17.087990244908205, "vbur_qvtot_max": 212.3574418793382, "vbur_qvtot_min": 82.38446915586007, "vbur_max_delta_qvbur": 27.743666864759152, "vbur_max_delta_qvtot": 117.05078320370244}, "min_data": {"pyr_P": 0.8554427646060858, "pyr_alpha": 18.188467156131757, "qpole_amp": 2.511250750274695, "vbur_vbur": 63.762531355770825, "vbur_vtot": 466.1523409944988, "sterimol_L": 8.979234436474542, "sterimol_B1": 3.9413743346745163, "sterimol_B5": 6.3978557005433565, "dipolemoment": 1.0608154451880554, "qpoletens_xx": 1.6523559919933835, "qpoletens_yy": -3.714877151120244, "qpoletens_zz": -8.410176281313042, "sterimol_burL": 7.327451414841215, "vbur_far_vbur": 1.6640343052790396, "vbur_far_vtot": 5.045644558582482, "sterimol_burB1": 3.7494541610885364, "sterimol_burB5": 6.352204295967397, "vbur_near_vbur": 59.814241285105595, "vbur_near_vtot": 375.478894416736, "vbur_ovbur_max": 18.704958840735607, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 135.54049450724165, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 20.37317676463257, "vbur_qvbur_min": 10.872178883328484, "vbur_qvtot_max": 145.89055466980912, "vbur_qvtot_min": 50.97482382019027, "vbur_max_delta_qvbur": 7.622553121856473, "vbur_max_delta_qvtot": 54.86817695518572}, "delta_data": {"pyr_P": 0.07538798895213039, "pyr_alpha": 8.736578078025161, "qpole_amp": 11.868094102903918, "vbur_vbur": 54.33788451424383, "vbur_vtot": 1.7572815257639718, "sterimol_L": 1.4523229764885315, "sterimol_B1": 1.002745125482079, "sterimol_B5": 1.1062262541291963, "dipolemoment": 3.158876583997807, "qpoletens_xx": 9.64741187302327, "qpoletens_yy": 5.645130997958727, "qpoletens_zz": 6.532580232318267, "sterimol_burL": 1.025935176185393, "vbur_far_vbur": 36.30858008030287, "vbur_far_vtot": 83.71716576481872, "sterimol_burB1": 1.1827210815559797, "sterimol_burB5": 0.8106017291734426, "vbur_near_vbur": 20.313560199327156, "vbur_near_vtot": 85.07961394754574, "vbur_ovbur_max": 3.7066860954801477, "vbur_ovbur_min": 0.5083096620776953, "vbur_ovtot_max": 29.278706616448062, "vbur_ovtot_min": 0.6822613602542241, "vbur_qvbur_max": 23.47219225585933, "vbur_qvbur_min": 6.215811361579721, "vbur_qvtot_max": 66.46688720952909, "vbur_qvtot_min": 31.409645335669808, "vbur_max_delta_qvbur": 20.12111374290268, "vbur_max_delta_qvtot": 62.18260624851672}, "vburminconf_data": {"pyr_P": 0.8997064592095153, "pyr_alpha": 22.02891308571782, "qpole_amp": 9.89682473892203, "vbur_vbur": 63.762531355770825, "vbur_vtot": 467.16228352383183, "sterimol_L": 9.595109106934032, "sterimol_B1": 4.944119460156595, "sterimol_B5": 7.504081954672553, "dipolemoment": 3.5850160066284675, "qpoletens_xx": 7.969883302551256, "qpoletens_yy": -2.8298270330351496, "qpoletens_zz": -5.140056269516107, "sterimol_burL": 7.3340407956842775, "vbur_far_vbur": 1.6640343052790396, "vbur_far_vtot": 5.045644558582482, "sterimol_burB1": 4.878806793740267, "sterimol_burB5": 7.059268268816181, "vbur_near_vbur": 62.09849705049179, "vbur_near_vtot": 460.55850836428175, "vbur_ovbur_max": 18.704958840735607, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 164.8192011236897, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 20.37317676463257, "vbur_qvbur_min": 12.750623642776098, "vbur_qvtot_max": 164.8192011236897, "vbur_qvtot_min": 75.23436820632827, "vbur_max_delta_qvbur": 7.622553121856473, "vbur_max_delta_qvtot": 89.58483291736144}, "boltzmann_averaged_data": {"nbo_P": 1.0033976708620846, "nmr_P": 220.60099501848993, "pyr_P": 0.9240903381967849, "fmo_mu": -0.1186431972420654, "vmin_r": 1.8498484313280827, "volume": 556.6052116374572, "Pint_dP": 4.52157843626495, "fmo_eta": 0.17890927426065723, "fukui_m": 0.0001123753563549496, "fukui_p": -0.008286907724613244, "nuesp_P": -54.169051533894816, "somo_ra": 0.05716318062892109, "somo_rc": -0.35262238290441233, "nbo_P_ra": 1.011684578586698, "nbo_P_rc": 1.0035100462184394, "efg_amp_P": 2.3040830724674133, "fmo_omega": 0.03934840927657228, "pyr_alpha": 19.084642653474827, "qpole_amp": 9.170724872547284, "vbur_vbur": 98.38866132297795, "vbur_vtot": 466.88419760977604, "vmin_vmin": -0.05257200601059204, "E_solv_cds": -10.860133127544337, "Pint_P_int": 20.41597111897202, "Pint_P_max": 36.66978965005674, "Pint_P_min": 12.97623193775389, "fmo_e_homo": -0.20809783437239399, "fmo_e_lumo": -0.029188560111736803, "nbo_lp_P_e": -0.32344539688944735, "sphericity": 0.728648365233474, "sterimol_L": 9.364080550130964, "E_oxidation": 0.2534705057388912, "E_reduction": 0.014142812772037853, "sterimol_B1": 4.700114148077172, "sterimol_B5": 6.837528528851676, "E_solv_total": -19.53972952059515, "dipolemoment": 2.753131498392659, "efgtens_xx_P": -1.5046272397598388, "efgtens_yy_P": -0.2256534402746146, "efgtens_zz_P": 1.730280681399201, "nbo_bd_e_avg": -0.4940645047238561, "nbo_bd_e_max": -0.45121314885099134, "nbo_lp_P_occ": 1.9428297633280982, "qpoletens_xx": 5.858737659874178, "qpoletens_yy": 0.8031861572068605, "qpoletens_zz": -6.661923817081039, "surface_area": 449.1173841334525, "E_solv_elstat": -8.679596393050808, "nbo_bds_e_avg": 0.1982023111825736, "nbo_bds_e_min": 0.1946190922285877, "nmrtens_sxx_P": 126.30951380198798, "nmrtens_syy_P": 241.81884642312107, "nmrtens_szz_P": 293.67460103644277, "spindens_P_ra": 0.008815493466330197, "spindens_P_rc": -0.00014507307144028493, "sterimol_burL": 7.6632584689970455, "vbur_far_vbur": 28.76807165324613, "vbur_far_vtot": 75.16330202352184, "nbo_bd_occ_avg": 1.956932663406179, "nbo_bd_occ_min": 1.9527582748882744, "sterimol_burB1": 4.6088450058661365, "sterimol_burB5": 6.493215748176315, "vbur_near_vbur": 69.62058966973184, "vbur_near_vtot": 391.55989387339895, "vbur_ovbur_max": 22.246793234938984, "vbur_ovbur_min": 0.000022693134947286013, "vbur_ovtot_max": 138.24285415324448, "vbur_ovtot_min": 0.00003045908876546497, "vbur_qvbur_max": 41.712137990337986, "vbur_qvbur_min": 13.20614144685178, "vbur_qvtot_max": 191.61123065105394, "vbur_qvtot_min": 62.588783178489535, "nbo_bds_occ_avg": 0.04657038201663916, "nbo_bds_occ_max": 0.05280586211246281, "nbo_lp_P_percent_s": 53.89501334048915, "vbur_max_delta_qvbur": 25.844737633853565, "vbur_max_delta_qvtot": 97.04853727239711, "vbur_ratio_vbur_vtot": 0.21073637977416196}} {"max_data": {"B1": 4.907355915838766, "B5": 7.205072250221013, "lval": 10.073076367686632, "sasa": 670.1029880718403, "vbur": 131.05913869806298, "vtot": 461.54241021217024, "alpha": 328.176667, "p_int": 21.44238297781189, "sasa_P": 4.519987182246586, "pyr_val": 0.9506584649327129, "dip_norm": 1.8579825079908585, "far_vbur": 47.00831611253007, "far_vtot": 95.87435366060967, "near_vbur": 84.05082258553293, "near_vtot": 439.48244441422787, "ovbur_max": 22.449297503777064, "ovbur_min": 1.0840003467555903, "ovtot_max": 146.23651173428723, "ovtot_min": 1.4571189896340933, "pyr_alpha": 20.520844554809237, "qvbur_max": 44.723756241948394, "qvbur_min": 20.14142579778129, "qvtot_max": 208.08957529958832, "qvtot_min": 70.8591849196758, "cone_angle": 270.9905954174204, "p_int_area": 524.2528798495084, "p_int_atom": 40.08261786695022, "sasa_volume": 1156.4229870131485, "EA_delta_SCC": 1.586, "IP_delta_SCC": 6.2613, "HOMO_LUMO_gap": 3.402748130481, "sasa_volume_P": 6.824448714914742, "max_delta_qvbur": 27.13497642201091, "max_delta_qvtot": 116.75514762348351, "nucleophilicity": -6.045, "p_int_atom_area": 10.198580882673546, "p_int_times_p_int_area": 11044.789390908993, "global_electrophilicity_index": 1.6354, "p_int_atom_times_p_int_atom_area": 308.46613565363043}, "min_data": {"B1": 3.8233505796939453, "B5": 6.407861341693515, "lval": 8.748007881959087, "sasa": 617.7928691450949, "vbur": 73.61877623772375, "vtot": 457.54396128668833, "alpha": 327.945583, "p_int": 20.96081693588274, "sasa_P": 0.0, "pyr_val": 0.9132077255550641, "dip_norm": 0.4687973976036983, "far_vbur": 6.970238788815516, "far_vtot": 21.301249779086195, "near_vbur": 66.64853744890823, "near_vtot": 358.3273202375994, "ovbur_max": 20.934028201860645, "ovbur_min": 0.0, "ovtot_max": 127.0936164640553, "ovtot_min": 0.0, "pyr_alpha": 15.124798521141651, "qvbur_max": 28.137385344817147, "qvbur_min": 12.786541724633146, "qvtot_max": 150.6057846874606, "qvtot_min": 45.81764148772798, "cone_angle": 201.7496565733556, "p_int_area": 487.1529450626229, "p_int_atom": 30.245986103584872, "sasa_volume": 1105.7600094528225, "EA_delta_SCC": 1.452, "IP_delta_SCC": 6.045, "HOMO_LUMO_gap": 3.047956731043, "sasa_volume_P": 0.0, "max_delta_qvbur": 13.229466597501016, "max_delta_qvtot": 67.44930649206985, "nucleophilicity": -6.2613, "p_int_atom_area": 2.3996660900408338, "p_int_times_p_int_area": 10359.041526980753, "global_electrophilicity_index": 1.5325, "p_int_atom_times_p_int_atom_area": 95.07200786308104}, "boltzmann_averaged_data": {"B1": 4.504602465568132, "B5": 6.71548467476402, "lval": 9.054229687048185, "sasa": 642.2603379162368, "vbur": 111.67600715302694, "vtot": 459.058497985646, "alpha": 328.15037109271907, "p_int": 21.104529073298586, "B1_std": 0.06472934650427825, "B5_std": 0.05572661611910519, "sasa_P": 1.9765578292544401, "pyr_val": 0.9462832318958283, "dip_norm": 1.384242615832764, "far_vbur": 35.56121942622045, "far_vtot": 81.27805449015936, "lval_std": 0.053283195923242765, "sasa_std": 2.6241551725433077, "vbur_std": 1.7982908871431051, "vtot_std": 0.2624256114877926, "alpha_std": 0.026599727619983433, "near_vbur": 76.1147877268065, "near_vtot": 377.1175822665617, "ovbur_max": 22.42870741448928, "ovbur_min": 0.0005444424716715589, "ovtot_max": 131.3761605606828, "ovtot_min": 0.0005346890493630717, "p_int_std": 0.02523381193478708, "pyr_alpha": 15.863935239181567, "qvbur_max": 44.08145084792342, "qvbur_min": 14.976899293770282, "qvtot_max": 187.87617136390773, "qvtot_min": 61.567986393991646, "cone_angle": 242.8973572235294, "p_int_area": 503.7295459260791, "p_int_atom": 34.82657342555101, "sasa_P_std": 0.14547052024432075, "pyr_val_std": 0.004741563474759575, "sasa_volume": 1127.3998906189709, "EA_delta_SCC": 1.5161517714822854, "IP_delta_SCC": 6.056706959930399, "dip_norm_std": 0.06329152350909295, "far_vbur_std": 1.5478199033172277, "far_vtot_std": 1.5172828907486282, "HOMO_LUMO_gap": 3.097850540177482, "near_vbur_std": 0.7840950177072012, "near_vtot_std": 2.9136766305058366, "ovbur_max_std": 0.07872321519607306, "ovbur_min_std": 0.019254012850684805, "ovtot_max_std": 1.360678575966073, "ovtot_min_std": 0.023063062148862543, "pyr_alpha_std": 0.7007490099387302, "qvbur_max_std": 0.3656088998509674, "qvbur_min_std": 0.3662484217612105, "qvtot_max_std": 2.9349495786928164, "qvtot_min_std": 2.8815908167025728, "sasa_volume_P": 2.486124139684474, "cone_angle_std": 1.509284189884429, "p_int_area_std": 2.182328845009004, "p_int_atom_std": 0.2681689588278224, "max_delta_qvbur": 26.271695687482026, "max_delta_qvtot": 93.82466891578727, "nucleophilicity": -6.056706959930399, "p_int_atom_area": 7.020214935639098, "sasa_volume_std": 2.9036370867379837, "EA_delta_SCC_std": 0.011083623253240544, "IP_delta_SCC_std": 0.011670541535999477, "HOMO_LUMO_gap_std": 0.01125429675149883, "sasa_volume_P_std": 0.19867004342048672, "max_delta_qvbur_std": 0.3653351838487208, "max_delta_qvtot_std": 3.9694601388916095, "nucleophilicity_std": 0.011670541535999477, "p_int_atom_area_std": 0.20228916269969643, "p_int_times_p_int_area": 10630.965522391134, "p_int_times_p_int_area_std": 45.58333494232413, "global_electrophilicity_index": 1.5787612283877164, "p_int_atom_times_p_int_atom_area": 244.45162937480814, "global_electrophilicity_index_std": 0.00905931666489609, "p_int_atom_times_p_int_atom_area_std": 5.950480155746353}} {"max_data": {"pyr_P": "0.93753237", "pyr_alpha": "26.024992", "qpole_amp": "12.413133", "vbur_vbur": "118.18343", "sterimol_L": "10.35866", "sterimol_B1": "4.9771957", "sterimol_B5": "7.753825", "dipolemoment": "3.9469423", "qpoletens_xx": "9.0651045", "qpoletens_yy": "2.0033298", "qpoletens_zz": "-2.2120674", "sterimol_burL": "8.384077", "vbur_far_vbur": "38.34833", "vbur_far_vtot": "88.5827", "sterimol_burB1": "4.902177", "sterimol_burB5": "7.3014455", "vbur_near_vbur": "81.05829", "vbur_near_vtot": "460.48935", "vbur_ovbur_max": "22.870178", "vbur_ovbur_min": "0.3581596", "vbur_ovtot_max": "166.36275", "vbur_ovtot_min": "0.87925917", "vbur_qvbur_max": "45.691666", "vbur_qvbur_min": "17.704903", "vbur_qvtot_max": "213.3499", "vbur_qvtot_min": "81.52346", "vbur_max_delta_qvbur": "29.690985", "vbur_max_delta_qvtot": "127.4964"}, "min_data": {"pyr_P": "0.87061006", "pyr_alpha": "17.522482", "qpole_amp": "3.300038", "vbur_vbur": "63.169205", "sterimol_L": "8.946399", "sterimol_B1": "4.0016155", "sterimol_B5": "6.627707", "dipolemoment": "1.2113028", "qpoletens_xx": "2.9265213", "qpoletens_yy": "-2.6926305", "qpoletens_zz": "-7.533425", "sterimol_burL": "7.2689104", "vbur_far_vbur": "1.7097597", "vbur_far_vtot": "9.941081", "sterimol_burB1": "3.820696", "sterimol_burB5": "6.3622117", "vbur_near_vbur": "60.578144", "vbur_near_vtot": "377.3139", "vbur_ovbur_max": "18.256826", "vbur_ovbur_min": "0.012594476", "vbur_ovtot_max": "132.56068", "vbur_ovtot_min": "-0.0030280806", "vbur_qvbur_max": "20.906677", "vbur_qvbur_min": "10.601356", "vbur_qvtot_max": "149.2785", "vbur_qvtot_min": "49.846485", "vbur_max_delta_qvbur": "7.524468", "vbur_max_delta_qvtot": "56.96493"}, "delta_data": {"pyr_P": "0.07317301", "pyr_alpha": "8.78635", "qpole_amp": "7.8679614", "vbur_vbur": "53.742313", "sterimol_L": "1.3927186", "sterimol_B1": "0.9932171", "sterimol_B5": "1.0213362", "dipolemoment": "2.466045", "qpoletens_xx": "6.59724", "qpoletens_yy": "4.320282", "qpoletens_zz": "4.8255525", "sterimol_burL": "0.93491757", "vbur_far_vbur": "37.33977", "vbur_far_vtot": "81.76638", "sterimol_burB1": "1.0773315", "sterimol_burB5": "0.8317331", "vbur_near_vbur": "20.075718", "vbur_near_vtot": "84.770004", "vbur_ovbur_max": "4.1282315", "vbur_ovbur_min": "0.37815112", "vbur_ovtot_max": "26.08228", "vbur_ovtot_min": "0.7210908", "vbur_qvbur_max": "25.650326", "vbur_qvbur_min": "6.753543", "vbur_qvtot_max": "63.37336", "vbur_qvtot_min": "30.0231", "vbur_max_delta_qvbur": "21.820591", "vbur_max_delta_qvtot": "63.54389"}, "vburminconf_data": {"pyr_P": "0.901462", "pyr_alpha": "22.009624", "qpole_amp": "8.668503", "vbur_vbur": "64.13951", "sterimol_L": "9.449448", "sterimol_B1": "4.9635334", "sterimol_B5": "7.63998", "dipolemoment": "3.2313423", "qpoletens_xx": "6.3648224", "qpoletens_yy": "-1.066918", "qpoletens_zz": "-5.817908", "sterimol_burL": "7.4531636", "vbur_far_vbur": "1.3877335", "vbur_far_vtot": "9.396423", "sterimol_burB1": "4.792844", "sterimol_burB5": "7.0178657", "vbur_near_vbur": "62.787266", "vbur_near_vtot": "460.23166", "vbur_ovbur_max": "18.574442", "vbur_ovbur_min": "-0.002259843", "vbur_ovtot_max": "160.85562", "vbur_ovtot_min": "0.008426709", "vbur_qvbur_max": "20.67562", "vbur_qvbur_min": "12.376668", "vbur_qvtot_max": "164.3888", "vbur_qvtot_min": "83.59646", "vbur_max_delta_qvbur": "9.031298", "vbur_max_delta_qvtot": "88.20441"}, "boltzmann_averaged_data": {"nbo_P": "1.0015688", "nmr_P": "239.719", "pyr_P": "0.92409796", "fmo_mu": "-0.115663014", "vmin_r": "1.8517969", "volume": "556.245", "Pint_dP": "4.529725", "fmo_eta": "0.1798209", "fukui_m": "-0.039992545", "fukui_p": "-0.00876472", "nuesp_P": "-54.169235", "somo_ra": "0.05798308", "somo_rc": "-0.3478302", "nbo_P_ra": "1.008454", "nbo_P_rc": "1.0079072", "efg_amp_P": "2.2821834", "fmo_omega": "0.03801845", "pyr_alpha": "19.279526", "qpole_amp": "8.8261", "vbur_vbur": "98.1318", "vbur_vtot": "466.78146", "vmin_vmin": "-0.05325794", "E_solv_cds": "-10.830679", "Pint_P_int": "20.389406", "Pint_P_max": "36.91527", "Pint_P_min": "12.936696", "fmo_e_homo": "-0.20703448", "fmo_e_lumo": "-0.02752087", "nbo_lp_P_e": "-0.32293165", "sphericity": "0.7276414", "sterimol_L": "9.3227215", "E_oxidation": "0.2528845", "E_reduction": "0.015384701", "sterimol_B1": "4.7118464", "sterimol_B5": "7.0821605", "E_solv_total": "-19.486216", "dipolemoment": "2.6730957", "efgtens_xx_P": "-1.4385767", "efgtens_yy_P": "-0.24950042", "efgtens_zz_P": "1.6977577", "nbo_bd_e_avg": "-0.4946367", "nbo_bd_e_max": "-0.45219448", "nbo_lp_P_occ": "1.9421673", "qpoletens_xx": "5.847865", "qpoletens_yy": "0.37075105", "qpoletens_zz": "-6.216741", "surface_area": "451.09058", "E_solv_elstat": "-8.733009", "nbo_bds_e_avg": "0.19846077", "nbo_bds_e_min": "0.1962843", "nmrtens_sxx_P": "163.8023", "nmrtens_syy_P": "248.85379", "nmrtens_szz_P": "300.78775", "spindens_P_ra": "0.0023293933", "spindens_P_rc": "-0.06662256", "sterimol_burL": "7.647222", "vbur_far_vbur": "28.955292", "vbur_far_vtot": "75.02126", "nbo_bd_occ_avg": "1.9569159", "nbo_bd_occ_min": "1.9518466", "sterimol_burB1": "4.546185", "sterimol_burB5": "6.7550597", "vbur_near_vbur": "69.73337", "vbur_near_vtot": "393.16177", "vbur_ovbur_max": "22.325314", "vbur_ovbur_min": "-0.027959755", "vbur_ovtot_max": "140.41406", "vbur_ovtot_min": "-0.031741902", "vbur_qvbur_max": "42.820297", "vbur_qvbur_min": "13.350207", "vbur_qvtot_max": "198.29489", "vbur_qvtot_min": "61.914318", "nbo_bds_occ_avg": "0.046387125", "nbo_bds_occ_max": "0.0534062", "nbo_lp_P_percent_s": "53.677803", "vbur_max_delta_qvbur": "26.629847", "vbur_max_delta_qvtot": "102.00057", "vbur_ratio_vbur_vtot": "0.20207989"}} COc1ccccc1-c1cc2ccccc2n1P(C1CCCCC1)C1CCCCC1 {"max_data": {"B1": 4.979119292689749, "B5": 7.625303174574203, "lval": 10.355432633480396, "sasa": 667.3629059872213, "vbur": 77.71000335289807, "vtot": 462.54424974364144, "alpha": 328.171181, "p_int": 21.43369407701083, "sasa_P": 8.549975754028395, "pyr_val": 0.9389454770852983, "dip_norm": 1.9657377749842426, "far_vbur": 9.476261095831129, "far_vtot": 62.44848871532298, "near_vbur": 69.13124792050974, "near_vtot": 457.8411831278345, "ovbur_max": 21.295361650779178, "ovbur_min": 0.0, "ovtot_max": 173.9650771254885, "ovtot_min": 0.0, "pyr_alpha": 25.56235765561367, "qvbur_max": 29.256353444693893, "qvbur_min": 15.28090811394171, "qvtot_max": 204.64571749387443, "qvtot_min": 88.5432921650696, "cone_angle": 212.49327413659879, "p_int_area": 527.3526986675431, "p_int_atom": 33.91155883030712, "sasa_volume": 1156.7934238334637, "EA_delta_SCC": 1.6054, "IP_delta_SCC": 6.3326, "HOMO_LUMO_gap": 3.596166034264, "sasa_volume_P": 10.822161504092005, "max_delta_qvbur": 14.942886500437277, "max_delta_qvtot": 117.3909769498169, "nucleophilicity": -6.015, "p_int_atom_area": 12.398274798544312, "p_int_times_p_int_area": 11206.409768205098, "global_electrophilicity_index": 1.6477, "p_int_atom_times_p_int_atom_area": 406.882088927564}, "min_data": {"B1": 4.387661954778697, "B5": 6.720636932461716, "lval": 7.8471195276818175, "sasa": 620.5624914936752, "vbur": 58.17468527588334, "vtot": 457.7381158225225, "alpha": 327.880378, "p_int": 20.85136503356552, "sasa_P": 4.089988401634642, "pyr_val": 0.8695979555514202, "dip_norm": 0.728611693565235, "far_vbur": 0.20980651872688844, "far_vtot": 0.4016506435193543, "near_vbur": 57.91825508632826, "near_vtot": 393.415659222155, "ovbur_max": 17.2857259595542, "ovbur_min": 0.0, "ovtot_max": 126.73007095163376, "ovtot_min": 0.0, "pyr_alpha": 17.021976093386264, "qvbur_max": 17.903489598027814, "qvbur_min": 11.749165048705752, "qvtot_max": 135.5378323720007, "qvtot_min": 55.39074745969705, "cone_angle": 177.72389995160674, "p_int_area": 494.9576001154, "p_int_atom": 28.30964037089396, "sasa_volume": 1108.7414813928833, "EA_delta_SCC": 1.4363, "IP_delta_SCC": 6.015, "HOMO_LUMO_gap": 2.788519848652, "sasa_volume_P": 4.194357066306394, "max_delta_qvbur": 4.079571197467276, "max_delta_qvtot": 47.79753203374965, "nucleophilicity": -6.3326, "p_int_atom_area": 10.09859479558851, "p_int_times_p_int_area": 10461.997486120414, "global_electrophilicity_index": 1.5409, "p_int_atom_times_p_int_atom_area": 298.2008931565745}, "boltzmann_averaged_data": {"B1": 4.862794901010971, "B5": 7.070623959759504, "lval": 9.784900151197277, "sasa": 659.2108906176521, "vbur": 74.41327599208749, "vtot": 462.0265618542988, "alpha": 328.10912656304004, "p_int": 20.989785128946316, "B1_std": 0.032035995597434426, "B5_std": 0.27011934152279243, "sasa_P": 5.279782527623359, "pyr_val": 0.927324569995321, "dip_norm": 0.9423007500008159, "far_vbur": 8.182963827070806, "far_vtot": 50.206687674700554, "lval_std": 0.05112304002178471, "sasa_std": 9.573887211794464, "vbur_std": 2.805096211544889, "vtot_std": 0.6280366791387574, "alpha_std": 0.034753733088050937, "near_vbur": 66.23031216501666, "near_vtot": 411.0290993332224, "ovbur_max": 20.914156960235328, "ovbur_min": 0.0, "ovtot_max": 147.7425053067049, "ovtot_min": 0.0, "p_int_std": 0.07774619544039253, "pyr_alpha": 18.609258841223546, "qvbur_max": 28.564158146281663, "qvbur_min": 14.704288466263858, "qvtot_max": 193.14777563191888, "qvtot_min": 67.07164175668026, "cone_angle": 204.91307119805984, "p_int_area": 519.4743481324833, "p_int_atom": 32.13830209852558, "sasa_P_std": 0.32724633018809984, "pyr_val_std": 0.004904430607481324, "sasa_volume": 1149.197995710792, "EA_delta_SCC": 1.5295964240000002, "IP_delta_SCC": 6.143570815000001, "dip_norm_std": 0.2192310487542765, "far_vbur_std": 1.631370917926067, "far_vtot_std": 11.151268193850171, "HOMO_LUMO_gap": 3.241722550303672, "near_vbur_std": 1.1908940371220118, "near_vtot_std": 9.437546968546178, "ovbur_max_std": 0.40585076423973865, "ovbur_min_std": 0.0, "ovtot_max_std": 6.99996484974109, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.6556577625228835, "qvbur_max_std": 1.8964538502569064, "qvbur_min_std": 0.3980498469084103, "qvtot_max_std": 11.679583964254158, "qvtot_min_std": 1.3200585539553664, "sasa_volume_P": 5.418810814300016, "cone_angle_std": 5.366745412885053, "p_int_area_std": 5.148762048215169, "p_int_atom_std": 0.6729511438804573, "max_delta_qvbur": 13.437292426131952, "max_delta_qvtot": 98.61365662874518, "nucleophilicity": -6.143570815000001, "p_int_atom_area": 11.030958058630363, "sasa_volume_std": 9.03558180586787, "EA_delta_SCC_std": 0.00556553451271522, "IP_delta_SCC_std": 0.035985704321796784, "HOMO_LUMO_gap_std": 0.09783556174966794, "sasa_volume_P_std": 0.5859528632904969, "max_delta_qvbur_std": 1.6263065178273064, "max_delta_qvtot_std": 14.3237245827924, "nucleophilicity_std": 0.035985704321796784, "p_int_atom_area_std": 0.2984364536926754, "p_int_times_p_int_area": 10903.445595167808, "p_int_times_p_int_area_std": 94.21400307602978, "global_electrophilicity_index": 1.5951612710000003, "p_int_atom_times_p_int_atom_area": 354.6363322196444, "global_electrophilicity_index_std": 0.003367931733951706, "p_int_atom_times_p_int_atom_area_std": 15.29690784212959}} \\x3f1ab84816d12fd4738ad82ccdf75b37dee433121a4c8e16ff65d5518502f63ee4d751fe5e5363ea724c8fcc85014d891d1d13299d0c023a707cdc39187f274ef24739703daecfa23eb6a6db31120c73bdb1efcc05d6c9a1b9be95754f750c97146ffc871ff5e468e17786bb56dcae1b9daa08bbaa8ad9dd034cf89808b37c97 \\x15008000022001800100000010020000002000100080800040004000000002022020000000200081000202011108000404010040900004000000000900000008 pcn (8.377704620361328, -0.2025111466646194, 4.632356643676758, 2.364763021469116) (8.341682434082031, 5.049456596374512) -316 Cc1ccccc1-c1cc2ccccc2n1P(C1CCCCC1)C1CCCCC1 403.54998779296875 {"max_data": {"pyr_P": 0.9337493462215086, "pyr_alpha": 25.859106549306187, "qpole_amp": 7.251433904241542, "vbur_vbur": 114.93237067159215, "vbur_vtot": 456.71723192774937, "sterimol_L": 10.168274473646921, "sterimol_B1": 5.007715736767325, "sterimol_B5": 7.521103318503629, "dipolemoment": 3.2157286087585115, "qpoletens_xx": 5.4504875457609225, "qpoletens_yy": 2.477190363082985, "qpoletens_zz": -1.8969780723022702, "sterimol_burL": 8.283630348788575, "vbur_far_vbur": 33.4114241873909, "vbur_far_vtot": 80.05769278870874, "sterimol_burB1": 4.88230629477582, "sterimol_burB5": 7.0572569799904015, "vbur_near_vbur": 82.1850959397966, "vbur_near_vtot": 454.6625625883447, "vbur_ovbur_max": 22.3488906569469, "vbur_ovbur_min": 1.1536328338923827, "vbur_ovtot_max": 149.77023549759264, "vbur_ovtot_min": 2.0480810604378856, "vbur_qvbur_max": 43.01387482017962, "vbur_qvbur_min": 19.390026389420562, "vbur_qvtot_max": 207.09488559503913, "vbur_qvtot_min": 80.86198293048369, "vbur_max_delta_qvbur": 28.761332093569024, "vbur_max_delta_qvtot": 115.76893410890469}, "min_data": {"pyr_P": 0.8668899821509519, "pyr_alpha": 17.705598878733767, "qpole_amp": 3.698354679502705, "vbur_vbur": 61.03481201688475, "vbur_vtot": 454.399308537262, "sterimol_L": 8.79085453040908, "sterimol_B1": 4.1295993521217556, "sterimol_B5": 6.44667680603882, "dipolemoment": 1.7132751134621953, "qpoletens_xx": 2.156260044909374, "qpoletens_yy": -1.1186694197045783, "qpoletens_zz": -5.401026574575566, "sterimol_burL": 7.18505419826038, "vbur_far_vbur": 0.04915751876060016, "vbur_far_vtot": 0.07215011106863309, "sterimol_burB1": 4.101408095433895, "sterimol_burB5": 6.0221115515348185, "vbur_near_vbur": 60.14683896523051, "vbur_near_vtot": 376.21751948934093, "vbur_ovbur_max": 17.76887417497524, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 133.88495619717744, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.76887417497524, "vbur_qvbur_min": 10.76863432253488, "vbur_qvtot_max": 142.15038220909173, "vbur_qvtot_min": 52.725196561223775, "vbur_max_delta_qvbur": 4.871823880571823, "vbur_max_delta_qvtot": 57.61895004475167}, "delta_data": {"pyr_P": 0.0668593640705567, "pyr_alpha": 8.15350767057242, "qpole_amp": 3.5530792247388367, "vbur_vbur": 53.8975586547074, "vbur_vtot": 2.3179233904873513, "sterimol_L": 1.3774199432378413, "sterimol_B1": 0.8781163846455691, "sterimol_B5": 1.0744265124648091, "dipolemoment": 1.5024534952963162, "qpoletens_xx": 3.2942275008515485, "qpoletens_yy": 3.595859782787563, "qpoletens_zz": 3.5040485022732955, "sterimol_burL": 1.0985761505281957, "vbur_far_vbur": 33.3622666686303, "vbur_far_vtot": 79.9855426776401, "sterimol_burB1": 0.7808981993419248, "sterimol_burB5": 1.035145428455583, "vbur_near_vbur": 22.03825697456609, "vbur_near_vtot": 78.44504309900378, "vbur_ovbur_max": 4.580016481971658, "vbur_ovbur_min": 1.1536328338923827, "vbur_ovtot_max": 15.885279300415192, "vbur_ovtot_min": 2.0480810604378856, "vbur_qvbur_max": 25.24500064520438, "vbur_qvbur_min": 8.621392066885683, "vbur_qvtot_max": 64.9445033859474, "vbur_qvtot_min": 28.136786369259916, "vbur_max_delta_qvbur": 23.8895082129972, "vbur_max_delta_qvtot": 58.14998406415302}, "vburminconf_data": {"pyr_P": 0.8914256639337668, "pyr_alpha": 23.023427337706025, "qpole_amp": 5.943591404625497, "vbur_vbur": 61.03481201688475, "vbur_vtot": 454.7347126994133, "sterimol_L": 8.79085453040908, "sterimol_B1": 5.007715736767325, "sterimol_B5": 7.521103318503629, "dipolemoment": 2.4961442047597204, "qpoletens_xx": 4.4413205600756, "qpoletens_yy": -0.5268057386922549, "qpoletens_zz": -3.9145148213833454, "sterimol_burL": 7.18505419826038, "vbur_far_vbur": 0.04915751876060016, "vbur_far_vtot": 0.07215011106863309, "sterimol_burB1": 4.88230629477582, "sterimol_burB5": 7.0572569799904015, "vbur_near_vbur": 60.98565449812415, "vbur_near_vtot": 454.6625625883447, "vbur_ovbur_max": 17.76887417497524, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 146.48403324552646, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.76887417497524, "vbur_qvbur_min": 12.897050294403419, "vbur_qvtot_max": 146.48403324552646, "vbur_qvtot_min": 80.86198293048369, "vbur_max_delta_qvbur": 4.871823880571823, "vbur_max_delta_qvtot": 63.486000547912425}, "boltzmann_averaged_data": {"nbo_P": 0.9946125097951193, "nmr_P": 222.50982055839881, "pyr_P": 0.923855420834992, "fmo_mu": -0.12058261051666361, "vmin_r": 1.8754286993306526, "volume": 544.9162513840954, "Pint_dP": 4.4669686391963115, "fmo_eta": 0.1850416405310382, "fukui_m": 0.0120427235950538, "fukui_p": -0.004257578172526871, "nuesp_P": -54.16499035432053, "somo_ra": 0.05822518437833357, "somo_rc": -0.35712789136104023, "nbo_P_ra": 0.9988700879676462, "nbo_P_rc": 1.0066552333901728, "efg_amp_P": 2.3179147187768114, "fmo_omega": 0.03931494352106767, "pyr_alpha": 19.104897822085224, "qpole_amp": 5.595322431796023, "vbur_vbur": 94.29318184987386, "vbur_vtot": 455.8897141849993, "vmin_vmin": -0.05196088072206384, "E_solv_cds": -11.505676034739619, "Pint_P_int": 20.36086869574731, "Pint_P_max": 36.789468917850776, "Pint_P_min": 12.994365647120063, "fmo_e_homo": -0.21310343078218275, "fmo_e_lumo": -0.0280617902511445, "nbo_lp_P_e": -0.32768576990945497, "sphericity": 0.7360193735610223, "sterimol_L": 9.363311824078265, "E_oxidation": 0.25938765034163097, "E_reduction": 0.015220504633058128, "sterimol_B1": 4.556939279068056, "sterimol_B5": 6.770870954069627, "E_solv_total": -19.129594460018055, "dipolemoment": 1.9951543849678834, "efgtens_xx_P": -1.5205920156831405, "efgtens_yy_P": -0.21549396852164465, "efgtens_zz_P": 1.7360864262575495, "nbo_bd_e_avg": -0.49747019542260845, "nbo_bd_e_max": -0.45510297696353214, "nbo_lp_P_occ": 1.9425267273754268, "qpoletens_xx": 3.811409715019724, "qpoletens_yy": 0.2125799719952254, "qpoletens_zz": -4.023989687014949, "surface_area": 438.38078330020164, "E_solv_elstat": -7.623918425278436, "nbo_bds_e_avg": 0.19254319449516263, "nbo_bds_e_min": 0.1879081138466451, "nmrtens_sxx_P": 123.50987606787683, "nmrtens_syy_P": 239.12827451006478, "nmrtens_szz_P": 304.8912759928256, "spindens_P_ra": 0.011490348888164756, "spindens_P_rc": 0.006614655406284367, "sterimol_burL": 7.654744195065388, "vbur_far_vbur": 25.126590933482838, "vbur_far_vtot": 65.8944352031076, "nbo_bd_occ_avg": 1.956927498567421, "nbo_bd_occ_min": 1.9525862395941662, "sterimol_burB1": 4.429074249382558, "sterimol_burB5": 6.418652126747973, "vbur_near_vbur": 69.166590916391, "vbur_near_vtot": 388.9983911466415, "vbur_ovbur_max": 22.067110327346334, "vbur_ovbur_min": 0.0000204172040150526, "vbur_ovtot_max": 141.3891555117613, "vbur_ovtot_min": 0.00003648181997862116, "vbur_qvbur_max": 40.573196915473694, "vbur_qvbur_min": 13.399593804885324, "vbur_qvtot_max": 193.5032686522596, "vbur_qvtot_min": 62.36224042257566, "nbo_bds_occ_avg": 0.04740512318161413, "nbo_bds_occ_max": 0.0545868779818577, "nbo_lp_P_percent_s": 53.92730088307189, "vbur_max_delta_qvbur": 25.062994024807818, "vbur_max_delta_qvtot": 98.43754084796649, "vbur_ratio_vbur_vtot": 0.20683323020786373}} {"max_data": {"B1": 4.830851714396379, "B5": 7.300157172950197, "lval": 9.998987344637722, "sasa": 646.182903118177, "vbur": 124.68335171230699, "vtot": 450.5058753846723, "alpha": 323.270424, "p_int": 21.41314241591411, "sasa_P": 7.739978051015182, "pyr_val": 0.9487958164871013, "dip_norm": 1.4916407074091267, "far_vbur": 41.891368239135396, "far_vtot": 85.62482899882414, "near_vbur": 84.57533888235014, "near_vtot": 430.491555689723, "ovbur_max": 22.449297503777064, "ovbur_min": 1.503613384209367, "ovtot_max": 148.36821588223916, "ovtot_min": 1.7154091180735638, "pyr_alpha": 20.48913020741485, "qvbur_max": 44.723756241948394, "qvbur_min": 20.630974341477366, "qvtot_max": 197.78561247819852, "qvtot_min": 73.35188532049801, "cone_angle": 269.5656379172841, "p_int_area": 509.5459267230843, "p_int_atom": 40.679945432187495, "sasa_volume": 1123.058308885029, "EA_delta_SCC": 1.4572, "IP_delta_SCC": 6.3001, "HOMO_LUMO_gap": 3.607816013606, "sasa_volume_P": 11.564486381495355, "max_delta_qvbur": 28.62693388851322, "max_delta_qvtot": 113.1507838042649, "nucleophilicity": -6.1659, "p_int_atom_area": 11.098455666438857, "p_int_times_p_int_area": 10767.896087426603, "global_electrophilicity_index": 1.5454, "p_int_atom_times_p_int_atom_area": 324.76078243409205}, "min_data": {"B1": 4.068144099445985, "B5": 6.371187144683178, "lval": 8.555732608615324, "sasa": 599.6528388902658, "vbur": 69.30608668611548, "vtot": 447.05116537538527, "alpha": 322.933311, "p_int": 20.987962065567842, "sasa_P": 0.0, "pyr_val": 0.9137390091848602, "dip_norm": 0.7631421885861114, "far_vbur": 4.837205848425484, "far_vtot": 12.403739138917846, "near_vbur": 64.46888083769, "near_vtot": 348.69268517423427, "ovbur_max": 21.237082062243932, "ovbur_min": 0.0, "ovtot_max": 125.82176986665561, "ovtot_min": 0.0, "pyr_alpha": 15.393756135320691, "qvbur_max": 25.969384651305973, "qvbur_min": 12.075530744503135, "qvtot_max": 147.90765953194844, "qvtot_min": 46.95656010749147, "cone_angle": 193.3578979591287, "p_int_area": 474.44942779965794, "p_int_atom": 28.836782033176004, "sasa_volume": 1072.6394446088855, "EA_delta_SCC": 1.3326, "IP_delta_SCC": 6.1659, "HOMO_LUMO_gap": 3.233822133953, "sasa_volume_P": 0.0, "max_delta_qvbur": 12.40189644030052, "max_delta_qvtot": 61.32872474123103, "nucleophilicity": -6.3001, "p_int_atom_area": 2.299680002955803, "p_int_times_p_int_area": 10159.453166623034, "global_electrophilicity_index": 1.4636, "p_int_atom_times_p_int_atom_area": 87.94413811413197}, "boltzmann_averaged_data": {"B1": 4.317866777749422, "B5": 6.64541018712492, "lval": 8.94625598101111, "sasa": 622.2847572484887, "vbur": 115.47254015515267, "vtot": 448.1249577433028, "alpha": 323.20171036231005, "p_int": 21.163654092751027, "B1_std": 0.08646022411066326, "B5_std": 0.03103410473834415, "sasa_P": 0.3440523243384165, "pyr_val": 0.9450927938362234, "dip_norm": 0.8123904282059594, "far_vbur": 36.7651423718051, "far_vtot": 75.18567642080387, "lval_std": 0.04989112989823918, "sasa_std": 6.684463122020492, "vbur_std": 4.717254046055748, "vtot_std": 0.4207786138732501, "alpha_std": 0.018731346793495047, "near_vbur": 78.70739778334759, "near_vtot": 357.4036202238442, "ovbur_max": 22.179859543179266, "ovbur_min": 0.039650401500778094, "ovtot_max": 139.3316373106938, "ovtot_min": 0.001337906031652872, "p_int_std": 0.04116328114264912, "pyr_alpha": 16.080122794284403, "qvbur_max": 43.79258106149866, "qvbur_min": 16.47022130900897, "qvtot_max": 194.65501847667124, "qvtot_min": 58.44703778771768, "cone_angle": 258.8440994447029, "p_int_area": 491.3626007842354, "p_int_atom": 36.775388847957075, "sasa_P_std": 0.7921953196124795, "pyr_val_std": 0.0028272632692519914, "sasa_volume": 1098.1754994199393, "EA_delta_SCC": 1.4167463030000003, "IP_delta_SCC": 6.199693646000002, "dip_norm_std": 0.04991308475077919, "far_vbur_std": 2.292830012015246, "far_vtot_std": 3.655718193158839, "HOMO_LUMO_gap": 3.2760178816244334, "near_vbur_std": 2.6695064054509348, "near_vtot_std": 6.082900367457266, "ovbur_max_std": 0.08118807186555735, "ovbur_min_std": 0.04254972758563519, "ovtot_max_std": 1.6164406341295998, "ovtot_min_std": 0.03875201329689447, "pyr_alpha_std": 0.4077921508688055, "qvbur_max_std": 0.8394752604146614, "qvbur_min_std": 1.1146272778758488, "qvtot_max_std": 3.233421062401035, "qvtot_min_std": 3.530263535738613, "sasa_volume_P": 0.4414639326707258, "cone_angle_std": 7.687131492189906, "p_int_area_std": 4.269481215010674, "p_int_atom_std": 1.1237695326066222, "max_delta_qvbur": 23.805848523954122, "max_delta_qvtot": 109.26716359584344, "nucleophilicity": -6.199693646000002, "p_int_atom_area": 4.519578107443838, "sasa_volume_std": 6.655477528847561, "EA_delta_SCC_std": 0.02013710966678663, "IP_delta_SCC_std": 0.013096399628397386, "HOMO_LUMO_gap_std": 0.036903293236464046, "sasa_volume_P_std": 1.028198659645512, "max_delta_qvbur_std": 0.9278692450980813, "max_delta_qvtot_std": 5.811192112491275, "nucleophilicity_std": 0.013096399628397386, "p_int_atom_area_std": 1.3561462739651235, "p_int_times_p_int_area": 10398.909385367751, "p_int_times_p_int_area_std": 77.82977176407731, "global_electrophilicity_index": 1.5161127540000003, "p_int_atom_times_p_int_atom_area": 164.77811711970028, "global_electrophilicity_index_std": 0.014466134830544264, "p_int_atom_times_p_int_atom_area_std": 42.03556471898942}} {"max_data": {"pyr_P": "0.93658704", "pyr_alpha": "26.13999", "qpole_amp": "7.8729544", "vbur_vbur": "113.388504", "sterimol_L": "10.112343", "sterimol_B1": "5.0293922", "sterimol_B5": "7.651995", "dipolemoment": "2.9340992", "qpoletens_xx": "5.25061", "qpoletens_yy": "1.6275908", "qpoletens_zz": "-2.062431", "sterimol_burL": "8.415894", "vbur_far_vbur": "33.64079", "vbur_far_vtot": "75.06494", "sterimol_burB1": "4.8945055", "sterimol_burB5": "7.1766167", "vbur_near_vbur": "82.03667", "vbur_near_vtot": "455.5916", "vbur_ovbur_max": "22.811342", "vbur_ovbur_min": "0.45314872", "vbur_ovtot_max": "152.63629", "vbur_ovtot_min": "1.5634443", "vbur_qvbur_max": "45.481224", "vbur_qvbur_min": "18.574692", "vbur_qvtot_max": "199.92615", "vbur_qvtot_min": "81.989365", "vbur_max_delta_qvbur": "29.873356", "vbur_max_delta_qvtot": "116.96176"}, "min_data": {"pyr_P": "0.8716987", "pyr_alpha": "17.38998", "qpole_amp": "3.4032881", "vbur_vbur": "61.903942", "sterimol_L": "8.906516", "sterimol_B1": "4.0848846", "sterimol_B5": "6.6700892", "dipolemoment": "1.7278931", "qpoletens_xx": "2.743038", "qpoletens_yy": "-0.7482483", "qpoletens_zz": "-5.9424114", "sterimol_burL": "7.226374", "vbur_far_vbur": "0.9253008", "vbur_far_vtot": "9.591926", "sterimol_burB1": "3.9377098", "sterimol_burB5": "6.3052087", "vbur_near_vbur": "60.343105", "vbur_near_vtot": "385.50714", "vbur_ovbur_max": "18.172808", "vbur_ovbur_min": "0.018476464", "vbur_ovtot_max": "130.46324", "vbur_ovtot_min": "-0.004440954", "vbur_qvbur_max": "20.868093", "vbur_qvbur_min": "10.689835", "vbur_qvtot_max": "145.90303", "vbur_qvtot_min": "51.82631", "vbur_max_delta_qvbur": "6.49107", "vbur_max_delta_qvtot": "57.553562"}, "delta_data": {"pyr_P": "0.073196195", "pyr_alpha": "8.43393", "qpole_amp": "4.1873364", "vbur_vbur": "52.908493", "sterimol_L": "1.3007596", "sterimol_B1": "0.9127718", "sterimol_B5": "0.9613442", "dipolemoment": "1.4865587", "qpoletens_xx": "3.1870372", "qpoletens_yy": "2.80525", "qpoletens_zz": "3.3715591", "sterimol_burL": "0.9765766", "vbur_far_vbur": "35.2449", "vbur_far_vtot": "73.76456", "sterimol_burB1": "0.9128055", "sterimol_burB5": "0.97954166", "vbur_near_vbur": "20.301748", "vbur_near_vtot": "76.97852", "vbur_ovbur_max": "4.5580864", "vbur_ovbur_min": "0.7018126", "vbur_ovtot_max": "13.738193", "vbur_ovtot_min": "1.702001", "vbur_qvbur_max": "26.492723", "vbur_qvbur_min": "7.7658224", "vbur_qvtot_max": "53.156723", "vbur_qvtot_min": "30.314514", "vbur_max_delta_qvbur": "23.598068", "vbur_max_delta_qvtot": "55.95616"}, "vburminconf_data": {"pyr_P": "0.8982838", "pyr_alpha": "22.26854", "qpole_amp": "6.5661783", "vbur_vbur": "62.32602", "sterimol_L": "8.983925", "sterimol_B1": "5.1352134", "sterimol_B5": "7.568871", "dipolemoment": "2.538052", "qpoletens_xx": "4.390557", "qpoletens_yy": "-0.12173073", "qpoletens_zz": "-4.8273253", "sterimol_burL": "7.3687587", "vbur_far_vbur": "0.838395", "vbur_far_vtot": "7.6969", "sterimol_burB1": "4.885446", "sterimol_burB5": "7.034983", "vbur_near_vbur": "61.47787", "vbur_near_vtot": "456.7801", "vbur_ovbur_max": "18.325468", "vbur_ovbur_min": "-0.0059777065", "vbur_ovtot_max": "153.74915", "vbur_ovtot_min": "0.003392805", "vbur_qvbur_max": "20.014507", "vbur_qvbur_min": "12.451708", "vbur_qvtot_max": "155.10466", "vbur_qvtot_min": "89.10699", "vbur_max_delta_qvbur": "8.546603", "vbur_max_delta_qvtot": "71.92623"}, "boltzmann_averaged_data": {"nbo_P": "0.9893269", "nmr_P": "238.83846", "pyr_P": "0.923027", "fmo_mu": "-0.11794521", "vmin_r": "1.9165657", "volume": "544.6177", "Pint_dP": "4.455274", "fmo_eta": "0.18283997", "fukui_m": "-0.033267755", "fukui_p": "-0.0063100015", "nuesp_P": "-54.167118", "somo_ra": "0.055827636", "somo_rc": "-0.35329187", "nbo_P_ra": "0.9799461", "nbo_P_rc": "1.0403141", "efg_amp_P": "2.2842631", "fmo_omega": "0.03905894", "pyr_alpha": "19.34381", "qpole_amp": "6.020439", "vbur_vbur": "93.08411", "vbur_vtot": "455.24725", "vmin_vmin": "-0.05306926", "E_solv_cds": "-11.569458", "Pint_P_int": "20.337667", "Pint_P_max": "36.8017", "Pint_P_min": "13.048272", "fmo_e_homo": "-0.20985693", "fmo_e_lumo": "-0.028758524", "nbo_lp_P_e": "-0.32529202", "sphericity": "0.7366143", "sterimol_L": "9.10958", "E_oxidation": "0.2565181", "E_reduction": "0.013184928", "sterimol_B1": "4.670586", "sterimol_B5": "6.975495", "E_solv_total": "-19.037838", "dipolemoment": "1.9521424", "efgtens_xx_P": "-1.4488598", "efgtens_yy_P": "-0.24215667", "efgtens_zz_P": "1.6929291", "nbo_bd_e_avg": "-0.4953015", "nbo_bd_e_max": "-0.45344806", "nbo_lp_P_occ": "1.9416438", "qpoletens_xx": "3.8881252", "qpoletens_yy": "0.2021222", "qpoletens_zz": "-4.357011", "surface_area": "440.5096", "E_solv_elstat": "-7.3971825", "nbo_bds_e_avg": "0.19467251", "nbo_bds_e_min": "0.1937794", "nmrtens_sxx_P": "161.9119", "nmrtens_syy_P": "245.19434", "nmrtens_szz_P": "307.23434", "spindens_P_ra": "0.0028940514", "spindens_P_rc": "-0.04596941", "sterimol_burL": "7.6529317", "vbur_far_vbur": "25.229235", "vbur_far_vtot": "65.300735", "nbo_bd_occ_avg": "1.9564704", "nbo_bd_occ_min": "1.9517432", "sterimol_burB1": "4.4517016", "sterimol_burB5": "6.703458", "vbur_near_vbur": "68.486534", "vbur_near_vtot": "392.87714", "vbur_ovbur_max": "22.405428", "vbur_ovbur_min": "-0.022177065", "vbur_ovtot_max": "137.69681", "vbur_ovtot_min": "0.01170751", "vbur_qvbur_max": "41.2065", "vbur_qvbur_min": "13.571008", "vbur_qvtot_max": "193.39095", "vbur_qvtot_min": "63.643475", "nbo_bds_occ_avg": "0.04745428", "nbo_bds_occ_max": "0.054261103", "nbo_lp_P_percent_s": "53.86796", "vbur_max_delta_qvbur": "25.818127", "vbur_max_delta_qvtot": "99.94979", "vbur_ratio_vbur_vtot": "0.20170872"}} Cc1ccccc1-c1cc2ccccc2n1P(C1CCCCC1)C1CCCCC1 {"max_data": {"B1": 4.956851940057225, "B5": 7.543646632492946, "lval": 9.947929757283628, "sasa": 649.8029595512335, "vbur": 80.12277831825729, "vtot": 451.2400082848098, "alpha": 323.314507, "p_int": 21.303525584472112, "sasa_P": 8.96997456299821, "pyr_val": 0.9415666785288878, "dip_norm": 1.455630104112992, "far_vbur": 10.32714308844573, "far_vtot": 51.75443146898947, "near_vbur": 69.79563522981155, "near_vtot": 447.1334041154336, "ovbur_max": 21.376953074728522, "ovbur_min": 0.0, "ovtot_max": 160.8383562570364, "ovtot_min": 0.0, "pyr_alpha": 23.718395478447253, "qvbur_max": 30.596783981004563, "qvbur_min": 15.572306056617943, "qvtot_max": 194.18222588495783, "qvtot_min": 77.23438998472034, "cone_angle": 214.2622083777651, "p_int_area": 510.4453438972792, "p_int_atom": 33.246058471931505, "sasa_volume": 1126.8486331708468, "EA_delta_SCC": 1.4521, "IP_delta_SCC": 6.3041, "HOMO_LUMO_gap": 3.525989772608, "sasa_volume_P": 10.475240021535233, "max_delta_qvbur": 16.131790106556316, "max_delta_qvtot": 108.00984132087474, "nucleophilicity": -6.0768, "p_int_atom_area": 12.398274798544312, "p_int_times_p_int_area": 10786.481648828361, "global_electrophilicity_index": 1.5414, "p_int_atom_times_p_int_atom_area": 384.9377589852366}, "min_data": {"B1": 4.294189070265513, "B5": 6.696110957442015, "lval": 8.089850796341846, "sasa": 609.2625968682215, "vbur": 57.370426954096935, "vtot": 447.0627443436059, "alpha": 323.014871, "p_int": 20.930869537888054, "sasa_P": 3.2599907553371414, "pyr_val": 0.8841594683148962, "dip_norm": 0.6724262041294939, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 57.37042695409694, "near_vtot": 389.4188599305891, "ovbur_max": 15.723832986809583, "ovbur_min": 0.0, "ovtot_max": 140.2083925658694, "ovtot_min": 0.0, "pyr_alpha": 16.653733490827268, "qvbur_max": 15.723832986809583, "qvbur_min": 11.725853213291654, "qvtot_max": 146.59926633887184, "qvtot_min": 52.39981446628197, "cone_angle": 169.74332123182043, "p_int_area": 482.0514577121901, "p_int_atom": 28.501767330430656, "sasa_volume": 1083.8529119050331, "EA_delta_SCC": 1.3413, "IP_delta_SCC": 6.0768, "HOMO_LUMO_gap": 2.904915525162, "sasa_volume_P": 3.194658850861743, "max_delta_qvbur": 2.6692051549143017, "max_delta_qvtot": 62.96639599047327, "nucleophilicity": -6.3041, "p_int_atom_area": 9.79863653433341, "p_int_times_p_int_area": 10217.66916649746, "global_electrophilicity_index": 1.4618, "p_int_atom_times_p_int_atom_area": 305.86531011613215}, "boltzmann_averaged_data": {"B1": 4.868689410684605, "B5": 6.779320350117417, "lval": 9.791614945222435, "sasa": 646.8628160507177, "vbur": 74.9950609596972, "vtot": 451.1232703198872, "alpha": 323.24586171669, "p_int": 20.965259531223698, "B1_std": 0.032839997086494835, "B5_std": 0.09873352707858885, "sasa_P": 5.245846623858602, "pyr_val": 0.9279369465657102, "dip_norm": 0.7251550904990788, "far_vbur": 8.707797164849655, "far_vtot": 47.86996222449907, "lval_std": 0.05480885687677009, "sasa_std": 4.764422598666716, "vbur_std": 2.0631732833546796, "vtot_std": 0.4213861529580469, "alpha_std": 0.02770464279179205, "near_vbur": 66.28726379484755, "near_vtot": 401.28586487656787, "ovbur_max": 21.2294749441116, "ovbur_min": 0.0, "ovtot_max": 148.40097478624904, "ovtot_min": 0.0, "p_int_std": 0.07446554831214487, "pyr_alpha": 18.540400728994538, "qvbur_max": 29.50380554707594, "qvbur_min": 14.695959613707105, "qvtot_max": 189.52035317078986, "qvtot_min": 66.68748223161352, "cone_angle": 206.2237718639436, "p_int_area": 504.24803023383186, "p_int_atom": 32.004337693160224, "sasa_P_std": 0.23974591513755023, "pyr_val_std": 0.004135642453619227, "sasa_volume": 1122.570118181686, "EA_delta_SCC": 1.4243876979999999, "IP_delta_SCC": 6.236138958000001, "dip_norm_std": 0.08983572364751484, "far_vbur_std": 1.242719445064703, "far_vtot_std": 6.982216805694862, "HOMO_LUMO_gap": 3.314082278181365, "near_vbur_std": 0.8437386262969087, "near_vtot_std": 6.411552476189044, "ovbur_max_std": 0.35727707110933493, "ovbur_min_std": 0.0, "ovtot_max_std": 1.4298388521832968, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.547032494926792, "qvbur_max_std": 1.5144266756058864, "qvbur_min_std": 0.36419265321822414, "qvtot_max_std": 6.047899200955809, "qvtot_min_std": 1.5886086217839255, "sasa_volume_P": 5.371802477229489, "cone_angle_std": 4.20464659369616, "p_int_area_std": 3.517816540288553, "p_int_atom_std": 0.6054698618229097, "max_delta_qvbur": 14.640179753283311, "max_delta_qvtot": 98.0832847054792, "nucleophilicity": -6.236138958000001, "p_int_atom_area": 10.754711497927474, "sasa_volume_std": 4.5910866349796375, "EA_delta_SCC_std": 0.0174699675861404, "IP_delta_SCC_std": 0.03294860393209756, "HOMO_LUMO_gap_std": 0.09878141160873852, "sasa_volume_P_std": 0.39472951220679725, "max_delta_qvbur_std": 1.436288792993691, "max_delta_qvtot_std": 2.249552449187898, "nucleophilicity_std": 0.03294860393209756, "p_int_atom_area_std": 0.36735691314279495, "p_int_times_p_int_area": 10571.810320986842, "p_int_times_p_int_area_std": 97.30238094471758, "global_electrophilicity_index": 1.5245808980000002, "p_int_atom_times_p_int_atom_area": 344.3491738622147, "global_electrophilicity_index_std": 0.010052294410411734, "p_int_atom_times_p_int_atom_area_std": 17.232678558863118}} \\x2f1ab84c36d12dc4738ad822cdf75b37fae433041a4cae16ff2595108102f23ea65741fede5362267a0c8fcc9509cc8a151d13399d0c033e60fc5c73147f274ef0c7d2703db6cfa21eb7b6db31020c73b981ebcd0dd409a1b99c81754f750cdf146ffca31f95ec6ae177c7b357dc2e1b99aa289bae9a9951014cfa9888b35897 \\x1400800002200180010000001002000000200010008000040000400000000200202000000020008000000201118800840001004090000000008000090000000c pcn (7.326417446136475, 0.8974633812904358, 4.917769908905029, 2.196297168731689) (8.232043266296387, 5.393819808959961) -318 CCN(CC)P(C[Si](C)(C)C)N(CC)CC 262.4540100097656 {"max_data": {"pyr_P": 0.9525380181177898, "pyr_alpha": 24.449166109207564, "qpole_amp": 4.36778070481412, "vbur_vbur": 86.14698277097007, "vbur_vtot": 321.5341733760784, "sterimol_L": 8.68238991752434, "sterimol_B1": 4.769157967074633, "sterimol_B5": 6.736667117492655, "dipolemoment": 1.5628144184275006, "qpoletens_xx": 3.0910293050731683, "qpoletens_yy": 0.6580884318887352, "qpoletens_zz": -0.6635397121074675, "sterimol_burL": 8.342015567928447, "vbur_far_vbur": 11.006054679102036, "vbur_far_vtot": 19.63424635970724, "sterimol_burB1": 4.6046774715182215, "sterimol_burB5": 6.689703221811739, "vbur_near_vbur": 76.71292278755276, "vbur_near_vtot": 320.0191429420729, "vbur_ovbur_max": 21.516350551980143, "vbur_ovbur_min": 0.5009883294963294, "vbur_ovtot_max": 106.839519392894, "vbur_ovtot_min": 0.6156120296850804, "vbur_qvbur_max": 27.810604762645923, "vbur_qvbur_min": 18.84406415978156, "vbur_qvtot_max": 115.88234939461722, "vbur_qvtot_min": 70.72654441912253, "vbur_max_delta_qvbur": 17.7165789422512, "vbur_max_delta_qvtot": 74.19353759613347}, "min_data": {"pyr_P": 0.8730265765135397, "pyr_alpha": 14.933366442551073, "qpole_amp": 0.9736348477367684, "vbur_vbur": 52.292095010079294, "vbur_vtot": 319.8865076240718, "sterimol_L": 7.253685415530821, "sterimol_B1": 3.5341998188887853, "sterimol_B5": 5.662030226211584, "dipolemoment": 0.6286242432541622, "qpoletens_xx": 0.6442486630864043, "qpoletens_yy": -0.5196236965879533, "qpoletens_zz": -3.217832508551029, "sterimol_burL": 6.77691858742957, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.2500113601804843, "sterimol_burB5": 5.538536717021304, "vbur_near_vbur": 52.292095010079294, "vbur_near_vtot": 300.25226126436456, "vbur_ovbur_max": 17.509489820663987, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 88.85599843512756, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.509489820663987, "vbur_qvbur_min": 9.541788162828837, "vbur_qvtot_max": 89.69178189212252, "vbur_qvtot_min": 33.926052481360436, "vbur_max_delta_qvbur": 5.715868936737872, "vbur_max_delta_qvtot": 16.51570901449294}, "delta_data": {"pyr_P": 0.07951144160425017, "pyr_alpha": 9.515799666656491, "qpole_amp": 3.3941458570773513, "vbur_vbur": 33.854887760890776, "vbur_vtot": 1.647665752006617, "sterimol_L": 1.4287045019935185, "sterimol_B1": 1.2349581481858474, "sterimol_B5": 1.074636891281071, "dipolemoment": 0.9341901751733384, "qpoletens_xx": 2.446780641986764, "qpoletens_yy": 1.1777121284766885, "qpoletens_zz": 2.554292796443561, "sterimol_burL": 1.5650969804988772, "vbur_far_vbur": 11.006054679102036, "vbur_far_vtot": 19.63424635970724, "sterimol_burB1": 1.3546661113377372, "sterimol_burB5": 1.1511665047904351, "vbur_near_vbur": 24.420827777473463, "vbur_near_vtot": 19.76688167770834, "vbur_ovbur_max": 4.006860731316156, "vbur_ovbur_min": 0.5009883294963294, "vbur_ovtot_max": 17.983520957766444, "vbur_ovtot_min": 0.6156120296850804, "vbur_qvbur_max": 10.301114941981936, "vbur_qvbur_min": 9.302275996952723, "vbur_qvtot_max": 26.1905675024947, "vbur_qvtot_min": 36.8004919377621, "vbur_max_delta_qvbur": 12.000710005513328, "vbur_max_delta_qvtot": 57.677828581640526}, "vburminconf_data": {"pyr_P": 0.9113957704517556, "pyr_alpha": 20.35133620304943, "qpole_amp": 4.304574126887925, "vbur_vbur": 52.292095010079294, "vbur_vtot": 320.0191429420729, "sterimol_L": 8.62443692395891, "sterimol_B1": 4.665305533602057, "sterimol_B5": 5.662030226211584, "dipolemoment": 0.7499756714173378, "qpoletens_xx": 2.8562142886824073, "qpoletens_yy": 0.3456485208453257, "qpoletens_zz": -3.201862809527733, "sterimol_burL": 7.434273117742039, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.860167855822856, "sterimol_burB5": 5.538536717021304, "vbur_near_vbur": 52.292095010079294, "vbur_near_vtot": 320.0191429420729, "vbur_ovbur_max": 18.205016415893756, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 92.73673121750434, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 18.205016415893756, "vbur_qvbur_min": 10.4998368263333, "vbur_qvtot_max": 92.73673121750434, "vbur_qvtot_min": 67.41617368663492, "vbur_max_delta_qvbur": 7.705179589560455, "vbur_max_delta_qvtot": 24.060838344163216}, "boltzmann_averaged_data": {"nbo_P": 1.1490270452404592, "nmr_P": 191.7217329472382, "pyr_P": 0.8783681161785434, "fmo_mu": -0.09274244481015696, "vmin_r": 1.7733827997789515, "volume": 400.6679602539606, "Pint_dP": 4.094725523675911, "fmo_eta": 0.24161565388769543, "fukui_m": 0.04072586885480494, "fukui_p": 0.03236702551846522, "nuesp_P": -54.166760310946955, "somo_ra": 0.1029499861303149, "somo_rc": -0.3984842060059579, "nbo_P_ra": 1.1166600197219942, "nbo_P_rc": 1.1897529140952647, "efg_amp_P": 2.1265660471445806, "fmo_omega": 0.017804620932443064, "pyr_alpha": 23.991664051009753, "qpole_amp": 1.4197051361797306, "vbur_vbur": 71.07174061731543, "vbur_vtot": 321.1420174790142, "vmin_vmin": -0.060669403659564046, "E_solv_cds": -3.498001803511792, "Pint_P_int": 18.643313097778748, "Pint_P_max": 34.62591168100123, "Pint_P_min": 12.267454053991072, "fmo_e_homo": -0.21355027175400473, "fmo_e_lumo": 0.028065382133690763, "nbo_lp_P_e": -0.3012667990037574, "sphericity": 0.7808179445684036, "sterimol_L": 7.378996091401141, "E_oxidation": 0.2629004009744647, "E_reduction": 0.06591650595927676, "sterimol_B1": 4.145379130575545, "sterimol_B5": 6.57243872801828, "E_solv_total": -8.04569032752654, "dipolemoment": 1.4736515967389945, "efgtens_xx_P": -1.052316193311039, "efgtens_yy_P": -0.6698150141206295, "efgtens_zz_P": 1.722131194449912, "nbo_bd_e_avg": -0.5334945172281116, "nbo_bd_e_max": -0.46640727202936727, "nbo_lp_P_occ": 1.9314897714112718, "qpoletens_xx": 0.9462718158386147, "qpoletens_yy": 0.08325980987412722, "qpoletens_zz": -1.0295316257127425, "surface_area": 336.64057740439176, "E_solv_elstat": -4.547688524014748, "nbo_bds_e_avg": 0.23002856204142166, "nbo_bds_e_min": 0.2179060096150059, "nmrtens_sxx_P": 100.49731690236483, "nmrtens_syy_P": 197.34830094638804, "nmrtens_szz_P": 277.31958219763794, "spindens_P_ra": 0.036541953346178366, "spindens_P_rc": -0.01573296154867855, "sterimol_burL": 6.913542790230306, "vbur_far_vbur": 3.2881143443281116, "vbur_far_vtot": 6.021577774300177, "nbo_bd_occ_avg": 1.9675166530263242, "nbo_bd_occ_min": 1.9662216428194543, "sterimol_burB1": 4.14511046673142, "sterimol_burB5": 6.23254297027053, "vbur_near_vbur": 67.7836262729873, "vbur_near_vtot": 313.91569058050766, "vbur_ovbur_max": 19.91569673315342, "vbur_ovbur_min": 0.008118275390595451, "vbur_ovtot_max": 102.95045324186815, "vbur_ovtot_min": 0.0075356549444494, "vbur_qvbur_max": 22.557967192917218, "vbur_qvbur_min": 11.626384964776607, "vbur_qvtot_max": 107.60126368661416, "vbur_qvtot_min": 45.739310344249624, "nbo_bds_occ_avg": 0.08007508429654894, "nbo_bds_occ_max": 0.09776060265250724, "nbo_lp_P_percent_s": 51.945186567704056, "vbur_max_delta_qvbur": 10.831522254632736, "vbur_max_delta_qvtot": 60.57347062720779, "vbur_ratio_vbur_vtot": 0.22130649766094088}} {"max_data": {"B1": 4.620145954743105, "B5": 6.729508577304255, "lval": 8.439608410190685, "sasa": 512.0316668011517, "vbur": 103.09659211885158, "vtot": 320.8641181420548, "alpha": 215.629169, "p_int": 19.29736676219578, "sasa_P": 13.559961546739773, "pyr_val": 0.9628225509144904, "dip_norm": 0.6688699425149854, "far_vbur": 22.297770573585424, "far_vtot": 33.66637976637272, "near_vbur": 80.79882154526615, "near_vtot": 318.6212841960727, "ovbur_max": 22.18121139651493, "ovbur_min": 3.2170332871456226, "ovtot_max": 110.64092121355448, "ovtot_min": 5.029046170069963, "pyr_alpha": 22.407027000058836, "qvbur_max": 31.424354138205068, "qvbur_min": 21.97140487778804, "qvtot_max": 118.17794802137159, "qvtot_min": 69.76529345211928, "cone_angle": 250.30244491842527, "p_int_area": 399.80693505022265, "p_int_atom": 38.795664395870794, "sasa_volume": 853.2834467420892, "EA_delta_SCC": 1.2944, "IP_delta_SCC": 6.2571, "HOMO_LUMO_gap": 5.448893895349, "sasa_volume_P": 20.19491952946524, "max_delta_qvbur": 18.393038141723885, "max_delta_qvtot": 77.74433474513532, "nucleophilicity": -5.7292, "p_int_atom_area": 14.697954801500108, "p_int_times_p_int_area": 7660.859972438431, "global_electrophilicity_index": 1.4161, "p_int_atom_times_p_int_atom_area": 375.17423125799235}, "min_data": {"B1": 3.45709069646473, "B5": 5.630586513787652, "lval": 7.09997184150794, "sasa": 475.7215090824336, "vbur": 57.66182489677317, "vtot": 316.3859436656687, "alpha": 215.135605, "p_int": 18.7358181401091, "sasa_P": 0.0, "pyr_val": 0.8948830168155996, "dip_norm": 0.24541801074900757, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 57.66182489677318, "near_vtot": 278.0457494848113, "ovbur_max": 18.264823046946344, "ovbur_min": 0.0, "ovtot_max": 86.52783353174945, "ovtot_min": 0.0, "pyr_alpha": 13.160788087226582, "qvbur_max": 18.264823046946344, "qvbur_min": 10.89828305609115, "qvtot_max": 89.52240243186331, "qvtot_min": 35.13018766551088, "cone_angle": 168.71746692178803, "p_int_area": 368.6050759337011, "p_int_atom": 25.52560790428483, "sasa_volume": 813.9927509185904, "EA_delta_SCC": 1.035, "IP_delta_SCC": 5.7292, "HOMO_LUMO_gap": 4.459627213836, "sasa_volume_P": 0.0, "max_delta_qvbur": 4.032947526639077, "max_delta_qvtot": 20.125834709717694, "nucleophilicity": -6.2571, "p_int_atom_area": 3.8994573963163566, "p_int_times_p_int_area": 6998.826157722594, "global_electrophilicity_index": 1.2502, "p_int_atom_times_p_int_atom_area": 147.25085255399793}, "boltzmann_averaged_data": {"B1": 4.317043896848201, "B5": 6.569808823802466, "lval": 7.457623838397392, "sasa": 497.4539250880321, "vbur": 81.05310307059045, "vtot": 318.73666430310504, "alpha": 215.19604845358722, "p_int": 18.96798578610402, "B1_std": 0.21995241436589213, "B5_std": 0.06273991676493443, "sasa_P": 3.5768526685506767, "pyr_val": 0.953664382935926, "dip_norm": 0.3967993739129517, "far_vbur": 7.1887544324455455, "far_vtot": 10.959438792615359, "lval_std": 0.09481634938226043, "sasa_std": 5.0576117368750495, "vbur_std": 6.409815441430938, "vtot_std": 0.6871811260446767, "alpha_std": 0.03665762957636504, "near_vbur": 73.8643486381449, "near_vtot": 302.4808171995321, "ovbur_max": 20.808498441965376, "ovbur_min": 0.05866355750265505, "ovtot_max": 104.32665830372257, "ovtot_min": 0.04184941797076202, "p_int_std": 0.07162453302151268, "pyr_alpha": 14.61135849063092, "qvbur_max": 25.32549969956383, "qvbur_min": 15.006877015390325, "qvtot_max": 111.0406278223515, "qvtot_min": 52.50029203431811, "cone_angle": 208.29782156276283, "p_int_area": 385.0043139271949, "p_int_atom": 30.010295230197816, "sasa_P_std": 1.998212806336093, "pyr_val_std": 0.010696276092766436, "sasa_volume": 837.2524055139096, "EA_delta_SCC": 1.2294529831789909, "IP_delta_SCC": 6.066816505990361, "dip_norm_std": 0.06484370392901845, "far_vbur_std": 4.465011246378961, "far_vtot_std": 5.2501949392422125, "HOMO_LUMO_gap": 4.90134654409231, "near_vbur_std": 2.41471571720636, "near_vtot_std": 6.893782608634971, "ovbur_max_std": 0.472725754885736, "ovbur_min_std": 0.12843965618909012, "ovtot_max_std": 3.1718266502411563, "ovtot_min_std": 0.12211894949459323, "pyr_alpha_std": 1.486830004981693, "qvbur_max_std": 2.3791272875625378, "qvbur_min_std": 2.0828967732687675, "qvtot_max_std": 2.2132475829504985, "qvtot_min_std": 4.09590899814145, "sasa_volume_P": 4.578563933521358, "cone_angle_std": 11.958260310373795, "p_int_area_std": 5.881567316548829, "p_int_atom_std": 1.3188240264527051, "max_delta_qvbur": 9.56289983498654, "max_delta_qvtot": 56.99623953083063, "nucleophilicity": -6.066816505990361, "p_int_atom_area": 8.702237303544345, "sasa_volume_std": 6.3376831216043366, "EA_delta_SCC_std": 0.027726503069978484, "IP_delta_SCC_std": 0.055910684405992346, "HOMO_LUMO_gap_std": 0.10651753688594037, "sasa_volume_P_std": 2.6045141034905104, "max_delta_qvbur_std": 2.845478423812462, "max_delta_qvtot_std": 6.839482783804357, "nucleophilicity_std": 0.055910684405992346, "p_int_atom_area_std": 1.7758416814908042, "p_int_times_p_int_area": 7302.950220768311, "p_int_times_p_int_area_std": 126.91805800497974, "global_electrophilicity_index": 1.3758578684721088, "p_int_atom_times_p_int_atom_area": 259.10021531657685, "global_electrophilicity_index_std": 0.015449630960209702, "p_int_atom_times_p_int_atom_area_std": 45.08868186206107}} {"max_data": {"pyr_P": "0.9443941", "pyr_alpha": "22.804756", "qpole_amp": "3.2097752", "vbur_vbur": "85.4085", "sterimol_L": "8.023923", "sterimol_B1": "4.540369", "sterimol_B5": "6.0626516", "dipolemoment": "1.0683784", "qpoletens_xx": "1.8932813", "qpoletens_yy": "1.0407159", "qpoletens_zz": "-1.2707345", "sterimol_burL": "8.028381", "vbur_far_vbur": "11.63578", "vbur_far_vtot": "16.831665", "sterimol_burB1": "4.4919662", "sterimol_burB5": "5.892046", "vbur_near_vbur": "75.05619", "vbur_near_vtot": "314.2173", "vbur_ovbur_max": "21.765734", "vbur_ovbur_min": "0.2373345", "vbur_ovtot_max": "111.03642", "vbur_ovtot_min": "-0.5944737", "vbur_qvbur_max": "30.502535", "vbur_qvbur_min": "16.83985", "vbur_qvtot_max": "112.553474", "vbur_qvtot_min": "64.11895", "vbur_max_delta_qvbur": "16.897736", "vbur_max_delta_qvtot": "61.55127"}, "min_data": {"pyr_P": "0.8829162", "pyr_alpha": "15.223928", "qpole_amp": "1.7294432", "vbur_vbur": "55.6325", "sterimol_L": "7.1725793", "sterimol_B1": "3.672803", "sterimol_B5": "5.781703", "dipolemoment": "0.8603319", "qpoletens_xx": "0.9555404", "qpoletens_yy": "-0.26387042", "qpoletens_zz": "-2.7081149", "sterimol_burL": "6.9864693", "vbur_far_vbur": "1.3201056", "vbur_far_vtot": "-1.7044712", "sterimol_burB1": "3.3081279", "sterimol_burB5": "5.663494", "vbur_near_vbur": "56.544453", "vbur_near_vtot": "298.64178", "vbur_ovbur_max": "17.979652", "vbur_ovbur_min": "0.041852392", "vbur_ovtot_max": "84.617256", "vbur_ovtot_min": "0.093245424", "vbur_qvbur_max": "18.878942", "vbur_qvbur_min": "9.712273", "vbur_qvtot_max": "93.41791", "vbur_qvtot_min": "40.72008", "vbur_max_delta_qvbur": "4.188365", "vbur_max_delta_qvtot": "19.826294"}, "delta_data": {"pyr_P": "0.07666196", "pyr_alpha": "9.055516", "qpole_amp": "1.6492554", "vbur_vbur": "23.142101", "sterimol_L": "1.060413", "sterimol_B1": "0.9024555", "sterimol_B5": "0.598081", "dipolemoment": "0.5013964", "qpoletens_xx": "0.9384847", "qpoletens_yy": "1.1869627", "qpoletens_zz": "1.3237845", "sterimol_burL": "1.2604566", "vbur_far_vbur": "9.87492", "vbur_far_vtot": "14.552904", "sterimol_burB1": "1.0330671", "sterimol_burB5": "0.52633184", "vbur_near_vbur": "16.723202", "vbur_near_vtot": "14.560207", "vbur_ovbur_max": "3.3662355", "vbur_ovbur_min": "0.40109617", "vbur_ovtot_max": "16.554916", "vbur_ovtot_min": "-0.2683806", "vbur_qvbur_max": "9.512185", "vbur_qvbur_min": "5.958004", "vbur_qvtot_max": "10.902396", "vbur_qvtot_min": "29.1581", "vbur_max_delta_qvbur": "11.154389", "vbur_max_delta_qvtot": "40.21561"}, "vburminconf_data": {"pyr_P": "0.91668874", "pyr_alpha": "19.169638", "qpole_amp": "3.420529", "vbur_vbur": "57.866833", "sterimol_L": "7.7916074", "sterimol_B1": "4.245704", "sterimol_B5": "6.114146", "dipolemoment": "0.9852914", "qpoletens_xx": "2.2743433", "qpoletens_yy": "0.7673137", "qpoletens_zz": "-2.9018948", "sterimol_burL": "7.8262386", "vbur_far_vbur": "-0.03939889", "vbur_far_vtot": "0.3747791", "sterimol_burB1": "4.092524", "sterimol_burB5": "5.7995276", "vbur_near_vbur": "57.198376", "vbur_near_vtot": "312.18527", "vbur_ovbur_max": "19.24397", "vbur_ovbur_min": "0.030922115", "vbur_ovtot_max": "100.96855", "vbur_ovtot_min": "0.083118096", "vbur_qvbur_max": "20.153145", "vbur_qvbur_min": "10.639684", "vbur_qvtot_max": "103.045425", "vbur_qvtot_min": "56.32312", "vbur_max_delta_qvbur": "6.304728", "vbur_max_delta_qvtot": "39.35503"}, "boltzmann_averaged_data": {"nbo_P": "1.1376401", "nmr_P": "191.61111", "pyr_P": "0.90222144", "fmo_mu": "-0.09053538", "vmin_r": "1.7784367", "volume": "400.72934", "Pint_dP": "3.9867697", "fmo_eta": "0.24915664", "fukui_m": "0.10969838", "fukui_p": "0.05161735", "nuesp_P": "-54.165764", "somo_ra": "0.10742144", "somo_rc": "-0.3947487", "nbo_P_ra": "1.0853249", "nbo_P_rc": "1.2676818", "efg_amp_P": "2.0821786", "fmo_omega": "0.01602918", "pyr_alpha": "21.925364", "qpole_amp": "1.4805284", "vbur_vbur": "71.236984", "vbur_vtot": "321.1467", "vmin_vmin": "-0.058051415", "E_solv_cds": "-3.5599768", "Pint_P_int": "18.590822", "Pint_P_max": "33.168304", "Pint_P_min": "12.481063", "fmo_e_homo": "-0.21779487", "fmo_e_lumo": "0.033218045", "nbo_lp_P_e": "-0.31053132", "sphericity": "0.786648", "sterimol_L": "7.2957497", "E_oxidation": "0.2696044", "E_reduction": "0.07171451", "sterimol_B1": "4.075624", "sterimol_B5": "5.8853893", "E_solv_total": "-7.9939756", "dipolemoment": "0.81255436", "efgtens_xx_P": "-0.9615488", "efgtens_yy_P": "-0.62090045", "efgtens_zz_P": "1.7169125", "nbo_bd_e_avg": "-0.5314495", "nbo_bd_e_max": "-0.4734226", "nbo_lp_P_occ": "1.9404056", "qpoletens_xx": "1.1470407", "qpoletens_yy": "0.3012292", "qpoletens_zz": "-1.394978", "surface_area": "336.89777", "E_solv_elstat": "-4.31329", "nbo_bds_e_avg": "0.22745956", "nbo_bds_e_min": "0.20681193", "nmrtens_sxx_P": "119.03428", "nmrtens_syy_P": "182.14427", "nmrtens_szz_P": "279.26562", "spindens_P_ra": "0.07301475", "spindens_P_rc": "0.113902025", "sterimol_burL": "7.1848817", "vbur_far_vbur": "4.314451", "vbur_far_vtot": "9.058108", "nbo_bd_occ_avg": "1.9679018", "nbo_bd_occ_min": "1.9638352", "sterimol_burB1": "3.9872293", "sterimol_burB5": "5.8268833", "vbur_near_vbur": "68.23507", "vbur_near_vtot": "310.96274", "vbur_ovbur_max": "20.155125", "vbur_ovbur_min": "0.2407268", "vbur_ovtot_max": "93.8739", "vbur_ovtot_min": "-0.3128084", "vbur_qvbur_max": "21.491354", "vbur_qvbur_min": "11.650232", "vbur_qvtot_max": "98.423935", "vbur_qvtot_min": "56.905186", "nbo_bds_occ_avg": "0.07853797", "nbo_bds_occ_max": "0.09046138", "nbo_lp_P_percent_s": "53.219055", "vbur_max_delta_qvbur": "8.587544", "vbur_max_delta_qvtot": "33.777306", "vbur_ratio_vbur_vtot": "0.22063324"}} CCN(CC)P(C[Si](C)(C)C)N(CC)CC {"max_data": {"B1": 4.8150541500353725, "B5": 6.715574612111679, "lval": 8.628849145420608, "sasa": 516.151595701402, "vbur": 65.97249422189937, "vtot": 320.2880767306057, "alpha": 215.526451, "p_int": 19.257584339678516, "sasa_P": 12.769963787010832, "pyr_val": 0.9414490422024779, "dip_norm": 0.8113217610787967, "far_vbur": 2.1680006935111806, "far_vtot": 7.2503607326276756, "near_vbur": 64.14251514189262, "near_vtot": 318.5116208610848, "ovbur_max": 19.861683772812107, "ovbur_min": 0.0, "ovtot_max": 118.7173922082818, "ovtot_min": 0.0, "pyr_alpha": 25.390743853340094, "qvbur_max": 21.44688858097082, "qvbur_min": 14.103660425529723, "qvtot_max": 120.63655676612606, "qvtot_min": 70.53534857488454, "cone_angle": 196.69900225067943, "p_int_area": 404.10686333009244, "p_int_atom": 29.659331187139287, "sasa_volume": 858.4695945551852, "EA_delta_SCC": 1.288, "IP_delta_SCC": 6.2458, "HOMO_LUMO_gap": 5.490728771117, "sasa_volume_P": 14.52975683774427, "max_delta_qvbur": 9.802626791628512, "max_delta_qvtot": 77.43536312355484, "nucleophilicity": -5.5486, "p_int_atom_area": 14.497982627330039, "p_int_times_p_int_area": 7679.8273958514355, "global_electrophilicity_index": 1.3986, "p_int_atom_times_p_int_atom_area": 413.93669990981147}, "min_data": {"B1": 3.568015513940731, "B5": 5.666453162321133, "lval": 7.29416306150506, "sasa": 474.0614772074842, "vbur": 51.6706831953498, "vtot": 316.0165810880662, "alpha": 215.179283, "p_int": 18.761389828744342, "sasa_P": 5.02998573599565, "pyr_val": 0.8689413834662935, "dip_norm": 0.42619009843026623, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 51.670683195349795, "near_vtot": 308.9332885403981, "ovbur_max": 15.141037101457117, "ovbur_min": 0.0, "ovtot_max": 87.5633846157971, "ovtot_min": 0.0, "pyr_alpha": 16.708652507069488, "qvbur_max": 15.141037101457117, "qvbur_min": 9.9891214749413, "qvtot_max": 87.5633846157971, "qvtot_min": 37.95961237963965, "cone_angle": 154.66639630399888, "p_int_area": 366.3060011657573, "p_int_atom": 25.498901977999335, "sasa_volume": 812.4117506288137, "EA_delta_SCC": 1.0305, "IP_delta_SCC": 5.5486, "HOMO_LUMO_gap": 4.433764733492, "sasa_volume_P": 4.790141533259943, "max_delta_qvbur": 3.8697646787403865, "max_delta_qvtot": 17.95688310920508, "nucleophilicity": -6.2458, "p_int_atom_area": 9.598664360163335, "p_int_times_p_int_area": 6916.337818941641, "global_electrophilicity_index": 1.2276, "p_int_atom_times_p_int_atom_area": 269.7086517759349}, "boltzmann_averaged_data": {"B1": 4.549715567854149, "B5": 6.4465527440731, "lval": 7.8359447081453375, "sasa": 500.0468349258573, "vbur": 60.715431015768964, "vtot": 318.57807727384784, "alpha": 215.18454238035906, "p_int": 19.039740942408148, "B1_std": 0.056645296391468494, "B5_std": 0.023153346864947317, "sasa_P": 8.614772010101541, "pyr_val": 0.9295915128749749, "dip_norm": 0.5336577826672116, "far_vbur": 1.1542299465063108, "far_vtot": 3.2457761808750307, "lval_std": 0.04802399500783369, "sasa_std": 1.3074101170578811, "vbur_std": 0.7553778686214077, "vtot_std": 0.18007514684656023, "alpha_std": 0.02270643772780991, "near_vbur": 59.56120106926264, "near_vtot": 313.1419029628972, "ovbur_max": 18.053852276946316, "ovbur_min": 0.0, "ovtot_max": 110.4646027985829, "ovtot_min": 0.0, "p_int_std": 0.02837091840937053, "pyr_alpha": 18.281308738606228, "qvbur_max": 19.210450591230725, "qvbur_min": 12.326243886807257, "qvtot_max": 113.38231252906252, "qvtot_min": 52.92908021621131, "cone_angle": 180.79535106526075, "p_int_area": 386.07706372710624, "p_int_atom": 27.989851538350276, "sasa_P_std": 0.4771764043188069, "pyr_val_std": 0.0014882922057074784, "sasa_volume": 837.868408112524, "EA_delta_SCC": 1.1823993689684482, "IP_delta_SCC": 5.9696398679934, "dip_norm_std": 0.00890009161451343, "far_vbur_std": 0.07274725313867583, "far_vtot_std": 0.4294658353750229, "HOMO_LUMO_gap": 4.953651344579569, "near_vbur_std": 0.7161189153475533, "near_vtot_std": 0.44093565048897004, "ovbur_max_std": 0.14687590531861128, "ovbur_min_std": 0.0, "ovtot_max_std": 0.6974411095314744, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.1975109672999501, "qvbur_max_std": 0.19687659110256167, "qvbur_min_std": 0.2884358131943559, "qvtot_max_std": 0.8220815120710427, "qvtot_min_std": 1.1512383203295944, "sasa_volume_P": 8.614363828803418, "cone_angle_std": 2.074966992695124, "p_int_area_std": 1.2377696413357744, "p_int_atom_std": 0.2078566508446118, "max_delta_qvbur": 6.872959813320091, "max_delta_qvtot": 60.442374657129, "nucleophilicity": -5.9696398679934, "p_int_atom_area": 12.854143161730978, "sasa_volume_std": 1.4213422027257043, "EA_delta_SCC_std": 0.014934696513816965, "IP_delta_SCC_std": 0.018445343611806837, "HOMO_LUMO_gap_std": 0.024395881614733324, "sasa_volume_P_std": 0.5523141482155789, "max_delta_qvbur_std": 0.3517202293767009, "max_delta_qvtot_std": 1.3705544948438044, "nucleophilicity_std": 0.018445343611806837, "p_int_atom_area_std": 0.24898782490636534, "p_int_times_p_int_area": 7350.8159012943515, "p_int_times_p_int_area_std": 28.30671247884897, "global_electrophilicity_index": 1.3356683204160205, "p_int_atom_times_p_int_atom_area": 359.7631971920989, "global_electrophilicity_index_std": 0.008619117467202474, "p_int_atom_times_p_int_atom_area_std": 6.383054461498692}} \\x4800200004000000000c22300000011040400000e108040081500200053061100080c0182001034230082000884080204300101001001001050040004080001002020080000402140088024400002400004410c0400000000000228000100c4000022018200001020284000008200400110b08101a0001440003000950400081 \\x002000000220000000000900000000000000010000002000000000000000000040000000c0100000000000010000020440008000100000000000000000000000 pcn (-2.3893163204193115, 2.9793615341186523, 5.538850784301758, 1.8523051738739007) (1.8592379093170168, 5.779830932617188) -1 CC(C)c1cc(C(C)C)c(-c2ccccc2P(C2CCCCC2)C2CCCCC2)c(C(C)C)c1 476.72900390625 {"max_data": {"pyr_P": 0.9525961445261183, "pyr_alpha": 27.883267233562428, "qpole_amp": 6.865921007825356, "vbur_vbur": 127.93087371748022, "vbur_vtot": 561.1486613978084, "sterimol_L": 12.131655202197074, "sterimol_B1": 5.013689180764621, "sterimol_B5": 9.844823091894103, "dipolemoment": 1.5124038539115678, "qpoletens_xx": 4.872843600814101, "qpoletens_yy": 0.7090041554088162, "qpoletens_zz": -1.6038413776712728, "sterimol_burL": 8.23880229053703, "vbur_far_vbur": 48.25594894843768, "vbur_far_vtot": 157.82010275325672, "sterimol_burB1": 5.013689180764621, "sterimol_burB5": 7.835474136858376, "vbur_near_vbur": 79.67492476904255, "vbur_near_vtot": 559.5005286093726, "vbur_ovbur_max": 22.423149887415043, "vbur_ovbur_min": 1.894133329264828, "vbur_ovtot_max": 253.51398238758128, "vbur_ovtot_min": 1.886762023846827, "vbur_qvbur_max": 44.214573363523655, "vbur_qvbur_min": 18.90681843905041, "vbur_qvtot_max": 267.6567497459701, "vbur_qvtot_min": 86.56481345222964, "vbur_max_delta_qvbur": 26.82222486416152, "vbur_max_delta_qvtot": 201.97994697156795}, "min_data": {"pyr_P": 0.8410703816912662, "pyr_alpha": 14.921945083857816, "qpole_amp": 3.2087712862731865, "vbur_vbur": 56.456887344222054, "vbur_vtot": 558.1340776254403, "sterimol_L": 7.450735345631552, "sterimol_B1": 4.070606689958594, "sterimol_B5": 6.842619057752699, "dipolemoment": 0.9688936350178161, "qpoletens_xx": 2.5960433465816366, "qpoletens_yy": -1.4247263744500522, "qpoletens_zz": -4.913980006492746, "sterimol_burL": 7.106518998620677, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.070606689958594, "sterimol_burB5": 6.306577359319101, "vbur_near_vbur": 56.456887344222054, "vbur_near_vtot": 398.15579703267247, "vbur_ovbur_max": 16.52110992217958, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 137.74578502022936, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.52110992217958, "vbur_qvbur_min": 9.989435354946643, "vbur_qvtot_max": 210.82650257771235, "vbur_qvtot_min": 46.82520533822818, "vbur_max_delta_qvbur": 2.7622341924839375, "vbur_max_delta_qvtot": 109.33621632479819}, "delta_data": {"pyr_P": 0.11152576283485205, "pyr_alpha": 12.961322149704612, "qpole_amp": 3.657149721552169, "vbur_vbur": 71.47398637325817, "vbur_vtot": 3.0145837723680415, "sterimol_L": 4.680919856565522, "sterimol_B1": 0.9430824908060274, "sterimol_B5": 3.0022040341414042, "dipolemoment": 0.5435102188937517, "qpoletens_xx": 2.2768002542324646, "qpoletens_yy": 2.1337305298588687, "qpoletens_zz": 3.3101386288214734, "sterimol_burL": 1.1322832919163535, "vbur_far_vbur": 48.25594894843768, "vbur_far_vtot": 157.82010275325672, "sterimol_burB1": 0.9430824908060274, "sterimol_burB5": 1.5288967775392752, "vbur_near_vbur": 23.218037424820494, "vbur_near_vtot": 161.34473157670016, "vbur_ovbur_max": 5.902039965235463, "vbur_ovbur_min": 1.894133329264828, "vbur_ovtot_max": 115.76819736735192, "vbur_ovtot_min": 1.886762023846827, "vbur_qvbur_max": 27.693463441344075, "vbur_qvbur_min": 8.917383084103768, "vbur_qvtot_max": 56.830247168257756, "vbur_qvtot_min": 39.73960811400146, "vbur_max_delta_qvbur": 24.059990671677582, "vbur_max_delta_qvtot": 92.64373064676977}, "vburminconf_data": {"pyr_P": 0.8994230757656385, "pyr_alpha": 22.144826221962003, "qpole_amp": 5.9252144442955315, "vbur_vbur": 56.456887344222054, "vbur_vtot": 558.7443187113473, "sterimol_L": 9.845203409792017, "sterimol_B1": 4.442682872231172, "sterimol_B5": 9.470359534263068, "dipolemoment": 1.3587512128823742, "qpoletens_xx": 4.206576523669231, "qpoletens_yy": -0.03383940565807997, "qpoletens_zz": -4.172737118011151, "sterimol_burL": 7.73554821672926, "vbur_far_vbur": 0.0, "vbur_far_vtot": 3.6149270417143473, "sterimol_burB1": 4.211190949121469, "sterimol_burB5": 7.262693329069889, "vbur_near_vbur": 56.456887344222054, "vbur_near_vtot": 555.129391669633, "vbur_ovbur_max": 17.402807545906942, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 253.51398238758128, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.402807545906942, "vbur_qvbur_min": 10.861719836783676, "vbur_qvtot_max": 257.1278962770979, "vbur_qvtot_min": 64.28855955856004, "vbur_max_delta_qvbur": 6.541087709123266, "vbur_max_delta_qvtot": 175.12335738798365}, "boltzmann_averaged_data": {"nbo_P": 0.8019138766036383, "nmr_P": 306.76023345663316, "pyr_P": 0.9257094789580096, "fmo_mu": -0.12167784239579564, "vmin_r": 1.8190484824972515, "volume": 687.0055722206894, "Pint_dP": 5.018495509179827, "fmo_eta": 0.19313104725181013, "fukui_m": 0.36374394340074573, "fukui_p": 0.039065191166071156, "nuesp_P": -54.19681131364157, "somo_ra": 0.059115318851273586, "somo_rc": -0.36371157792538794, "nbo_P_ra": 0.7628486854375671, "nbo_P_rc": 1.1656578200043837, "efg_amp_P": 1.7506547421921983, "fmo_omega": 0.03833597049972977, "pyr_alpha": 18.814261445960174, "qpole_amp": 4.45796203144888, "vbur_vbur": 105.56628678306258, "vbur_vtot": 560.3636917697643, "vmin_vmin": -0.06165383244101299, "E_solv_cds": -11.780089598879306, "Pint_P_int": 20.673661816060683, "Pint_P_max": 42.08441374727884, "Pint_P_min": 12.786665866220622, "fmo_e_homo": -0.21824336602170066, "fmo_e_lumo": -0.025112318769890583, "nbo_lp_P_e": -0.30053921420095936, "sphericity": 0.7047371087423634, "sterimol_L": 7.743234968074523, "E_oxidation": 0.26008169875895315, "E_reduction": 0.01736449484531517, "sterimol_B1": 4.903718572715397, "sterimol_B5": 7.5273896736231745, "E_solv_total": -18.908945354614957, "dipolemoment": 1.258121922809165, "efgtens_xx_P": -0.8244120286985345, "efgtens_yy_P": -0.5990563615152577, "efgtens_zz_P": 1.4234683803517658, "nbo_bd_e_avg": -0.448304250728995, "nbo_bd_e_max": -0.43942873764202106, "nbo_lp_P_occ": 1.9270540250021928, "qpoletens_xx": 3.470276291702794, "qpoletens_yy": -0.794078773044176, "qpoletens_zz": -2.676197518658617, "surface_area": 534.2836334014926, "E_solv_elstat": -7.1288557557356445, "nbo_bds_e_avg": 0.21348686445833076, "nbo_bds_e_min": 0.20306379729896473, "nmrtens_sxx_P": 286.0477335426212, "nmrtens_syy_P": 304.9629316597892, "nmrtens_szz_P": 329.2700282119482, "spindens_P_ra": 0.03993443807121404, "spindens_P_rc": 0.46677083490529964, "sterimol_burL": 7.29157262028925, "vbur_far_vbur": 34.87607372712864, "vbur_far_vtot": 141.28086877782496, "nbo_bd_occ_avg": 1.9536406116560734, "nbo_bd_occ_min": 1.9478403862258515, "sterimol_burB1": 4.800335896195051, "sterimol_burB5": 7.4394804067910085, "vbur_near_vbur": 70.6902130559339, "vbur_near_vtot": 418.630842434303, "vbur_ovbur_max": 22.252507852739445, "vbur_ovbur_min": 0.0006622030804085954, "vbur_ovtot_max": 147.50001918360027, "vbur_ovtot_min": 0.024899919113889328, "vbur_qvbur_max": 41.22468020292132, "vbur_qvbur_min": 14.130802505332042, "vbur_qvtot_max": 237.97500033649123, "vbur_qvtot_min": 69.46095831288895, "nbo_bds_occ_avg": 0.03485582782075372, "nbo_bds_occ_max": 0.03943932963743127, "nbo_lp_P_percent_s": 51.27024711586343, "vbur_max_delta_qvbur": 23.52661595093186, "vbur_max_delta_qvtot": 137.56493934155378, "vbur_ratio_vbur_vtot": 0.1883895925244817}} {"max_data": {"B1": 5.002916815522093, "B5": 9.627588554277187, "lval": 11.200981435185424, "sasa": 743.952167693435, "vbur": 134.61419359871303, "vtot": 554.3605137260579, "alpha": 389.945248, "p_int": 21.98211933389599, "sasa_P": 10.909969061573074, "pyr_val": 0.9626227609229311, "dip_norm": 0.7813360352626776, "far_vbur": 50.9596722152198, "far_vtot": 157.87573263362162, "near_vbur": 84.76183356566293, "near_vtot": 552.2473481242024, "ovbur_max": 22.449297503777064, "ovbur_min": 3.158753698610376, "ovtot_max": 245.08542117706932, "ovtot_min": 2.488796205695078, "pyr_alpha": 23.398971621350714, "qvbur_max": 44.25751953366641, "qvbur_min": 20.32792048109408, "qvtot_max": 257.3358449323634, "qvtot_min": 80.61585664439426, "cone_angle": 304.77692867601473, "p_int_area": 616.5756729790148, "p_int_atom": 43.868913559774384, "sasa_volume": 1359.2709773401464, "EA_delta_SCC": 1.7802, "IP_delta_SCC": 6.7339, "HOMO_LUMO_gap": 3.421089882585, "sasa_volume_P": 17.467079795667317, "max_delta_qvbur": 26.190847087739908, "max_delta_qvtot": 197.972857837031, "nucleophilicity": -6.4617, "p_int_atom_area": 12.998191321054517, "p_int_times_p_int_area": 13344.274347362458, "global_electrophilicity_index": 1.8181, "p_int_atom_times_p_int_atom_area": 370.42219466588296}, "min_data": {"B1": 4.10557042482519, "B5": 6.680648653820224, "lval": 7.178829334842755, "sasa": 691.6621054442464, "vbur": 62.68552542851145, "vtot": 550.346302599201, "alpha": 389.844508, "p_int": 21.248972413496737, "sasa_P": 0.0, "pyr_val": 0.8880223233652872, "dip_norm": 0.22721135535003528, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 62.66221359309735, "near_vtot": 380.3092263931428, "ovbur_max": 17.344005548089445, "ovbur_min": 0.0, "ovtot_max": 131.87267078808392, "ovtot_min": 0.0, "pyr_alpha": 13.158190425750671, "qvbur_max": 17.344005548089445, "qvbur_min": 12.052218909089037, "qvtot_max": 212.86336524484344, "qvtot_min": 49.20088830601587, "cone_angle": 176.193202585631, "p_int_area": 584.0809424575165, "p_int_atom": 28.497979874005374, "sasa_volume": 1307.6273458516175, "EA_delta_SCC": 1.5861, "IP_delta_SCC": 6.4617, "HOMO_LUMO_gap": 3.182577979261, "sasa_volume_P": 0.0, "max_delta_qvbur": 2.832388002812994, "max_delta_qvtot": 101.50480927561674, "nucleophilicity": -6.7339, "p_int_atom_area": 1.5997773933605535, "p_int_times_p_int_area": 12581.94150079095, "global_electrophilicity_index": 1.6745, "p_int_atom_times_p_int_atom_area": 69.56244873686809}, "boltzmann_averaged_data": {"B1": 4.839988231922791, "B5": 7.438242682551267, "lval": 7.511350213194854, "sasa": 735.7307939109611, "vbur": 117.61833456173403, "vtot": 552.7062203522203, "alpha": 389.9062061149811, "p_int": 21.330292919266483, "B1_std": 0.08032085834416133, "B5_std": 0.05227608095195078, "sasa_P": 0.47738062006654747, "pyr_val": 0.9387552665320655, "dip_norm": 0.3532178299358815, "far_vbur": 41.939046781064796, "far_vtot": 146.07145057120397, "lval_std": 0.04037995718822518, "sasa_std": 4.800718535688398, "vbur_std": 1.872519311021105, "vtot_std": 0.27724426467315183, "alpha_std": 0.005495144216405726, "near_vbur": 75.67928778066926, "near_vtot": 401.03871494560445, "ovbur_max": 22.433574912274466, "ovbur_min": 0.01257114951772498, "ovtot_max": 137.73212773975064, "ovtot_min": 0.01786346000866214, "p_int_std": 0.06846279003146459, "pyr_alpha": 16.92096184031268, "qvbur_max": 43.49409754513412, "qvbur_min": 15.633442539152128, "qvtot_max": 226.3307010273023, "qvtot_min": 66.21472762021759, "cone_angle": 263.53501987323864, "p_int_area": 612.2664096625739, "p_int_atom": 38.46554867132466, "sasa_P_std": 0.26470931095653644, "pyr_val_std": 0.002978302369124337, "sasa_volume": 1354.8654005885892, "EA_delta_SCC": 1.6191764407644074, "IP_delta_SCC": 6.592193473934739, "dip_norm_std": 0.004878251911697281, "far_vbur_std": 1.290616937722877, "far_vtot_std": 2.1452214844055946, "HOMO_LUMO_gap": 3.388244140199096, "near_vbur_std": 0.7796096809106503, "near_vtot_std": 1.0849544267266162, "ovbur_max_std": 0.026854833805917213, "ovbur_min_std": 0.08045355748362465, "ovtot_max_std": 1.6439185727795649, "ovtot_min_std": 0.11318390701559113, "pyr_alpha_std": 0.4421129810342395, "qvbur_max_std": 0.18886906469989187, "qvbur_min_std": 0.3558997322804721, "qvtot_max_std": 4.009411191647287, "qvtot_min_std": 2.1291402813196636, "sasa_volume_P": 0.48701572640669655, "cone_angle_std": 3.5068002136801306, "p_int_area_std": 2.0589366955474784, "p_int_atom_std": 0.8854003775015682, "max_delta_qvbur": 23.38623086873274, "max_delta_qvtot": 124.14473036835265, "nucleophilicity": -6.592193473934739, "p_int_atom_area": 6.194846953370876, "sasa_volume_std": 4.600692115336341, "EA_delta_SCC_std": 0.004506391676677526, "IP_delta_SCC_std": 0.022623818496941075, "HOMO_LUMO_gap_std": 0.01955304074155656, "sasa_volume_P_std": 0.27153740037757557, "max_delta_qvbur_std": 0.3356043701241829, "max_delta_qvtot_std": 4.715214176438738, "nucleophilicity_std": 0.022623818496941075, "p_int_atom_area_std": 0.4290840093619137, "p_int_times_p_int_area": 13059.706069036722, "p_int_times_p_int_area_std": 25.91743279020758, "global_electrophilicity_index": 1.6947727717277175, "p_int_atom_times_p_int_atom_area": 238.07271199617486, "global_electrophilicity_index_std": 0.004178833719486196, "p_int_atom_times_p_int_atom_area_std": 15.348059636316592}} {"max_data": {"pyr_P": "0.94386584", "pyr_alpha": "27.84816", "qpole_amp": "7.3682857", "vbur_vbur": "128.96304", "sterimol_L": "11.928248", "sterimol_B1": "4.9736238", "sterimol_B5": "9.7435665", "dipolemoment": "1.5522933", "qpoletens_xx": "4.8236895", "qpoletens_yy": "1.5235916", "qpoletens_zz": "-1.7410492", "sterimol_burL": "8.085776", "vbur_far_vbur": "50.41685", "vbur_far_vtot": "160.60733", "sterimol_burB1": "4.992347", "sterimol_burB5": "7.985502", "vbur_near_vbur": "81.02763", "vbur_near_vtot": "557.2413", "vbur_ovbur_max": "23.195854", "vbur_ovbur_min": "1.3652545", "vbur_ovtot_max": "258.17496", "vbur_ovtot_min": "1.6669873", "vbur_qvbur_max": "46.68315", "vbur_qvbur_min": "18.606688", "vbur_qvtot_max": "277.64667", "vbur_qvtot_min": "84.31832", "vbur_max_delta_qvbur": "28.002327", "vbur_max_delta_qvtot": "213.46729"}, "min_data": {"pyr_P": "0.85240304", "pyr_alpha": "16.409597", "qpole_amp": "3.190516", "vbur_vbur": "59.048943", "sterimol_L": "7.620569", "sterimol_B1": "3.9719307", "sterimol_B5": "7.0582285", "dipolemoment": "0.9130275", "qpoletens_xx": "2.4075482", "qpoletens_yy": "-0.8555572", "qpoletens_zz": "-5.3059273", "sterimol_burL": "6.9975977", "vbur_far_vbur": "2.510442", "vbur_far_vtot": "11.0288725", "sterimol_burB1": "3.876051", "sterimol_burB5": "6.4703193", "vbur_near_vbur": "57.88279", "vbur_near_vtot": "401.00854", "vbur_ovbur_max": "16.922352", "vbur_ovbur_min": "0.03506044", "vbur_ovtot_max": "152.67926", "vbur_ovtot_min": "0.10351044", "vbur_qvbur_max": "18.066835", "vbur_qvbur_min": "10.351906", "vbur_qvtot_max": "215.2768", "vbur_qvtot_min": "46.578907", "vbur_max_delta_qvbur": "4.1641684", "vbur_max_delta_qvtot": "119.442215"}, "delta_data": {"pyr_P": "0.098127455", "pyr_alpha": "10.985996", "qpole_amp": "3.0313659", "vbur_vbur": "70.62594", "sterimol_L": "4.4128084", "sterimol_B1": "1.004036", "sterimol_B5": "2.6350262", "dipolemoment": "0.59969157", "qpoletens_xx": "1.9206123", "qpoletens_yy": "1.885635", "qpoletens_zz": "2.9744987", "sterimol_burL": "1.075603", "vbur_far_vbur": "51.23843", "vbur_far_vtot": "151.62593", "sterimol_burB1": "0.9990595", "sterimol_burB5": "1.5717884", "vbur_near_vbur": "22.375797", "vbur_near_vtot": "163.1514", "vbur_ovbur_max": "6.2146964", "vbur_ovbur_min": "1.4669659", "vbur_ovtot_max": "106.34897", "vbur_ovtot_min": "1.5720472", "vbur_qvbur_max": "29.131569", "vbur_qvbur_min": "8.265432", "vbur_qvtot_max": "57.06632", "vbur_qvtot_min": "37.7777", "vbur_max_delta_qvbur": "24.595383", "vbur_max_delta_qvtot": "82.86106"}, "vburminconf_data": {"pyr_P": "0.87789315", "pyr_alpha": "24.872833", "qpole_amp": "6.322889", "vbur_vbur": "59.260387", "sterimol_L": "10.219358", "sterimol_B1": "4.545942", "sterimol_B5": "9.072502", "dipolemoment": "1.1929141", "qpoletens_xx": "3.983707", "qpoletens_yy": "0.23220111", "qpoletens_zz": "-4.95313", "sterimol_burL": "7.6523094", "vbur_far_vbur": "2.6774411", "vbur_far_vtot": "14.165229", "sterimol_burB1": "4.335813", "sterimol_burB5": "7.0558724", "vbur_near_vbur": "57.864067", "vbur_near_vtot": "556.5611", "vbur_ovbur_max": "17.64657", "vbur_ovbur_min": "0.03873839", "vbur_ovtot_max": "251.61215", "vbur_ovtot_min": "0.027750434", "vbur_qvbur_max": "18.867249", "vbur_qvbur_min": "11.828366", "vbur_qvtot_max": "256.9807", "vbur_qvtot_min": "68.32867", "vbur_max_delta_qvbur": "7.7943087", "vbur_max_delta_qvtot": "183.92087"}, "boltzmann_averaged_data": {"nbo_P": "0.7990892", "nmr_P": "299.8323", "pyr_P": "0.92475563", "fmo_mu": "-0.122588284", "vmin_r": "1.8189737", "volume": "686.8376", "Pint_dP": "4.9667134", "fmo_eta": "0.19392857", "fukui_m": "0.38267854", "fukui_p": "0.029056748", "nuesp_P": "-54.197823", "somo_ra": "0.056502085", "somo_rc": "-0.35994723", "nbo_P_ra": "0.756494", "nbo_P_rc": "1.164695", "efg_amp_P": "1.7584878", "fmo_omega": "0.03907204", "pyr_alpha": "19.161774", "qpole_amp": "5.0682383", "vbur_vbur": "107.02741", "vbur_vtot": "560.08014", "vmin_vmin": "-0.061978593", "E_solv_cds": "-11.733927", "Pint_P_int": "20.720999", "Pint_P_max": "41.46327", "Pint_P_min": "12.942873", "fmo_e_homo": "-0.2195127", "fmo_e_lumo": "-0.025610436", "nbo_lp_P_e": "-0.29945183", "sphericity": "0.7107024", "sterimol_L": "8.115603", "E_oxidation": "0.26091382", "E_reduction": "0.016252639", "sterimol_B1": "4.790711", "sterimol_B5": "7.8463907", "E_solv_total": "-18.815207", "dipolemoment": "1.0394306", "efgtens_xx_P": "-0.83038867", "efgtens_yy_P": "-0.60028887", "efgtens_zz_P": "1.4384241", "nbo_bd_e_avg": "-0.44785842", "nbo_bd_e_max": "-0.43799347", "nbo_lp_P_occ": "1.9278481", "qpoletens_xx": "3.6214278", "qpoletens_yy": "-0.6164743", "qpoletens_zz": "-3.0102289", "surface_area": "532.31354", "E_solv_elstat": "-7.001741", "nbo_bds_e_avg": "0.2144896", "nbo_bds_e_min": "0.20527166", "nmrtens_sxx_P": "279.64432", "nmrtens_syy_P": "304.20038", "nmrtens_szz_P": "328.3689", "spindens_P_ra": "0.029266026", "spindens_P_rc": "0.49068052", "sterimol_burL": "7.309469", "vbur_far_vbur": "35.809605", "vbur_far_vtot": "142.88206", "nbo_bd_occ_avg": "1.9534608", "nbo_bd_occ_min": "1.9479756", "sterimol_burB1": "4.703802", "sterimol_burB5": "7.2366314", "vbur_near_vbur": "70.7083", "vbur_near_vtot": "418.04752", "vbur_ovbur_max": "22.165262", "vbur_ovbur_min": "0.14894783", "vbur_ovtot_max": "160.87643", "vbur_ovtot_min": "0.17013657", "vbur_qvbur_max": "41.962517", "vbur_qvbur_min": "14.081911", "vbur_qvtot_max": "252.34929", "vbur_qvtot_min": "66.352684", "nbo_bds_occ_avg": "0.034851532", "nbo_bds_occ_max": "0.03944368", "nbo_lp_P_percent_s": "50.995316", "vbur_max_delta_qvbur": "23.085001", "vbur_max_delta_qvtot": "149.64801", "vbur_ratio_vbur_vtot": "0.18492769"}} CC(C)c1cc(C(C)C)c(-c2ccccc2P(C2CCCCC2)C2CCCCC2)c(C(C)C)c1 {"max_data": {"B1": 5.036984631753927, "B5": 9.145551415365654, "lval": 12.204495103874578, "sasa": 752.1120884639698, "vbur": 79.78475670475285, "vtot": 555.6202649523045, "alpha": 389.927192, "p_int": 21.751361404382454, "sasa_P": 10.699969657088173, "pyr_val": 0.9539223755130399, "dip_norm": 0.8867976093788255, "far_vbur": 11.562670365392965, "far_vtot": 107.47367097604314, "near_vbur": 68.22208633935989, "near_vtot": 551.7439875371042, "ovbur_max": 20.945684119567698, "ovbur_min": 0.0, "ovtot_max": 244.76714148822745, "ovtot_min": 0.0, "pyr_alpha": 28.813183317766253, "qvbur_max": 31.750719834002453, "qvbur_min": 15.176004854578263, "qvtot_max": 279.33779666613816, "qvtot_min": 86.82733377161927, "cone_angle": 241.34444368735385, "p_int_area": 628.8752001967702, "p_int_atom": 37.148502510261935, "sasa_volume": 1368.8842141762113, "EA_delta_SCC": 1.7493, "IP_delta_SCC": 6.7192, "HOMO_LUMO_gap": 3.305085777123, "sasa_volume_P": 14.264265328961688, "max_delta_qvbur": 17.588779819937482, "max_delta_qvtot": 185.0964859152918, "nucleophilicity": -6.4043, "p_int_atom_area": 13.39813566939466, "p_int_times_p_int_area": 13482.365220723386, "global_electrophilicity_index": 1.7896, "p_int_atom_times_p_int_atom_area": 495.2763409841765}, "min_data": {"B1": 4.495263416666189, "B5": 6.996114504567355, "lval": 8.07033143207768, "sasa": 689.3621643709089, "vbur": 54.794469140839034, "vtot": 550.3468992934354, "alpha": 389.814901, "p_int": 21.190911950862986, "sasa_P": 4.609986927025836, "pyr_val": 0.8301916369082325, "dip_norm": 0.4928346578721915, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.79446914083903, "near_vtot": 438.7959079883277, "ovbur_max": 15.432435044133351, "ovbur_min": 0.0, "ovtot_max": 170.6819500887351, "ovtot_min": 0.0, "pyr_alpha": 14.704586100940661, "qvbur_max": 15.432435044133351, "qvbur_min": 10.70013245507131, "qvtot_max": 199.90220697388617, "qvtot_min": 59.26690892789408, "cone_angle": 166.5523113566902, "p_int_area": 580.7809638266573, "p_int_atom": 28.76147323875073, "sasa_volume": 1303.0432809383196, "EA_delta_SCC": 1.5981, "IP_delta_SCC": 6.4043, "HOMO_LUMO_gap": 3.084674575339, "sasa_volume_P": 3.7410047784720417, "max_delta_qvbur": 2.2379361997534772, "max_delta_qvtot": 116.83100769471552, "nucleophilicity": -6.7192, "p_int_atom_area": 10.998469579353827, "p_int_times_p_int_area": 12606.248600234707, "global_electrophilicity_index": 1.681, "p_int_atom_times_p_int_atom_area": 320.8086619592206}, "boltzmann_averaged_data": {"B1": 4.921063571014288, "B5": 7.643067565535495, "lval": 8.437324098673963, "sasa": 744.3388803520456, "vbur": 76.60051855904861, "vtot": 553.7588581411835, "alpha": 389.90038428054845, "p_int": 21.36713555530308, "B1_std": 0.057195316109269305, "B5_std": 0.2850128582418545, "sasa_P": 5.555070599553626, "pyr_val": 0.945122846087092, "dip_norm": 0.5133228556183695, "far_vbur": 10.241703347815903, "far_vtot": 99.98633891932238, "lval_std": 0.4453810128595051, "sasa_std": 12.18131161307795, "vbur_std": 4.855602308090991, "vtot_std": 0.6969470333326983, "alpha_std": 0.018319120959199207, "near_vbur": 66.35881521123271, "near_vtot": 449.80864427001785, "ovbur_max": 20.2426452103972, "ovbur_min": 0.0, "ovtot_max": 176.1291675105148, "ovtot_min": 0.0, "p_int_std": 0.06777746867992053, "pyr_alpha": 16.004830678285657, "qvbur_max": 29.32633371100298, "qvbur_min": 14.7952710638954, "qvtot_max": 269.56574045399805, "qvtot_min": 65.22408055996867, "cone_angle": 232.0508805445817, "p_int_area": 617.477888957978, "p_int_atom": 35.76943563807971, "sasa_P_std": 0.782968555036792, "pyr_val_std": 0.012479890917151716, "sasa_volume": 1359.8706152924697, "EA_delta_SCC": 1.6342517305519164, "IP_delta_SCC": 6.669633344000319, "dip_norm_std": 0.0768830931396878, "far_vbur_std": 2.6840657306955107, "far_vtot_std": 23.057547423303454, "HOMO_LUMO_gap": 3.2691594481983457, "near_vbur_std": 2.2388360403060634, "near_vtot_std": 23.369835802160605, "ovbur_max_std": 1.0984815356551965, "ovbur_min_std": 0.0, "ovtot_max_std": 12.878160137292122, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.7195391900033188, "qvbur_max_std": 3.3970085325021517, "qvbur_min_std": 0.6617325366859247, "qvtot_max_std": 8.800812765813259, "qvtot_min_std": 4.996290390792298, "sasa_volume_P": 4.749939732951761, "cone_angle_std": 14.966680032416846, "p_int_area_std": 7.497697007950558, "p_int_atom_std": 1.7152537024614323, "max_delta_qvbur": 13.92723372661675, "max_delta_qvtot": 169.39377866274873, "nucleophilicity": -6.669633344000319, "p_int_atom_area": 12.30922851744143, "sasa_volume_std": 12.345433485979497, "EA_delta_SCC_std": 0.018193223373871442, "IP_delta_SCC_std": 0.04562638828277154, "HOMO_LUMO_gap_std": 0.03906393006290691, "sasa_volume_P_std": 1.7489388514828639, "max_delta_qvbur_std": 2.9122575337609846, "max_delta_qvtot_std": 5.915205509198526, "nucleophilicity_std": 0.04562638828277154, "p_int_atom_area_std": 0.27915952477543227, "p_int_times_p_int_area": 13193.293420533228, "p_int_times_p_int_area_std": 127.53583017454338, "global_electrophilicity_index": 1.7118962458873765, "p_int_atom_times_p_int_atom_area": 440.6716804979147, "global_electrophilicity_index_std": 0.011176868898712767, "p_int_atom_times_p_int_atom_area_std": 28.552816945228287}} \\x9718546d385f02428a9cd7528c184886e3a410054a024377be26d09a9b21fa61829018d044d06a04995e82883885480041d1979a5700db3fe8c01b26029166d02a83c2717903673a569190461b00c6223515608dc8e0a0c23132397859314cd710036ceb1a21296721a4c3ba03cca801ba1e297b844490b588c4aead982c5000 \\x16000080026081000100400000000002100000000090000040004800002000000010040800300000000022001108000400000040300000000000000100004408 pc3 (11.802305221557615, 0.0749280601739883, 7.693933486938477, -2.5579674243927) (8.401494026184082, 4.721144199371338) -2 CN(C)c1cccc(N(C)C)c1-c1ccccc1P(C1CCCCC1)C1CCCCC1 436.6239929199219 {"max_data": {"pyr_P": 0.9523341096059847, "pyr_alpha": 25.18377186037728, "qpole_amp": 7.87698824454159, "vbur_vbur": 124.74818585389498, "vbur_vtot": 498.22308102531144, "sterimol_L": 10.433514198408652, "sterimol_B1": 5.121416565394504, "sterimol_B5": 8.142740155716053, "dipolemoment": 2.1631604716663064, "qpoletens_xx": 5.008775914561009, "qpoletens_yy": 1.9857838824776883, "qpoletens_zz": -1.771030701071623, "sterimol_burL": 8.216943295776964, "vbur_far_vbur": 47.35228732696621, "vbur_far_vtot": 103.04365717451279, "sterimol_burB1": 4.932659155546707, "sterimol_burB5": 7.850955222485807, "vbur_near_vbur": 80.30874298965794, "vbur_near_vtot": 494.6148030605627, "vbur_ovbur_max": 22.449297503777064, "vbur_ovbur_min": 0.5982574623630489, "vbur_ovtot_max": 195.12114545064603, "vbur_ovtot_min": 0.8081656639252763, "vbur_qvbur_max": 44.47709543179835, "vbur_qvbur_min": 17.443597827431695, "vbur_qvtot_max": 218.6120078050155, "vbur_qvtot_min": 84.57074917044173, "vbur_max_delta_qvbur": 29.083470727149123, "vbur_max_delta_qvtot": 150.60170252433406}, "min_data": {"pyr_P": 0.8733973089321282, "pyr_alpha": 14.899066997007688, "qpole_amp": 2.271749807907432, "vbur_vbur": 58.53823760663896, "vbur_vtot": 493.8865472948257, "sterimol_L": 7.382425647723146, "sterimol_B1": 3.9688638652211994, "sterimol_B5": 6.748365214941985, "dipolemoment": 0.6894290273783864, "qpoletens_xx": 1.3630206246009702, "qpoletens_yy": -0.38288507032371255, "qpoletens_zz": -5.99832480296811, "sterimol_burL": 6.908743500195293, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.9688638652211994, "sterimol_burB5": 6.339062961720947, "vbur_near_vbur": 58.53823760663895, "vbur_near_vtot": 393.0078189370529, "vbur_ovbur_max": 16.042085590427348, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 128.940178858405, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.042085590427348, "vbur_qvbur_min": 9.967471357202545, "vbur_qvtot_max": 171.57965133512153, "vbur_qvtot_min": 44.32757624838362, "vbur_max_delta_qvbur": 2.2466031978248733, "vbur_max_delta_qvtot": 85.37769192630627}, "delta_data": {"pyr_P": 0.07893680067385656, "pyr_alpha": 10.284704863369592, "qpole_amp": 5.605238436634158, "vbur_vbur": 66.20994824725602, "vbur_vtot": 4.336533730485769, "sterimol_L": 3.051088550685506, "sterimol_B1": 1.1525527001733042, "sterimol_B5": 1.3943749407740684, "dipolemoment": 1.4737314442879201, "qpoletens_xx": 3.645755289960039, "qpoletens_yy": 2.368668952801401, "qpoletens_zz": 4.2272941018964865, "sterimol_burL": 1.3081997955816718, "vbur_far_vbur": 47.35228732696621, "vbur_far_vtot": 103.04365717451279, "sterimol_burB1": 0.9637952903255078, "sterimol_burB5": 1.51189226076486, "vbur_near_vbur": 21.770505383018993, "vbur_near_vtot": 101.60698412350979, "vbur_ovbur_max": 6.407211913349716, "vbur_ovbur_min": 0.5982574623630489, "vbur_ovtot_max": 66.18096659224102, "vbur_ovtot_min": 0.8081656639252763, "vbur_qvbur_max": 28.435009841371, "vbur_qvbur_min": 7.4761264702291506, "vbur_qvtot_max": 47.03235646989398, "vbur_qvtot_min": 40.24317292205811, "vbur_max_delta_qvbur": 26.836867529324252, "vbur_max_delta_qvtot": 65.22401059802779}, "vburminconf_data": {"pyr_P": 0.888127400599082, "pyr_alpha": 23.42102646593968, "qpole_amp": 7.87698824454159, "vbur_vbur": 58.53823760663896, "vbur_vtot": 496.0341387521723, "sterimol_L": 9.246176486089256, "sterimol_B1": 4.992833318300304, "sterimol_B5": 7.906784874444966, "dipolemoment": 1.7882719489956462, "qpoletens_xx": 5.008775914561009, "qpoletens_yy": 0.9895488884071009, "qpoletens_zz": -5.99832480296811, "sterimol_burL": 7.992697995554943, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.779160801060415, "sterimol_burB5": 6.407768562997743, "vbur_near_vbur": 58.53823760663895, "vbur_near_vtot": 494.6148030605627, "vbur_ovbur_max": 16.042085590427348, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 182.58261230854242, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.042085590427348, "vbur_qvbur_min": 13.084267227555493, "vbur_qvtot_max": 182.58261230854242, "vbur_qvtot_min": 83.52264774637885, "vbur_max_delta_qvbur": 2.2466031978248733, "vbur_max_delta_qvtot": 96.84355993826533}, "boltzmann_averaged_data": {"nbo_P": 0.8163016444126625, "nmr_P": 299.4342065701567, "pyr_P": 0.9310818791352482, "fmo_mu": -0.11479392657997686, "vmin_r": 1.7841574379257379, "volume": 603.0181261544342, "Pint_dP": 4.681706194840134, "fmo_eta": 0.18303306063952265, "fukui_m": 0.16209979044812445, "fukui_p": 0.014265155451493101, "nuesp_P": -54.20285079005798, "somo_ra": 0.061657505778606195, "somo_rc": -0.34526436984038966, "nbo_P_ra": 0.8020364889611692, "nbo_P_rc": 0.9784014348607869, "efg_amp_P": 1.7764744992488628, "fmo_omega": 0.036032636558233674, "pyr_alpha": 18.101491043169705, "qpole_amp": 4.779103057404353, "vbur_vbur": 108.68817801779517, "vbur_vtot": 497.1065156234982, "vmin_vmin": -0.06366998784959914, "E_solv_cds": -10.649540944280421, "Pint_P_int": 20.631937643596224, "Pint_P_max": 40.2051705472903, "Pint_P_min": 13.068404846543086, "fmo_e_homo": -0.2063104568997382, "fmo_e_lumo": -0.02327739626021556, "nbo_lp_P_e": -0.2951047578579425, "sphericity": 0.7413251421359383, "sterimol_L": 7.735165108555009, "E_oxidation": 0.24931351272823457, "E_reduction": 0.019364583674199798, "sterimol_B1": 4.810242150912593, "sterimol_B5": 7.731732298654123, "E_solv_total": -17.914914688044213, "dipolemoment": 0.8171518862534434, "efgtens_xx_P": -0.8379368455136418, "efgtens_yy_P": -0.606367194663481, "efgtens_zz_P": 1.4443038714270195, "nbo_bd_e_avg": -0.4413542653332738, "nbo_bd_e_max": -0.4313695896717246, "nbo_lp_P_occ": 1.9306693129949528, "qpoletens_xx": 3.341663334108672, "qpoletens_yy": 0.04928951168801672, "qpoletens_zz": -3.3909528457966887, "surface_area": 465.64495123611204, "E_solv_elstat": -7.265373743763795, "nbo_bds_e_avg": 0.21923049725319446, "nbo_bds_e_min": 0.21133821996349955, "nmrtens_sxx_P": 274.43423779897694, "nmrtens_syy_P": 295.1306144863258, "nmrtens_szz_P": 328.73784177745495, "spindens_P_ra": 0.014648549087797112, "spindens_P_rc": 0.2406605647362303, "sterimol_burL": 7.2854629662839985, "vbur_far_vbur": 37.63358043434833, "vbur_far_vtot": 79.38788576114041, "nbo_bd_occ_avg": 1.9528164857380645, "nbo_bd_occ_min": 1.9470965388189958, "sterimol_burB1": 4.7293798492573265, "sterimol_burB5": 6.572513966948672, "vbur_near_vbur": 71.05459758344684, "vbur_near_vtot": 416.0229480336005, "vbur_ovbur_max": 22.364939001817707, "vbur_ovbur_min": 0.004209073489382633, "vbur_ovtot_max": 152.14357079546375, "vbur_ovtot_min": 0.0038281592460429376, "vbur_qvbur_max": 42.56982910171408, "vbur_qvbur_min": 13.8013991590119, "vbur_qvtot_max": 201.79829134770247, "vbur_qvtot_min": 65.84758050567426, "nbo_bds_occ_avg": 0.036091677145425945, "nbo_bds_occ_max": 0.04169420595229315, "nbo_lp_P_percent_s": 52.004590107221695, "vbur_max_delta_qvbur": 24.583497006590555, "vbur_max_delta_qvtot": 103.49493260954219, "vbur_ratio_vbur_vtot": 0.21864541383440025}} {"max_data": {"B1": 4.972113057049377, "B5": 8.107695799689585, "lval": 8.507538154521091, "sasa": 655.6823959265986, "vbur": 137.02696856407226, "vtot": 491.259979625272, "alpha": 350.856698, "p_int": 22.03140717396824, "sasa_P": 3.8299891389390384, "pyr_val": 0.9657783082791204, "dip_norm": 0.7976051654797629, "far_vbur": 53.88530755968919, "far_vtot": 100.96626176985876, "near_vbur": 85.14647884999556, "near_vtot": 446.93007985838875, "ovbur_max": 22.449297503777064, "ovbur_min": 3.193721451731524, "ovtot_max": 185.07291983740373, "ovtot_min": 2.4323126904161083, "pyr_alpha": 22.444744550663128, "qvbur_max": 44.245863615959365, "qvbur_min": 22.076308137151486, "qvtot_max": 212.73562597812133, "qvtot_min": 81.25489222079041, "cone_angle": 320.0452295170182, "p_int_area": 537.7691170089054, "p_int_atom": 48.0732148454366, "sasa_volume": 1191.7861412795035, "EA_delta_SCC": 1.7134, "IP_delta_SCC": 6.3068, "HOMO_LUMO_gap": 3.14373556296, "sasa_volume_P": 4.329284995974849, "max_delta_qvbur": 26.94848173869812, "max_delta_qvtot": 137.94554348698045, "nucleophilicity": -5.8206, "p_int_atom_area": 9.198720011823198, "p_int_times_p_int_area": 11646.928359205984, "global_electrophilicity_index": 1.7322, "p_int_atom_times_p_int_atom_area": 326.5733325825212}, "min_data": {"B1": 3.9283720691583945, "B5": 6.727396703168962, "lval": 7.011536114351536, "sasa": 616.3921183368105, "vbur": 93.21237390327371, "vtot": 485.9316856233785, "alpha": 350.689938, "p_int": 21.191840768472744, "sasa_P": 0.0, "pyr_val": 0.8961988478097249, "dip_norm": 0.270492144063372, "far_vbur": 19.022457697904553, "far_vtot": 25.656546775169936, "near_vbur": 70.98453883593059, "near_vtot": 378.706148474218, "ovbur_max": 22.32108240899952, "ovbur_min": 0.0, "ovtot_max": 127.64509366923463, "ovtot_min": 0.0, "pyr_alpha": 12.545344360745611, "qvbur_max": 36.14500080956006, "qvbur_min": 12.250369510108875, "qvtot_max": 175.07309012971012, "qvtot_min": 46.85865926837554, "cone_angle": 231.97466122265539, "p_int_area": 510.5716176505438, "p_int_atom": 32.88885323582376, "sasa_volume": 1153.3644383528297, "EA_delta_SCC": 1.4976, "IP_delta_SCC": 5.8206, "HOMO_LUMO_gap": 2.742126494089, "sasa_volume_P": 0.0, "max_delta_qvbur": 18.07832836363355, "max_delta_qvtot": 77.46706968443999, "nucleophilicity": -6.3068, "p_int_atom_area": 1.4997913062755228, "p_int_times_p_int_area": 11008.712136606731, "global_electrophilicity_index": 1.5696, "p_int_atom_times_p_int_atom_area": 66.03445077630288}, "boltzmann_averaged_data": {"B1": 4.43204074868659, "B5": 7.9402118447095065, "lval": 7.486561008978807, "sasa": 644.0834454351177, "vbur": 120.69309087344139, "vtot": 488.33618138505017, "alpha": 350.79658444995243, "p_int": 21.442051055829975, "B1_std": 0.15920396669538134, "B5_std": 0.04868828669480838, "sasa_P": 0.1560629606077254, "pyr_val": 0.9457608046410209, "dip_norm": 0.37800998186882306, "far_vbur": 43.614029765388494, "far_vtot": 83.21756870158995, "lval_std": 0.053609562697040446, "sasa_std": 4.548245876140727, "vbur_std": 2.7011195995890076, "vtot_std": 0.4233761802909274, "alpha_std": 0.014429420757586506, "near_vbur": 77.0790611080529, "near_vtot": 403.7138843824345, "ovbur_max": 22.448642874707186, "ovbur_min": 0.10816638012239357, "ovtot_max": 149.70189562467223, "ovtot_min": 0.09485866611881728, "p_int_std": 0.07136296735624913, "pyr_alpha": 15.983765360071617, "qvbur_max": 43.47766013253374, "qvbur_min": 15.091563532813835, "qvtot_max": 199.4424964496368, "qvtot_min": 55.92245830570874, "cone_angle": 282.78954420503646, "p_int_area": 529.1208113540238, "p_int_atom": 38.95604752933872, "sasa_P_std": 0.11867469103134594, "pyr_val_std": 0.00441498888813975, "sasa_volume": 1177.7891062339113, "EA_delta_SCC": 1.5476093564678235, "IP_delta_SCC": 6.011283104155209, "dip_norm_std": 0.02073296524002384, "far_vbur_std": 1.5695463364164124, "far_vtot_std": 2.9994919894252097, "HOMO_LUMO_gap": 2.919414496167331, "near_vbur_std": 1.6853787936579974, "near_vtot_std": 3.922627888239951, "ovbur_max_std": 0.004119870527075004, "ovbur_min_std": 0.3871605970712831, "ovtot_max_std": 2.3072831018452726, "ovtot_min_std": 0.41672330581719225, "pyr_alpha_std": 0.7268552626864293, "qvbur_max_std": 0.22539805459147663, "qvbur_min_std": 1.4449144247351673, "qvtot_max_std": 6.02513916344268, "qvtot_min_std": 5.693449669396587, "sasa_volume_P": 0.19841530063524995, "cone_angle_std": 8.291116203291338, "p_int_area_std": 3.689005978869871, "p_int_atom_std": 1.5938428827810684, "max_delta_qvbur": 23.108084913658267, "max_delta_qvtot": 115.73832553470174, "nucleophilicity": -6.011283104155209, "p_int_atom_area": 4.4401411989231345, "sasa_volume_std": 5.169382368119706, "EA_delta_SCC_std": 0.006740486256097209, "IP_delta_SCC_std": 0.022038586547452384, "HOMO_LUMO_gap_std": 0.012139241155984228, "sasa_volume_P_std": 0.14087840739763893, "max_delta_qvbur_std": 0.9263697101813783, "max_delta_qvtot_std": 10.158679207996991, "nucleophilicity_std": 0.022038586547452384, "p_int_atom_area_std": 0.6050354615095284, "p_int_times_p_int_area": 11345.431628164875, "p_int_times_p_int_area_std": 87.37820714415466, "global_electrophilicity_index": 1.6001000110005503, "p_int_atom_times_p_int_atom_area": 172.31732592274787, "global_electrophilicity_index_std": 0.004502095372492229, "p_int_atom_times_p_int_atom_area_std": 21.417182258527703}} {"max_data": {"pyr_P": "0.9476384", "pyr_alpha": "28.845337", "qpole_amp": "8.832638", "vbur_vbur": "131.74208", "sterimol_L": "10.617377", "sterimol_B1": "4.990736", "sterimol_B5": "8.355009", "dipolemoment": "1.9904084", "qpoletens_xx": "6.060776", "qpoletens_yy": "1.2961137", "qpoletens_zz": "-2.5058913", "sterimol_burL": "8.214392", "vbur_far_vbur": "52.260258", "vbur_far_vtot": "107.9203", "sterimol_burB1": "4.9582973", "sterimol_burB5": "7.874493", "vbur_near_vbur": "83.73452", "vbur_near_vtot": "501.71722", "vbur_ovbur_max": "23.333612", "vbur_ovbur_min": "1.4031947", "vbur_ovtot_max": "206.21666", "vbur_ovtot_min": "1.8141588", "vbur_qvbur_max": "49.209675", "vbur_qvbur_min": "18.680286", "vbur_qvtot_max": "225.33865", "vbur_qvtot_min": "80.89558", "vbur_max_delta_qvbur": "30.710491", "vbur_max_delta_qvtot": "166.15218"}, "min_data": {"pyr_P": "0.8479453", "pyr_alpha": "15.556366", "qpole_amp": "3.2171357", "vbur_vbur": "63.318424", "sterimol_L": "7.376716", "sterimol_B1": "3.9954927", "sterimol_B5": "6.820079", "dipolemoment": "0.67817754", "qpoletens_xx": "2.2126865", "qpoletens_yy": "-1.2419341", "qpoletens_zz": "-6.1167", "sterimol_burL": "7.005879", "vbur_far_vbur": "7.629821", "vbur_far_vtot": "9.720081", "sterimol_burB1": "3.8818226", "sterimol_burB5": "6.365689", "vbur_near_vbur": "60.867355", "vbur_near_vtot": "388.36633", "vbur_ovbur_max": "17.477419", "vbur_ovbur_min": "0.045715623", "vbur_ovtot_max": "132.71246", "vbur_ovtot_min": "-0.008613332", "vbur_qvbur_max": "19.560354", "vbur_qvbur_min": "10.470436", "vbur_qvtot_max": "170.04022", "vbur_qvtot_min": "47.1905", "vbur_max_delta_qvbur": "5.5443506", "vbur_max_delta_qvtot": "80.68359"}, "delta_data": {"pyr_P": "0.10974773", "pyr_alpha": "12.626318", "qpole_amp": "4.1644573", "vbur_vbur": "72.74128", "sterimol_L": "3.0298018", "sterimol_B1": "0.976569", "sterimol_B5": "1.500792", "dipolemoment": "1.3348252", "qpoletens_xx": "3.2521806", "qpoletens_yy": "2.9777315", "qpoletens_zz": "3.37428", "sterimol_burL": "1.2974995", "vbur_far_vbur": "54.043903", "vbur_far_vtot": "114.92667", "sterimol_burB1": "0.99828684", "sterimol_burB5": "1.4369739", "vbur_near_vbur": "22.727299", "vbur_near_vtot": "125.779526", "vbur_ovbur_max": "4.795232", "vbur_ovbur_min": "1.3469067", "vbur_ovtot_max": "78.47094", "vbur_ovtot_min": "1.8324318", "vbur_qvbur_max": "31.292683", "vbur_qvbur_min": "7.7930336", "vbur_qvtot_max": "59.87277", "vbur_qvtot_min": "33.560474", "vbur_max_delta_qvbur": "25.951738", "vbur_max_delta_qvtot": "77.50806"}, "vburminconf_data": {"pyr_P": "0.8562234", "pyr_alpha": "26.786575", "qpole_amp": "6.923571", "vbur_vbur": "61.382236", "sterimol_L": "9.688408", "sterimol_B1": "4.6064267", "sterimol_B5": "7.6381264", "dipolemoment": "1.491536", "qpoletens_xx": "4.0611014", "qpoletens_yy": "0.8228186", "qpoletens_zz": "-5.077145", "sterimol_burL": "7.6830225", "vbur_far_vbur": "1.5200105", "vbur_far_vtot": "7.922773", "sterimol_burB1": "4.5590043", "sterimol_burB5": "6.8239036", "vbur_near_vbur": "61.22008", "vbur_near_vtot": "501.2708", "vbur_ovbur_max": "18.109856", "vbur_ovbur_min": "-0.008158971", "vbur_ovtot_max": "193.81187", "vbur_ovtot_min": "0.091908626", "vbur_qvbur_max": "19.809755", "vbur_qvbur_min": "11.902079", "vbur_qvtot_max": "195.76942", "vbur_qvtot_min": "65.66583", "vbur_max_delta_qvbur": "10.292713", "vbur_max_delta_qvtot": "120.74998"}, "boltzmann_averaged_data": {"nbo_P": "0.80902", "nmr_P": "292.98807", "pyr_P": "0.92774737", "fmo_mu": "-0.112357825", "vmin_r": "1.7978694", "volume": "601.7534", "Pint_dP": "4.6032567", "fmo_eta": "0.17970698", "fukui_m": "0.13789006", "fukui_p": "0.01708752", "nuesp_P": "-54.20353", "somo_ra": "0.063181914", "somo_rc": "-0.33525026", "nbo_P_ra": "0.78338337", "nbo_P_rc": "0.9682019", "efg_amp_P": "1.7777013", "fmo_omega": "0.03595811", "pyr_alpha": "18.382929", "qpole_amp": "5.1731343", "vbur_vbur": "110.90373", "vbur_vtot": "495.86755", "vmin_vmin": "-0.066807605", "E_solv_cds": "-10.68583", "Pint_P_int": "20.532057", "Pint_P_max": "39.446278", "Pint_P_min": "13.117746", "fmo_e_homo": "-0.20162009", "fmo_e_lumo": "-0.020971615", "nbo_lp_P_e": "-0.2935199", "sphericity": "0.7395369", "sterimol_L": "7.789268", "E_oxidation": "0.24334218", "E_reduction": "0.020950167", "sterimol_B1": "4.7145834", "sterimol_B5": "7.4419146", "E_solv_total": "-17.917904", "dipolemoment": "0.6679285", "efgtens_xx_P": "-0.8524622", "efgtens_yy_P": "-0.59679335", "efgtens_zz_P": "1.4533845", "nbo_bd_e_avg": "-0.44145355", "nbo_bd_e_max": "-0.42872936", "nbo_lp_P_occ": "1.9316095", "qpoletens_xx": "3.4219158", "qpoletens_yy": "-0.75103045", "qpoletens_zz": "-3.38092", "surface_area": "467.28958", "E_solv_elstat": "-7.1145105", "nbo_bds_e_avg": "0.22224976", "nbo_bds_e_min": "0.21041629", "nmrtens_sxx_P": "269.92368", "nmrtens_syy_P": "295.8015", "nmrtens_szz_P": "329.53845", "spindens_P_ra": "0.016557794", "spindens_P_rc": "0.20598991", "sterimol_burL": "7.294415", "vbur_far_vbur": "39.28362", "vbur_far_vtot": "100.53877", "nbo_bd_occ_avg": "1.9514107", "nbo_bd_occ_min": "1.9449432", "sterimol_burB1": "4.5929937", "sterimol_burB5": "7.061991", "vbur_near_vbur": "73.46314", "vbur_near_vtot": "402.96378", "vbur_ovbur_max": "23.189081", "vbur_ovbur_min": "0.383124", "vbur_ovtot_max": "139.6089", "vbur_ovtot_min": "0.49913734", "vbur_qvbur_max": "45.436413", "vbur_qvbur_min": "13.731567", "vbur_qvtot_max": "207.35204", "vbur_qvtot_min": "63.7032", "nbo_bds_occ_avg": "0.037672367", "nbo_bds_occ_max": "0.04436038", "nbo_lp_P_percent_s": "51.87781", "vbur_max_delta_qvbur": "25.843712", "vbur_max_delta_qvtot": "117.03467", "vbur_ratio_vbur_vtot": "0.22955759"}} CN(C)c1cccc(N(C)C)c1-c1ccccc1P(C1CCCCC1)C1CCCCC1 {"max_data": {"B1": 5.00803881452015, "B5": 7.860929020090554, "lval": 10.392002347336025, "sasa": 662.4122230895554, "vbur": 77.47688499875709, "vtot": 491.71606858870695, "alpha": 350.730989, "p_int": 21.664871750205748, "sasa_P": 9.039974364493187, "pyr_val": 0.9485988622820901, "dip_norm": 0.8675978331001064, "far_vbur": 9.581164355194572, "far_vtot": 65.47235134298697, "near_vbur": 68.65335529452071, "near_vtot": 489.4379166457016, "ovbur_max": 20.992307790395895, "ovbur_min": 0.0, "ovtot_max": 183.33383027540145, "ovtot_min": 0.0, "pyr_alpha": 26.108805824336464, "qvbur_max": 29.990676260238, "qvbur_min": 15.397467291012202, "qvtot_max": 212.98198447150168, "qvtot_min": 86.1806795944326, "cone_angle": 214.45996446650474, "p_int_area": 546.4673955168133, "p_int_atom": 35.54208846754876, "sasa_volume": 1199.4493600848098, "EA_delta_SCC": 1.7032, "IP_delta_SCC": 6.2716, "HOMO_LUMO_gap": 3.061915477525, "sasa_volume_P": 11.30600762810002, "max_delta_qvbur": 15.024477924386623, "max_delta_qvtot": 122.57419504607302, "nucleophilicity": -5.971, "p_int_atom_area": 12.498260885629342, "p_int_times_p_int_area": 11839.14603954072, "global_electrophilicity_index": 1.7292, "p_int_atom_times_p_int_atom_area": 440.6605797348422}, "min_data": {"B1": 4.381375339991132, "B5": 6.781799370568518, "lval": 7.748925749362933, "sasa": 619.4020080562079, "vbur": 56.647760056259884, "vtot": 487.94496620872303, "alpha": 350.569043, "p_int": 21.210440444848032, "sasa_P": 4.799986388226463, "pyr_val": 0.8650946958468879, "dip_norm": 0.561635112862435, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 56.647760056259884, "near_vtot": 420.16198007416443, "ovbur_max": 15.350843620184005, "ovbur_min": 0.0, "ovtot_max": 149.95627759088094, "ovtot_min": 0.0, "pyr_alpha": 15.395017674333488, "qvbur_max": 15.350843620184005, "qvbur_min": 12.075530744503135, "qvtot_max": 170.35428495968628, "qvtot_min": 53.08017373026753, "cone_angle": 168.93112607791966, "p_int_area": 512.3732961628558, "p_int_atom": 28.97987244657728, "sasa_volume": 1151.4780840778058, "EA_delta_SCC": 1.5234, "IP_delta_SCC": 5.971, "HOMO_LUMO_gap": 2.794094398247, "sasa_volume_P": 4.387609581527826, "max_delta_qvbur": 2.1213770226829816, "max_delta_qvtot": 83.83394664954653, "nucleophilicity": -6.2716, "p_int_atom_area": 9.89862262141844, "p_int_times_p_int_area": 11027.107008947254, "global_electrophilicity_index": 1.5838, "p_int_atom_times_p_int_atom_area": 320.5666909493463}, "boltzmann_averaged_data": {"B1": 4.988654939082251, "B5": 7.41018962232177, "lval": 7.976982588870035, "sasa": 654.430250950307, "vbur": 76.2351516994849, "vtot": 490.731268871435, "alpha": 350.6592948662487, "p_int": 21.399290168859, "B1_std": 0.049522001242337056, "B5_std": 0.05457189035332947, "sasa_P": 5.2781917142014, "pyr_val": 0.9198855693410534, "dip_norm": 0.6778261522148803, "far_vbur": 8.848938110534139, "far_vtot": 54.13538650466558, "lval_std": 0.19605253743990209, "sasa_std": 4.723726499895032, "vbur_std": 2.922479995005786, "vtot_std": 0.40571123973841056, "alpha_std": 0.005578005368910614, "near_vbur": 67.38621358895075, "near_vtot": 428.9770298721967, "ovbur_max": 20.723359835960025, "ovbur_min": 0.0, "ovtot_max": 150.8222428567462, "ovtot_min": 0.0, "p_int_std": 0.02050136970777682, "pyr_alpha": 19.575035112011417, "qvbur_max": 28.764897157869278, "qvbur_min": 14.913311644690626, "qvtot_max": 202.07933272030348, "qvtot_min": 69.59799130076857, "cone_angle": 209.86667051167703, "p_int_area": 536.2807551890683, "p_int_atom": 33.47684008652136, "sasa_P_std": 0.5053104513723895, "pyr_val_std": 0.007217990672046221, "sasa_volume": 1188.6843800419272, "EA_delta_SCC": 1.534707830078301, "IP_delta_SCC": 5.99919168191682, "dip_norm_std": 0.015222327472787778, "far_vbur_std": 1.3593224811094227, "far_vtot_std": 8.271174210584336, "HOMO_LUMO_gap": 2.8659895758893206, "near_vbur_std": 1.5656615907567446, "near_vtot_std": 7.994190803720743, "ovbur_max_std": 0.8214145683239144, "ovbur_min_std": 0.0, "ovtot_max_std": 4.184282127244737, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.9331543616559157, "qvbur_max_std": 2.064642710042162, "qvbur_min_std": 0.3761838870390683, "qvtot_max_std": 3.959758844258952, "qvtot_min_std": 2.986941263349237, "sasa_volume_P": 4.9501664923528095, "cone_angle_std": 6.268783452527024, "p_int_area_std": 3.5842958794157154, "p_int_atom_std": 0.6592289230415773, "max_delta_qvbur": 13.712262800545991, "max_delta_qvtot": 114.49811150788005, "nucleophilicity": -5.99919168191682, "p_int_atom_area": 10.44824363944809, "sasa_volume_std": 5.139406389180926, "EA_delta_SCC_std": 0.02604086205860809, "IP_delta_SCC_std": 0.013059787838658408, "HOMO_LUMO_gap_std": 0.020555216772332907, "sasa_volume_P_std": 0.8967296532206313, "max_delta_qvbur_std": 1.7943896418305139, "max_delta_qvtot_std": 3.3888362138894257, "nucleophilicity_std": 0.013059787838658408, "p_int_atom_area_std": 0.1984074625315808, "p_int_times_p_int_area": 11475.973486006478, "p_int_times_p_int_area_std": 69.37216641922583, "global_electrophilicity_index": 1.589260060600606, "p_int_atom_times_p_int_atom_area": 349.6606899160237, "global_electrophilicity_index_std": 0.02168660524030437, "p_int_atom_times_p_int_atom_area_std": 3.7724815874723236}} \\x0708144d384e024002bc97588c584896c06410094a265377b6278086c30c7ad18090185844f04b20905ec1c80883e96049c1571a0384da13aa612a0702996ec5ee82e3707c13633846d180463b8407a8e51f408ccdf2a186b0302bf059504c1f900764573a232935296ca3b302dc8803a81e0179804810b509c4a6a8387c70c0 \\x14800080026001000100041000000000100800001190000040004800000000000000000000200000000006001100020400000040300000000000000104004008 pc3 (10.286706924438477, 1.5133830308914185, 8.2399320602417, -1.5480362176895142) (8.43511962890625, 5.078856468200684) -3 COc1cccc(OC)c1-c1ccccc1P(C1CCCCC1)C1CCCCC1 410.5379943847656 {"max_data": {"pyr_P": 0.9440144108451394, "pyr_alpha": 28.142649991201925, "qpole_amp": 9.871608204793484, "vbur_vbur": 104.669954201826, "vbur_vtot": 460.18508653365257, "sterimol_L": 10.187024714698335, "sterimol_B1": 4.950247788898732, "sterimol_B5": 7.688512337521909, "dipolemoment": 3.289474010540589, "qpoletens_xx": 7.587892388641813, "qpoletens_yy": 2.200548985850463, "qpoletens_zz": -3.5301368554710186, "sterimol_burL": 8.361404379577996, "vbur_far_vbur": 35.71032261793982, "vbur_far_vtot": 89.733055016914, "sterimol_burB1": 4.943575282653098, "sterimol_burB5": 7.287324486240854, "vbur_near_vbur": 72.84935099390049, "vbur_near_vtot": 458.05137688934155, "vbur_ovbur_max": 22.399094080361984, "vbur_ovbur_min": 0.2886696846367159, "vbur_ovtot_max": 167.7290216671405, "vbur_ovtot_min": 0.2858159396417939, "vbur_qvbur_max": 43.79307378776787, "vbur_qvbur_min": 14.302746150025687, "vbur_qvtot_max": 192.21069419828171, "vbur_qvtot_min": 75.82877301867967, "vbur_max_delta_qvbur": 28.008280742342805, "vbur_max_delta_qvtot": 129.65325562000882}, "min_data": {"pyr_P": 0.8431857443588998, "pyr_alpha": 16.18109294435389, "qpole_amp": 6.731400312745331, "vbur_vbur": 56.87420330135992, "vbur_vtot": 458.05137688934155, "sterimol_L": 7.478206573734608, "sterimol_B1": 4.111414783143641, "sterimol_B5": 6.598670834388836, "dipolemoment": 0.7166756844986836, "qpoletens_xx": 4.0238240498779865, "qpoletens_yy": -2.394301369063689, "qpoletens_zz": -7.4897426208742734, "sterimol_burL": 7.025374000772279, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.971910485541968, "sterimol_burB5": 6.349086497157646, "vbur_near_vbur": 56.87420330135991, "vbur_near_vtot": 370.45203151673854, "vbur_ovbur_max": 16.310883086628927, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 118.24306992481937, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.310883086628927, "vbur_qvbur_min": 11.308321124247001, "vbur_qvtot_max": 149.97049070607355, "vbur_qvtot_min": 53.01884480904569, "vbur_max_delta_qvbur": 2.3302755701833426, "vbur_max_delta_qvtot": 75.32114327696762}, "delta_data": {"pyr_P": 0.10082866648623956, "pyr_alpha": 11.961557046848036, "qpole_amp": 3.140207892048153, "vbur_vbur": 47.79575090046608, "vbur_vtot": 2.1337096443110113, "sterimol_L": 2.708818140963727, "sterimol_B1": 0.8388330057550908, "sterimol_B5": 1.0898415031330737, "dipolemoment": 2.5727983260419056, "qpoletens_xx": 3.5640683387638266, "qpoletens_yy": 4.594850354914152, "qpoletens_zz": 3.959605765403255, "sterimol_burL": 1.3360303788057166, "vbur_far_vbur": 35.71032261793982, "vbur_far_vtot": 89.733055016914, "sterimol_burB1": 0.9716647971111305, "sterimol_burB5": 0.9382379890832073, "vbur_near_vbur": 15.975147692540574, "vbur_near_vtot": 87.59934537260301, "vbur_ovbur_max": 6.088210993733057, "vbur_ovbur_min": 0.2886696846367159, "vbur_ovtot_max": 49.485951742321134, "vbur_ovtot_min": 0.2858159396417939, "vbur_qvbur_max": 27.48219070113894, "vbur_qvbur_min": 2.9944250257786855, "vbur_qvtot_max": 42.24020349220817, "vbur_qvtot_min": 22.80992820963398, "vbur_max_delta_qvbur": 25.678005172159462, "vbur_max_delta_qvtot": 54.3321123430412}, "vburminconf_data": {"pyr_P": 0.8786778271716287, "pyr_alpha": 24.47078479968297, "qpole_amp": 6.892837507565303, "vbur_vbur": 56.87420330135992, "vbur_vtot": 458.05137688934155, "sterimol_L": 10.139500200654608, "sterimol_B1": 4.404914911666874, "sterimol_B5": 7.211256329018726, "dipolemoment": 2.9442296796936565, "qpoletens_xx": 5.033061171693517, "qpoletens_yy": -0.3355157109908271, "qpoletens_zz": -4.69754546070269, "sterimol_burL": 7.424873695019302, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.353832677367095, "sterimol_burB5": 7.021625019318719, "vbur_near_vbur": 56.87420330135991, "vbur_near_vtot": 458.05137688934155, "vbur_ovbur_max": 17.08485253094476, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 167.7290216671405, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.08485253094476, "vbur_qvbur_min": 11.308321124247001, "vbur_qvtot_max": 167.7290216671405, "vbur_qvtot_min": 63.632144423862826, "vbur_max_delta_qvbur": 5.77653140669776, "vbur_max_delta_qvtot": 96.07462293425769}, "boltzmann_averaged_data": {"nbo_P": 0.7964116451360777, "nmr_P": 300.97236543949185, "pyr_P": 0.9311965680354262, "fmo_mu": -0.11512339692820509, "vmin_r": 1.7985951069312605, "volume": 551.5897988566247, "Pint_dP": 4.516961901471216, "fmo_eta": 0.19640001901501522, "fukui_m": 0.35575406079523897, "fukui_p": 0.01579452641656366, "nuesp_P": -54.20373947555762, "somo_ra": 0.06984614252307755, "somo_rc": -0.3569523324845407, "nbo_P_ra": 0.7806171187195139, "nbo_P_rc": 1.1521657059313168, "efg_amp_P": 1.7468916917792048, "fmo_omega": 0.033749737130219046, "pyr_alpha": 18.11099380039096, "qpole_amp": 8.894419619685188, "vbur_vbur": 101.09385529147576, "vbur_vtot": 459.1645918652811, "vmin_vmin": -0.06630271403556737, "E_solv_cds": -8.933203477505407, "Pint_P_int": 20.2572991326288, "Pint_P_max": 38.0227260435944, "Pint_P_min": 12.911715922253844, "fmo_e_homo": -0.21332340643571268, "fmo_e_lumo": -0.01692338742069748, "nbo_lp_P_e": -0.2958126569685096, "sphericity": 0.7326183813651794, "sterimol_L": 7.782933725290627, "E_oxidation": 0.2578008524372397, "E_reduction": 0.026666611369069233, "sterimol_B1": 4.550447718912197, "sterimol_B5": 7.261010130595862, "E_solv_total": -17.49243677678543, "dipolemoment": 0.9111866501991959, "efgtens_xx_P": -0.8113136610461357, "efgtens_yy_P": -0.61028343064863, "efgtens_zz_P": 1.4215972729530943, "nbo_bd_e_avg": -0.4413075799712135, "nbo_bd_e_max": -0.4313608155159554, "nbo_lp_P_occ": 1.9326616379014503, "qpoletens_xx": 5.2962071675544715, "qpoletens_yy": 1.6366325677743065, "qpoletens_zz": -6.932839735328778, "surface_area": 444.00469406214347, "E_solv_elstat": -8.55923329928002, "nbo_bds_e_avg": 0.2198493275898764, "nbo_bds_e_min": 0.20976823840790954, "nmrtens_sxx_P": 274.026746290863, "nmrtens_syy_P": 302.81440839994474, "nmrtens_szz_P": 326.075972798195, "spindens_P_ra": 0.020077920116572053, "spindens_P_rc": 0.4600048022338337, "sterimol_burL": 7.306642694738388, "vbur_far_vbur": 32.452633972013835, "vbur_far_vtot": 74.87762390796196, "nbo_bd_occ_avg": 1.9535558222107274, "nbo_bd_occ_min": 1.9477073589123628, "sterimol_burB1": 4.450953472584913, "sterimol_burB5": 7.156276182868313, "vbur_near_vbur": 68.64122131946192, "vbur_near_vtot": 381.227366686109, "vbur_ovbur_max": 22.338402436182825, "vbur_ovbur_min": 0.0001048387225021476, "vbur_ovtot_max": 130.25803080690665, "vbur_ovtot_min": 0.00010396474192959901, "vbur_qvbur_max": 42.28682214191723, "vbur_qvbur_min": 12.627459976527906, "vbur_qvtot_max": 179.36799504440455, "vbur_qvtot_min": 60.381854482847864, "nbo_bds_occ_avg": 0.03462945594581806, "nbo_bds_occ_max": 0.03860249337674412, "nbo_lp_P_percent_s": 51.48565779856538, "vbur_max_delta_qvbur": 25.342413578938864, "vbur_max_delta_qvtot": 93.0110238368007, "vbur_ratio_vbur_vtot": 0.22017538998090164}} \N {"max_data": {"pyr_P": "0.95039636", "pyr_alpha": "26.415245", "qpole_amp": "10.750164", "vbur_vbur": "116.14928", "sterimol_L": "10.513363", "sterimol_B1": "4.9126797", "sterimol_B5": "8.190722", "dipolemoment": "3.3057635", "qpoletens_xx": "8.216207", "qpoletens_yy": "2.0944076", "qpoletens_zz": "-3.4899127", "sterimol_burL": "8.320843", "vbur_far_vbur": "41.3358", "vbur_far_vtot": "93.822685", "sterimol_burB1": "4.8941164", "sterimol_burB5": "7.647177", "vbur_near_vbur": "78.461525", "vbur_near_vtot": "450.3813", "vbur_ovbur_max": "23.051813", "vbur_ovbur_min": "0.6491642", "vbur_ovtot_max": "182.62459", "vbur_ovtot_min": "1.1080413", "vbur_qvbur_max": "46.340294", "vbur_qvbur_min": "16.462109", "vbur_qvtot_max": "206.76169", "vbur_qvtot_min": "79.29524", "vbur_max_delta_qvbur": "29.618357", "vbur_max_delta_qvtot": "148.55923"}, "min_data": {"pyr_P": "0.86311513", "pyr_alpha": "15.431467", "qpole_amp": "6.1823874", "vbur_vbur": "61.771614", "sterimol_L": "7.5014043", "sterimol_B1": "3.9654245", "sterimol_B5": "6.665381", "dipolemoment": "0.79269785", "qpoletens_xx": "4.2167826", "qpoletens_yy": "-2.3957577", "qpoletens_zz": "-7.779644", "sterimol_burL": "7.026968", "vbur_far_vbur": "-0.23770782", "vbur_far_vtot": "5.396747", "sterimol_burB1": "3.869123", "sterimol_burB5": "6.358451", "vbur_near_vbur": "58.519154", "vbur_near_vtot": "368.02078", "vbur_ovbur_max": "16.491592", "vbur_ovbur_min": "0.009739228", "vbur_ovtot_max": "120.707085", "vbur_ovtot_min": "0.0039379694", "vbur_qvbur_max": "16.32384", "vbur_qvbur_min": "9.781298", "vbur_qvtot_max": "157.16206", "vbur_qvtot_min": "45.330418", "vbur_max_delta_qvbur": "3.9455295", "vbur_max_delta_qvtot": "80.28077"}, "delta_data": {"pyr_P": "0.09764822", "pyr_alpha": "11.389877", "qpole_amp": "5.1391134", "vbur_vbur": "52.45828", "sterimol_L": "2.6852214", "sterimol_B1": "0.91490495", "sterimol_B5": "1.3833089", "dipolemoment": "2.2965698", "qpoletens_xx": "4.3696404", "qpoletens_yy": "4.5438075", "qpoletens_zz": "4.209742", "sterimol_burL": "1.2138728", "vbur_far_vbur": "38.183006", "vbur_far_vtot": "85.782616", "sterimol_burB1": "0.98921347", "sterimol_burB5": "1.0966063", "vbur_near_vbur": "20.256369", "vbur_near_vtot": "85.69757", "vbur_ovbur_max": "6.348604", "vbur_ovbur_min": "0.6639776", "vbur_ovtot_max": "48.990818", "vbur_ovtot_min": "0.49712783", "vbur_qvbur_max": "30.40254", "vbur_qvbur_min": "4.923535", "vbur_qvtot_max": "44.207684", "vbur_qvtot_min": "28.819696", "vbur_max_delta_qvbur": "25.512066", "vbur_max_delta_qvtot": "52.913685"}, "vburminconf_data": {"pyr_P": "0.8855574", "pyr_alpha": "23.921268", "qpole_amp": "7.352652", "vbur_vbur": "61.82732", "sterimol_L": "9.958435", "sterimol_B1": "4.494831", "sterimol_B5": "7.5643783", "dipolemoment": "2.714283", "qpoletens_xx": "5.7559037", "qpoletens_yy": "-0.042606253", "qpoletens_zz": "-6.240352", "sterimol_burL": "7.4543943", "vbur_far_vbur": "0.23355423", "vbur_far_vtot": "7.9637494", "sterimol_burB1": "4.4363475", "sterimol_burB5": "6.8262777", "vbur_near_vbur": "58.48619", "vbur_near_vtot": "450.50174", "vbur_ovbur_max": "17.06052", "vbur_ovbur_min": "-0.00075664144", "vbur_ovtot_max": "177.70216", "vbur_ovtot_min": "0.0065994966", "vbur_qvbur_max": "17.54234", "vbur_qvbur_min": "11.510477", "vbur_qvtot_max": "180.33775", "vbur_qvtot_min": "66.69142", "vbur_max_delta_qvbur": "7.383385", "vbur_max_delta_qvtot": "110.27078"}, "boltzmann_averaged_data": {"nbo_P": "0.7942125", "nmr_P": "302.27264", "pyr_P": "0.93183357", "fmo_mu": "-0.1160104", "vmin_r": "1.7862753", "volume": "551.1682", "Pint_dP": "4.5501003", "fmo_eta": "0.19428647", "fukui_m": "0.34751958", "fukui_p": "0.012560004", "nuesp_P": "-54.20524", "somo_ra": "0.06916421", "somo_rc": "-0.3587064", "nbo_P_ra": "0.7717278", "nbo_P_rc": "1.1149938", "efg_amp_P": "1.756067", "fmo_omega": "0.034980297", "pyr_alpha": "17.993454", "qpole_amp": "9.167894", "vbur_vbur": "104.123604", "vbur_vtot": "458.90695", "vmin_vmin": "-0.06560657", "E_solv_cds": "-8.918355", "Pint_P_int": "20.360476", "Pint_P_max": "38.823452", "Pint_P_min": "12.875568", "fmo_e_homo": "-0.21123359", "fmo_e_lumo": "-0.019776301", "nbo_lp_P_e": "-0.29450515", "sphericity": "0.73159206", "sterimol_L": "7.765597", "E_oxidation": "0.25589278", "E_reduction": "0.024632595", "sterimol_B1": "4.5441103", "sterimol_B5": "7.387348", "E_solv_total": "-17.165527", "dipolemoment": "0.7155492", "efgtens_xx_P": "-0.83428264", "efgtens_yy_P": "-0.59819037", "efgtens_zz_P": "1.4340378", "nbo_bd_e_avg": "-0.44070002", "nbo_bd_e_max": "-0.43143213", "nbo_lp_P_occ": "1.9305823", "qpoletens_xx": "5.6733513", "qpoletens_yy": "1.3412405", "qpoletens_zz": "-6.829792", "surface_area": "445.55264", "E_solv_elstat": "-8.337244", "nbo_bds_e_avg": "0.22158915", "nbo_bds_e_min": "0.21169612", "nmrtens_sxx_P": "282.58038", "nmrtens_syy_P": "304.4445", "nmrtens_szz_P": "330.15607", "spindens_P_ra": "0.013207491", "spindens_P_rc": "0.43537202", "sterimol_burL": "7.3096166", "vbur_far_vbur": "35.84086", "vbur_far_vtot": "79.66657", "nbo_bd_occ_avg": "1.9539636", "nbo_bd_occ_min": "1.9478331", "sterimol_burB1": "4.463265", "sterimol_burB5": "7.043788", "vbur_near_vbur": "69.58435", "vbur_near_vtot": "381.82715", "vbur_ovbur_max": "22.625835", "vbur_ovbur_min": "-0.07740742", "vbur_ovtot_max": "132.60936", "vbur_ovtot_min": "-0.049580414", "vbur_qvbur_max": "44.73718", "vbur_qvbur_min": "12.781269", "vbur_qvtot_max": "189.57552", "vbur_qvtot_min": "58.98816", "nbo_bds_occ_avg": "0.03419384", "nbo_bds_occ_max": "0.03888747", "nbo_lp_P_percent_s": "51.33137", "vbur_max_delta_qvbur": "25.659002", "vbur_max_delta_qvtot": "110.21586", "vbur_ratio_vbur_vtot": "0.21761334"}} COc1cccc(OC)c1-c1ccccc1P(C1CCCCC1)C1CCCCC1 \N \\x070814493c5e0250029c97548c786887c02430134a0643779766c18387127e418492185844506b48115e8c8828c0480949ed170a038c5a1ba8608a2e089166ca8b838170780b6f38ee9180461b120620a53161cc8ef0c08238322d7049104c171023e4071a612960612483ba02cca801ac1e017b824050bd03c4a4a8582cf411 \\x158000c0026001000100000000000000100000000090800040004800000000020000000000200000000202001100000404000040300004000000000100804008 pc3 (8.049190521240234, 0.4121610224246979, 5.713995933532715, -2.304969549179077) (8.529546737670898, 5.478218078613281) -4 CC(C)Oc1cccc(OC(C)C)c1-c1ccccc1P(C1CCCCC1)C1CCCCC1 466.64599609375 {"max_data": {"pyr_P": 0.9481036832442323, "pyr_alpha": 25.77452072586129, "qpole_amp": 11.027604858898458, "vbur_vbur": 130.4776515511411, "vbur_vtot": 531.4798789627495, "sterimol_L": 11.390273175900917, "sterimol_B1": 5.085278433381113, "sterimol_B5": 8.91318899719113, "dipolemoment": 3.702454515305682, "qpoletens_xx": 8.278022510249876, "qpoletens_yy": 1.8002513305811996, "qpoletens_zz": -2.755492333257281, "sterimol_burL": 8.333428437105892, "vbur_far_vbur": 53.99691959688308, "vbur_far_vtot": 119.52440529061434, "sterimol_burB1": 4.979321842010957, "sterimol_burB5": 7.813009869779368, "vbur_near_vbur": 79.81089237412506, "vbur_near_vtot": 530.8533458873446, "vbur_ovbur_max": 22.39595636639854, "vbur_ovbur_min": 5.314241549417223, "vbur_ovtot_max": 221.7235387062527, "vbur_ovtot_min": 5.305009341376704, "vbur_qvbur_max": 44.19888479370643, "vbur_qvbur_min": 19.417219910437066, "vbur_qvtot_max": 256.02958786818624, "vbur_qvtot_min": 89.2703528844118, "vbur_max_delta_qvbur": 27.60665335502216, "vbur_max_delta_qvtot": 176.22116995286302}, "min_data": {"pyr_P": 0.8677410231597388, "pyr_alpha": 15.615404205945527, "qpole_amp": 5.748110644434509, "vbur_vbur": 55.427717164212886, "vbur_vtot": 528.6011571159054, "sterimol_L": 7.257931392916732, "sterimol_B1": 3.92452437913411, "sterimol_B5": 7.347380269756655, "dipolemoment": 0.6220201929640171, "qpoletens_xx": 3.629191290413023, "qpoletens_yy": -2.5150815535011244, "qpoletens_zz": -7.206549691558126, "sterimol_burL": 6.9963186798521075, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.92452437913411, "sterimol_burB5": 6.369286714825136, "vbur_near_vbur": 55.42771716421289, "vbur_near_vtot": 410.71193806155395, "vbur_ovbur_max": 16.162364625692646, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 141.44847741627532, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.162364625692646, "vbur_qvbur_min": 10.796873748205861, "vbur_qvtot_max": 169.84929597835927, "vbur_qvtot_min": 46.03527623571197, "vbur_max_delta_qvbur": 2.0750748344900156, "vbur_max_delta_qvtot": 83.55024583137708}, "delta_data": {"pyr_P": 0.08036266008449355, "pyr_alpha": 10.159116519915763, "qpole_amp": 5.279494214463949, "vbur_vbur": 75.04993438692821, "vbur_vtot": 2.878721846844087, "sterimol_L": 4.132341782984185, "sterimol_B1": 1.1607540542470032, "sterimol_B5": 1.565808727434475, "dipolemoment": 3.080434322341665, "qpoletens_xx": 4.648831219836853, "qpoletens_yy": 4.3153328840823235, "qpoletens_zz": 4.4510573583008455, "sterimol_burL": 1.337109757253785, "vbur_far_vbur": 53.99691959688308, "vbur_far_vtot": 119.52440529061434, "sterimol_burB1": 1.0547974628768468, "sterimol_burB5": 1.443723154954232, "vbur_near_vbur": 24.383175209912167, "vbur_near_vtot": 120.14140782579068, "vbur_ovbur_max": 6.233591740705894, "vbur_ovbur_min": 5.314241549417223, "vbur_ovtot_max": 80.27506128997737, "vbur_ovtot_min": 5.305009341376704, "vbur_qvbur_max": 28.036520168013787, "vbur_qvbur_min": 8.620346162231204, "vbur_qvtot_max": 86.18029188982698, "vbur_qvtot_min": 43.23507664869984, "vbur_max_delta_qvbur": 25.531578520532143, "vbur_max_delta_qvtot": 92.67092412148594}, "vburminconf_data": {"pyr_P": 0.8967177655546346, "pyr_alpha": 22.412177915179136, "qpole_amp": 7.596125675146083, "vbur_vbur": 55.427717164212886, "vbur_vtot": 529.5848419634855, "sterimol_L": 10.865994591696884, "sterimol_B1": 4.377169262010133, "sterimol_B5": 7.978500612325096, "dipolemoment": 2.8664876038707514, "qpoletens_xx": 5.755576978553495, "qpoletens_yy": -0.8763982770428358, "qpoletens_zz": -4.879178701510659, "sterimol_burL": 7.483233412133382, "vbur_far_vbur": 0.0, "vbur_far_vtot": 3.346425614872447, "sterimol_burB1": 4.377169262010133, "sterimol_burB5": 7.653520000781595, "vbur_near_vbur": 55.42771716421289, "vbur_near_vtot": 526.238416348613, "vbur_ovbur_max": 16.808733702161813, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 207.7004644642659, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.808733702161813, "vbur_qvbur_min": 11.074038481643289, "vbur_qvtot_max": 210.96641287257063, "vbur_qvtot_min": 72.84002153431494, "vbur_max_delta_qvbur": 5.734695220518525, "vbur_max_delta_qvtot": 120.55587413724504}, "boltzmann_averaged_data": {"nbo_P": 0.7982254737566165, "nmr_P": 302.31842496947485, "pyr_P": 0.929775862741947, "fmo_mu": -0.11268650451979376, "vmin_r": 1.7952923456660095, "volume": 643.1623662393331, "Pint_dP": 4.914189979666285, "fmo_eta": 0.1977698973279507, "fukui_m": 0.351437522637124, "fukui_p": 0.0222274192002573, "nuesp_P": -54.20453343190063, "somo_ra": 0.07077534149135384, "somo_rc": -0.3490166343742935, "nbo_P_ra": 0.7759980545563593, "nbo_P_rc": 1.1496629963937406, "efg_amp_P": 1.742903313919701, "fmo_omega": 0.032123940274631856, "pyr_alpha": 18.275157285783784, "qpole_amp": 8.339470313547485, "vbur_vbur": 107.80938411530411, "vbur_vtot": 530.5419246206587, "vmin_vmin": -0.0673186171954835, "E_solv_cds": -10.874605865417346, "Pint_P_int": 20.715403809413512, "Pint_P_max": 39.517600026541196, "Pint_P_min": 13.063865730096657, "fmo_e_homo": -0.2115714531837691, "fmo_e_lumo": -0.013801555855818402, "nbo_lp_P_e": -0.29456697362868856, "sphericity": 0.7113529964761394, "sterimol_L": 7.794681658723746, "E_oxidation": 0.254630218139868, "E_reduction": 0.028764011208490498, "sterimol_B1": 4.713454053174302, "sterimol_B5": 8.613301127766057, "E_solv_total": -19.797118941101647, "dipolemoment": 1.0272335503633594, "efgtens_xx_P": -0.8061511497306348, "efgtens_yy_P": -0.6125040595611689, "efgtens_zz_P": 1.418655465667657, "nbo_bd_e_avg": -0.44028589719755273, "nbo_bd_e_max": -0.42988191837525713, "nbo_lp_P_occ": 1.9299039640852067, "qpoletens_xx": 5.444573967893545, "qpoletens_yy": 0.7930099631786257, "qpoletens_zz": -6.237583931072172, "surface_area": 506.5767159246701, "E_solv_elstat": -8.922513075684288, "nbo_bds_e_avg": 0.2210128679751412, "nbo_bds_e_min": 0.21056077886254612, "nmrtens_sxx_P": 277.96569593954007, "nmrtens_syy_P": 300.08857370641533, "nmrtens_szz_P": 328.9009566063844, "spindens_P_ra": 0.02451052797661409, "spindens_P_rc": 0.45444562271936584, "sterimol_burL": 7.338673942550714, "vbur_far_vbur": 38.41220209418664, "vbur_far_vtot": 100.48291924235684, "nbo_bd_occ_avg": 1.9536867708973649, "nbo_bd_occ_min": 1.9470429401665845, "sterimol_burB1": 4.619566002359887, "sterimol_burB5": 7.23877419574763, "vbur_near_vbur": 69.39718202111743, "vbur_near_vtot": 427.9877660057341, "vbur_ovbur_max": 22.291815473947057, "vbur_ovbur_min": 0.016911294826258895, "vbur_ovtot_max": 160.55018366164813, "vbur_ovtot_min": 0.010147465314393596, "vbur_qvbur_max": 41.893289523121986, "vbur_qvbur_min": 13.33534340232024, "vbur_qvtot_max": 209.52106708167943, "vbur_qvtot_min": 64.13680747901572, "nbo_bds_occ_avg": 0.034756257806991986, "nbo_bds_occ_max": 0.03890574430750227, "nbo_lp_P_percent_s": 51.48220783838021, "vbur_max_delta_qvbur": 23.956094027835785, "vbur_max_delta_qvtot": 119.24823245573548, "vbur_ratio_vbur_vtot": 0.20321069647486026}} {"max_data": {"B1": 5.021587631275865, "B5": 9.023073109721055, "lval": 10.263104510575653, "sasa": 706.2525459484539, "vbur": 136.10615106521536, "vtot": 525.9788298191188, "alpha": 364.478864, "p_int": 21.931756865105726, "sasa_P": 8.029977228637202, "pyr_val": 0.9626458160134868, "dip_norm": 1.311439666930965, "far_vbur": 59.85313742569846, "far_vtot": 120.68859837268161, "near_vbur": 84.37718828133029, "near_vtot": 515.1217527698072, "ovbur_max": 22.449297503777064, "ovbur_min": 8.170798312641601, "ovtot_max": 201.28000740028864, "ovtot_min": 8.111849859864753, "pyr_alpha": 22.885807933969446, "qvbur_max": 44.5372615586356, "qvbur_min": 23.638201109896098, "qvtot_max": 245.02844891684578, "qvtot_min": 80.08854440580471, "cone_angle": 324.75655576200523, "p_int_area": 599.480182107851, "p_int_atom": 43.696901525544305, "sasa_volume": 1285.0394248527998, "EA_delta_SCC": 1.8095, "IP_delta_SCC": 6.6237, "HOMO_LUMO_gap": 3.473937678795, "sasa_volume_P": 13.136562649479636, "max_delta_qvbur": 27.33312702303074, "max_delta_qvtot": 173.24696732888697, "nucleophilicity": -6.1752, "p_int_atom_area": 11.498400014779001, "p_int_times_p_int_area": 13064.166472223083, "global_electrophilicity_index": 1.8278, "p_int_atom_times_p_int_atom_area": 359.19987957031225}, "min_data": {"B1": 3.8495477608073303, "B5": 7.374711786724225, "lval": 7.0616150779939755, "sasa": 660.9422534573225, "vbur": 64.55047226163934, "vtot": 518.8259344419765, "alpha": 364.215013, "p_int": 21.254004157906092, "sasa_P": 0.0, "pyr_val": 0.8924751311145531, "dip_norm": 0.2136000936329383, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 64.55047226163934, "near_vtot": 394.210537703867, "ovbur_max": 18.136607952168802, "ovbur_min": 0.0, "ovtot_max": 131.11289668105402, "ovtot_min": 0.0, "pyr_alpha": 13.06694602566667, "qvbur_max": 18.136607952168802, "qvbur_min": 12.075530744503135, "qvtot_max": 189.1748457363397, "qvtot_min": 43.94779854338294, "cone_angle": 178.6672784900562, "p_int_area": 561.0827896925413, "p_int_atom": 29.78392354120931, "sasa_volume": 1239.4367123310665, "EA_delta_SCC": 1.5656, "IP_delta_SCC": 6.1752, "HOMO_LUMO_gap": 2.889039735966, "sasa_volume_P": 0.0, "max_delta_qvbur": 3.123785945489228, "max_delta_qvtot": 90.8833084829509, "nucleophilicity": -6.6237, "p_int_atom_area": 3.2995408738061447, "p_int_times_p_int_area": 12060.95403110237, "global_electrophilicity_index": 1.6353, "p_int_atom_times_p_int_atom_area": 131.1603879654342}, "boltzmann_averaged_data": {"B1": 4.4844199116961025, "B5": 8.750065794238262, "lval": 7.457208164175463, "sasa": 687.6235455476913, "vbur": 122.61368964255178, "vtot": 522.3264592804006, "alpha": 364.434250300323, "p_int": 21.55775029662769, "B1_std": 0.2247126415827233, "B5_std": 0.14773033101553362, "sasa_P": 1.0564978190792778, "pyr_val": 0.9460146111724591, "dip_norm": 0.37892960729996633, "far_vbur": 47.94471101117369, "far_vtot": 99.74684654180368, "lval_std": 0.13592681370099188, "sasa_std": 3.867582024367012, "vbur_std": 5.82415760770971, "vtot_std": 0.6759591384838288, "alpha_std": 0.01959637663494595, "near_vbur": 74.66897863137811, "near_vtot": 415.8521945534665, "ovbur_max": 22.418713790431557, "ovbur_min": 0.2374268552606358, "ovtot_max": 163.8275222620151, "ovtot_min": 0.16548337099386107, "p_int_std": 0.07865885329676889, "pyr_alpha": 15.917442792756813, "qvbur_max": 43.295553983964865, "qvbur_min": 14.849725771776876, "qvtot_max": 209.48926077347883, "qvtot_min": 56.39317946124063, "cone_angle": 267.15707821311213, "p_int_area": 576.1572196125549, "p_int_atom": 37.98502385011713, "sasa_P_std": 0.7835275274341148, "pyr_val_std": 0.003567407047166787, "sasa_volume": 1265.7066800179398, "EA_delta_SCC": 1.6107117402914322, "IP_delta_SCC": 6.335079953794917, "dip_norm_std": 0.08933318973797907, "far_vbur_std": 5.277388357320287, "far_vtot_std": 4.229888521949471, "HOMO_LUMO_gap": 3.264388451039869, "near_vbur_std": 1.3789045864002012, "near_vtot_std": 3.8873366823237085, "ovbur_max_std": 0.03494345549255146, "ovbur_min_std": 0.5117513805680198, "ovtot_max_std": 6.2479110928009245, "ovtot_min_std": 0.43697895591175956, "pyr_alpha_std": 0.5651192245454891, "qvbur_max_std": 0.28747515406019547, "qvbur_min_std": 1.958189187674747, "qvtot_max_std": 3.3255204634637674, "qvtot_min_std": 6.849978354876905, "sasa_volume_P": 1.2683636288683031, "cone_angle_std": 17.648168881997748, "p_int_area_std": 5.375940005747394, "p_int_atom_std": 2.025794959362333, "max_delta_qvbur": 24.32782077831185, "max_delta_qvtot": 140.22921336995876, "nucleophilicity": -6.335079953794917, "p_int_atom_area": 6.394891696322495, "sasa_volume_std": 4.578628437174042, "EA_delta_SCC_std": 0.018868152804968702, "IP_delta_SCC_std": 0.01976648275531891, "HOMO_LUMO_gap_std": 0.042179053988585014, "sasa_volume_P_std": 0.942262948995004, "max_delta_qvbur_std": 0.7559050900232935, "max_delta_qvtot_std": 16.30411966220395, "nucleophilicity_std": 0.01976648275531891, "p_int_atom_area_std": 1.0184622965569037, "p_int_times_p_int_area": 12420.879163886482, "p_int_times_p_int_area_std": 145.69072496544163, "global_electrophilicity_index": 1.6705430287331602, "p_int_atom_times_p_int_atom_area": 241.2141374845492, "global_electrophilicity_index_std": 0.014546214142856308, "p_int_atom_times_p_int_atom_area_std": 29.774020855027448}} {"max_data": {"pyr_P": "0.9500278", "pyr_alpha": "27.050272", "qpole_amp": "11.017427", "vbur_vbur": "133.22089", "sterimol_L": "11.394549", "sterimol_B1": "5.1140366", "sterimol_B5": "8.698859", "dipolemoment": "3.5179195", "qpoletens_xx": "8.024066", "qpoletens_yy": "1.5198011", "qpoletens_zz": "-3.0904553", "sterimol_burL": "8.271559", "vbur_far_vbur": "56.30181", "vbur_far_vtot": "122.59425", "sterimol_burB1": "5.002587", "sterimol_burB5": "7.866287", "vbur_near_vbur": "82.2527", "vbur_near_vtot": "527.0513", "vbur_ovbur_max": "23.027666", "vbur_ovbur_min": "3.6806614", "vbur_ovtot_max": "217.14706", "vbur_ovtot_min": "3.7170258", "vbur_qvbur_max": "48.51281", "vbur_qvbur_min": "19.772778", "vbur_qvtot_max": "248.6973", "vbur_qvtot_min": "85.91045", "vbur_max_delta_qvbur": "30.956753", "vbur_max_delta_qvtot": "179.77087"}, "min_data": {"pyr_P": "0.8609425", "pyr_alpha": "15.627019", "qpole_amp": "5.298748", "vbur_vbur": "57.000633", "sterimol_L": "7.41808", "sterimol_B1": "3.9504397", "sterimol_B5": "7.1149225", "dipolemoment": "0.8558482", "qpoletens_xx": "3.7635458", "qpoletens_yy": "-2.8136237", "qpoletens_zz": "-7.5426126", "sterimol_burL": "6.979062", "vbur_far_vbur": "0.11658701", "vbur_far_vtot": "5.4245114", "sterimol_burB1": "3.87069", "sterimol_burB5": "6.365867", "vbur_near_vbur": "56.3313", "vbur_near_vtot": "407.1206", "vbur_ovbur_max": "16.493883", "vbur_ovbur_min": "0.03303883", "vbur_ovtot_max": "136.18747", "vbur_ovtot_min": "0.050101038", "vbur_qvbur_max": "16.93577", "vbur_qvbur_min": "10.0112295", "vbur_qvtot_max": "173.44048", "vbur_qvtot_min": "48.627945", "vbur_max_delta_qvbur": "3.8615024", "vbur_max_delta_qvtot": "84.776665"}, "delta_data": {"pyr_P": "0.09912954", "pyr_alpha": "11.86561", "qpole_amp": "6.1474805", "vbur_vbur": "77.14247", "sterimol_L": "4.006352", "sterimol_B1": "1.1846542", "sterimol_B5": "1.6715494", "dipolemoment": "2.7642858", "qpoletens_xx": "5.2300496", "qpoletens_yy": "4.4286695", "qpoletens_zz": "4.5921745", "sterimol_burL": "1.2414563", "vbur_far_vbur": "57.03132", "vbur_far_vtot": "123.203835", "sterimol_burB1": "1.0803673", "sterimol_burB5": "1.3735386", "vbur_near_vbur": "25.445211", "vbur_near_vtot": "125.94523", "vbur_ovbur_max": "6.464337", "vbur_ovbur_min": "3.8894343", "vbur_ovtot_max": "79.00024", "vbur_ovtot_min": "4.3659782", "vbur_qvbur_max": "32.090466", "vbur_qvbur_min": "8.730058", "vbur_qvtot_max": "89.63365", "vbur_qvtot_min": "41.92133", "vbur_max_delta_qvbur": "27.803797", "vbur_max_delta_qvtot": "99.643074"}, "vburminconf_data": {"pyr_P": "0.88520133", "pyr_alpha": "24.627308", "qpole_amp": "7.9523335", "vbur_vbur": "56.578995", "sterimol_L": "10.497179", "sterimol_B1": "4.576064", "sterimol_B5": "7.9223585", "dipolemoment": "2.551569", "qpoletens_xx": "5.520389", "qpoletens_yy": "-0.20876367", "qpoletens_zz": "-5.6242595", "sterimol_burL": "7.4264445", "vbur_far_vbur": "0.6557485", "vbur_far_vtot": "7.1675615", "sterimol_burB1": "4.4433346", "sterimol_burB5": "7.109941", "vbur_near_vbur": "56.364185", "vbur_near_vtot": "524.8109", "vbur_ovbur_max": "17.048256", "vbur_ovbur_min": "0.017820194", "vbur_ovtot_max": "200.12802", "vbur_ovtot_min": "0.017268196", "vbur_qvbur_max": "17.93133", "vbur_qvbur_min": "11.343147", "vbur_qvtot_max": "206.08696", "vbur_qvtot_min": "80.931885", "vbur_max_delta_qvbur": "7.6049943", "vbur_max_delta_qvtot": "125.40083"}, "boltzmann_averaged_data": {"nbo_P": "0.7980858", "nmr_P": "300.06534", "pyr_P": "0.92897093", "fmo_mu": "-0.113305725", "vmin_r": "1.789654", "volume": "643.1831", "Pint_dP": "4.832048", "fmo_eta": "0.19411226", "fukui_m": "0.35211736", "fukui_p": "0.01643102", "nuesp_P": "-54.20406", "somo_ra": "0.067691326", "somo_rc": "-0.3481564", "nbo_P_ra": "0.7666142", "nbo_P_rc": "1.1455142", "efg_amp_P": "1.7670083", "fmo_omega": "0.033369835", "pyr_alpha": "18.471539", "qpole_amp": "8.361637", "vbur_vbur": "109.19651", "vbur_vtot": "530.7263", "vmin_vmin": "-0.06634087", "E_solv_cds": "-10.866167", "Pint_P_int": "20.614922", "Pint_P_max": "39.70843", "Pint_P_min": "13.03208", "fmo_e_homo": "-0.20876092", "fmo_e_lumo": "-0.017012551", "nbo_lp_P_e": "-0.29415292", "sphericity": "0.71646255", "sterimol_L": "7.942868", "E_oxidation": "0.25253102", "E_reduction": "0.025180854", "sterimol_B1": "4.7619624", "sterimol_B5": "8.0563", "E_solv_total": "-19.575987", "dipolemoment": "0.771554", "efgtens_xx_P": "-0.8470575", "efgtens_yy_P": "-0.60280687", "efgtens_zz_P": "1.4472289", "nbo_bd_e_avg": "-0.44086552", "nbo_bd_e_max": "-0.43230158", "nbo_lp_P_occ": "1.929485", "qpoletens_xx": "5.6532216", "qpoletens_yy": "0.7758815", "qpoletens_zz": "-5.9851346", "surface_area": "504.80545", "E_solv_elstat": "-8.762547", "nbo_bds_e_avg": "0.22244719", "nbo_bds_e_min": "0.21215135", "nmrtens_sxx_P": "279.56824", "nmrtens_syy_P": "302.96207", "nmrtens_szz_P": "331.0349", "spindens_P_ra": "0.016342506", "spindens_P_rc": "0.44722605", "sterimol_burL": "7.297462", "vbur_far_vbur": "39.88555", "vbur_far_vtot": "103.13895", "nbo_bd_occ_avg": "1.9537077", "nbo_bd_occ_min": "1.947992", "sterimol_burB1": "4.604669", "sterimol_burB5": "7.1243296", "vbur_near_vbur": "70.026024", "vbur_near_vtot": "429.12503", "vbur_ovbur_max": "22.68574", "vbur_ovbur_min": "-0.011804777", "vbur_ovtot_max": "151.7984", "vbur_ovtot_min": "-0.037182588", "vbur_qvbur_max": "44.430664", "vbur_qvbur_min": "13.391789", "vbur_qvtot_max": "210.29988", "vbur_qvtot_min": "64.15544", "nbo_bds_occ_avg": "0.034667723", "nbo_bds_occ_max": "0.039316628", "nbo_lp_P_percent_s": "51.360855", "vbur_max_delta_qvbur": "25.238453", "vbur_max_delta_qvtot": "124.08467", "vbur_ratio_vbur_vtot": "0.19897446"}} CC(C)Oc1cccc(OC(C)C)c1-c1ccccc1P(C1CCCCC1)C1CCCCC1 {"max_data": {"B1": 5.008657534354084, "B5": 9.035005469602222, "lval": 11.3877903625294, "sasa": 723.0523562726162, "vbur": 76.01989528537591, "vtot": 527.0441628253883, "alpha": 364.352374, "p_int": 21.85934780321412, "sasa_P": 10.81996931679384, "pyr_val": 0.9461455998896123, "dip_norm": 1.6735354791578216, "far_vbur": 11.877380143483295, "far_vtot": 88.63599624881584, "near_vbur": 68.31533368101628, "near_vtot": 524.0785337884017, "ovbur_max": 21.365297157021477, "ovbur_min": 0.0, "ovtot_max": 225.2718255019819, "ovtot_min": 0.0, "pyr_alpha": 25.070975868945688, "qvbur_max": 30.643407651832764, "qvbur_min": 15.024477924386623, "qvtot_max": 258.5793207759126, "qvtot_min": 85.70547035113776, "cone_angle": 227.5598712104657, "p_int_area": 608.5752375383485, "p_int_atom": 34.95951392606462, "sasa_volume": 1303.3820166235657, "EA_delta_SCC": 1.8298, "IP_delta_SCC": 6.5847, "HOMO_LUMO_gap": 3.331823349087, "sasa_volume_P": 14.397011083593572, "max_delta_qvbur": 16.399876213818448, "max_delta_qvtot": 184.45802206040187, "nucleophilicity": -6.2427, "p_int_atom_area": 13.49812175647969, "p_int_times_p_int_area": 13179.672539426485, "global_electrophilicity_index": 1.8518, "p_int_atom_times_p_int_atom_area": 443.33557317979336}, "min_data": {"B1": 4.336647870729831, "B5": 7.289664794476259, "lval": 7.731238646250091, "sasa": 669.1321595533025, "vbur": 54.24664100860771, "vtot": 519.6853296363532, "alpha": 364.185409, "p_int": 21.176180407932222, "sasa_P": 4.289987834477413, "pyr_val": 0.8741972340770957, "dip_norm": 0.377068959210381, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.24664100860772, "near_vtot": 434.99670165959606, "ovbur_max": 15.409123208719253, "ovbur_min": 0.0, "ovtot_max": 157.7980645062724, "ovtot_min": 0.0, "pyr_alpha": 15.897036200636999, "qvbur_max": 15.409123208719253, "qvbur_min": 10.513637771758521, "qvtot_max": 161.71255289759168, "qvtot_min": 57.12727303164019, "cone_angle": 168.66345791037136, "p_int_area": 563.2777933654639, "p_int_atom": 28.41094773789537, "sasa_volume": 1246.6616235236127, "EA_delta_SCC": 1.5741, "IP_delta_SCC": 6.2427, "HOMO_LUMO_gap": 2.848004067083, "sasa_volume_P": 4.25868662076579, "max_delta_qvbur": 1.7483876560574032, "max_delta_qvtot": 76.58197536730793, "nucleophilicity": -6.5847, "p_int_atom_area": 9.398692185993266, "p_int_times_p_int_area": 12119.203262199573, "global_electrophilicity_index": 1.6549, "p_int_atom_times_p_int_atom_area": 297.81538612131186}, "boltzmann_averaged_data": {"B1": 4.837172989543414, "B5": 8.332791623426077, "lval": 8.253957274102943, "sasa": 704.2530924559956, "vbur": 74.68185106785418, "vtot": 524.8933511798606, "alpha": 364.3119167018752, "p_int": 21.595510289466386, "B1_std": 0.05846355454213611, "B5_std": 0.05012278536990152, "sasa_P": 5.8680453625311895, "pyr_val": 0.939787362434108, "dip_norm": 0.547632673778369, "far_vbur": 8.777189053241088, "far_vtot": 51.66912876236733, "lval_std": 0.09587320266711895, "sasa_std": 2.983820027527597, "vbur_std": 1.1785317720725397, "vtot_std": 0.19870882522805883, "alpha_std": 0.006953483574317995, "near_vbur": 65.9046620146131, "near_vtot": 465.4272085769631, "ovbur_max": 20.367950186136287, "ovbur_min": 0.0, "ovtot_max": 170.63844304541342, "ovtot_min": 0.0, "p_int_std": 0.015150220000341915, "pyr_alpha": 16.78169671703048, "qvbur_max": 28.205863205667914, "qvbur_min": 14.526918567264891, "qvtot_max": 216.70395636269956, "qvtot_min": 60.488309826397625, "cone_angle": 208.2553248864751, "p_int_area": 595.5060918655998, "p_int_atom": 34.73084305330533, "sasa_P_std": 0.18874186207191201, "pyr_val_std": 0.005675145932675632, "sasa_volume": 1286.7440181900313, "EA_delta_SCC": 1.6307397969898496, "IP_delta_SCC": 6.41542393819691, "dip_norm_std": 0.057686606633198204, "far_vbur_std": 0.614477740498209, "far_vtot_std": 2.9489821655632955, "HOMO_LUMO_gap": 3.3115731139582465, "near_vbur_std": 0.5835750328514457, "near_vtot_std": 2.8758306365333524, "ovbur_max_std": 0.27164872964811004, "ovbur_min_std": 0.0, "ovtot_max_std": 1.79838050018745, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.8115477966762606, "qvbur_max_std": 0.6908367255151898, "qvbur_min_std": 0.42666050961095325, "qvtot_max_std": 1.8215345550396287, "qvtot_min_std": 1.3693009561133231, "sasa_volume_P": 5.410509403221653, "cone_angle_std": 2.3614309924293453, "p_int_area_std": 1.9653713190599005, "p_int_atom_std": 0.5852810237446808, "max_delta_qvbur": 13.575140587039753, "max_delta_qvtot": 109.07677743062767, "nucleophilicity": -6.41542393819691, "p_int_atom_area": 12.58847384390625, "sasa_volume_std": 2.8526651542000203, "EA_delta_SCC_std": 0.008101471771908626, "IP_delta_SCC_std": 0.01603550113205727, "HOMO_LUMO_gap_std": 0.025176249983654135, "sasa_volume_P_std": 0.34938603373702, "max_delta_qvbur_std": 0.6618933314712688, "max_delta_qvtot_std": 2.0925149300936075, "nucleophilicity_std": 0.01603550113205727, "p_int_atom_area_std": 0.3926401248067873, "p_int_times_p_int_area": 12860.260674033952, "p_int_times_p_int_area_std": 44.14624921991046, "global_electrophilicity_index": 1.6913775328766438, "p_int_atom_times_p_int_atom_area": 437.42174373097765, "global_electrophilicity_index_std": 0.006601739240658975, "p_int_atom_times_p_int_atom_area_std": 19.90041569747694}} \\x070814493c5e0251429c97548c786987c06430934a0643779766c183a7127e419492185844506b48115e8c8c38c048094fed172a038c5b1ba8628a2e2c9566ca8b838170780b6f38ee9190461b120620a53561cc8ef0c08239322d7049104c171023e4071a612960612483ba02dca881ac1e017b824050bd03c4a4ac582cf411 \\x168000c0026801000100000000000000100000010090800040004800000000000000000800200000000012001100000404000040300004040000000100004009 pc3 (11.14712905883789, -1.2156709432601929, 7.957223892211914, -2.8176658153533936) (8.374300003051758, 4.649304866790772) -5 c1ccc(-c2ccccc2P(C2CCCCC2)C2CCCCC2)cc1 350.4859924316406 {"max_data": {"pyr_P": 0.9487888276173149, "pyr_alpha": 26.606281169724895, "qpole_amp": 7.483573160900719, "vbur_vbur": 111.48402302576878, "vbur_vtot": 403.10051620723266, "sterimol_L": 10.346047395501115, "sterimol_B1": 4.749650999734041, "sterimol_B5": 7.385277517877991, "dipolemoment": 1.5146358147048102, "qpoletens_xx": 5.452298759104358, "qpoletens_yy": 1.9831961338055697, "qpoletens_zz": -3.9870985992720387, "sterimol_burL": 8.155038103606842, "vbur_far_vbur": 30.441054968665274, "vbur_far_vtot": 74.85239848008062, "sterimol_burB1": 4.699096002685436, "sterimol_burB5": 7.055259728357157, "vbur_near_vbur": 81.62135333103141, "vbur_near_vtot": 402.5587688919105, "vbur_ovbur_max": 22.296595424222858, "vbur_ovbur_min": 1.1191179802945144, "vbur_ovtot_max": 143.9717228308909, "vbur_ovtot_min": 3.0832956413778283, "vbur_qvbur_max": 43.44897115644366, "vbur_qvbur_min": 19.81466367913979, "vbur_qvtot_max": 170.69081848403275, "vbur_qvtot_min": 77.44896544091647, "vbur_max_delta_qvbur": 27.452905370813475, "vbur_max_delta_qvtot": 113.87606282988993}, "min_data": {"pyr_P": 0.860283144616295, "pyr_alpha": 15.519945992719057, "qpole_amp": 4.939640394133264, "vbur_vbur": 57.033180808841, "vbur_vtot": 401.6869694001931, "sterimol_L": 7.479874632396138, "sterimol_B1": 3.4754567532387073, "sterimol_B5": 6.114317400798861, "dipolemoment": 0.9068961154660562, "qpoletens_xx": 2.452126562495371, "qpoletens_yy": -0.3373709661411324, "qpoletens_zz": -5.539119184106071, "sterimol_burL": 7.021017994608513, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.4754567532387073, "sterimol_burB5": 6.092457824720354, "vbur_near_vbur": 56.964151101645264, "vbur_near_vtot": 327.2101220860369, "vbur_ovbur_max": 16.35167336815368, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 108.22773651838628, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.35167336815368, "vbur_qvbur_min": 9.967471357202545, "vbur_qvtot_max": 120.646751967466, "vbur_qvtot_min": 44.56143132515591, "vbur_max_delta_qvbur": 3.358399845538024, "vbur_max_delta_qvtot": 39.06435827384918}, "delta_data": {"pyr_P": 0.08850568300101991, "pyr_alpha": 11.086335177005838, "qpole_amp": 2.5439327667674556, "vbur_vbur": 54.450842216927775, "vbur_vtot": 1.4135468070395518, "sterimol_L": 2.866172763104977, "sterimol_B1": 1.274194246495334, "sterimol_B5": 1.2709601170791291, "dipolemoment": 0.607739699238754, "qpoletens_xx": 3.000172196608987, "qpoletens_yy": 2.320567099946702, "qpoletens_zz": 1.5520205848340325, "sterimol_burL": 1.1340201089983282, "vbur_far_vbur": 30.441054968665274, "vbur_far_vtot": 74.85239848008062, "sterimol_burB1": 1.2236392494467285, "sterimol_burB5": 0.9628019036368034, "vbur_near_vbur": 24.65720222938615, "vbur_near_vtot": 75.34864680587361, "vbur_ovbur_max": 5.944922056069178, "vbur_ovbur_min": 1.1191179802945144, "vbur_ovtot_max": 35.74398631250463, "vbur_ovtot_min": 3.0832956413778283, "vbur_qvbur_max": 27.097297788289982, "vbur_qvbur_min": 9.847192321937246, "vbur_qvtot_max": 50.044066516566744, "vbur_qvtot_min": 32.88753411576056, "vbur_max_delta_qvbur": 24.09450552527545, "vbur_max_delta_qvtot": 74.81170455604075}, "vburminconf_data": {"pyr_P": 0.860283144616295, "pyr_alpha": 26.606281169724895, "qpole_amp": 5.250060742055194, "vbur_vbur": 57.033180808841, "vbur_vtot": 402.6292729519899, "sterimol_L": 10.346047395501115, "sterimol_B1": 4.628886106121829, "sterimol_B5": 6.7714999544251855, "dipolemoment": 1.5146358147048102, "qpoletens_xx": 3.3569466985615044, "qpoletens_yy": 0.6301519007105343, "qpoletens_zz": -3.9870985992720387, "sterimol_burL": 8.086288939957834, "vbur_far_vbur": 0.06902970719573641, "vbur_far_vtot": 0.07050406007940134, "sterimol_burB1": 4.628886106121829, "sterimol_burB5": 6.376704514820376, "vbur_near_vbur": 56.964151101645264, "vbur_near_vtot": 402.5587688919105, "vbur_ovbur_max": 17.78142503082901, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 120.5762479073866, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.850454738024744, "vbur_qvbur_min": 11.520639769106616, "vbur_qvtot_max": 120.646751967466, "vbur_qvtot_min": 72.19717931927913, "vbur_max_delta_qvbur": 5.602911234053938, "vbur_max_delta_qvtot": 39.06435827384918}, "boltzmann_averaged_data": {"nbo_P": 0.7875155814866235, "nmr_P": 308.93366419137186, "pyr_P": 0.9305657760654144, "fmo_mu": -0.12449368783311551, "vmin_r": 1.8164614119934328, "volume": 484.62442491487116, "Pint_dP": 4.273267405333968, "fmo_eta": 0.18869708169662788, "fukui_m": 0.43021093731327015, "fukui_p": 0.013581187408255039, "nuesp_P": -54.19697348976318, "somo_ra": 0.060352943657844556, "somo_rc": -0.3761253130997428, "nbo_P_ra": 0.7739343940783686, "nbo_P_rc": 1.2177265187998936, "efg_amp_P": 1.7812446372315398, "fmo_omega": 0.04106933012732829, "pyr_alpha": 18.17533591668967, "qpole_amp": 5.548018317106398, "vbur_vbur": 85.33928456941085, "vbur_vtot": 402.37966982801066, "vmin_vmin": -0.061351150859591176, "E_solv_cds": -10.363806469254035, "Pint_P_int": 19.960618810095514, "Pint_P_max": 36.234896962604275, "Pint_P_min": 12.825700723875245, "fmo_e_homo": -0.21884222868142947, "fmo_e_lumo": -0.030145146984801557, "nbo_lp_P_e": -0.30310581543093035, "sphericity": 0.7463865798036423, "sterimol_L": 7.8820314762039425, "E_oxidation": 0.265738549779539, "E_reduction": 0.01522876650880928, "sterimol_B1": 4.396519957154825, "sterimol_B5": 6.76238242927737, "E_solv_total": -16.552023915848952, "dipolemoment": 1.0883455142640164, "efgtens_xx_P": -0.8525788797457331, "efgtens_yy_P": -0.5940959847181968, "efgtens_zz_P": 1.4466747769295494, "nbo_bd_e_avg": -0.4487117639947853, "nbo_bd_e_max": -0.4384967183992536, "nbo_lp_P_occ": 1.93140666492723, "qpoletens_xx": 2.9326872525931043, "qpoletens_yy": 1.5117416288125236, "qpoletens_zz": -4.444428881405628, "surface_area": 399.79342970963955, "E_solv_elstat": -6.18821744659492, "nbo_bds_e_avg": 0.21077146662425025, "nbo_bds_e_min": 0.2000921587177619, "nmrtens_sxx_P": 287.0011660737175, "nmrtens_syy_P": 304.04699809381054, "nmrtens_szz_P": 335.75291052902105, "spindens_P_ra": 0.013871532533839487, "spindens_P_rc": 0.544764043851075, "sterimol_burL": 7.370444910720253, "vbur_far_vbur": 20.593514431886863, "vbur_far_vtot": 52.78932265624489, "nbo_bd_occ_avg": 1.9537870783777724, "nbo_bd_occ_min": 1.9475886801642606, "sterimol_burB1": 4.224047071245899, "sterimol_burB5": 6.497621774324681, "vbur_near_vbur": 64.74577013752398, "vbur_near_vtot": 347.7205931474459, "vbur_ovbur_max": 21.620370579835544, "vbur_ovbur_min": 0.01680675599374595, "vbur_ovtot_max": 114.30736339583314, "vbur_ovtot_min": 0.042237580246656435, "vbur_qvbur_max": 38.869887776586, "vbur_qvbur_min": 12.405590548414962, "vbur_qvtot_max": 159.30307458713455, "vbur_qvtot_min": 59.32948723507445, "nbo_bds_occ_avg": 0.035464731534265555, "nbo_bds_occ_max": 0.040129901066089414, "nbo_lp_P_percent_s": 51.502418194990994, "vbur_max_delta_qvbur": 24.55461823400927, "vbur_max_delta_qvtot": 87.85675472646385, "vbur_ratio_vbur_vtot": 0.21208450004399648}} {"max_data": {"B1": 4.653225491452753, "B5": 7.404236264079014, "lval": 9.933445048798015, "sasa": 595.0125576030136, "vbur": 121.03504947000054, "vtot": 398.15507311653175, "alpha": 285.199061, "p_int": 21.02250045248167, "sasa_P": 10.419970451108297, "pyr_val": 0.9629398751407122, "dip_norm": 0.6779579632986105, "far_vbur": 36.93760321363941, "far_vtot": 81.9724590868025, "near_vbur": 85.42622087496474, "near_vtot": 397.55953617707337, "ovbur_max": 22.414329750655916, "ovbur_min": 2.2962157882887237, "ovtot_max": 140.38608200960485, "ovtot_min": 4.544473149190808, "pyr_alpha": 23.09702257483274, "qvbur_max": 44.31579912220166, "qvbur_min": 22.204523231929027, "qvtot_max": 164.0943133662778, "qvtot_min": 74.28268337106466, "cone_angle": 263.0333153386774, "p_int_area": 457.4578589972817, "p_int_atom": 38.93918536433152, "sasa_volume": 1011.5021553773091, "EA_delta_SCC": 1.3227, "IP_delta_SCC": 6.7111, "HOMO_LUMO_gap": 3.397867129814, "sasa_volume_P": 16.046910479259626, "max_delta_qvbur": 26.93682582099107, "max_delta_qvtot": 110.0223218965038, "nucleophilicity": -6.3853, "p_int_atom_area": 13.098177408139554, "p_int_times_p_int_area": 9429.446272469762, "global_electrophilicity_index": 1.4736, "p_int_atom_times_p_int_atom_area": 365.7231838621529}, "min_data": {"B1": 3.5479156118823916, "B5": 6.104981552541453, "lval": 7.260985323449935, "sasa": 551.1822376678781, "vbur": 61.8929230244321, "vtot": 395.04849066409867, "alpha": 285.07617, "p_int": 20.410214051689547, "sasa_P": 0.0, "pyr_val": 0.8905095685766246, "dip_norm": 0.4452179241674801, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 61.892923024432086, "near_vtot": 314.02294453406273, "ovbur_max": 17.63540349076568, "ovbur_min": 0.0, "ovtot_max": 102.66949972202747, "ovtot_min": 0.0, "pyr_alpha": 13.0275033554423, "qvbur_max": 17.63540349076568, "qvbur_min": 11.27127242271673, "qvtot_max": 122.13207025165039, "qvtot_min": 44.97986149437172, "cone_angle": 176.43008169644995, "p_int_area": 429.36177689551624, "p_int_atom": 26.814681496790573, "sasa_volume": 966.7463116099458, "EA_delta_SCC": 1.1725, "IP_delta_SCC": 6.3853, "HOMO_LUMO_gap": 3.033415503407, "sasa_volume_P": 0.0, "max_delta_qvbur": 3.1470977809033247, "max_delta_qvtot": 49.107226471339686, "nucleophilicity": -6.7111, "p_int_atom_area": 2.1996939158707653, "p_int_times_p_int_area": 8961.879256710243, "global_electrophilicity_index": 1.3919, "p_int_atom_times_p_int_atom_area": 85.35983069486382}, "boltzmann_averaged_data": {"B1": 4.175323805442265, "B5": 6.201610779010681, "lval": 7.577744155958229, "sasa": 557.5463161160536, "vbur": 118.5626518315704, "vtot": 396.3307864711656, "alpha": 285.1817108285134, "p_int": 20.876768280107274, "B1_std": 0.05185421367180364, "B5_std": 0.14747952018015842, "sasa_P": 0.19263100110717873, "pyr_val": 0.9585714168189503, "dip_norm": 0.46143189003168145, "far_vbur": 35.31714683643971, "far_vtot": 78.77057623634272, "lval_std": 0.06493634534813, "sasa_std": 9.267288378477335, "vbur_std": 6.323161915683512, "vtot_std": 0.3010017455887831, "alpha_std": 0.022873216138530793, "near_vbur": 83.2455049951307, "near_vtot": 316.5419258670339, "ovbur_max": 22.20554135597826, "ovbur_min": 1.7004371020950986, "ovtot_max": 108.9032893888853, "ovtot_min": 3.7813849338560988, "p_int_std": 0.1304285700831816, "pyr_alpha": 13.789639092384418, "qvbur_max": 43.162874982626484, "qvbur_min": 20.732362945708534, "qvtot_max": 161.248418791439, "qvtot_min": 60.343534956061525, "cone_angle": 257.6403806084511, "p_int_area": 436.9101090114577, "p_int_atom": 38.218559887959465, "sasa_P_std": 0.7098447487795384, "pyr_val_std": 0.007344634509835525, "sasa_volume": 975.1169775453352, "EA_delta_SCC": 1.2193202405951882, "IP_delta_SCC": 6.496614458710827, "dip_norm_std": 0.03469668754802074, "far_vbur_std": 2.375199085620053, "far_vtot_std": 6.428690205126051, "HOMO_LUMO_gap": 3.1494049204199546, "near_vbur_std": 4.084446700309088, "near_vtot_std": 4.802735606567725, "ovbur_max_std": 0.21180504159418048, "ovbur_min_std": 0.7383119596107562, "ovtot_max_std": 1.2385817097849172, "ovtot_min_std": 1.5475172214407034, "pyr_alpha_std": 1.191909632820434, "qvbur_max_std": 0.7769088956183048, "qvbur_min_std": 2.7442142205829687, "qvtot_max_std": 3.2322606915073755, "qvtot_min_std": 2.759070661487194, "sasa_volume_P": 0.23363074996465744, "cone_angle_std": 5.468383201597198, "p_int_area_std": 4.8554988753628985, "p_int_atom_std": 1.7483516549226643, "max_delta_qvbur": 17.694938046861093, "max_delta_qvtot": 83.21105360309505, "nucleophilicity": -6.496614458710827, "p_int_atom_area": 3.121221253604133, "sasa_volume_std": 9.001207867094198, "EA_delta_SCC_std": 0.01954302735534463, "IP_delta_SCC_std": 0.038459765388915566, "HOMO_LUMO_gap_std": 0.03885467002895281, "sasa_volume_P_std": 0.8822920061931959, "max_delta_qvbur_std": 3.085032992435281, "max_delta_qvtot_std": 3.908197430729041, "nucleophilicity_std": 0.038459765388915566, "p_int_atom_area_std": 1.488210775445833, "p_int_times_p_int_area": 9120.776301650334, "p_int_times_p_int_area_std": 66.3268120965218, "global_electrophilicity_index": 1.4103066978660428, "p_int_atom_times_p_int_atom_area": 116.79471525849505, "global_electrophilicity_index_std": 0.00997723811643709, "p_int_atom_times_p_int_atom_area_std": 45.17517468454432}} {"max_data": {"pyr_P": "0.9474529", "pyr_alpha": "26.70365", "qpole_amp": "8.387318", "vbur_vbur": "106.95852", "sterimol_L": "10.350666", "sterimol_B1": "4.7410045", "sterimol_B5": "7.982563", "dipolemoment": "1.578068", "qpoletens_xx": "5.49918", "qpoletens_yy": "1.3539184", "qpoletens_zz": "-2.958299", "sterimol_burL": "8.202938", "vbur_far_vbur": "31.345871", "vbur_far_vtot": "79.37014", "sterimol_burB1": "4.7133856", "sterimol_burB5": "7.173277", "vbur_near_vbur": "77.920105", "vbur_near_vtot": "404.95145", "vbur_ovbur_max": "22.638557", "vbur_ovbur_min": "1.1828856", "vbur_ovtot_max": "149.53185", "vbur_ovtot_min": "1.9854517", "vbur_qvbur_max": "43.040237", "vbur_qvbur_min": "18.969597", "vbur_qvtot_max": "175.22102", "vbur_qvtot_min": "74.48643", "vbur_max_delta_qvbur": "28.362473", "vbur_max_delta_qvtot": "127.290245"}, "min_data": {"pyr_P": "0.8630995", "pyr_alpha": "15.832061", "qpole_amp": "4.3143106", "vbur_vbur": "58.36081", "sterimol_L": "7.358658", "sterimol_B1": "3.803607", "sterimol_B5": "6.3782496", "dipolemoment": "0.93969667", "qpoletens_xx": "2.7167425", "qpoletens_yy": "-0.37961704", "qpoletens_zz": "-6.2468634", "sterimol_burL": "7.029757", "vbur_far_vbur": "-0.3522133", "vbur_far_vtot": "3.1013074", "sterimol_burB1": "3.8059804", "sterimol_burB5": "6.1651697", "vbur_near_vbur": "57.834984", "vbur_near_vtot": "326.88748", "vbur_ovbur_max": "16.50898", "vbur_ovbur_min": "-0.003908188", "vbur_ovtot_max": "107.173294", "vbur_ovtot_min": "-0.029312026", "vbur_qvbur_max": "16.619684", "vbur_qvbur_min": "10.177161", "vbur_qvtot_max": "132.76558", "vbur_qvtot_min": "45.12416", "vbur_max_delta_qvbur": "3.1965294", "vbur_max_delta_qvtot": "54.14833"}, "delta_data": {"pyr_P": "0.09140083", "pyr_alpha": "10.542548", "qpole_amp": "3.6247466", "vbur_vbur": "50.877647", "sterimol_L": "3.2039678", "sterimol_B1": "0.9574671", "sterimol_B5": "1.451642", "dipolemoment": "0.6818364", "qpoletens_xx": "2.3472824", "qpoletens_yy": "2.3205032", "qpoletens_zz": "3.093378", "sterimol_burL": "1.1114882", "vbur_far_vbur": "33.691967", "vbur_far_vtot": "82.76033", "sterimol_burB1": "0.9204829", "sterimol_burB5": "1.0833116", "vbur_near_vbur": "20.321598", "vbur_near_vtot": "87.11916", "vbur_ovbur_max": "6.1620636", "vbur_ovbur_min": "1.1450664", "vbur_ovtot_max": "44.521523", "vbur_ovtot_min": "0.9993282", "vbur_qvbur_max": "27.20753", "vbur_qvbur_min": "8.451367", "vbur_qvtot_max": "48.683105", "vbur_qvtot_min": "30.173008", "vbur_max_delta_qvbur": "25.082312", "vbur_max_delta_qvtot": "72.54769"}, "vburminconf_data": {"pyr_P": "0.87953645", "pyr_alpha": "24.923937", "qpole_amp": "7.5361185", "vbur_vbur": "57.92854", "sterimol_L": "9.953635", "sterimol_B1": "4.5412073", "sterimol_B5": "7.3403716", "dipolemoment": "1.3164315", "qpoletens_xx": "4.571485", "qpoletens_yy": "0.64311963", "qpoletens_zz": "-5.264824", "sterimol_burL": "8.04234", "vbur_far_vbur": "-0.13696367", "vbur_far_vtot": "4.618157", "sterimol_burB1": "4.4812", "sterimol_burB5": "6.4449544", "vbur_near_vbur": "57.98859", "vbur_near_vtot": "404.65158", "vbur_ovbur_max": "17.055862", "vbur_ovbur_min": "-0.018459285", "vbur_ovtot_max": "147.56322", "vbur_ovtot_min": "-0.0035231258", "vbur_qvbur_max": "17.342134", "vbur_qvbur_min": "11.723128", "vbur_qvtot_max": "154.14415", "vbur_qvtot_min": "64.081566", "vbur_max_delta_qvbur": "5.253633", "vbur_max_delta_qvtot": "78.9321"}, "boltzmann_averaged_data": {"nbo_P": "0.792145", "nmr_P": "301.7657", "pyr_P": "0.9293077", "fmo_mu": "-0.1251334", "vmin_r": "1.8126602", "volume": "484.43484", "Pint_dP": "4.2490525", "fmo_eta": "0.1866374", "fukui_m": "0.4194781", "fukui_p": "0.00494597", "nuesp_P": "-54.196938", "somo_ra": "0.059287988", "somo_rc": "-0.37358916", "nbo_P_ra": "0.7652088", "nbo_P_rc": "1.1960267", "efg_amp_P": "1.7536187", "fmo_omega": "0.04232163", "pyr_alpha": "18.693115", "qpole_amp": "5.189825", "vbur_vbur": "86.73886", "vbur_vtot": "402.4386", "vmin_vmin": "-0.06147673", "E_solv_cds": "-10.240656", "Pint_P_int": "19.96249", "Pint_P_max": "36.3974", "Pint_P_min": "12.919764", "fmo_e_homo": "-0.22040452", "fmo_e_lumo": "-0.031501412", "nbo_lp_P_e": "-0.3020562", "sphericity": "0.747097", "sterimol_L": "7.8557434", "E_oxidation": "0.2667543", "E_reduction": "0.014460802", "sterimol_B1": "4.4547377", "sterimol_B5": "6.88935", "E_solv_total": "-16.378838", "dipolemoment": "0.83498806", "efgtens_xx_P": "-0.8435639", "efgtens_yy_P": "-0.5827982", "efgtens_zz_P": "1.434913", "nbo_bd_e_avg": "-0.44888252", "nbo_bd_e_max": "-0.43670782", "nbo_lp_P_occ": "1.9299632", "qpoletens_xx": "3.7189302", "qpoletens_yy": "0.50199115", "qpoletens_zz": "-3.8316185", "surface_area": "398.63733", "E_solv_elstat": "-6.10193", "nbo_bds_e_avg": "0.21356489", "nbo_bds_e_min": "0.20214406", "nmrtens_sxx_P": "286.0405", "nmrtens_syy_P": "303.4163", "nmrtens_szz_P": "332.81262", "spindens_P_ra": "0.0055383025", "spindens_P_rc": "0.54878753", "sterimol_burL": "7.3088846", "vbur_far_vbur": "22.651701", "vbur_far_vtot": "58.640587", "nbo_bd_occ_avg": "1.9535441", "nbo_bd_occ_min": "1.9468825", "sterimol_burB1": "4.349347", "sterimol_burB5": "6.5505505", "vbur_near_vbur": "65.42595", "vbur_near_vtot": "351.56088", "vbur_ovbur_max": "21.632961", "vbur_ovbur_min": "-0.08212156", "vbur_ovtot_max": "116.6263", "vbur_ovtot_min": "-0.022807498", "vbur_qvbur_max": "38.698097", "vbur_qvbur_min": "12.945731", "vbur_qvtot_max": "169.7606", "vbur_qvtot_min": "57.977123", "nbo_bds_occ_avg": "0.034308735", "nbo_bds_occ_max": "0.039980944", "nbo_lp_P_percent_s": "51.343742", "vbur_max_delta_qvbur": "24.264729", "vbur_max_delta_qvtot": "96.71447", "vbur_ratio_vbur_vtot": "0.21291608"}} c1ccc(-c2ccccc2P(C2CCCCC2)C2CCCCC2)cc1 {"max_data": {"B1": 4.899656535522791, "B5": 7.415439298303081, "lval": 10.290281522891421, "sasa": 600.8823631706739, "vbur": 78.47929392156334, "vtot": 399.04625197065513, "alpha": 285.166921, "p_int": 20.781388086028677, "sasa_P": 10.959968919783778, "pyr_val": 0.9561352303961874, "dip_norm": 0.7907787301135508, "far_vbur": 9.662755779143916, "far_vtot": 47.997613935271055, "near_vbur": 68.8165381424194, "near_vtot": 395.38860119855394, "ovbur_max": 20.91071636644655, "ovbur_min": 0.0, "ovtot_max": 151.31864323969458, "ovtot_min": 0.0, "pyr_alpha": 26.88112976908994, "qvbur_max": 29.25635344469389, "qvbur_min": 15.304219949355806, "qvtot_max": 166.2901462962913, "qvtot_min": 76.73456230120341, "cone_angle": 212.8565098331872, "p_int_area": 462.6590655870129, "p_int_atom": 32.90211382887039, "sasa_volume": 1017.972023049656, "EA_delta_SCC": 1.32, "IP_delta_SCC": 6.7022, "HOMO_LUMO_gap": 3.294422941894, "sasa_volume_P": 12.506141824194442, "max_delta_qvbur": 15.25759627852761, "max_delta_qvtot": 96.30864939774656, "nucleophilicity": -6.325, "p_int_atom_area": 13.49812175647969, "p_int_times_p_int_area": 9535.321919724753, "global_electrophilicity_index": 1.4871, "p_int_atom_times_p_int_atom_area": 397.7126860924767}, "min_data": {"B1": 4.107826795424779, "B5": 6.633430907678983, "lval": 7.61976056994589, "sasa": 559.1420578059776, "vbur": 54.351544267971164, "vtot": 395.0551047249074, "alpha": 285.055607, "p_int": 20.365094840486805, "sasa_P": 3.6199897344541236, "pyr_val": 0.8575047429112413, "dip_norm": 0.6161639392239698, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.351544267971164, "near_vtot": 350.40960507010146, "ovbur_max": 14.907918747316131, "ovbur_min": 0.0, "ovtot_max": 113.64536247784179, "ovtot_min": 0.0, "pyr_alpha": 14.295981294334874, "qvbur_max": 14.907918747316131, "qvbur_min": 9.522884766659326, "qvtot_max": 118.80411975755905, "qvtot_min": 53.33205719666742, "cone_angle": 166.5422985375268, "p_int_area": 434.3640521130347, "p_int_atom": 27.27801566216941, "sasa_volume": 977.3996377600781, "EA_delta_SCC": 1.1649, "IP_delta_SCC": 6.325, "HOMO_LUMO_gap": 2.915364268698, "sasa_volume_P": 3.1402833906222933, "max_delta_qvbur": 2.039785598733637, "max_delta_qvtot": 39.78139586026819, "nucleophilicity": -6.7022, "p_int_atom_area": 9.698650447248372, "p_int_times_p_int_area": 8969.058760587934, "global_electrophilicity_index": 1.3776, "p_int_atom_times_p_int_atom_area": 273.9531851703607}, "boltzmann_averaged_data": {"B1": 4.7820412151109375, "B5": 6.752329931567187, "lval": 8.693810792475666, "sasa": 591.2916728983497, "vbur": 68.60685704512969, "vtot": 397.79623828657645, "alpha": 285.09857331995966, "p_int": 20.527640242181153, "B1_std": 0.139842142397874, "B5_std": 0.0394666232056689, "sasa_P": 6.109861970067795, "pyr_val": 0.9268099034296186, "dip_norm": 0.6846127505086295, "far_vbur": 5.790483837286852, "far_vtot": 31.635063277722036, "lval_std": 0.7025064661916903, "sasa_std": 14.410492767506879, "vbur_std": 6.600937918548828, "vtot_std": 0.6445891234224719, "alpha_std": 0.009415477667749191, "near_vbur": 62.81637320784285, "near_vtot": 363.25867237548545, "ovbur_max": 19.068940677585292, "ovbur_min": 0.0, "ovtot_max": 124.07572350906717, "ovtot_min": 0.0, "p_int_std": 0.0913657129575117, "pyr_alpha": 18.51357339487961, "qvbur_max": 24.606744845914097, "qvbur_min": 13.807253085377782, "qvtot_max": 153.38158422288416, "qvtot_min": 65.66750977068905, "cone_angle": 196.10244005658313, "p_int_area": 457.59271641259267, "p_int_atom": 30.33719098064177, "sasa_P_std": 0.9408598569950201, "pyr_val_std": 0.015632253890098625, "sasa_volume": 1009.1050268940122, "EA_delta_SCC": 1.25062213966419, "IP_delta_SCC": 6.610060304809145, "dip_norm_std": 0.030985035932326477, "far_vbur_std": 3.3578039399306734, "far_vtot_std": 18.371284662641795, "HOMO_LUMO_gap": 3.1556459042894867, "near_vbur_std": 3.2653948424153696, "near_vtot_std": 15.200258975235322, "ovbur_max_std": 1.9606850468958923, "ovbur_min_std": 0.0, "ovtot_max_std": 4.758155968876023, "ovtot_min_std": 0.0, "pyr_alpha_std": 2.222050325701422, "qvbur_max_std": 5.167574734546294, "qvbur_min_std": 0.9834833597985689, "qvtot_max_std": 13.286615300842124, "qvtot_min_std": 5.380310336254727, "sasa_volume_P": 6.238760076403275, "cone_angle_std": 15.095709609406496, "p_int_area_std": 7.41031832550023, "p_int_atom_std": 1.3681419371908716, "max_delta_qvbur": 10.298439763110718, "max_delta_qvtot": 75.24530515056915, "nucleophilicity": -6.610060304809145, "p_int_atom_area": 11.259344106377101, "sasa_volume_std": 13.271446694979234, "EA_delta_SCC_std": 0.027182901016138843, "IP_delta_SCC_std": 0.04418661284192003, "HOMO_LUMO_gap_std": 0.06489300743956151, "sasa_volume_P_std": 1.7770550756824635, "max_delta_qvbur_std": 4.290303908258115, "max_delta_qvtot_std": 11.809835736754154, "nucleophilicity_std": 0.04418661284192003, "p_int_atom_area_std": 0.5716916367893975, "p_int_times_p_int_area": 9392.63830110007, "p_int_times_p_int_area_std": 112.46864475017193, "global_electrophilicity_index": 1.4412959348780463, "p_int_atom_times_p_int_atom_area": 341.4196524884444, "global_electrophilicity_index_std": 0.014985995481685445, "p_int_atom_times_p_int_atom_area_std": 20.84702186165568}} \\x07081449384e0240029c97508c184886c02410014a0243779626808283007a418090185044504a00105e80880880480041c1170a03005a13a8400a06009166c00a82807078036338469180441b0006202511408c88e080823030297049104c17100364031a212920212483b202cc8801a81e0179804010b400c4a4a8182c5000 \\x14000080006001000100000000000000100100000090000040004040010020000000000000200000000002001100000420000040100000000000000100004008 pc3 (5.673429012298584, 1.3048897981643677, 6.120335102081299, -2.627736568450928) (8.018644332885742, 5.598455429077148) -6 C1C2CC3CC1CC(P(C14CC5CC(CC(C5)C1)C4)C14CC5CC(CC(C5)C1)C4)(C2)C3 436.66400146484375 {"max_data": {"pyr_P": 0.8217720768070396, "pyr_alpha": 30.510622910538707, "qpole_amp": 3.481168392851927, "vbur_vbur": 65.67967458743423, "vbur_vtot": 461.734987328151, "sterimol_L": 7.400359314874619, "sterimol_B1": 5.230007913303002, "sterimol_B5": 6.902411036571997, "dipolemoment": 1.1463887717046564, "qpoletens_xx": 1.421997416678535, "qpoletens_yy": 1.4203645173722288, "qpoletens_zz": -2.8423619340507638, "sterimol_burL": 6.952512586975487, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 5.218561374436441, "sterimol_burB5": 6.443563831214862, "vbur_near_vbur": 65.67967458743422, "vbur_near_vtot": 462.59286593096414, "vbur_ovbur_max": 17.335869648020164, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 133.12777676617634, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.335869648020164, "vbur_qvbur_min": 15.283804715928728, "vbur_qvtot_max": 133.12777676617634, "vbur_qvtot_min": 98.4532661024022, "vbur_max_delta_qvbur": 1.445440232492544, "vbur_max_delta_qvtot": 33.69586770282062}, "min_data": {"pyr_P": 0.8217720768070396, "pyr_alpha": 30.510622910538707, "qpole_amp": 3.481168392851927, "vbur_vbur": 65.67967458743423, "vbur_vtot": 461.734987328151, "sterimol_L": 7.400359314874619, "sterimol_B1": 5.230007913303002, "sterimol_B5": 6.902411036571997, "dipolemoment": 1.1463887717046564, "qpoletens_xx": 1.421997416678535, "qpoletens_yy": 1.4203645173722288, "qpoletens_zz": -2.8423619340507638, "sterimol_burL": 6.952512586975487, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 5.218561374436441, "sterimol_burB5": 6.443563831214862, "vbur_near_vbur": 65.67967458743422, "vbur_near_vtot": 462.59286593096414, "vbur_ovbur_max": 17.335869648020164, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 133.12777676617634, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.335869648020164, "vbur_qvbur_min": 15.283804715928728, "vbur_qvtot_max": 133.12777676617634, "vbur_qvtot_min": 98.4532661024022, "vbur_max_delta_qvbur": 1.445440232492544, "vbur_max_delta_qvtot": 33.69586770282062}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.8217720768070396, "pyr_alpha": 30.510622910538707, "qpole_amp": 3.481168392851927, "vbur_vbur": 65.67967458743423, "vbur_vtot": 461.734987328151, "sterimol_L": 7.400359314874619, "sterimol_B1": 5.230007913303002, "sterimol_B5": 6.902411036571997, "dipolemoment": 1.1463887717046564, "qpoletens_xx": 1.421997416678535, "qpoletens_yy": 1.4203645173722288, "qpoletens_zz": -2.8423619340507638, "sterimol_burL": 6.952512586975487, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 5.218561374436441, "sterimol_burB5": 6.443563831214862, "vbur_near_vbur": 65.67967458743422, "vbur_near_vtot": 462.59286593096414, "vbur_ovbur_max": 17.335869648020164, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 133.12777676617634, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.335869648020164, "vbur_qvbur_min": 15.283804715928728, "vbur_qvtot_max": 133.12777676617634, "vbur_qvtot_min": 98.4532661024022, "vbur_max_delta_qvbur": 1.445440232492544, "vbur_max_delta_qvtot": 33.69586770282062}, "boltzmann_averaged_data": {"nbo_P": 0.8049, "nmr_P": 230.2584, "pyr_P": 0.8217720768070396, "fmo_mu": -0.09676, "vmin_r": 1.7801661159819135, "volume": 573.85453, "Pint_dP": 3.78, "fmo_eta": 0.22635999999999998, "fukui_m": 0.61616, "fukui_p": 0.023299999999999987, "nuesp_P": -54.201192, "somo_ra": 0.08304, "somo_rc": -0.38878, "nbo_P_ra": 0.7816, "nbo_P_rc": 1.42106, "efg_amp_P": 1.7344788035816407, "fmo_omega": 0.02068054779996466, "pyr_alpha": 30.510622910538707, "qpole_amp": 3.481168392851927, "vbur_vbur": 65.67967458743423, "vbur_vtot": 461.734987328151, "vmin_vmin": -0.0712438, "E_solv_cds": -11.65, "Pint_P_int": 20.69, "Pint_P_max": 29.64, "Pint_P_min": 14.41, "fmo_e_homo": -0.20994, "fmo_e_lumo": 0.01642, "nbo_lp_P_e": -0.27626, "sphericity": 0.794988, "sterimol_L": 7.400359314874619, "E_oxidation": 0.25735680000002503, "E_reduction": 0.0499205000000984, "sterimol_B1": 5.230007913303002, "sterimol_B5": 6.902411036571997, "E_solv_total": -15.594363340757315, "dipolemoment": 1.1463887717046564, "efgtens_xx_P": -0.708263, "efgtens_yy_P": -0.707933, "efgtens_zz_P": 1.416196, "nbo_bd_e_avg": -0.42695666666666665, "nbo_bd_e_max": -0.42692, "nbo_lp_P_occ": 1.92158, "qpoletens_xx": 1.421997416678535, "qpoletens_yy": 1.4203645173722288, "qpoletens_zz": -2.8423619340507638, "surface_area": 420.07279, "E_solv_elstat": -3.944363340757315, "nbo_bds_e_avg": 0.19327999999999998, "nbo_bds_e_min": 0.19322, "nmrtens_sxx_P": 186.0104, "nmrtens_syy_P": 186.1169, "nmrtens_szz_P": 318.6477, "spindens_P_ra": 0.03121, "spindens_P_rc": 0.79423, "sterimol_burL": 6.952512586975487, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9479300000000002, "nbo_bd_occ_min": 1.94792, "sterimol_burB1": 5.218561374436441, "sterimol_burB5": 6.443563831214862, "vbur_near_vbur": 65.67967458743422, "vbur_near_vtot": 462.59286593096414, "vbur_ovbur_max": 17.335869648020164, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 133.12777676617634, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.335869648020164, "vbur_qvbur_min": 15.283804715928728, "vbur_qvtot_max": 133.12777676617634, "vbur_qvtot_min": 98.4532661024022, "nbo_bds_occ_avg": 0.04436333333333333, "nbo_bds_occ_max": 0.04437, "nbo_lp_P_percent_s": 47.41, "vbur_max_delta_qvbur": 1.445440232492544, "vbur_max_delta_qvtot": 33.69586770282062, "vbur_ratio_vbur_vtot": 0.14224539268183345}} \N {"max_data": {"pyr_P": "0.8336845", "pyr_alpha": "33.21561", "qpole_amp": "5.34897", "vbur_vbur": "76.37198", "sterimol_L": "8.3746805", "sterimol_B1": "4.6047482", "sterimol_B5": "7.084614", "dipolemoment": "1.3075361", "qpoletens_xx": "3.1040874", "qpoletens_yy": "0.43616608", "qpoletens_zz": "-3.0426571", "sterimol_burL": "7.1125803", "vbur_far_vbur": "6.3477755", "vbur_far_vtot": "15.441899", "sterimol_burB1": "4.6808195", "sterimol_burB5": "6.671568", "vbur_near_vbur": "68.57933", "vbur_near_vtot": "451.99487", "vbur_ovbur_max": "20.138594", "vbur_ovbur_min": "0.8591877", "vbur_ovtot_max": "149.35284", "vbur_ovtot_min": "-0.64174455", "vbur_qvbur_max": "29.644243", "vbur_qvbur_min": "15.822205", "vbur_qvtot_max": "135.04846", "vbur_qvtot_min": "77.73422", "vbur_max_delta_qvbur": "12.390151", "vbur_max_delta_qvtot": "79.21279"}, "min_data": {"pyr_P": "0.78480136", "pyr_alpha": "30.35693", "qpole_amp": "4.8848686", "vbur_vbur": "69.02286", "sterimol_L": "7.6856", "sterimol_B1": "4.5434537", "sterimol_B5": "6.734043", "dipolemoment": "0.53407466", "qpoletens_xx": "3.3751664", "qpoletens_yy": "0.06120292", "qpoletens_zz": "-4.058505", "sterimol_burL": "6.9748735", "vbur_far_vbur": "3.8895328", "vbur_far_vtot": "6.5088396", "sterimol_burB1": "4.495926", "sterimol_burB5": "6.611477", "vbur_near_vbur": "67.7633", "vbur_near_vtot": "453.65616", "vbur_ovbur_max": "18.924824", "vbur_ovbur_min": "0.0130280135", "vbur_ovtot_max": "141.1799", "vbur_ovtot_min": "0.043103572", "vbur_qvbur_max": "16.627186", "vbur_qvbur_min": "14.148195", "vbur_qvtot_max": "144.86607", "vbur_qvtot_min": "70.01101", "vbur_max_delta_qvbur": "5.7366543", "vbur_max_delta_qvtot": "73.88379"}, "delta_data": {"pyr_P": "0.048239436", "pyr_alpha": "4.600775", "qpole_amp": "0.42886078", "vbur_vbur": "5.8365192", "sterimol_L": "0.3077799", "sterimol_B1": "0.033044446", "sterimol_B5": "0.1748612", "dipolemoment": "-0.033522267", "qpoletens_xx": "-0.90172833", "qpoletens_yy": "0.3209284", "qpoletens_zz": "0.8346989", "sterimol_burL": "-0.0069742217", "vbur_far_vbur": "4.1716304", "vbur_far_vtot": "10.051058", "sterimol_burB1": "0.11682659", "sterimol_burB5": "0.061815042", "vbur_near_vbur": "0.83449185", "vbur_near_vtot": "10.011859", "vbur_ovbur_max": "0.53705895", "vbur_ovbur_min": "0.55362123", "vbur_ovtot_max": "6.5103245", "vbur_ovtot_min": "-0.271371", "vbur_qvbur_max": "6.8398695", "vbur_qvbur_min": "1.5367969", "vbur_qvtot_max": "-0.21254799", "vbur_qvtot_min": "7.170211", "vbur_max_delta_qvbur": "7.039052", "vbur_max_delta_qvtot": "3.5462017"}, "vburminconf_data": {"pyr_P": "0.81029004", "pyr_alpha": "31.213", "qpole_amp": "4.9664373", "vbur_vbur": "69.99989", "sterimol_L": "8.562499", "sterimol_B1": "4.8052335", "sterimol_B5": "6.824239", "dipolemoment": "1.379856", "qpoletens_xx": "2.6995013", "qpoletens_yy": "0.90639365", "qpoletens_zz": "-3.958192", "sterimol_burL": "7.1500654", "vbur_far_vbur": "0.7025906", "vbur_far_vtot": "4.1572843", "sterimol_burB1": "4.580569", "sterimol_burB5": "6.6278386", "vbur_near_vbur": "67.37133", "vbur_near_vtot": "448.51926", "vbur_ovbur_max": "19.656902", "vbur_ovbur_min": "0.05048266", "vbur_ovtot_max": "150.61426", "vbur_ovtot_min": "0.63997644", "vbur_qvbur_max": "19.478495", "vbur_qvbur_min": "14.038965", "vbur_qvtot_max": "154.37343", "vbur_qvtot_min": "78.19086", "vbur_max_delta_qvbur": "6.3611913", "vbur_max_delta_qvtot": "80.27729"}, "boltzmann_averaged_data": {"nbo_P": "0.82454294", "nmr_P": "243.07462", "pyr_P": "0.84532005", "fmo_mu": "-0.112264365", "vmin_r": "1.7361922", "volume": "576.5213", "Pint_dP": "3.8462293", "fmo_eta": "0.23510502", "fukui_m": "0.55762005", "fukui_p": "0.07327314", "nuesp_P": "-54.207203", "somo_ra": "0.08174487", "somo_rc": "-0.3814429", "nbo_P_ra": "0.76839495", "nbo_P_rc": "1.3431975", "efg_amp_P": "1.7599608", "fmo_omega": "0.027838638", "pyr_alpha": "29.593622", "qpole_amp": "4.730557", "vbur_vbur": "72.01028", "vbur_vtot": "462.1057", "vmin_vmin": "-0.0684169", "E_solv_cds": "-12.049079", "Pint_P_int": "20.542557", "Pint_P_max": "34.360218", "Pint_P_min": "13.590177", "fmo_e_homo": "-0.21729794", "fmo_e_lumo": "0.009587423", "nbo_lp_P_e": "-0.2664678", "sphericity": "0.78188", "sterimol_L": "7.780383", "E_oxidation": "0.2634896", "E_reduction": "0.042296853", "sterimol_B1": "4.658496", "sterimol_B5": "7.2659454", "E_solv_total": "-15.743045", "dipolemoment": "0.12845717", "efgtens_xx_P": "-0.82081074", "efgtens_yy_P": "-0.6120455", "efgtens_zz_P": "1.4433867", "nbo_bd_e_avg": "-0.43276688", "nbo_bd_e_max": "-0.41040528", "nbo_lp_P_occ": "1.920984", "qpoletens_xx": "2.6630862", "qpoletens_yy": "0.41179797", "qpoletens_zz": "-3.3878183", "surface_area": "421.9543", "E_solv_elstat": "-3.5117502", "nbo_bds_e_avg": "0.20798725", "nbo_bds_e_min": "0.20444997", "nmrtens_sxx_P": "217.63606", "nmrtens_syy_P": "250.71829", "nmrtens_szz_P": "298.44547", "spindens_P_ra": "0.09637703", "spindens_P_rc": "0.71959734", "sterimol_burL": "7.057931", "vbur_far_vbur": "5.6155105", "vbur_far_vtot": "12.783187", "nbo_bd_occ_avg": "1.9461999", "nbo_bd_occ_min": "1.9441975", "sterimol_burB1": "4.5601153", "sterimol_burB5": "6.70786", "vbur_near_vbur": "67.75409", "vbur_near_vtot": "448.6092", "vbur_ovbur_max": "19.497337", "vbur_ovbur_min": "0.116048835", "vbur_ovtot_max": "141.68175", "vbur_ovtot_min": "-0.19064792", "vbur_qvbur_max": "22.947514", "vbur_qvbur_min": "14.451055", "vbur_qvtot_max": "153.50928", "vbur_qvtot_min": "74.453766", "nbo_bds_occ_avg": "0.0422095", "nbo_bds_occ_max": "0.054886855", "nbo_lp_P_percent_s": "46.228977", "vbur_max_delta_qvbur": "10.068621", "vbur_max_delta_qvtot": "76.02217", "vbur_ratio_vbur_vtot": "0.1482825"}} C1C2CC3CC1CC(P(C14CC5CC(CC(C5)C1)C4)C14CC5CC(CC(C5)C1)C4)(C2)C3 \N \\x00081050008010400201802000084804408430100a200002902008020100600201000010046060100008000800002a60010002010100021200000800000020440000009088000220068090020580000020000184004000002010019048102022012264021800240000200080000c000383004019801808000000200800200000 \\x00000400102000000000008000004000000000008800000000000000000200000010000000000000000000000000004000000040400000010000000000000008 pc3 (3.8022656440734863, 9.851282119750977, 0.5744709968566895, 0.1682641953229904) (4.234940528869629, 5.697756290435791) -7 COc1cccc(OC)c1-c1ccccc1P(c1ccccc1)c1ccccc1 398.4419860839844 {"max_data": {"pyr_P": 0.9365476277562605, "pyr_alpha": 24.84515460604158, "qpole_amp": 14.038324267663835, "vbur_vbur": 100.01358668007725, "vbur_vtot": 443.22310971689257, "sterimol_L": 9.71296666390743, "sterimol_B1": 4.610107052692715, "sterimol_B5": 7.690561036618875, "dipolemoment": 2.7955832356057435, "qpoletens_xx": 10.417600569716441, "qpoletens_yy": 3.0419016091059445, "qpoletens_zz": -4.97712825525066, "sterimol_burL": 8.343876568638688, "vbur_far_vbur": 34.56296521197432, "vbur_far_vtot": 71.30219911337291, "sterimol_burB1": 4.5548693709934795, "sterimol_burB5": 7.4988918514097, "vbur_near_vbur": 67.21820033417558, "vbur_near_vtot": 439.91011983058337, "vbur_ovbur_max": 22.394910461744058, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 176.33388436604955, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 41.972153784316696, "vbur_qvbur_min": 11.595944904229235, "vbur_qvtot_max": 180.27152494384808, "vbur_qvtot_min": 75.54445003230883, "vbur_max_delta_qvbur": 24.231519035012447, "vbur_max_delta_qvtot": 103.67260564986502}, "min_data": {"pyr_P": 0.876289416461672, "pyr_alpha": 17.424321336215918, "qpole_amp": 9.793711133579144, "vbur_vbur": 52.14880607241542, "vbur_vtot": 439.13241527064287, "sterimol_L": 7.509960342592852, "sterimol_B1": 4.18383945442012, "sterimol_B5": 6.398442516514801, "dipolemoment": 1.4925405503867113, "qpoletens_xx": 6.919767365574308, "qpoletens_yy": -3.9328976150551735, "qpoletens_zz": -10.260679866033428, "sterimol_burL": 7.094582016290306, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.126806466186226, "sterimol_burB5": 6.138821485481593, "vbur_near_vbur": 52.14880607241541, "vbur_near_vtot": 371.1009675459101, "vbur_ovbur_max": 14.804780384176498, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 122.6807053539217, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.804780384176498, "vbur_qvbur_min": 10.448587498263738, "vbur_qvtot_max": 152.7740192601152, "vbur_qvtot_min": 57.53017155138626, "vbur_max_delta_qvbur": 2.4118561332328525, "vbur_max_delta_qvtot": 78.13777781122175}, "delta_data": {"pyr_P": 0.060258211294588526, "pyr_alpha": 7.4208332698256605, "qpole_amp": 4.244613134084691, "vbur_vbur": 47.864780607661835, "vbur_vtot": 4.0906944462496995, "sterimol_L": 2.203006321314578, "sterimol_B1": 0.4262675982725952, "sterimol_B5": 1.292118520104074, "dipolemoment": 1.3030426852190322, "qpoletens_xx": 3.4978332041421334, "qpoletens_yy": 6.974799224161118, "qpoletens_zz": 5.283551610782768, "sterimol_burL": 1.249294552348382, "vbur_far_vbur": 34.56296521197432, "vbur_far_vtot": 71.30219911337291, "sterimol_burB1": 0.42806290480725373, "sterimol_burB5": 1.3600703659281068, "vbur_near_vbur": 15.069394261760166, "vbur_near_vtot": 68.80915228467325, "vbur_ovbur_max": 7.59013007756756, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 53.65317901212785, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 27.1673734001402, "vbur_qvbur_min": 1.1473574059654972, "vbur_qvtot_max": 27.497505683732868, "vbur_qvtot_min": 18.01427848092257, "vbur_max_delta_qvbur": 21.819662901779594, "vbur_max_delta_qvtot": 25.534827838643267}, "vburminconf_data": {"pyr_P": 0.8846673870623423, "pyr_alpha": 23.650572174717606, "qpole_amp": 14.038324267663835, "vbur_vbur": 52.14880607241542, "vbur_vtot": 439.9101198305833, "sterimol_L": 9.379148640920906, "sterimol_B1": 4.53647399349092, "sterimol_B5": 7.690561036618875, "dipolemoment": 2.6041126913225456, "qpoletens_xx": 10.417600569716441, "qpoletens_yy": -1.0684533308672357, "qpoletens_zz": -9.349147238849206, "sterimol_burL": 7.810167726867492, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.515760164973818, "sterimol_burB5": 7.4988918514097, "vbur_near_vbur": 52.14880607241541, "vbur_near_vtot": 439.91011983058337, "vbur_ovbur_max": 14.804780384176498, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 176.33388436604955, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.804780384176498, "vbur_qvbur_min": 11.595944904229235, "vbur_qvtot_max": 176.33388436604955, "vbur_qvtot_min": 70.19001859071967, "vbur_max_delta_qvbur": 2.4118561332328525, "vbur_max_delta_qvtot": 99.53819861772743}, "boltzmann_averaged_data": {"nbo_P": 0.8111358525183586, "nmr_P": 296.9875875858476, "pyr_P": 0.9324693904431417, "fmo_mu": -0.12149782832165128, "vmin_r": 1.8024788279613049, "volume": 505.1834056974021, "Pint_dP": 4.509481894415541, "fmo_eta": 0.19003221521816127, "fukui_m": 0.2902220442396451, "fukui_p": 0.04534478867200177, "nuesp_P": -54.185291809262296, "somo_ra": 0.05791875270511275, "somo_rc": -0.35000596832640163, "nbo_P_ra": 0.7657910638463569, "nbo_P_rc": 1.1013578967580036, "efg_amp_P": 1.795486579280808, "fmo_omega": 0.03884069543429555, "pyr_alpha": 18.01442086055629, "qpole_amp": 11.639475573458355, "vbur_vbur": 93.77895268211199, "vbur_vtot": 442.7674303760927, "vmin_vmin": -0.052219843986609935, "E_solv_cds": -7.857125934403173, "Pint_P_int": 20.500911759198246, "Pint_P_max": 40.89725091013648, "Pint_P_min": 13.460283093872064, "fmo_e_homo": -0.21651393593073193, "fmo_e_lumo": -0.02648172071257063, "nbo_lp_P_e": -0.2986299232369931, "sphericity": 0.7402152641321473, "sterimol_L": 7.514414114817991, "E_oxidation": 0.25909188334418826, "E_reduction": 0.016531359839941865, "sterimol_B1": 4.258641156904277, "sterimol_B5": 7.168965097495433, "E_solv_total": -18.393989752816857, "dipolemoment": 1.5025395790569802, "efgtens_xx_P": -0.7466855001636876, "efgtens_yy_P": -0.719237157278658, "efgtens_zz_P": 1.4659226582175302, "nbo_bd_e_avg": -0.4678569351558478, "nbo_bd_e_max": -0.4644508821294715, "nbo_lp_P_occ": 1.8983292503747922, "qpoletens_xx": 7.263447340987902, "qpoletens_yy": 1.6645681032780308, "qpoletens_zz": -8.928015444265933, "surface_area": 414.40652695972716, "E_solv_elstat": -10.536863818413686, "nbo_bds_e_avg": 0.23374292112135756, "nbo_bds_e_min": 0.23035107466519902, "nmrtens_sxx_P": 264.6033805376901, "nmrtens_syy_P": 301.24454870669865, "nmrtens_szz_P": 325.1148335130521, "spindens_P_ra": 0.048373453748890294, "spindens_P_rc": 0.38247196093548486, "sterimol_burL": 7.100603541683111, "vbur_far_vbur": 29.94695811371963, "vbur_far_vtot": 59.19149155182551, "nbo_bd_occ_avg": 1.951299516726374, "nbo_bd_occ_min": 1.9501560542890735, "sterimol_burB1": 4.178906291914789, "sterimol_burB5": 6.451259813054941, "vbur_near_vbur": 63.83199456839238, "vbur_near_vtot": 379.86179182215744, "vbur_ovbur_max": 21.90630209424877, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 140.73399536145737, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 41.55545138963966, "vbur_qvbur_min": 11.00789446351612, "vbur_qvtot_max": 177.47128508490516, "vbur_qvtot_min": 57.92225004263558, "nbo_bds_occ_avg": 0.03926576395498457, "nbo_bds_occ_max": 0.041475758794652796, "nbo_lp_P_percent_s": 49.74235030182971, "vbur_max_delta_qvbur": 24.154573874446527, "vbur_max_delta_qvtot": 100.35245394506737, "vbur_ratio_vbur_vtot": 0.21180132066850474}} \N {"max_data": {"pyr_P": "0.9373188", "pyr_alpha": "22.973614", "qpole_amp": "14.0043", "vbur_vbur": "93.0399", "sterimol_L": "9.8273", "sterimol_B1": "4.4714184", "sterimol_B5": "7.8077555", "dipolemoment": "3.0183117", "qpoletens_xx": "9.761969", "qpoletens_yy": "2.7865999", "qpoletens_zz": "-5.038828", "sterimol_burL": "8.174192", "vbur_far_vbur": "32.534092", "vbur_far_vtot": "73.86838", "sterimol_burB1": "4.46754", "sterimol_burB5": "7.4241886", "vbur_near_vbur": "63.11364", "vbur_near_vtot": "426.90646", "vbur_ovbur_max": "21.653473", "vbur_ovbur_min": "0.052985195", "vbur_ovtot_max": "173.20702", "vbur_ovtot_min": "0.561146", "vbur_qvbur_max": "41.553864", "vbur_qvbur_min": "10.389161", "vbur_qvtot_max": "188.58344", "vbur_qvtot_min": "71.94119", "vbur_max_delta_qvbur": "23.747557", "vbur_max_delta_qvtot": "120.17155"}, "min_data": {"pyr_P": "0.89016896", "pyr_alpha": "17.451674", "qpole_amp": "8.867895", "vbur_vbur": "60.282272", "sterimol_L": "7.67723", "sterimol_B1": "4.2212214", "sterimol_B5": "6.683408", "dipolemoment": "1.2880775", "qpoletens_xx": "6.2017775", "qpoletens_yy": "-3.117661", "qpoletens_zz": "-10.050381", "sterimol_burL": "7.065727", "vbur_far_vbur": "0.49971798", "vbur_far_vtot": "7.9966273", "sterimol_burB1": "4.1030426", "sterimol_burB5": "6.3298063", "vbur_near_vbur": "54.84439", "vbur_near_vtot": "369.7602", "vbur_ovbur_max": "15.8147955", "vbur_ovbur_min": "0.019720737", "vbur_ovtot_max": "126.241135", "vbur_ovtot_min": "0.017356686", "vbur_qvbur_max": "16.156744", "vbur_qvbur_min": "10.818321", "vbur_qvtot_max": "161.52087", "vbur_qvtot_min": "57.75655", "vbur_max_delta_qvbur": "4.806519", "vbur_max_delta_qvtot": "88.03255"}, "delta_data": {"pyr_P": "0.051134404", "pyr_alpha": "6.084396", "qpole_amp": "5.3664923", "vbur_vbur": "32.570145", "sterimol_L": "1.8908842", "sterimol_B1": "0.31195763", "sterimol_B5": "1.0828105", "dipolemoment": "1.898358", "qpoletens_xx": "4.143372", "qpoletens_yy": "5.807695", "qpoletens_zz": "5.3099723", "sterimol_burL": "0.95553076", "vbur_far_vbur": "26.83447", "vbur_far_vtot": "60.840008", "sterimol_burB1": "0.3432321", "sterimol_burB5": "1.1013983", "vbur_near_vbur": "8.382236", "vbur_near_vtot": "54.042744", "vbur_ovbur_max": "6.2986526", "vbur_ovbur_min": "0.2026781", "vbur_ovtot_max": "37.959457", "vbur_ovtot_min": "0.36643985", "vbur_qvbur_max": "26.733177", "vbur_qvbur_min": "-0.090260506", "vbur_qvtot_max": "23.488626", "vbur_qvtot_min": "12.1184225", "vbur_max_delta_qvbur": "19.659992", "vbur_max_delta_qvtot": "25.78343"}, "vburminconf_data": {"pyr_P": "0.8964127", "pyr_alpha": "22.141603", "qpole_amp": "11.439006", "vbur_vbur": "60.543556", "sterimol_L": "9.487101", "sterimol_B1": "4.4699807", "sterimol_B5": "7.498636", "dipolemoment": "2.747596", "qpoletens_xx": "7.685693", "qpoletens_yy": "0.02713617", "qpoletens_zz": "-8.370616", "sterimol_burL": "7.7148232", "vbur_far_vbur": "1.1185353", "vbur_far_vtot": "9.695118", "sterimol_burB1": "4.3363633", "sterimol_burB5": "6.8780622", "vbur_near_vbur": "54.58056", "vbur_near_vtot": "427.78088", "vbur_ovbur_max": "15.764271", "vbur_ovbur_min": "0.008499574", "vbur_ovtot_max": "172.1484", "vbur_ovtot_min": "0.016598279", "vbur_qvbur_max": "16.632036", "vbur_qvbur_min": "11.356784", "vbur_qvtot_max": "174.86911", "vbur_qvtot_min": "74.45332", "vbur_max_delta_qvbur": "5.812177", "vbur_max_delta_qvtot": "105.8137"}, "boltzmann_averaged_data": {"nbo_P": "0.8172594", "nmr_P": "298.83545", "pyr_P": "0.93330497", "fmo_mu": "-0.120977126", "vmin_r": "1.8182273", "volume": "504.90375", "Pint_dP": "4.637434", "fmo_eta": "0.188495", "fukui_m": "0.26243174", "fukui_p": "0.027683357", "nuesp_P": "-54.186615", "somo_ra": "0.056263376", "somo_rc": "-0.35325357", "nbo_P_ra": "0.7851625", "nbo_P_rc": "1.0629507", "efg_amp_P": "1.8030821", "fmo_omega": "0.039277576", "pyr_alpha": "17.892843", "qpole_amp": "11.475079", "vbur_vbur": "93.9035", "vbur_vtot": "443.04517", "vmin_vmin": "-0.05514315", "E_solv_cds": "-7.8434887", "Pint_P_int": "20.729908", "Pint_P_max": "39.335033", "Pint_P_min": "13.401169", "fmo_e_homo": "-0.2134654", "fmo_e_lumo": "-0.028350847", "nbo_lp_P_e": "-0.29788274", "sphericity": "0.73405886", "sterimol_L": "7.5392203", "E_oxidation": "0.255711", "E_reduction": "0.014077639", "sterimol_B1": "4.2626963", "sterimol_B5": "7.275165", "E_solv_total": "-18.255585", "dipolemoment": "1.2770045", "efgtens_xx_P": "-0.77952063", "efgtens_yy_P": "-0.70783067", "efgtens_zz_P": "1.4704331", "nbo_bd_e_avg": "-0.4664297", "nbo_bd_e_max": "-0.4622277", "nbo_lp_P_occ": "1.894863", "qpoletens_xx": "6.9751506", "qpoletens_yy": "1.5225291", "qpoletens_zz": "-8.421637", "surface_area": "418.431", "E_solv_elstat": "-10.563285", "nbo_bds_e_avg": "0.23437262", "nbo_bds_e_min": "0.22820444", "nmrtens_sxx_P": "277.80463", "nmrtens_syy_P": "305.05264", "nmrtens_szz_P": "327.51978", "spindens_P_ra": "0.024881512", "spindens_P_rc": "0.33443195", "sterimol_burL": "7.048919", "vbur_far_vbur": "31.554548", "vbur_far_vtot": "66.697975", "nbo_bd_occ_avg": "1.9514834", "nbo_bd_occ_min": "1.9495673", "sterimol_burB1": "4.2107787", "sterimol_burB5": "6.780259", "vbur_near_vbur": "63.843502", "vbur_near_vtot": "374.31284", "vbur_ovbur_max": "21.318005", "vbur_ovbur_min": "-0.03141948", "vbur_ovtot_max": "141.9325", "vbur_ovtot_min": "0.02125227", "vbur_qvbur_max": "41.226295", "vbur_qvbur_min": "10.862569", "vbur_qvtot_max": "181.22661", "vbur_qvtot_min": "56.117413", "nbo_bds_occ_avg": "0.0381301", "nbo_bds_occ_max": "0.040917527", "nbo_lp_P_percent_s": "49.877514", "vbur_max_delta_qvbur": "24.076927", "vbur_max_delta_qvtot": "112.06901", "vbur_ratio_vbur_vtot": "0.19637483"}} COc1cccc(OC)c1-c1ccccc1P(c1ccccc1)c1ccccc1 \N \\x07901049165003d40019994581727183800420175306c010074cc103861226018c921a48c440ab4805d68c8824c4582918ad13c8829c191860b0862c0810248a8b03817060080d08a881808213100420a03169580630c08218a30c6083100a030021e405006068646024023e421038813d8a1573824050ad030084a04800f411 \\x01800040022008000100000000000000100000000090800000084800000000020000000000000000080202001100000024008000200004000000080100800002 pc3 (6.36913537979126, 0.6344777345657349, 1.149192214012146, -1.6704919338226318) (8.470039367675781, 3.6782431602478023) -8 CC(C)(C)P(C(C)(C)C)C(C)(C)C 202.32200622558594 {"max_data": {"pyr_P": 0.8307044161973427, "pyr_alpha": 29.646951148224986, "qpole_amp": 2.8149764890400437, "vbur_vbur": 65.12848283452281, "vbur_vtot": 253.2004250562681, "sterimol_L": 6.648917390127483, "sterimol_B1": 4.053254485218302, "sterimol_B5": 4.894739111574918, "dipolemoment": 1.083267719125033, "qpoletens_xx": 1.1519610953774273, "qpoletens_yy": 1.1464553852204706, "qpoletens_zz": -2.298416480597898, "sterimol_burL": 6.648917390127483, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.053254485218302, "sterimol_burB5": 4.894739111574918, "vbur_near_vbur": 65.12848283452281, "vbur_near_vtot": 253.20042505626816, "vbur_ovbur_max": 17.12250509850607, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 66.72568923628654, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.12250509850607, "vbur_qvbur_min": 15.19908643891578, "vbur_qvtot_max": 66.72568923628654, "vbur_qvtot_min": 57.68427902517595, "vbur_max_delta_qvbur": 1.3837318578781712, "vbur_max_delta_qvtot": 8.701615306187726}, "min_data": {"pyr_P": 0.8307044161973427, "pyr_alpha": 29.646951148224986, "qpole_amp": 2.8149764890400437, "vbur_vbur": 65.12848283452281, "vbur_vtot": 253.2004250562681, "sterimol_L": 6.648917390127483, "sterimol_B1": 4.053254485218302, "sterimol_B5": 4.894739111574918, "dipolemoment": 1.083267719125033, "qpoletens_xx": 1.1519610953774273, "qpoletens_yy": 1.1464553852204706, "qpoletens_zz": -2.298416480597898, "sterimol_burL": 6.648917390127483, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.053254485218302, "sterimol_burB5": 4.894739111574918, "vbur_near_vbur": 65.12848283452281, "vbur_near_vtot": 253.20042505626816, "vbur_ovbur_max": 17.12250509850607, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 66.72568923628654, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.12250509850607, "vbur_qvbur_min": 15.19908643891578, "vbur_qvtot_max": 66.72568923628654, "vbur_qvtot_min": 57.68427902517595, "vbur_max_delta_qvbur": 1.3837318578781712, "vbur_max_delta_qvtot": 8.701615306187726}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.8307044161973427, "pyr_alpha": 29.646951148224986, "qpole_amp": 2.8149764890400437, "vbur_vbur": 65.12848283452281, "vbur_vtot": 253.2004250562681, "sterimol_L": 6.648917390127483, "sterimol_B1": 4.053254485218302, "sterimol_B5": 4.894739111574918, "dipolemoment": 1.083267719125033, "qpoletens_xx": 1.1519610953774273, "qpoletens_yy": 1.1464553852204706, "qpoletens_zz": -2.298416480597898, "sterimol_burL": 6.648917390127483, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.053254485218302, "sterimol_burB5": 4.894739111574918, "vbur_near_vbur": 65.12848283452281, "vbur_near_vtot": 253.20042505626816, "vbur_ovbur_max": 17.12250509850607, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 66.72568923628654, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.12250509850607, "vbur_qvbur_min": 15.19908643891578, "vbur_qvtot_max": 66.72568923628654, "vbur_qvtot_min": 57.68427902517595, "vbur_max_delta_qvbur": 1.3837318578781712, "vbur_max_delta_qvtot": 8.701615306187726}, "boltzmann_averaged_data": {"nbo_P": 0.74462, "nmr_P": 225.189, "pyr_P": 0.8307044161973427, "fmo_mu": -0.09043499999999999, "vmin_r": 1.7801654663855169, "volume": 317.84446, "Pint_dP": 2.54, "fmo_eta": 0.25289, "fukui_m": 0.6336800000000001, "fukui_p": 0.004529999999999923, "nuesp_P": -54.196339, "somo_ra": 0.11399, "somo_rc": -0.45613, "nbo_P_ra": 0.74009, "nbo_P_rc": 1.3783, "efg_amp_P": 1.7492287996768747, "fmo_omega": 0.016170052641464663, "pyr_alpha": 29.646951148224986, "qpole_amp": 2.8149764890400437, "vbur_vbur": 65.12848283452281, "vbur_vtot": 253.2004250562681, "vmin_vmin": -0.0671848, "E_solv_cds": -3.32, "Pint_P_int": 17.76, "Pint_P_max": 25.87, "Pint_P_min": 13.45, "fmo_e_homo": -0.21688, "fmo_e_lumo": 0.03601, "nbo_lp_P_e": -0.29422, "sphericity": 0.889512, "sterimol_L": 6.648917390127483, "E_oxidation": 0.2735086999999794, "E_reduction": 0.07537150000007387, "sterimol_B1": 4.053254485218302, "sterimol_B5": 4.894739111574918, "E_solv_total": -7.006582489174158, "dipolemoment": 1.083267719125033, "efgtens_xx_P": -0.714163, "efgtens_yy_P": -0.714077, "efgtens_zz_P": 1.428239, "nbo_bd_e_avg": -0.43117333333333335, "nbo_bd_e_max": -0.43114, "nbo_lp_P_occ": 1.93525, "qpoletens_xx": 1.1519610953774273, "qpoletens_yy": 1.1464553852204706, "qpoletens_zz": -2.298416480597898, "surface_area": 253.2069, "E_solv_elstat": -3.686582489174158, "nbo_bds_e_avg": 0.17694333333333334, "nbo_bds_e_min": 0.17692, "nmrtens_sxx_P": 200.3439, "nmrtens_syy_P": 200.864, "nmrtens_szz_P": 274.359, "spindens_P_ra": 0.01546, "spindens_P_rc": 0.81752, "sterimol_burL": 6.648917390127483, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.94459, "nbo_bd_occ_min": 1.94458, "sterimol_burB1": 4.053254485218302, "sterimol_burB5": 4.894739111574918, "vbur_near_vbur": 65.12848283452281, "vbur_near_vtot": 253.20042505626816, "vbur_ovbur_max": 17.12250509850607, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 66.72568923628654, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.12250509850607, "vbur_qvbur_min": 15.19908643891578, "vbur_qvtot_max": 66.72568923628654, "vbur_qvtot_min": 57.68427902517595, "nbo_bds_occ_avg": 0.05245333333333333, "nbo_bds_occ_max": 0.05246, "nbo_lp_P_percent_s": 50.14, "vbur_max_delta_qvbur": 1.3837318578781712, "vbur_max_delta_qvtot": 8.701615306187726, "vbur_ratio_vbur_vtot": 0.25722106438032033}} {"max_data": {"B1": 4.0577327618487935, "B5": 4.869462892882117, "lval": 6.483520656844245, "sasa": 395.3514608116118, "vbur": 72.87279750447259, "vtot": 251.11328349756752, "alpha": 169.876299, "p_int": 17.85048214384529, "sasa_P": 4.659986785236525, "pyr_val": 0.8369116415093649, "dip_norm": 0.566, "far_vbur": 0.36133344891853014, "far_vtot": 0.38210701940287006, "near_vbur": 72.51146405555406, "near_vtot": 250.46598761021102, "ovbur_max": 19.61690950096407, "ovbur_min": 0.0, "ovtot_max": 68.27322987222637, "ovtot_min": 0.0, "pyr_alpha": 30.42154052859135, "qvbur_max": 19.850027855105058, "qvbur_min": 16.912736592928617, "qvtot_max": 68.49010142377935, "qvtot_min": 56.05094239504327, "cone_angle": 191.29718969249117, "p_int_area": 288.20473709755953, "p_int_atom": 27.298749980147292, "sasa_volume": 657.3446759055396, "EA_delta_SCC": 0.8676, "IP_delta_SCC": 6.7774, "HOMO_LUMO_gap": 5.175650783414, "sasa_volume_P": 6.0269427124404675, "max_delta_qvbur": 4.091227115174325, "max_delta_qvtot": 14.819556022787005, "nucleophilicity": -6.7545, "p_int_atom_area": 8.298845228057887, "p_int_times_p_int_area": 5144.5935133316125, "global_electrophilicity_index": 1.2336, "p_int_atom_times_p_int_atom_area": 226.5481010046907}, "min_data": {"B1": 4.00163697347179, "B5": 4.854814533702702, "lval": 6.450948522944295, "sasa": 393.3514805011286, "vbur": 71.99860367644389, "vtot": 250.8480946296139, "alpha": 169.857374, "p_int": 17.671355447426123, "sasa_P": 4.449987380751624, "pyr_val": 0.8211621528194519, "dip_norm": 0.5604658776410925, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 71.99860367644388, "near_vtot": 249.83025801325363, "ovbur_max": 18.85927485000586, "ovbur_min": 0.0, "ovtot_max": 66.7657832468524, "ovtot_min": 0.0, "pyr_alpha": 29.03698689599192, "qvbur_max": 18.85927485000586, "qvbur_min": 15.758800739930733, "qvtot_max": 66.7657832468524, "qvtot_min": 53.670545400992346, "cone_angle": 190.01264775432963, "p_int_area": 284.1041939731306, "p_int_atom": 26.263112240062867, "sasa_volume": 653.8674735880829, "EA_delta_SCC": 0.8411, "IP_delta_SCC": 6.7545, "HOMO_LUMO_gap": 4.866626109286, "sasa_volume_P": 5.78436745535576, "max_delta_qvbur": 1.3987101248459233, "max_delta_qvtot": 9.873400641620385, "nucleophilicity": -6.7774, "p_int_atom_area": 7.698928705547675, "p_int_times_p_int_area": 5020.506195803689, "global_electrophilicity_index": 1.2222, "p_int_atom_times_p_int_atom_area": 202.1978287220405}, "boltzmann_averaged_data": {"B1": 4.0577327618487935, "B5": 4.854814533702702, "lval": 6.450948522944295, "sasa": 393.3514805011286, "vbur": 71.99860367644389, "vtot": 251.11328349756752, "alpha": 169.876299, "p_int": 17.671355447426123, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 4.449987380751624, "pyr_val": 0.8369116415093649, "dip_norm": 0.566, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 71.99860367644388, "near_vtot": 249.83025801325363, "ovbur_max": 18.85927485000586, "ovbur_min": 0.0, "ovtot_max": 66.7657832468524, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 29.03698689599192, "qvbur_max": 18.85927485000586, "qvbur_min": 16.912736592928617, "qvtot_max": 66.7657832468524, "qvtot_min": 56.05094239504327, "cone_angle": 190.01264775432963, "p_int_area": 284.1041939731306, "p_int_atom": 26.263112240062867, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 653.8674735880829, "EA_delta_SCC": 0.8411, "IP_delta_SCC": 6.7774, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.175650783414, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 5.78436745535576, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 1.3987101248459233, "max_delta_qvtot": 9.873400641620385, "nucleophilicity": -6.7774, "p_int_atom_area": 7.698928705547675, "sasa_volume_std": 0.0, "EA_delta_SCC_std": 0.0, "IP_delta_SCC_std": 0.0, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": 0.0, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 5020.506195803689, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": 1.2222, "p_int_atom_times_p_int_atom_area": 202.1978287220405, "global_electrophilicity_index_std": 0.0, "p_int_atom_times_p_int_atom_area_std": 0.0}} {"max_data": {"pyr_P": "0.81482863", "pyr_alpha": "32.633045", "qpole_amp": "2.2864656", "vbur_vbur": "72.1351", "sterimol_L": "6.9111395", "sterimol_B1": "3.747826", "sterimol_B5": "5.9094825", "dipolemoment": "0.78541", "qpoletens_xx": "1.1552081", "qpoletens_yy": "0.41502175", "qpoletens_zz": "-0.6392358", "sterimol_burL": "6.860824", "vbur_far_vbur": "4.1308484", "vbur_far_vtot": "8.228518", "sterimol_burB1": "3.8230383", "sterimol_burB5": "5.5634437", "vbur_near_vbur": "67.68277", "vbur_near_vtot": "238.58348", "vbur_ovbur_max": "19.419601", "vbur_ovbur_min": "-0.05085241", "vbur_ovtot_max": "76.681725", "vbur_ovtot_min": "-0.13222693", "vbur_qvbur_max": "22.811983", "vbur_qvbur_min": "14.3110285", "vbur_qvtot_max": "88.3484", "vbur_qvtot_min": "52.366055", "vbur_max_delta_qvbur": "6.910968", "vbur_max_delta_qvtot": "33.229294"}, "min_data": {"pyr_P": "0.7987773", "pyr_alpha": "33.251347", "qpole_amp": "1.4345993", "vbur_vbur": "73.71912", "sterimol_L": "6.9177823", "sterimol_B1": "3.9628627", "sterimol_B5": "5.6960497", "dipolemoment": "0.7549814", "qpoletens_xx": "0.9493883", "qpoletens_yy": "0.510235", "qpoletens_zz": "-1.9257565", "sterimol_burL": "6.754804", "vbur_far_vbur": "7.533207", "vbur_far_vtot": "13.698819", "sterimol_burB1": "3.9902287", "sterimol_burB5": "5.4607434", "vbur_near_vbur": "68.48268", "vbur_near_vtot": "246.54156", "vbur_ovbur_max": "18.94807", "vbur_ovbur_min": "0.026310733", "vbur_ovtot_max": "84.56165", "vbur_ovtot_min": "0.043660473", "vbur_qvbur_max": "17.50992", "vbur_qvbur_min": "14.536649", "vbur_qvtot_max": "93.64429", "vbur_qvtot_min": "51.977795", "vbur_max_delta_qvbur": "5.9586415", "vbur_max_delta_qvtot": "29.73332"}, "delta_data": {"pyr_P": "0.026042525", "pyr_alpha": "1.9595016", "qpole_amp": "-1.0622591", "vbur_vbur": "-3.8063602", "sterimol_L": "0.2980631", "sterimol_B1": "-0.23767059", "sterimol_B5": "0.15632854", "dipolemoment": "-0.2638372", "qpoletens_xx": "-0.90320784", "qpoletens_yy": "-0.59236836", "qpoletens_zz": "-0.8663407", "sterimol_burL": "0.20322548", "vbur_far_vbur": "-2.2545452", "vbur_far_vtot": "-12.281075", "sterimol_burB1": "-0.2232226", "sterimol_burB5": "0.22179154", "vbur_near_vbur": "-1.3691587", "vbur_near_vtot": "-11.550923", "vbur_ovbur_max": "-0.23354302", "vbur_ovbur_min": "-0.16769047", "vbur_ovtot_max": "-3.6894531", "vbur_ovtot_min": "0.06210045", "vbur_qvbur_max": "-0.03881548", "vbur_qvbur_min": "1.0136048", "vbur_qvtot_max": "-2.7250473", "vbur_qvtot_min": "-3.594088", "vbur_max_delta_qvbur": "1.1313977", "vbur_max_delta_qvtot": "-4.340489"}, "vburminconf_data": {"pyr_P": "0.82675105", "pyr_alpha": "31.689957", "qpole_amp": "3.2307346", "vbur_vbur": "73.18561", "sterimol_L": "7.313438", "sterimol_B1": "3.7923493", "sterimol_B5": "5.8577714", "dipolemoment": "0.7368331", "qpoletens_xx": "2.1604168", "qpoletens_yy": "0.66765124", "qpoletens_zz": "-2.329428", "sterimol_burL": "6.8902574", "vbur_far_vbur": "6.024361", "vbur_far_vtot": "20.522892", "sterimol_burB1": "3.907087", "sterimol_burB5": "5.498711", "vbur_near_vbur": "68.95944", "vbur_near_vtot": "237.6419", "vbur_ovbur_max": "19.951986", "vbur_ovbur_min": "0.02377815", "vbur_ovtot_max": "79.79764", "vbur_ovtot_min": "-0.0102272695", "vbur_qvbur_max": "19.787973", "vbur_qvbur_min": "14.4476595", "vbur_qvtot_max": "89.84453", "vbur_qvtot_min": "52.5675", "vbur_max_delta_qvbur": "6.1797953", "vbur_max_delta_qvtot": "37.046852"}, "boltzmann_averaged_data": {"nbo_P": "0.7464673", "nmr_P": "219.9569", "pyr_P": "0.8248984", "fmo_mu": "-0.09022508", "vmin_r": "1.7566873", "volume": "320.95413", "Pint_dP": "2.7867205", "fmo_eta": "0.2516976", "fukui_m": "0.6803157", "fukui_p": "0.031380795", "nuesp_P": "-54.201565", "somo_ra": "0.107995465", "somo_rc": "-0.42689112", "nbo_P_ra": "0.70439386", "nbo_P_rc": "1.4021921", "efg_amp_P": "1.7272503", "fmo_omega": "0.015635466", "pyr_alpha": "31.549753", "qpole_amp": "1.9523257", "vbur_vbur": "72.06212", "vbur_vtot": "253.71219", "vmin_vmin": "-0.0698876", "E_solv_cds": "-3.4225037", "Pint_P_int": "17.626339", "Pint_P_max": "28.764818", "Pint_P_min": "12.907845", "fmo_e_homo": "-0.21820122", "fmo_e_lumo": "0.03202462", "nbo_lp_P_e": "-0.28756228", "sphericity": "0.867863", "sterimol_L": "6.5855074", "E_oxidation": "0.27500692", "E_reduction": "0.0676249", "sterimol_B1": "3.9306445", "sterimol_B5": "6.024835", "E_solv_total": "-6.965847", "dipolemoment": "0.7974686", "efgtens_xx_P": "-0.7884498", "efgtens_yy_P": "-0.5856611", "efgtens_zz_P": "1.400481", "nbo_bd_e_avg": "-0.43336812", "nbo_bd_e_max": "-0.40569052", "nbo_lp_P_occ": "1.9374597", "qpoletens_xx": "1.0019038", "qpoletens_yy": "0.2150036", "qpoletens_zz": "-1.1574845", "surface_area": "261.35373", "E_solv_elstat": "-3.4601474", "nbo_bds_e_avg": "0.18455696", "nbo_bds_e_min": "0.18090093", "nmrtens_sxx_P": "183.12819", "nmrtens_syy_P": "231.38484", "nmrtens_szz_P": "265.29532", "spindens_P_ra": "0.06662068", "spindens_P_rc": "0.85875165", "sterimol_burL": "6.566506", "vbur_far_vbur": "3.2046587", "vbur_far_vtot": "8.411844", "nbo_bd_occ_avg": "1.9448788", "nbo_bd_occ_min": "1.939665", "sterimol_burB1": "3.970474", "sterimol_burB5": "5.8592076", "vbur_near_vbur": "67.404045", "vbur_near_vtot": "242.07819", "vbur_ovbur_max": "19.095684", "vbur_ovbur_min": "0.02094845", "vbur_ovtot_max": "83.92965", "vbur_ovtot_min": "0.13842143", "vbur_qvbur_max": "20.849024", "vbur_qvbur_min": "14.705131", "vbur_qvtot_max": "92.370575", "vbur_qvtot_min": "50.68907", "nbo_bds_occ_avg": "0.05192044", "nbo_bds_occ_max": "0.060357083", "nbo_lp_P_percent_s": "49.082897", "vbur_max_delta_qvbur": "5.5711775", "vbur_max_delta_qvtot": "41.323032", "vbur_ratio_vbur_vtot": "0.2778164"}} CC(C)(C)P(C(C)(C)C)C(C)(C)C {"max_data": {"B1": 4.070637932881695, "B5": 4.874224890748536, "lval": 6.725990869011895, "sasa": 393.18146737352345, "vbur": 60.86720226621175, "vtot": 250.60392323903744, "alpha": 169.868383, "p_int": 17.724717653651503, "sasa_P": 4.769986473300061, "pyr_val": 0.8109986499540662, "dip_norm": 0.605, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 60.86720226621175, "near_vtot": 249.21402943563587, "ovbur_max": 15.945295423243522, "ovbur_min": 0.0, "ovtot_max": 66.5046194783762, "ovtot_min": 0.0, "pyr_alpha": 31.531895874223025, "qvbur_max": 15.945295423243522, "qvbur_min": 14.18525184947907, "qvtot_max": 66.5046194783762, "qvtot_min": 55.75023481721328, "cone_angle": 176.06542075866085, "p_int_area": 284.3044023067621, "p_int_atom": 26.499900444474427, "sasa_volume": 652.8661766106404, "EA_delta_SCC": 0.8545, "IP_delta_SCC": 6.6299, "HOMO_LUMO_gap": 5.229101255515, "sasa_volume_P": 4.2086686702943945, "max_delta_qvbur": 1.317118700896577, "max_delta_qvtot": 10.048272682889717, "nucleophilicity": -6.6299, "p_int_atom_area": 7.9988869668027816, "p_int_times_p_int_area": 5039.215258577505, "global_electrophilicity_index": 1.2124, "p_int_atom_times_p_int_atom_area": 211.96970828687773}, "min_data": {"B1": 4.070637932881695, "B5": 4.874224890748536, "lval": 6.725990869011895, "sasa": 393.18146737352345, "vbur": 60.86720226621175, "vtot": 250.60392323903744, "alpha": 169.868383, "p_int": 17.724717653651503, "sasa_P": 4.769986473300061, "pyr_val": 0.8109986499540662, "dip_norm": 0.605, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 60.86720226621175, "near_vtot": 249.21402943563587, "ovbur_max": 15.945295423243522, "ovbur_min": 0.0, "ovtot_max": 66.5046194783762, "ovtot_min": 0.0, "pyr_alpha": 31.531895874223025, "qvbur_max": 15.945295423243522, "qvbur_min": 14.18525184947907, "qvtot_max": 66.5046194783762, "qvtot_min": 55.75023481721328, "cone_angle": 176.06542075866085, "p_int_area": 284.3044023067621, "p_int_atom": 26.499900444474427, "sasa_volume": 652.8661766106404, "EA_delta_SCC": 0.8545, "IP_delta_SCC": 6.6299, "HOMO_LUMO_gap": 5.229101255515, "sasa_volume_P": 4.2086686702943945, "max_delta_qvbur": 1.317118700896577, "max_delta_qvtot": 10.048272682889717, "nucleophilicity": -6.6299, "p_int_atom_area": 7.9988869668027816, "p_int_times_p_int_area": 5039.215258577505, "global_electrophilicity_index": 1.2124, "p_int_atom_times_p_int_atom_area": 211.96970828687773}, "boltzmann_averaged_data": {"B1": 4.070637932881695, "B5": 4.874224890748536, "lval": 6.725990869011895, "sasa": 393.18146737352345, "vbur": 60.86720226621175, "vtot": 250.60392323903744, "alpha": 169.868383, "p_int": 17.724717653651503, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 4.769986473300061, "pyr_val": 0.8109986499540662, "dip_norm": 0.605, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 60.86720226621175, "near_vtot": 249.21402943563587, "ovbur_max": 15.945295423243522, "ovbur_min": 0.0, "ovtot_max": 66.5046194783762, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 31.531895874223025, "qvbur_max": 15.945295423243522, "qvbur_min": 14.18525184947907, "qvtot_max": 66.5046194783762, "qvtot_min": 55.75023481721328, "cone_angle": 176.06542075866085, "p_int_area": 284.3044023067621, "p_int_atom": 26.499900444474427, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 652.8661766106404, "EA_delta_SCC": 0.8545, "IP_delta_SCC": 6.6299, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.229101255515, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 4.2086686702943945, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 1.317118700896577, "max_delta_qvtot": 10.048272682889717, "nucleophilicity": -6.6299, "p_int_atom_area": 7.9988869668027816, "sasa_volume_std": 0.0, "EA_delta_SCC_std": 0.0, "IP_delta_SCC_std": 0.0, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": 0.0, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 5039.215258577505, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": 1.2124, "p_int_atom_times_p_int_atom_area": 211.96970828687773, "global_electrophilicity_index_std": 0.0, "p_int_atom_times_p_int_atom_area_std": 0.0}} \\x000000000000000000000020000800000080200000200000900000000100000000000010040060000000000000000a200100000100000000000000000000004000000000000000000400000200800000000000000000000020100100481000020022600000002400000000000004000002000011000808000000200000000000 \\x00000000022000000000000000000400000002000000000000004000000000000000000000000000000000000000000020010000000000000000000000800000 pc3 (-3.795037269592285, 12.318982124328612, 2.782452344894409, 1.2344127893447876) (3.598444938659668, 6.260385513305664) -9 Cc1ccccc1P(c1ccccc1C)c1ccccc1C 304.37298583984375 {"max_data": {"pyr_P": 0.9182510161747016, "pyr_alpha": 27.252916230945193, "qpole_amp": 6.600232177393847, "vbur_vbur": 71.77729872305761, "vbur_vtot": 352.6439024201401, "sterimol_L": 7.943453762794431, "sterimol_B1": 4.530295757274145, "sterimol_B5": 6.665475939573153, "dipolemoment": 1.3414242011039257, "qpoletens_xx": 4.067263087918144, "qpoletens_yy": 1.9053278334048647, "qpoletens_zz": -2.824436960888137, "sterimol_burL": 7.60445504699718, "vbur_far_vbur": 2.9996545490510913, "vbur_far_vtot": 3.209252699053137, "sterimol_burB1": 4.508678420875187, "sterimol_burB5": 6.210989363879763, "vbur_near_vbur": 68.77764417400653, "vbur_near_vtot": 350.24370303262106, "vbur_ovbur_max": 19.839765390847333, "vbur_ovbur_min": 0.23951216587611573, "vbur_ovtot_max": 105.58738640203578, "vbur_ovtot_min": 0.18747001080583273, "vbur_qvbur_max": 21.956676411516582, "vbur_qvbur_min": 15.951091885487514, "vbur_qvtot_max": 105.72166241118907, "vbur_qvtot_min": 76.56886098648789, "vbur_max_delta_qvbur": 10.062648680760304, "vbur_max_delta_qvtot": 41.497024005610264}, "min_data": {"pyr_P": 0.8537686134795606, "pyr_alpha": 19.947677262209524, "qpole_amp": 4.563066623453441, "vbur_vbur": 61.75230260985862, "vbur_vtot": 351.449817782384, "sterimol_L": 6.970914696175296, "sterimol_B1": 4.325711503961803, "sterimol_B5": 6.363998463606918, "dipolemoment": 0.43049985809277647, "qpoletens_xx": 1.9216314983557174, "qpoletens_yy": -0.718129789371488, "qpoletens_zz": -5.219518469880678, "sterimol_burL": 6.776343500067679, "vbur_far_vbur": 1.1494492152744593, "vbur_far_vtot": 1.2419096284662077, "sterimol_burB1": 4.209359708261609, "sterimol_burB5": 6.042802970996734, "vbur_near_vbur": 60.60285339458416, "vbur_near_vtot": 346.96572088849587, "vbur_ovbur_max": 18.848247778399482, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 97.4938844398041, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.86277529324591, "vbur_qvbur_min": 11.333422835954542, "vbur_qvtot_max": 98.58289562617057, "vbur_qvtot_min": 62.25579231686958, "vbur_max_delta_qvbur": 2.9327166511643163, "vbur_max_delta_qvtot": 16.59166832410213}, "delta_data": {"pyr_P": 0.06448240269514105, "pyr_alpha": 7.305238968735669, "qpole_amp": 2.0371655539404063, "vbur_vbur": 10.024996113198995, "vbur_vtot": 1.1940846377560774, "sterimol_L": 0.9725390666191354, "sterimol_B1": 0.2045842533123423, "sterimol_B5": 0.30147747596623553, "dipolemoment": 0.9109243430111492, "qpoletens_xx": 2.145631589562427, "qpoletens_yy": 2.6234576227763524, "qpoletens_zz": 2.3950815089925412, "sterimol_burL": 0.8281115469295015, "vbur_far_vbur": 1.850205333776632, "vbur_far_vtot": 1.9673430705869293, "sterimol_burB1": 0.29931871261357745, "sterimol_burB5": 0.1681863928830296, "vbur_near_vbur": 8.174790779422366, "vbur_near_vtot": 3.2779821441251897, "vbur_ovbur_max": 0.9915176124478506, "vbur_ovbur_min": 0.23951216587611573, "vbur_ovtot_max": 8.09350196223167, "vbur_ovtot_min": 0.18747001080583273, "vbur_qvbur_max": 2.093901118270672, "vbur_qvbur_min": 4.617669049532973, "vbur_qvtot_max": 7.138766785018504, "vbur_qvtot_min": 14.31306866961831, "vbur_max_delta_qvbur": 7.129932029595988, "vbur_max_delta_qvtot": 24.905355681508134}, "vburminconf_data": {"pyr_P": 0.8749657682766142, "pyr_alpha": 24.849399795202025, "qpole_amp": 6.600232177393847, "vbur_vbur": 61.75230260985862, "vbur_vtot": 351.449817782384, "sterimol_L": 7.943453762794431, "sterimol_B1": 4.530295757274145, "sterimol_B5": 6.665475939573153, "dipolemoment": 1.3414242011039257, "qpoletens_xx": 3.7712249488912133, "qpoletens_yy": 1.448293520989465, "qpoletens_zz": -5.219518469880678, "sterimol_burL": 7.60445504699718, "vbur_far_vbur": 1.1494492152744593, "vbur_far_vtot": 1.2419096284662077, "sterimol_burB1": 4.508678420875187, "sterimol_burB5": 6.210989363879763, "vbur_near_vbur": 60.60285339458416, "vbur_near_vtot": 349.91456594077283, "vbur_ovbur_max": 19.694384643874493, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 105.58738640203578, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 20.860568333620645, "vbur_qvbur_min": 11.389901687296508, "vbur_qvtot_max": 105.58738640203578, "vbur_qvtot_min": 67.09217878433205, "vbur_max_delta_qvbur": 9.470666646324137, "vbur_max_delta_qvtot": 32.158043432479076}, "boltzmann_averaged_data": {"nbo_P": 0.7934749640864425, "nmr_P": 317.2944074459148, "pyr_P": 0.9181771102281276, "fmo_mu": -0.12534402050474353, "vmin_r": 1.8201635285586177, "volume": 407.22954228954154, "Pint_dP": 4.32951733757199, "fmo_eta": 0.19448943156691, "fukui_m": 0.3883820645338705, "fukui_p": 0.04484559860798959, "nuesp_P": -54.17980025090413, "somo_ra": 0.05894586810263547, "somo_rc": -0.38474023819003494, "nbo_P_ra": 0.7486293654784529, "nbo_P_rc": 1.1818570286203132, "efg_amp_P": 1.7839292492326704, "fmo_omega": 0.0403908014237334, "pyr_alpha": 19.956710156177195, "qpole_amp": 4.688753147029872, "vbur_vbur": 71.76077888672103, "vbur_vtot": 352.64163038420537, "vmin_vmin": -0.043479131470434744, "E_solv_cds": -7.679302822135879, "Pint_P_int": 19.930026793238376, "Pint_P_max": 38.37914121691564, "Pint_P_min": 13.520053616385002, "fmo_e_homo": -0.2225887362881985, "fmo_e_lumo": -0.028099304721288503, "nbo_lp_P_e": -0.30192294307064915, "sphericity": 0.7662614069738453, "sterimol_L": 6.973442203296179, "E_oxidation": 0.2684747348493748, "E_reduction": 0.015653713950419337, "sterimol_B1": 4.5267888617106244, "sterimol_B5": 6.364474171532599, "E_solv_total": -14.14601588542461, "dipolemoment": 0.43210075376977825, "efgtens_xx_P": -0.7285409404657486, "efgtens_yy_P": -0.728030326744544, "efgtens_zz_P": 1.4565712672102926, "nbo_bd_e_avg": -0.4759831103488847, "nbo_bd_e_max": -0.4759507760153657, "nbo_lp_P_occ": 1.8786262715093305, "qpoletens_xx": 1.9273839136813216, "qpoletens_yy": 1.8982946586631313, "qpoletens_zz": -3.8256785723444526, "surface_area": 346.73697564265615, "E_solv_elstat": -6.466713063288731, "nbo_bds_e_avg": 0.23206478595006724, "nbo_bds_e_min": 0.23203023339621034, "nmrtens_sxx_P": 308.15538232539836, "nmrtens_syy_P": 321.8082450617775, "nmrtens_szz_P": 321.91969468228467, "spindens_P_ra": 0.03788656707461977, "spindens_P_rc": 0.49533828810331226, "sterimol_burL": 6.7783369732438485, "vbur_far_vbur": 2.994845757008221, "vbur_far_vtot": 3.2048118621309754, "nbo_bd_occ_avg": 1.9525736376592076, "nbo_bd_occ_min": 1.9525571031585454, "sterimol_burB1": 4.4808150669227835, "sterimol_burB5": 6.04297070900455, "vbur_near_vbur": 68.76593312971282, "vbur_near_vtot": 347.8794438814598, "vbur_ovbur_max": 18.848428130731264, "vbur_ovbur_min": 0.2388699851225568, "vbur_ovtot_max": 97.51066635531207, "vbur_ovtot_min": 0.18696736563802419, "vbur_qvbur_max": 19.86486318859808, "vbur_qvbur_min": 15.938711349918583, "vbur_qvtot_max": 98.59675917083558, "vbur_qvtot_min": 76.53048680847736, "nbo_bds_occ_avg": 0.0416851650518937, "nbo_bds_occ_max": 0.04170166128134293, "nbo_lp_P_percent_s": 48.146460163492904, "vbur_max_delta_qvbur": 2.9477236900115544, "vbur_max_delta_qvtot": 16.658437106123365, "vbur_ratio_vbur_vtot": 0.2034948064216709}} {"boltzmann_averaged_data": {"B1": 4.407099037790009, "B5": 6.258166118973628, "lval": 6.320395116402204, "sasa": 522.3377251847857, "alpha": 252.68633803381, "p_int": 20.890073900251046, "B1_std": 0.010137869016791446, "B5_std": 0.010831948833972477, "sasa_P": 0.4960905931891769, "dip_norm": 0.07007811071544488, "lval_std": 0.056108907263333424, "sasa_std": 0.5544606000982367, "alpha_std": 0.0003457226079776837, "p_int_std": 0.004477168430465485, "cone_angle": 0.0, "p_int_area": 385.39578237674374, "p_int_atom": 32.16300280415405, "sasa_P_std": 0.24850411926273563, "sasa_volume": 868.0067362520732, "EA_delta_SCC": 1.330553141, "IP_delta_SCC": 6.496495959000001, "dip_norm_std": 0.02612922939073883, "HOMO_LUMO_gap": 3.354649443, "buried_volume": 0.5549282257500933, "sasa_volume_P": 0.6882939186133122, "cone_angle_std": 0.0, "p_int_area_std": 0.44875313502957076, "p_int_atom_std": 0.18133075533950738, "nucleophilicity": -6.496495959000001, "p_int_atom_area": 7.607878375065434, "sasa_volume_std": 0.6932121084095086, "EA_delta_SCC_std": 0.002490651186762008, "IP_delta_SCC_std": 0.0005528495006048233, "HOMO_LUMO_gap_std": 0.004094482542367363, "buried_volume_std": 0.0026042373443551834, "sasa_volume_P_std": 0.34386418038914096, "nucleophilicity_std": 0.0005528495006048233, "p_int_atom_area_std": 0.136209641394079, "p_int_times_p_int_area": 8050.94464602945, "p_int_times_p_int_area_std": 7.963471667105418, "global_electrophilicity_index": 1.482402716, "p_int_atom_times_p_int_atom_area": 244.6677654454419, "global_electrophilicity_index_std": 0.0016301810400516801, "p_int_atom_times_p_int_atom_area_std": 2.6556532963028197}} {"max_data": {"pyr_P": "0.92033976", "pyr_alpha": "27.033176", "qpole_amp": "8.768648", "vbur_vbur": "73.29125", "sterimol_L": "7.660023", "sterimol_B1": "4.600612", "sterimol_B5": "6.388847", "dipolemoment": "1.5272799", "qpoletens_xx": "5.4251313", "qpoletens_yy": "1.8245955", "qpoletens_zz": "-3.5703142", "sterimol_burL": "7.6443605", "vbur_far_vbur": "4.0632544", "vbur_far_vtot": "5.082694", "sterimol_burB1": "4.5104556", "sterimol_burB5": "6.1362786", "vbur_near_vbur": "69.24461", "vbur_near_vtot": "352.08963", "vbur_ovbur_max": "20.833849", "vbur_ovbur_min": "0.004296736", "vbur_ovtot_max": "100.52332", "vbur_ovtot_min": "0.115797676", "vbur_qvbur_max": "22.811596", "vbur_qvbur_min": "14.72527", "vbur_qvtot_max": "99.08668", "vbur_qvtot_min": "77.52917", "vbur_max_delta_qvbur": "11.028895", "vbur_max_delta_qvtot": "35.647713"}, "min_data": {"pyr_P": "0.8578043", "pyr_alpha": "19.86091", "qpole_amp": "5.3420067", "vbur_vbur": "62.69922", "sterimol_L": "7.0892305", "sterimol_B1": "4.353752", "sterimol_B5": "6.548721", "dipolemoment": "0.78796035", "qpoletens_xx": "2.7319965", "qpoletens_yy": "-0.3129497", "qpoletens_zz": "-6.327827", "sterimol_burL": "6.920006", "vbur_far_vbur": "0.7915266", "vbur_far_vtot": "0.9253162", "sterimol_burB1": "4.2384644", "sterimol_burB5": "6.123997", "vbur_near_vbur": "61.4957", "vbur_near_vtot": "346.3377", "vbur_ovbur_max": "19.469854", "vbur_ovbur_min": "0.01050363", "vbur_ovtot_max": "96.590836", "vbur_ovtot_min": "0.03533812", "vbur_qvbur_max": "19.919573", "vbur_qvbur_min": "11.247974", "vbur_qvtot_max": "97.00063", "vbur_qvtot_min": "64.69401", "vbur_max_delta_qvbur": "4.8190365", "vbur_max_delta_qvtot": "14.494052"}, "delta_data": {"pyr_P": "0.062431555", "pyr_alpha": "6.783788", "qpole_amp": "2.9509604", "vbur_vbur": "11.566938", "sterimol_L": "0.75930464", "sterimol_B1": "0.32848966", "sterimol_B5": "0.075067535", "dipolemoment": "0.74507076", "qpoletens_xx": "1.9562136", "qpoletens_yy": "1.8381793", "qpoletens_zz": "2.879167", "sterimol_burL": "0.9348421", "vbur_far_vbur": "3.871477", "vbur_far_vtot": "3.6137772", "sterimol_burB1": "0.293876", "sterimol_burB5": "-0.048874862", "vbur_near_vbur": "7.9693785", "vbur_near_vtot": "3.6192367", "vbur_ovbur_max": "1.3177701", "vbur_ovbur_min": "0.22992292", "vbur_ovtot_max": "6.6859503", "vbur_ovtot_min": "0.24102889", "vbur_qvbur_max": "3.449604", "vbur_qvbur_min": "3.6251576", "vbur_qvtot_max": "2.1876085", "vbur_qvtot_min": "18.992714", "vbur_max_delta_qvbur": "8.184055", "vbur_max_delta_qvtot": "24.663351"}, "vburminconf_data": {"pyr_P": "0.8667844", "pyr_alpha": "25.470879", "qpole_amp": "8.488372", "vbur_vbur": "62.565075", "sterimol_L": "7.823437", "sterimol_B1": "4.567572", "sterimol_B5": "6.5337977", "dipolemoment": "1.2645398", "qpoletens_xx": "6.308252", "qpoletens_yy": "0.31647864", "qpoletens_zz": "-6.406247", "sterimol_burL": "7.472041", "vbur_far_vbur": "1.2959665", "vbur_far_vtot": "-0.44793037", "sterimol_burB1": "4.3929195", "sterimol_burB5": "6.2225204", "vbur_near_vbur": "61.650314", "vbur_near_vtot": "352.50308", "vbur_ovbur_max": "19.671051", "vbur_ovbur_min": "0.022652704", "vbur_ovtot_max": "101.67233", "vbur_ovtot_min": "0.023254586", "vbur_qvbur_max": "20.480118", "vbur_qvbur_min": "11.386294", "vbur_qvtot_max": "103.04613", "vbur_qvtot_min": "69.34818", "vbur_max_delta_qvbur": "9.237679", "vbur_max_delta_qvtot": "33.602646"}, "boltzmann_averaged_data": {"nbo_P": "0.77917886", "nmr_P": "320.37424", "pyr_P": "0.91776067", "fmo_mu": "-0.123946525", "vmin_r": "1.8134984", "volume": "407.22522", "Pint_dP": "4.312205", "fmo_eta": "0.19311918", "fukui_m": "0.41027033", "fukui_p": "0.035652798", "nuesp_P": "-54.181297", "somo_ra": "0.060844555", "somo_rc": "-0.38108498", "nbo_P_ra": "0.7400681", "nbo_P_rc": "1.1904018", "efg_amp_P": "1.7860736", "fmo_omega": "0.039428003", "pyr_alpha": "19.579218", "qpole_amp": "5.84133", "vbur_vbur": "72.27655", "vbur_vtot": "352.32315", "vmin_vmin": "-0.044323098", "E_solv_cds": "-7.753366", "Pint_P_int": "19.847086", "Pint_P_max": "36.711395", "Pint_P_min": "13.387899", "fmo_e_homo": "-0.22194204", "fmo_e_lumo": "-0.027372638", "nbo_lp_P_e": "-0.30002046", "sphericity": "0.7665853", "sterimol_L": "6.9449134", "E_oxidation": "0.26815307", "E_reduction": "0.015314896", "sterimol_B1": "4.440616", "sterimol_B5": "6.241627", "E_solv_total": "-14.395376", "dipolemoment": "0.91311926", "efgtens_xx_P": "-0.7469185", "efgtens_yy_P": "-0.7317264", "efgtens_zz_P": "1.4506568", "nbo_bd_e_avg": "-0.47398436", "nbo_bd_e_max": "-0.4730002", "nbo_lp_P_occ": "1.8799222", "qpoletens_xx": "3.4246292", "qpoletens_yy": "0.9858316", "qpoletens_zz": "-4.068379", "surface_area": "344.57596", "E_solv_elstat": "-6.6187115", "nbo_bds_e_avg": "0.23455201", "nbo_bds_e_min": "0.23224187", "nmrtens_sxx_P": "314.92444", "nmrtens_syy_P": "328.18326", "nmrtens_szz_P": "330.13837", "spindens_P_ra": "0.030864125", "spindens_P_rc": "0.50302297", "sterimol_burL": "6.8198676", "vbur_far_vbur": "3.080615", "vbur_far_vtot": "2.090825", "nbo_bd_occ_avg": "1.952089", "nbo_bd_occ_min": "1.9508582", "sterimol_burB1": "4.547318", "sterimol_burB5": "6.11404", "vbur_near_vbur": "68.749214", "vbur_near_vtot": "352.8491", "vbur_ovbur_max": "20.417822", "vbur_ovbur_min": "0.4042893", "vbur_ovtot_max": "96.60878", "vbur_ovtot_min": "0.41631076", "vbur_qvbur_max": "22.281841", "vbur_qvbur_min": "16.61055", "vbur_qvtot_max": "95.48958", "vbur_qvtot_min": "80.3228", "nbo_bds_occ_avg": "0.04166844", "nbo_bds_occ_max": "0.043485288", "nbo_lp_P_percent_s": "47.88869", "vbur_max_delta_qvbur": "5.486523", "vbur_max_delta_qvtot": "12.845298", "vbur_ratio_vbur_vtot": "0.20520122"}} Cc1ccccc1P(c1ccccc1C)c1ccccc1C {"boltzmann_averaged_data": {"B1": 4.637194490221749, "B5": 6.355097740677982, "lval": 7.284717112400757, "sasa": 519.4915434182033, "alpha": 252.67684924361245, "p_int": 20.948337659832546, "B1_std": 0.09046753079396078, "B5_std": 0.07621703656789393, "sasa_P": 6.3799061071412995, "dip_norm": 0.27568317192212555, "lval_std": 0.5182269396664356, "sasa_std": 4.253525389293167, "alpha_std": 0.006825732252000415, "p_int_std": 0.031178301173630203, "cone_angle": 176.76652584223075, "p_int_area": 384.39696726502325, "p_int_atom": 29.265386063030498, "sasa_P_std": 1.1289610476480323, "sasa_volume": 862.7079792468031, "EA_delta_SCC": 1.2712922739227392, "IP_delta_SCC": 6.3549847088470885, "dip_norm_std": 0.1720783296948923, "HOMO_LUMO_gap": 3.1913097070970706, "buried_volume": 0.33340882735607075, "sasa_volume_P": 6.437327967374621, "cone_angle_std": 0.9034839444740627, "p_int_area_std": 4.276825593487387, "p_int_atom_std": 0.6501591950779814, "nucleophilicity": -6.3549847088470885, "p_int_atom_area": 10.914333445293039, "sasa_volume_std": 4.455516120825894, "EA_delta_SCC_std": 0.0022338254202348097, "IP_delta_SCC_std": 0.008665367988089248, "HOMO_LUMO_gap_std": 0.0461423747965005, "buried_volume_std": 0.008534975419268176, "sasa_volume_P_std": 1.2167507247965883, "nucleophilicity_std": 0.008665367988089248, "p_int_atom_area_std": 0.6065598033506818, "p_int_times_p_int_area": 8052.610103973554, "p_int_times_p_int_area_std": 101.41917714924737, "global_electrophilicity_index": 1.430070988709887, "p_int_atom_times_p_int_atom_area": 319.02025599515827, "global_electrophilicity_index_std": 0.0009519208554263624, "p_int_atom_times_p_int_atom_area_std": 10.427989768085379}} \\x14900400120106020019110080917100000001010304c0001c08000000826000808000004600a004048684004400082894812048830011024088842008003400880a0310000200000000008080000000081000200e20c0801181080000010a0700006001000009450024c1200300280033803400040000800000820000081008 \\x00000000022000000100004000000000100000000090004400004000000000000000000000000000000002001080000004000000000000000080080000000000 pc3 (1.046823501586914, 6.198360919952393, 0.1467200964689254, -0.1265509575605392) (6.293145656585693, 8.905426979064941) -645 CCCN(CCC)P(N(CCC)CCC)N(CCC)CCC 331.52899169921875 {"max_data": {"pyr_P": 0.9289524024120517, "pyr_alpha": 24.105772677858518, "qpole_amp": 4.807728406091209, "vbur_vbur": 97.64042901906019, "vbur_vtot": 406.58585456126497, "sterimol_L": 9.138115270384132, "sterimol_B1": 5.312571558555656, "sterimol_B5": 7.008599478097635, "dipolemoment": 1.2350178493675728, "qpoletens_xx": 2.9563990617591913, "qpoletens_yy": 1.8965521677357375, "qpoletens_zz": -1.3335041679597595, "sterimol_burL": 8.298957023845354, "vbur_far_vbur": 17.66637551883612, "vbur_far_vtot": 32.97553540108817, "sterimol_burB1": 4.900595753584465, "sterimol_burB5": 6.97417965359523, "vbur_near_vbur": 79.97405350022407, "vbur_near_vtot": 402.9347135470459, "vbur_ovbur_max": 22.2014181006651, "vbur_ovbur_min": 1.0521800824077399, "vbur_ovtot_max": 128.04525376302752, "vbur_ovtot_min": 2.0589495770731214, "vbur_qvbur_max": 32.62699569653026, "vbur_qvbur_min": 17.792929982028298, "vbur_qvtot_max": 131.94546163288658, "vbur_qvtot_min": 90.22145475168503, "vbur_max_delta_qvbur": 18.6777653197191, "vbur_max_delta_qvtot": 77.29959703780771}, "min_data": {"pyr_P": 0.8736378401466585, "pyr_alpha": 18.278063040229, "qpole_amp": 1.6531239318992814, "vbur_vbur": 58.15543650309897, "vbur_vtot": 404.0924844589877, "sterimol_L": 7.563595465321447, "sterimol_B1": 3.3982519775188793, "sterimol_B5": 5.582114736029206, "dipolemoment": 0.47672127600936254, "qpoletens_xx": 0.8476784298627615, "qpoletens_yy": -0.43271321730580103, "qpoletens_zz": -3.924757867671697, "sterimol_burL": 6.77203562026334, "vbur_far_vbur": 0.010459046544808545, "vbur_far_vtot": 0.39110529356584955, "sterimol_burB1": 3.3982519775188793, "sterimol_burB5": 5.582114736029206, "vbur_near_vbur": 58.14497745655416, "vbur_near_vtot": 371.5938952041708, "vbur_ovbur_max": 17.69670675381606, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 108.8409357420983, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.816985789081357, "vbur_qvbur_min": 10.869041169365042, "vbur_qvtot_max": 111.27377161021005, "vbur_qvtot_min": 52.226277539877216, "vbur_max_delta_qvbur": 2.2612458629876055, "vbur_max_delta_qvtot": 20.23705342546762}, "delta_data": {"pyr_P": 0.05531456226539322, "pyr_alpha": 5.827709637629518, "qpole_amp": 3.1546044741919275, "vbur_vbur": 39.484992515961224, "vbur_vtot": 2.493370102277254, "sterimol_L": 1.5745198050626845, "sterimol_B1": 1.9143195810367768, "sterimol_B5": 1.4264847420684283, "dipolemoment": 0.7582965733582102, "qpoletens_xx": 2.1087206318964298, "qpoletens_yy": 2.3292653850415386, "qpoletens_zz": 2.5912536997119378, "sterimol_burL": 1.5269214035820138, "vbur_far_vbur": 17.65591647229131, "vbur_far_vtot": 32.58443010752232, "sterimol_burB1": 1.5023437760655858, "sterimol_burB5": 1.3920649175660236, "vbur_near_vbur": 21.829076043669914, "vbur_near_vtot": 31.34081834287508, "vbur_ovbur_max": 4.504711346849042, "vbur_ovbur_min": 1.0521800824077399, "vbur_ovtot_max": 19.20431802092922, "vbur_ovtot_min": 2.0589495770731214, "vbur_qvbur_max": 14.810009907448901, "vbur_qvbur_min": 6.923888812663256, "vbur_qvtot_max": 20.67169002267653, "vbur_qvtot_min": 37.995177211807814, "vbur_max_delta_qvbur": 16.416519456731493, "vbur_max_delta_qvtot": 57.06254361234009}, "vburminconf_data": {"pyr_P": 0.9054408622069845, "pyr_alpha": 20.478063356241236, "qpole_amp": 3.8180803083959063, "vbur_vbur": 58.15543650309897, "vbur_vtot": 405.3867637676034, "sterimol_L": 8.420452292787616, "sterimol_B1": 4.8872529373109685, "sterimol_B5": 6.677497231481519, "dipolemoment": 1.1812144063188619, "qpoletens_xx": 2.119760989228944, "qpoletens_yy": 0.9197226323065197, "qpoletens_zz": -3.0394836215354637, "sterimol_burL": 6.893881421801011, "vbur_far_vbur": 0.010459046544808545, "vbur_far_vtot": 2.5382426959454314, "sterimol_burB1": 4.449368234001674, "sterimol_burB5": 6.677497231481519, "vbur_near_vbur": 58.14497745655416, "vbur_near_vtot": 402.8485210716579, "vbur_ovbur_max": 17.849408833370266, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 113.43576096630466, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.86614330784196, "vbur_qvbur_min": 10.869041169365042, "vbur_qvtot_max": 115.97910873605528, "vbur_qvtot_min": 86.88733514974267, "vbur_max_delta_qvbur": 6.997102138476917, "vbur_max_delta_qvtot": 26.658695410754305}, "boltzmann_averaged_data": {"nbo_P": 1.2994148551511027, "nmr_P": 155.87328617985943, "pyr_P": 0.9099536746049921, "fmo_mu": -0.08755670721321324, "vmin_r": 1.7812948590018396, "volume": 512.627343956001, "Pint_dP": 4.350735622792179, "fmo_eta": 0.23202605365863996, "fukui_m": 0.2296358741718433, "fukui_p": 0.017755364981358865, "nuesp_P": -54.15439008920111, "somo_ra": 0.09756877205591728, "somo_rc": -0.3600477658918482, "nbo_P_ra": 1.2816594901697433, "nbo_P_rc": 1.5290507293229458, "efg_amp_P": 1.892661402394625, "fmo_omega": 0.016521233689004752, "pyr_alpha": 19.920062592772833, "qpole_amp": 3.4210265971169855, "vbur_vbur": 64.63525080343054, "vbur_vtot": 405.6666978846797, "vmin_vmin": -0.05988297052926503, "E_solv_cds": -7.591536650635474, "Pint_P_int": 18.74424091607621, "Pint_P_max": 33.17186825633757, "Pint_P_min": 12.07110633289052, "fmo_e_homo": -0.20356973404253317, "fmo_e_lumo": 0.02845631961610672, "nbo_lp_P_e": -0.3171295151328837, "sphericity": 0.7213429380364819, "sterimol_L": 8.540749664402556, "E_oxidation": 0.25198956342794326, "E_reduction": 0.06356006278193421, "sterimol_B1": 5.025637518085165, "sterimol_B5": 6.751454091157744, "E_solv_total": -11.944878069249466, "dipolemoment": 0.9181663439360335, "efgtens_xx_P": -0.809527328338297, "efgtens_yy_P": -0.7351811829634167, "efgtens_zz_P": 1.5447084530284838, "nbo_bd_e_avg": -0.5594642013730625, "nbo_bd_e_max": -0.5343843711797366, "nbo_lp_P_occ": 1.943860437369614, "qpoletens_xx": 1.7172148317210667, "qpoletens_yy": 1.0350155471089486, "qpoletens_zz": -2.7522303788300144, "surface_area": 429.5426826863877, "E_solv_elstat": -4.353341418613996, "nbo_bds_e_avg": 0.23258516430148382, "nbo_bds_e_min": 0.21210015391539297, "nmrtens_sxx_P": 102.86864429087348, "nmrtens_syy_P": 119.55765627926505, "nmrtens_szz_P": 245.19361447611362, "spindens_P_ra": 0.01644419563129663, "spindens_P_rc": 0.24690005815123967, "sterimol_burL": 7.027077367469547, "vbur_far_vbur": 0.528765814139511, "vbur_far_vtot": 8.682045885698226, "nbo_bd_occ_avg": 1.9651867020357483, "nbo_bd_occ_min": 1.9601875185998578, "sterimol_burB1": 4.498078185154403, "sterimol_burB5": 6.750734203218585, "vbur_near_vbur": 64.10648498929102, "vbur_near_vtot": 395.00193809880244, "vbur_ovbur_max": 18.378111605324982, "vbur_ovbur_min": 0.0003866590137940816, "vbur_ovtot_max": 114.21698070081135, "vbur_ovtot_min": 0.009364782679368895, "vbur_qvbur_max": 18.762698359478605, "vbur_qvbur_min": 11.93584060678622, "vbur_qvtot_max": 120.26955916595466, "vbur_qvtot_min": 83.39523637948584, "nbo_bds_occ_avg": 0.09063298303103642, "nbo_bds_occ_max": 0.09452630270505165, "nbo_lp_P_percent_s": 56.640986072628095, "vbur_max_delta_qvbur": 6.214768375940228, "vbur_max_delta_qvtot": 36.480058039249414, "vbur_ratio_vbur_vtot": 0.15933342381503268}} {"max_data": {"B1": 5.4871392109556645, "B5": 7.071029605556419, "lval": 8.96009734541301, "sasa": 636.7216159337161, "vbur": 120.19582339509299, "vtot": 403.79771696701187, "alpha": 268.716612, "p_int": 19.611175671159582, "sasa_P": 8.959974591356081, "pyr_val": 0.9547994657801743, "dip_norm": 0.5523350432482081, "far_vbur": 40.57424953823881, "far_vtot": 59.1020823306037, "near_vbur": 84.99495191980392, "near_vtot": 401.12611357051753, "ovbur_max": 22.437641586070015, "ovbur_min": 6.434066574291245, "ovtot_max": 129.24702205439678, "ovtot_min": 8.38743425072471, "pyr_alpha": 20.959055316035073, "qvbur_max": 39.37369001441273, "qvbur_min": 25.573083449266292, "qvtot_max": 133.33589025599102, "qvtot_min": 96.28104919687298, "cone_angle": 283.4826868562717, "p_int_area": 510.00834285666355, "p_int_atom": 46.22450569080136, "sasa_volume": 1082.4527826401936, "EA_delta_SCC": 1.7721, "IP_delta_SCC": 6.3293, "HOMO_LUMO_gap": 5.433531024472, "sasa_volume_P": 12.611886111748353, "max_delta_qvbur": 23.824695793208885, "max_delta_qvtot": 75.75657697701564, "nucleophilicity": -5.77, "p_int_atom_area": 12.198302624374243, "p_int_times_p_int_area": 9784.80267755991, "global_electrophilicity_index": 1.783, "p_int_atom_times_p_int_atom_area": 377.42134612523057}, "min_data": {"B1": 3.3662816416627566, "B5": 5.334577044808384, "lval": 7.124500766312114, "sasa": 565.2214632812548, "vbur": 63.22169764303572, "vtot": 398.48330343280014, "alpha": 268.430533, "p_int": 18.7749895800046, "sasa_P": 0.0, "pyr_val": 0.9053646846166207, "dip_norm": 0.11572380913191546, "far_vbur": 0.0, "far_vtot": 1.3566215289506904, "near_vbur": 63.22169764303572, "near_vtot": 333.1702052982781, "ovbur_max": 17.915145515734864, "ovbur_min": 0.0, "ovtot_max": 95.9477900253965, "ovtot_min": 0.0, "pyr_alpha": 14.565714526867005, "qvbur_max": 17.915145515734864, "qvbur_min": 12.273681345522974, "qvtot_max": 103.93190868453577, "qvtot_min": 53.98054056282915, "cone_angle": 179.81563839717782, "p_int_area": 448.70731520412187, "p_int_atom": 27.670690097551475, "sasa_volume": 1007.9357332494548, "EA_delta_SCC": 1.5449, "IP_delta_SCC": 5.77, "HOMO_LUMO_gap": 4.550009084872, "sasa_volume_P": 0.0, "max_delta_qvbur": 2.424430883066268, "max_delta_qvtot": 8.140769826403698, "nucleophilicity": -6.3293, "p_int_atom_area": 0.5999165225102119, "p_int_times_p_int_area": 8607.22333466129, "global_electrophilicity_index": 1.6044, "p_int_atom_times_p_int_atom_area": 26.62681202759581}, "boltzmann_averaged_data": {"B1": 4.816135511769527, "B5": 6.491592166802504, "lval": 8.462193937869275, "sasa": 614.0075081009735, "vbur": 80.08354768751774, "vtot": 401.91135205401105, "alpha": 268.5018818534352, "p_int": 19.01899978619969, "B1_std": 0.3940971174091049, "B5_std": 0.17706262220839514, "sasa_P": 3.2505733179761167, "pyr_val": 0.9271611394108111, "dip_norm": 0.4450230578162273, "far_vbur": 6.488128085148046, "far_vtot": 21.414953358922673, "lval_std": 0.11719638790933938, "sasa_std": 8.9935282389263, "vbur_std": 7.563617547871485, "vtot_std": 0.7141031371462792, "alpha_std": 0.028429050444225657, "near_vbur": 73.59541960236972, "near_vtot": 375.7308072041361, "ovbur_max": 20.779131359520147, "ovbur_min": 0.11951095644658012, "ovtot_max": 108.6167768192726, "ovtot_min": 0.3637089730673532, "p_int_std": 0.09479540876451767, "pyr_alpha": 18.278691679354278, "qvbur_max": 24.711931653753037, "qvbur_min": 14.825888890621224, "qvtot_max": 118.64083463997241, "qvtot_min": 79.6348803333334, "cone_angle": 212.47540849653865, "p_int_area": 487.528207531548, "p_int_atom": 31.04867195023434, "sasa_P_std": 1.8220373668394247, "pyr_val_std": 0.006954363358874909, "sasa_volume": 1057.5808192841982, "EA_delta_SCC": 1.6830054410057254, "IP_delta_SCC": 6.095434208471794, "dip_norm_std": 0.04779829531474929, "far_vbur_std": 5.514123250339759, "far_vtot_std": 9.667978957559187, "HOMO_LUMO_gap": 5.1696315328127, "near_vbur_std": 2.6152582756334786, "near_vtot_std": 8.610580432934809, "ovbur_max_std": 0.7682938418739208, "ovbur_min_std": 0.39425287497465744, "ovtot_max_std": 3.4576988370325608, "ovtot_min_std": 0.8208154951271989, "pyr_alpha_std": 0.8200923265714842, "qvbur_max_std": 4.144237970454243, "qvbur_min_std": 1.9563145851786956, "qvtot_max_std": 4.752208277129038, "qvtot_min_std": 6.08768645154439, "sasa_volume_P": 4.4054050300828225, "cone_angle_std": 14.399052244539162, "p_int_area_std": 6.862145565576855, "p_int_atom_std": 1.6739240153663686, "max_delta_qvbur": 9.387669331266656, "max_delta_qvtot": 38.086595966210346, "nucleophilicity": -6.095434208471794, "p_int_atom_area": 7.808754477224737, "sasa_volume_std": 8.86210404099362, "EA_delta_SCC_std": 0.0321103001712786, "IP_delta_SCC_std": 0.07771282014686519, "HOMO_LUMO_gap_std": 0.13130147676424805, "sasa_volume_P_std": 2.486595375772192, "max_delta_qvbur_std": 3.2225550945784875, "max_delta_qvtot_std": 9.42568422625465, "nucleophilicity_std": 0.07771282014686519, "p_int_atom_area_std": 1.585272814015841, "p_int_times_p_int_area": 9272.216583480165, "p_int_times_p_int_area_std": 132.9128960400458, "global_electrophilicity_index": 1.7144836499579612, "p_int_atom_times_p_int_atom_area": 240.2019342119268, "global_electrophilicity_index_std": 0.025407928318101167, "p_int_atom_times_p_int_atom_area_std": 40.61129686455568}} {"max_data": {"pyr_P": "0.92620367", "pyr_alpha": "23.450298", "qpole_amp": "4.4152822", "vbur_vbur": "98.13149", "sterimol_L": "9.312595", "sterimol_B1": "5.3854585", "sterimol_B5": "7.233847", "dipolemoment": "1.124738", "qpoletens_xx": "2.7692783", "qpoletens_yy": "1.9736083", "qpoletens_zz": "-0.73380274", "sterimol_burL": "8.330616", "vbur_far_vbur": "19.164387", "vbur_far_vtot": "33.187336", "sterimol_burB1": "4.9183497", "sterimol_burB5": "7.051422", "vbur_near_vbur": "80.68356", "vbur_near_vtot": "404.45102", "vbur_ovbur_max": "22.166843", "vbur_ovbur_min": "1.1125076", "vbur_ovtot_max": "123.78597", "vbur_ovtot_min": "1.3878355", "vbur_qvbur_max": "33.66158", "vbur_qvbur_min": "17.954367", "vbur_qvtot_max": "129.14632", "vbur_qvtot_min": "86.37148", "vbur_max_delta_qvbur": "20.624842", "vbur_max_delta_qvtot": "71.18075"}, "min_data": {"pyr_P": "0.8763703", "pyr_alpha": "18.47267", "qpole_amp": "1.11209", "vbur_vbur": "56.416172", "sterimol_L": "7.5308986", "sterimol_B1": "3.495283", "sterimol_B5": "5.5325613", "dipolemoment": "0.6678469", "qpoletens_xx": "0.40894794", "qpoletens_yy": "-0.320592", "qpoletens_zz": "-3.5864012", "sterimol_burL": "6.731943", "vbur_far_vbur": "-0.24381319", "vbur_far_vtot": "-1.8263081", "sterimol_burB1": "3.4018607", "sterimol_burB5": "5.508875", "vbur_near_vbur": "58.891983", "vbur_near_vtot": "371.52875", "vbur_ovbur_max": "17.85153", "vbur_ovbur_min": "0.07386369", "vbur_ovtot_max": "106.470146", "vbur_ovtot_min": "0.14321518", "vbur_qvbur_max": "17.871449", "vbur_qvbur_min": "10.591613", "vbur_qvtot_max": "111.02999", "vbur_qvtot_min": "51.63855", "vbur_max_delta_qvbur": "2.4936852", "vbur_max_delta_qvtot": "17.687668"}, "delta_data": {"pyr_P": "0.0561799", "pyr_alpha": "6.341134", "qpole_amp": "3.2384324", "vbur_vbur": "39.875473", "sterimol_L": "1.2598091", "sterimol_B1": "1.8745679", "sterimol_B5": "1.4323392", "dipolemoment": "0.71223533", "qpoletens_xx": "1.9897732", "qpoletens_yy": "2.2489197", "qpoletens_zz": "2.731167", "sterimol_burL": "1.5647484", "vbur_far_vbur": "18.443735", "vbur_far_vtot": "34.616066", "sterimol_burB1": "1.532743", "sterimol_burB5": "1.3368831", "vbur_near_vbur": "22.50884", "vbur_near_vtot": "31.71923", "vbur_ovbur_max": "4.9976554", "vbur_ovbur_min": "1.4359839", "vbur_ovtot_max": "19.472692", "vbur_ovtot_min": "1.0847828", "vbur_qvbur_max": "15.658819", "vbur_qvbur_min": "7.347518", "vbur_qvtot_max": "16.692759", "vbur_qvtot_min": "34.65746", "vbur_max_delta_qvbur": "16.768194", "vbur_max_delta_qvtot": "54.91971"}, "vburminconf_data": {"pyr_P": "0.9101377", "pyr_alpha": "20.232767", "qpole_amp": "4.2446456", "vbur_vbur": "57.483566", "sterimol_L": "8.22127", "sterimol_B1": "4.9396796", "sterimol_B5": "6.771873", "dipolemoment": "1.1664256", "qpoletens_xx": "2.706505", "qpoletens_yy": "0.56381357", "qpoletens_zz": "-3.7826955", "sterimol_burL": "7.079527", "vbur_far_vbur": "-0.5379236", "vbur_far_vtot": "0.7504526", "sterimol_burB1": "4.435823", "sterimol_burB5": "6.6478205", "vbur_near_vbur": "58.75485", "vbur_near_vtot": "404.34146", "vbur_ovbur_max": "18.556196", "vbur_ovbur_min": "0.061721336", "vbur_ovtot_max": "115.488594", "vbur_ovtot_min": "0.051385596", "vbur_qvbur_max": "18.372448", "vbur_qvbur_min": "10.8575945", "vbur_qvtot_max": "116.26797", "vbur_qvtot_min": "97.230446", "vbur_max_delta_qvbur": "5.375434", "vbur_max_delta_qvtot": "37.15044"}, "boltzmann_averaged_data": {"nbo_P": "1.3033341", "nmr_P": "158.70786", "pyr_P": "0.9061816", "fmo_mu": "-0.084535316", "vmin_r": "1.777841", "volume": "512.0706", "Pint_dP": "4.3012724", "fmo_eta": "0.23537469", "fukui_m": "0.19640058", "fukui_p": "0.024760947", "nuesp_P": "-54.15394", "somo_ra": "0.098476455", "somo_rc": "-0.36617327", "nbo_P_ra": "1.2833499", "nbo_P_rc": "1.5369599", "efg_amp_P": "1.9011428", "fmo_omega": "0.015082915", "pyr_alpha": "20.279245", "qpole_amp": "2.8414783", "vbur_vbur": "64.6606", "vbur_vtot": "405.51376", "vmin_vmin": "-0.05976151", "E_solv_cds": "-7.5000772", "Pint_P_int": "18.676949", "Pint_P_max": "32.870056", "Pint_P_min": "11.940599", "fmo_e_homo": "-0.2034004", "fmo_e_lumo": "0.03127895", "nbo_lp_P_e": "-0.31704596", "sphericity": "0.72390217", "sterimol_L": "8.246366", "E_oxidation": "0.25267267", "E_reduction": "0.06523792", "sterimol_B1": "5.063484", "sterimol_B5": "6.835265", "E_solv_total": "-11.9685545", "dipolemoment": "0.8874618", "efgtens_xx_P": "-0.7841664", "efgtens_yy_P": "-0.71632177", "efgtens_zz_P": "1.5502386", "nbo_bd_e_avg": "-0.5612078", "nbo_bd_e_max": "-0.5340383", "nbo_lp_P_occ": "1.9450914", "qpoletens_xx": "1.3517113", "qpoletens_yy": "0.9125333", "qpoletens_zz": "-2.2083828", "surface_area": "426.90152", "E_solv_elstat": "-4.278007", "nbo_bds_e_avg": "0.23447044", "nbo_bds_e_min": "0.2140014", "nmrtens_sxx_P": "99.16367", "nmrtens_syy_P": "125.31027", "nmrtens_szz_P": "242.34418", "spindens_P_ra": "0.023846751", "spindens_P_rc": "0.25645015", "sterimol_burL": "6.982973", "vbur_far_vbur": "0.94133174", "vbur_far_vtot": "9.801894", "nbo_bd_occ_avg": "1.9653014", "nbo_bd_occ_min": "1.9610789", "sterimol_burB1": "4.53162", "sterimol_burB5": "6.7924953", "vbur_near_vbur": "64.11406", "vbur_near_vtot": "396.9303", "vbur_ovbur_max": "18.683659", "vbur_ovbur_min": "-0.03071034", "vbur_ovtot_max": "115.45836", "vbur_ovtot_min": "-0.07923814", "vbur_qvbur_max": "19.16496", "vbur_qvbur_min": "12.031926", "vbur_qvtot_max": "119.00364", "vbur_qvtot_min": "79.24642", "nbo_bds_occ_avg": "0.09267387", "nbo_bds_occ_max": "0.097198896", "nbo_lp_P_percent_s": "56.400528", "vbur_max_delta_qvbur": "6.4604707", "vbur_max_delta_qvtot": "32.951847", "vbur_ratio_vbur_vtot": "0.15623377"}} CCCN(CCC)P(N(CCC)CCC)N(CCC)CCC {"max_data": {"B1": 5.565546450465003, "B5": 7.091698473163092, "lval": 9.269631512643214, "sasa": 640.3015846018271, "vbur": 68.21043042165284, "vtot": 402.77127056821143, "alpha": 268.572544, "p_int": 19.429815261321636, "sasa_P": 9.739972379442879, "pyr_val": 0.9311903693205902, "dip_norm": 0.6924601071541956, "far_vbur": 3.182065534024475, "far_vtot": 20.263015234501033, "near_vbur": 66.1939566583333, "near_vtot": 402.56254346588514, "ovbur_max": 18.53290915420848, "ovbur_min": 0.24477427184803652, "ovtot_max": 130.54474628400095, "ovtot_min": 0.6460775558740334, "pyr_alpha": 23.699866654250688, "qvbur_max": 20.013210703003747, "qvbur_min": 15.525682385789745, "qvtot_max": 135.63585643810185, "qvtot_min": 95.47049107226383, "cone_angle": 209.3571351626865, "p_int_area": 511.50916020682484, "p_int_atom": 31.641189099833788, "sasa_volume": 1083.1882709190468, "EA_delta_SCC": 1.7266, "IP_delta_SCC": 6.3375, "HOMO_LUMO_gap": 5.761423437872, "sasa_volume_P": 10.805736705987773, "max_delta_qvbur": 7.249980813784697, "max_delta_qvtot": 77.48182558933726, "nucleophilicity": -5.7244, "p_int_atom_area": 12.898205233969486, "p_int_times_p_int_area": 9728.605742453896, "global_electrophilicity_index": 1.7465, "p_int_atom_times_p_int_atom_area": 391.5606694876455}, "min_data": {"B1": 3.619661109487149, "B5": 6.319777658736834, "lval": 7.602993896256226, "sasa": 576.7215101286833, "vbur": 55.57541562721134, "vtot": 399.2997023680127, "alpha": 268.352347, "p_int": 18.728490727862876, "sasa_P": 4.189988118056021, "pyr_val": 0.8850104662415754, "dip_norm": 0.37099865228865725, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 55.57541562721134, "near_vtot": 374.0240311845979, "ovbur_max": 15.479058714961548, "ovbur_min": 0.0, "ovtot_max": 105.00647932976693, "ovtot_min": 0.0, "pyr_alpha": 18.164127947247252, "qvbur_max": 15.479058714961548, "qvbur_min": 11.446111188322469, "qvtot_max": 106.57895572572018, "qvtot_min": 51.78912000207767, "cone_angle": 168.48851717635313, "p_int_area": 455.30694539150966, "p_int_atom": 27.811976148336694, "sasa_volume": 1017.1115622296445, "EA_delta_SCC": 1.4927, "IP_delta_SCC": 5.7244, "HOMO_LUMO_gap": 4.742352063562, "sasa_volume_P": 4.311289771037697, "max_delta_qvbur": 1.7250758206433048, "max_delta_qvtot": 12.100854268751434, "nucleophilicity": -6.3375, "p_int_atom_area": 9.398692185993266, "p_int_times_p_int_area": 8713.152710489167, "global_electrophilicity_index": 1.5458, "p_int_atom_times_p_int_atom_area": 265.8498468833223}, "boltzmann_averaged_data": {"B1": 5.053248694649913, "B5": 6.7820530360877616, "lval": 8.772705329171377, "sasa": 626.5757067864806, "vbur": 59.598291756358584, "vtot": 401.4843029157423, "alpha": 268.4157852462966, "p_int": 18.98044685364999, "B1_std": 0.2782557105725731, "B5_std": 0.1085668093774966, "sasa_P": 6.834867241646661, "pyr_val": 0.9023936046856137, "dip_norm": 0.6040039782252675, "far_vbur": 0.22719042279945229, "far_vtot": 4.700698220574936, "lval_std": 0.104609219288372, "sasa_std": 8.427494299859916, "vbur_std": 1.0301337780349273, "vtot_std": 0.40882468667580096, "alpha_std": 0.019311660397231097, "near_vbur": 59.37110133355912, "near_vtot": 392.8411399132945, "ovbur_max": 16.665827631569837, "ovbur_min": 0.00002168499448384309, "ovtot_max": 111.63114918474926, "ovtot_min": 0.0016611707448624595, "p_int_std": 0.06347607767777323, "pyr_alpha": 21.527729355517312, "qvbur_max": 16.796120638480094, "qvbur_min": 12.699011993188991, "qvtot_max": 114.64262315904062, "qvtot_min": 83.85217397505386, "cone_angle": 191.66504688096214, "p_int_area": 498.25302165063493, "p_int_atom": 29.347198507999156, "sasa_P_std": 0.668866118476889, "pyr_val_std": 0.008962338390163659, "sasa_volume": 1069.5419135380123, "EA_delta_SCC": 1.6785457005111175, "IP_delta_SCC": 6.087515161487141, "dip_norm_std": 0.034761520492131055, "far_vbur_std": 0.17807852731197105, "far_vtot_std": 1.9626760256413431, "HOMO_LUMO_gap": 5.45088131832063, "near_vbur_std": 0.9068843428735195, "near_vtot_std": 2.9500741998063553, "ovbur_max_std": 0.33419303633394043, "ovbur_min_std": 0.0013967584546633375, "ovtot_max_std": 2.5604350847896296, "ovtot_min_std": 0.01356532185850223, "pyr_alpha_std": 0.978030778594167, "qvbur_max_std": 0.4571504512047378, "qvbur_min_std": 0.3878731811150368, "qvtot_max_std": 2.8419940747749957, "qvtot_min_std": 2.757957532364008, "sasa_volume_P": 7.469268332600211, "cone_angle_std": 4.985448893637733, "p_int_area_std": 6.658188647915611, "p_int_atom_std": 0.4519061282506379, "max_delta_qvbur": 3.306718693579057, "max_delta_qvtot": 30.509677504486003, "nucleophilicity": -6.087515161487141, "p_int_atom_area": 11.769674669167662, "sasa_volume_std": 8.58881967858925, "EA_delta_SCC_std": 0.0338888719101226, "IP_delta_SCC_std": 0.08699090816370345, "HOMO_LUMO_gap_std": 0.16394036227540326, "sasa_volume_P_std": 0.8183535307867275, "max_delta_qvbur_std": 0.49617142199069986, "max_delta_qvtot_std": 4.854544828802147, "nucleophilicity_std": 0.08699090816370345, "p_int_atom_area_std": 0.35240363025523497, "p_int_times_p_int_area": 9456.863980088372, "p_int_times_p_int_area_std": 114.76474730012409, "global_electrophilicity_index": 1.7101324154555546, "p_int_atom_times_p_int_atom_area": 345.4879389948357, "global_electrophilicity_index_std": 0.030192912741821995, "p_int_atom_times_p_int_atom_area_std": 13.756077179388214}} \\x000000080000040000080220000003080040010040801400800002002500200000009018200004003008000020000020020000180100010143000010440004400a020200100402100000000400002001004000c002000100200020200010000000642102200000000084200000000000010b082012800050c000000000000081 \\x00000000022000000000010000000000000000000200002000000000020000000000000440000000002000010000020000000080000000000000000000000000 pn3 (1.318914532661438, 1.2025094032287598, 6.099021434783936, 1.672895908355713) (1.6091595888137815, 5.590536594390869) -10 CCCCP(C12CC3CC(CC(C3)C1)C2)C12CC3CC(CC(C3)C1)C2 358.54998779296875 {"max_data": {"pyr_P": 0.8911862627160243, "pyr_alpha": 28.279018110858445, "qpole_amp": 4.487209240021477, "vbur_vbur": 75.44424044166749, "vbur_vtot": 394.2050898173103, "sterimol_L": 8.645693400102092, "sterimol_B1": 5.034807392558006, "sterimol_B5": 7.4472449528028015, "dipolemoment": 1.278767095226807, "qpoletens_xx": 2.237337213183423, "qpoletens_yy": 1.4455297079028542, "qpoletens_zz": -2.259092754088677, "sterimol_burL": 7.146162633523648, "vbur_far_vbur": 8.523077029364483, "vbur_far_vtot": 13.675033971783765, "sterimol_burB1": 5.028204081012285, "sterimol_burB5": 7.124679147275396, "vbur_near_vbur": 67.7892642755221, "vbur_near_vtot": 395.10864192485076, "vbur_ovbur_max": 21.154467541529765, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 136.14480111163007, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 28.98097207101, "vbur_qvbur_min": 14.299608436062245, "vbur_qvtot_max": 136.14480111163007, "vbur_qvtot_min": 68.9831275933896, "vbur_max_delta_qvbur": 16.058820064899045, "vbur_max_delta_qvtot": 77.50284910841097}, "min_data": {"pyr_P": 0.8425567370602731, "pyr_alpha": 22.929977719880203, "qpole_amp": 2.94786736539558, "vbur_vbur": 58.92103871017895, "vbur_vtot": 393.93880415498097, "sterimol_L": 7.481782674155754, "sterimol_B1": 4.0383178793823316, "sterimol_B5": 6.840618945690598, "dipolemoment": 1.1410935908095672, "qpoletens_xx": 1.6986201999090118, "qpoletens_yy": 0.4102856813990352, "qpoletens_zz": -3.6383018773815543, "sterimol_burL": 7.037797039687428, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.0383178793823316, "sterimol_burB5": 6.374532283936465, "vbur_near_vbur": 58.921038710178955, "vbur_near_vtot": 380.1756419541073, "vbur_ovbur_max": 16.97503254222427, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 134.85617206818506, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.97503254222427, "vbur_qvbur_min": 10.986182490666897, "vbur_qvtot_max": 134.85617206818506, "vbur_qvtot_min": 48.061483403613394, "vbur_max_delta_qvbur": 2.4767022218106636, "vbur_max_delta_qvtot": 59.01182318506112}, "delta_data": {"pyr_P": 0.04862952565575118, "pyr_alpha": 5.349040390978242, "qpole_amp": 1.5393418746258973, "vbur_vbur": 16.52320173148854, "vbur_vtot": 0.2662856623293237, "sterimol_L": 1.1639107259463373, "sterimol_B1": 0.9964895131756748, "sterimol_B5": 0.6066260071122036, "dipolemoment": 0.1376735044172399, "qpoletens_xx": 0.5387170132744112, "qpoletens_yy": 1.035244026503819, "qpoletens_zz": 1.3792091232928771, "sterimol_burL": 0.10836559383622024, "vbur_far_vbur": 8.523077029364483, "vbur_far_vtot": 13.675033971783765, "sterimol_burB1": 0.9898862016299539, "sterimol_burB5": 0.750146863338931, "vbur_near_vbur": 8.868225565343145, "vbur_near_vtot": 14.93299997074348, "vbur_ovbur_max": 4.179434999305496, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 1.2886290434450132, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 12.005939528785731, "vbur_qvbur_min": 3.3134259453953483, "vbur_qvtot_max": 1.2886290434450132, "vbur_qvtot_min": 20.921644189776202, "vbur_max_delta_qvbur": 13.582117843088382, "vbur_max_delta_qvtot": 18.491025923349852}, "vburminconf_data": {"pyr_P": 0.8449032981884899, "pyr_alpha": 28.039768835237687, "qpole_amp": 4.487209240021477, "vbur_vbur": 58.92103871017895, "vbur_vtot": 394.1043413867571, "sterimol_L": 8.645693400102092, "sterimol_B1": 4.412270599062861, "sterimol_B5": 6.842587759219442, "dipolemoment": 1.2112767188461206, "qpoletens_xx": 2.1927721694787, "qpoletens_yy": 1.4455297079028542, "qpoletens_zz": -3.6383018773815543, "sterimol_burL": 7.099058072868737, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.1576783059798865, "sterimol_burB5": 6.377288109532103, "vbur_near_vbur": 58.921038710178955, "vbur_near_vtot": 392.9798059157476, "vbur_ovbur_max": 17.858821975260593, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 135.72186152750342, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.858821975260593, "vbur_qvbur_min": 10.986182490666897, "vbur_qvtot_max": 135.72186152750342, "vbur_qvtot_min": 62.49334500135978, "vbur_max_delta_qvbur": 6.324585445645729, "vbur_max_delta_qvtot": 63.0789788672249}, "boltzmann_averaged_data": {"nbo_P": 0.8025221813665625, "nmr_P": 271.4718538498514, "pyr_P": 0.8826255791659965, "fmo_mu": -0.09812221938827775, "vmin_r": 1.7816485931827892, "volume": 495.69088964831917, "Pint_dP": 3.718489833386234, "fmo_eta": 0.23780529437408254, "fukui_m": 0.6019664800702166, "fukui_p": 0.021958024810436166, "nuesp_P": -54.20318077704502, "somo_ra": 0.09014862205501147, "somo_rc": -0.3962033924902353, "nbo_P_ra": 0.7805641565561264, "nbo_P_rc": 1.404488661436779, "efg_amp_P": 1.6825470926980026, "fmo_omega": 0.02024380854199344, "pyr_alpha": 23.89780412931556, "qpole_amp": 3.5348442871969277, "vbur_vbur": 64.29165019406365, "vbur_vtot": 394.113558769379, "vmin_vmin": -0.06727504854990607, "E_solv_cds": -9.890414247819088, "Pint_P_int": 19.67979421663539, "Pint_P_max": 31.453428356045286, "Pint_P_min": 11.952495841811453, "fmo_e_homo": -0.217024866575319, "fmo_e_lumo": 0.02078042779876352, "nbo_lp_P_e": -0.2889959459356473, "sphericity": 0.7817719567379748, "sterimol_L": 7.532539206931817, "E_oxidation": 0.26801940478108, "E_reduction": 0.05568905755052141, "sterimol_B1": 4.637579102955023, "sterimol_B5": 7.026003105136374, "E_solv_total": -13.622770836468886, "dipolemoment": 1.2027514912707762, "efgtens_xx_P": -0.7116080156024578, "efgtens_yy_P": -0.6618835299565603, "efgtens_zz_P": 1.3734917465700134, "nbo_bd_e_avg": -0.4369841811467324, "nbo_bd_e_max": -0.43280904005209775, "nbo_lp_P_occ": 1.9310923117842171, "qpoletens_xx": 2.032064031399554, "qpoletens_yy": 0.7508049174540619, "qpoletens_zz": -2.7828689488536162, "surface_area": 387.46731053316273, "E_solv_elstat": -3.7323565886498, "nbo_bds_e_avg": 0.20432279032725353, "nbo_bds_e_min": 0.20140891170342035, "nmrtens_sxx_P": 205.00785128079195, "nmrtens_syy_P": 285.9171613642897, "nmrtens_szz_P": 323.49046217001626, "spindens_P_ra": 0.023098001188729494, "spindens_P_rc": 0.7659057493466223, "sterimol_burL": 7.05626757576822, "vbur_far_vbur": 1.024222047834817, "vbur_far_vtot": 4.23291820540756, "nbo_bd_occ_avg": 1.954268712200888, "nbo_bd_occ_min": 1.9467518701650883, "sterimol_burB1": 4.575603375852478, "sterimol_burB5": 6.615312943831569, "vbur_near_vbur": 63.267428146228816, "vbur_near_vtot": 389.8802785305249, "vbur_ovbur_max": 17.86026265774276, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 135.97428267818873, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 18.885497898261537, "vbur_qvbur_min": 13.92787071265718, "vbur_qvtot_max": 135.97432518952132, "vbur_qvtot_min": 61.285179042994315, "nbo_bds_occ_avg": 0.0367743790477025, "nbo_bds_occ_max": 0.044758280535189696, "nbo_lp_P_percent_s": 49.359082168294584, "vbur_max_delta_qvbur": 4.586042097860886, "vbur_max_delta_qvtot": 64.9678688302661, "vbur_ratio_vbur_vtot": 0.16312958399941432}} \N {"max_data": {"pyr_P": "0.8871801", "pyr_alpha": "29.216019", "qpole_amp": "6.346196", "vbur_vbur": "83.25846", "sterimol_L": "9.251657", "sterimol_B1": "4.7188163", "sterimol_B5": "8.065147", "dipolemoment": "1.155994", "qpoletens_xx": "2.9695234", "qpoletens_yy": "1.0676239", "qpoletens_zz": "-3.0907743", "sterimol_burL": "7.406859", "vbur_far_vbur": "13.128043", "vbur_far_vtot": "24.476574", "sterimol_burB1": "4.645331", "sterimol_burB5": "7.2337933", "vbur_near_vbur": "70.87707", "vbur_near_vtot": "393.98828", "vbur_ovbur_max": "21.169529", "vbur_ovbur_min": "0.8348574", "vbur_ovtot_max": "147.34169", "vbur_ovtot_min": "1.2427971", "vbur_qvbur_max": "29.964739", "vbur_qvbur_min": "16.849527", "vbur_qvtot_max": "145.10388", "vbur_qvtot_min": "71.943", "vbur_max_delta_qvbur": "16.66596", "vbur_max_delta_qvtot": "86.90009"}, "min_data": {"pyr_P": "0.83242834", "pyr_alpha": "23.253605", "qpole_amp": "3.5008492", "vbur_vbur": "61.99525", "sterimol_L": "7.2967935", "sterimol_B1": "3.83254", "sterimol_B5": "6.542039", "dipolemoment": "1.2037371", "qpoletens_xx": "2.707751", "qpoletens_yy": "0.18855739", "qpoletens_zz": "-3.8919945", "sterimol_burL": "6.7681127", "vbur_far_vbur": "0.7339518", "vbur_far_vtot": "5.3129916", "sterimol_burB1": "3.843402", "sterimol_burB5": "6.370984", "vbur_near_vbur": "60.311954", "vbur_near_vtot": "371.91064", "vbur_ovbur_max": "17.597193", "vbur_ovbur_min": "-0.012396947", "vbur_ovtot_max": "119.76775", "vbur_ovtot_min": "0.005683819", "vbur_qvbur_max": "17.0092", "vbur_qvbur_min": "11.856253", "vbur_qvtot_max": "129.37752", "vbur_qvtot_min": "45.066376", "vbur_max_delta_qvbur": "4.8442225", "vbur_max_delta_qvtot": "66.964615"}, "delta_data": {"pyr_P": "0.053726785", "pyr_alpha": "5.2386823", "qpole_amp": "3.7898962", "vbur_vbur": "23.824959", "sterimol_L": "1.786493", "sterimol_B1": "0.40623167", "sterimol_B5": "1.3310943", "dipolemoment": "0.47833005", "qpoletens_xx": "0.23935483", "qpoletens_yy": "0.9474891", "qpoletens_zz": "2.585359", "sterimol_burL": "0.37085363", "vbur_far_vbur": "12.729453", "vbur_far_vtot": "20.824799", "sterimol_burB1": "0.6156745", "sterimol_burB5": "1.1565415", "vbur_near_vbur": "9.251317", "vbur_near_vtot": "26.230896", "vbur_ovbur_max": "3.853426", "vbur_ovbur_min": "0.77431864", "vbur_ovtot_max": "24.888538", "vbur_ovtot_min": "0.7246168", "vbur_qvbur_max": "12.839236", "vbur_qvbur_min": "3.6808937", "vbur_qvtot_max": "19.311878", "vbur_qvtot_min": "15.671074", "vbur_max_delta_qvbur": "11.980166", "vbur_max_delta_qvtot": "31.884136"}, "vburminconf_data": {"pyr_P": "0.8645857", "pyr_alpha": "25.511986", "qpole_amp": "4.5859756", "vbur_vbur": "61.149937", "sterimol_L": "9.023519", "sterimol_B1": "4.2431827", "sterimol_B5": "6.929535", "dipolemoment": "1.2007084", "qpoletens_xx": "2.761253", "qpoletens_yy": "1.4095222", "qpoletens_zz": "-4.875558", "sterimol_burL": "7.1596184", "vbur_far_vbur": "0.17967403", "vbur_far_vtot": "6.042447", "sterimol_burB1": "4.138272", "sterimol_burB5": "6.577925", "vbur_near_vbur": "59.87599", "vbur_near_vtot": "391.42947", "vbur_ovbur_max": "17.960165", "vbur_ovbur_min": "-0.115186684", "vbur_ovtot_max": "140.35635", "vbur_ovtot_min": "0.008822162", "vbur_qvbur_max": "17.970198", "vbur_qvbur_min": "12.079088", "vbur_qvtot_max": "141.93768", "vbur_qvtot_min": "64.3087", "vbur_max_delta_qvbur": "6.445685", "vbur_max_delta_qvtot": "79.52249"}, "boltzmann_averaged_data": {"nbo_P": "0.7944928", "nmr_P": "278.2425", "pyr_P": "0.8911046", "fmo_mu": "-0.10638911", "vmin_r": "1.7604928", "volume": "495.54532", "Pint_dP": "3.7994864", "fmo_eta": "0.23948988", "fukui_m": "0.5970065", "fukui_p": "0.073088594", "nuesp_P": "-54.20334", "somo_ra": "0.08771776", "somo_rc": "-0.398881", "nbo_P_ra": "0.7179233", "nbo_P_rc": "1.3474933", "efg_amp_P": "1.741457", "fmo_omega": "0.023966374", "pyr_alpha": "23.723114", "qpole_amp": "3.8876367", "vbur_vbur": "68.42331", "vbur_vtot": "394.1729", "vmin_vmin": "-0.063254155", "E_solv_cds": "-9.964567", "Pint_P_int": "19.677233", "Pint_P_max": "32.937405", "Pint_P_min": "12.611337", "fmo_e_homo": "-0.2186968", "fmo_e_lumo": "0.012988864", "nbo_lp_P_e": "-0.28665593", "sphericity": "0.775339", "sterimol_L": "7.7504654", "E_oxidation": "0.27075678", "E_reduction": "0.05094221", "sterimol_B1": "4.170567", "sterimol_B5": "7.42768", "E_solv_total": "-13.618406", "dipolemoment": "1.0733775", "efgtens_xx_P": "-0.81522286", "efgtens_yy_P": "-0.5926998", "efgtens_zz_P": "1.405181", "nbo_bd_e_avg": "-0.43569723", "nbo_bd_e_max": "-0.430349", "nbo_lp_P_occ": "1.9284041", "qpoletens_xx": "2.1894405", "qpoletens_yy": "0.41862848", "qpoletens_zz": "-3.0995524", "surface_area": "387.25256", "E_solv_elstat": "-4.009799", "nbo_bds_e_avg": "0.20456433", "nbo_bds_e_min": "0.20154049", "nmrtens_sxx_P": "243.7889", "nmrtens_syy_P": "284.0397", "nmrtens_szz_P": "315.48752", "spindens_P_ra": "0.09743562", "spindens_P_rc": "0.7462145", "sterimol_burL": "7.0849195", "vbur_far_vbur": "3.3512201", "vbur_far_vtot": "4.098508", "nbo_bd_occ_avg": "1.9534551", "nbo_bd_occ_min": "1.9496992", "sterimol_burB1": "4.119929", "sterimol_burB5": "6.859523", "vbur_near_vbur": "64.19428", "vbur_near_vtot": "380.03473", "vbur_ovbur_max": "18.668648", "vbur_ovbur_min": "0.031056345", "vbur_ovtot_max": "128.75607", "vbur_ovtot_min": "0.5099252", "vbur_qvbur_max": "21.163454", "vbur_qvbur_min": "13.42052", "vbur_qvtot_max": "138.44228", "vbur_qvtot_min": "56.89567", "nbo_bds_occ_avg": "0.035581544", "nbo_bds_occ_max": "0.04402429", "nbo_lp_P_percent_s": "48.993645", "vbur_max_delta_qvbur": "6.727508", "vbur_max_delta_qvtot": "75.72291", "vbur_ratio_vbur_vtot": "0.16453622"}} CCCCP(C12CC3CC(CC(C3)C1)C2)C12CC3CC(CC(C3)C1)C2 \N \\x00081050008010400201802000084804408430100a200002902008020100600201000010046060100008000800002a60010002010100021200000800000020440000009088000220068090020580000020000184004000002010019048102022012264021800240000200080000c000383004019801808000000200800200000 \\x00000000122000200080010000000000000000008800000000000000000200000010000440000000000000002000804000800040400000010200000000000008 pc3 (1.888824701309204, 5.250681400299072, 2.953818321228028, -1.9433128833770752) (4.039807319641113, 6.719201564788818) -1011 CC(C)(C)P(F)C(C)(C)C 164.20399475097656 {"max_data": {"pyr_P": 0.9086935962865544, "pyr_alpha": 20.292207699408294, "qpole_amp": 3.923117292273659, "vbur_vbur": 54.584718012701316, "vbur_vtot": 192.43283202534383, "sterimol_L": 6.720201133190546, "sterimol_B1": 2.8763903683260468, "sterimol_B5": 4.843931850925257, "dipolemoment": 2.0822311640900506, "qpoletens_xx": 3.112689589432446, "qpoletens_yy": -0.9015186465307243, "qpoletens_zz": -2.2111709429017217, "sterimol_burL": 6.720201133190546, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.8763903683260468, "sterimol_burB5": 4.843931850925257, "vbur_near_vbur": 54.58471801270133, "vbur_near_vtot": 192.4328320253438, "vbur_ovbur_max": 16.22721071427046, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 66.96844652626315, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.22721071427046, "vbur_qvbur_min": 10.063694585414783, "vbur_qvtot_max": 66.96844652626315, "vbur_qvtot_min": 23.56667217729049, "vbur_max_delta_qvbur": 6.155148891619831, "vbur_max_delta_qvtot": 43.06188527863021}, "min_data": {"pyr_P": 0.9086935962865544, "pyr_alpha": 20.292207699408294, "qpole_amp": 3.923117292273659, "vbur_vbur": 54.584718012701316, "vbur_vtot": 192.43283202534383, "sterimol_L": 6.720201133190546, "sterimol_B1": 2.8763903683260468, "sterimol_B5": 4.843931850925257, "dipolemoment": 2.0822311640900506, "qpoletens_xx": 3.112689589432446, "qpoletens_yy": -0.9015186465307243, "qpoletens_zz": -2.2111709429017217, "sterimol_burL": 6.720201133190546, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.8763903683260468, "sterimol_burB5": 4.843931850925257, "vbur_near_vbur": 54.58471801270133, "vbur_near_vtot": 192.4328320253438, "vbur_ovbur_max": 16.22721071427046, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 66.96844652626315, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.22721071427046, "vbur_qvbur_min": 10.063694585414783, "vbur_qvtot_max": 66.96844652626315, "vbur_qvtot_min": 23.56667217729049, "vbur_max_delta_qvbur": 6.155148891619831, "vbur_max_delta_qvtot": 43.06188527863021}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9086935962865544, "pyr_alpha": 20.292207699408294, "qpole_amp": 3.923117292273659, "vbur_vbur": 54.584718012701316, "vbur_vtot": 192.43283202534383, "sterimol_L": 6.720201133190546, "sterimol_B1": 2.8763903683260468, "sterimol_B5": 4.843931850925257, "dipolemoment": 2.0822311640900506, "qpoletens_xx": 3.112689589432446, "qpoletens_yy": -0.9015186465307243, "qpoletens_zz": -2.2111709429017217, "sterimol_burL": 6.720201133190546, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.8763903683260468, "sterimol_burB5": 4.843931850925257, "vbur_near_vbur": 54.58471801270133, "vbur_near_vtot": 192.4328320253438, "vbur_ovbur_max": 16.22721071427046, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 66.96844652626315, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.22721071427046, "vbur_qvbur_min": 10.063694585414783, "vbur_qvtot_max": 66.96844652626315, "vbur_qvtot_min": 23.56667217729049, "vbur_max_delta_qvbur": 6.155148891619831, "vbur_max_delta_qvtot": 43.06188527863021}, "boltzmann_averaged_data": {"nbo_P": 1.12061, "nmr_P": 35.905, "pyr_P": 0.9086935962865544, "fmo_mu": -0.12125999999999999, "vmin_r": 1.837227946563302, "volume": 239.09512, "Pint_dP": 2.52, "fmo_eta": 0.23954, "fukui_m": 0.54907, "fukui_p": 0.47952000000000006, "nuesp_P": -54.143959, "somo_ra": 0.11201, "somo_rc": -0.47847, "nbo_P_ra": 0.64109, "nbo_P_rc": 1.66968, "efg_amp_P": 2.7788040428659233, "fmo_omega": 0.03069213409033981, "pyr_alpha": 20.292207699408294, "qpole_amp": 3.923117292273659, "vbur_vbur": 54.584718012701316, "vbur_vtot": 192.43283202534383, "vmin_vmin": -0.0475484, "E_solv_cds": -2.45, "Pint_P_int": 16.73, "Pint_P_max": 25.72, "Pint_P_min": 12.7, "fmo_e_homo": -0.24103, "fmo_e_lumo": -0.00149, "nbo_lp_P_e": -0.35382, "sphericity": 0.882816, "sterimol_L": 6.720201133190546, "E_oxidation": 0.30575659999999516, "E_reduction": 0.05477270000005774, "sterimol_B1": 2.8763903683260468, "sterimol_B5": 4.843931850925257, "E_solv_total": -6.231796546530931, "dipolemoment": 2.0822311640900506, "efgtens_xx_P": -2.029482, "efgtens_yy_P": 0.136232, "efgtens_zz_P": 1.89325, "nbo_bd_e_avg": -0.5549666666666667, "nbo_bd_e_max": -0.45068, "nbo_lp_P_occ": 1.96175, "qpoletens_xx": 3.112689589432446, "qpoletens_yy": -0.9015186465307243, "qpoletens_zz": -2.2111709429017217, "surface_area": 211.02209, "E_solv_elstat": -3.7817965465309307, "nbo_bds_e_avg": 0.16827333333333336, "nbo_bds_e_min": 0.14781, "nmrtens_sxx_P": -212.5533, "nmrtens_syy_P": 130.3598, "nmrtens_szz_P": 189.9086, "spindens_P_ra": 0.68663, "spindens_P_rc": 0.67944, "sterimol_burL": 6.720201133190546, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9618933333333335, "nbo_bd_occ_min": 1.94982, "sterimol_burB1": 2.8763903683260468, "sterimol_burB5": 4.843931850925257, "vbur_near_vbur": 54.58471801270133, "vbur_near_vtot": 192.4328320253438, "vbur_ovbur_max": 16.22721071427046, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 66.96844652626315, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.22721071427046, "vbur_qvbur_min": 10.063694585414783, "vbur_qvtot_max": 66.96844652626315, "vbur_qvtot_min": 23.56667217729049, "nbo_bds_occ_avg": 0.051103333333333334, "nbo_bds_occ_max": 0.06308, "nbo_lp_P_percent_s": 59.66, "vbur_max_delta_qvbur": 6.155148891619831, "vbur_max_delta_qvtot": 43.06188527863021, "vbur_ratio_vbur_vtot": 0.2836559512126932}} {"max_data": {"B1": 2.903657404706058, "B5": 4.805907558822148, "lval": 6.60106144425908, "sasa": 341.8706092682771, "vbur": 59.22371786951779, "vtot": 190.9430586445338, "alpha": 123.701881, "p_int": 16.73112711325847, "sasa_P": 12.179965460124663, "pyr_val": 0.9195441405642811, "dip_norm": 1.00499701492094, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 59.223717869517785, "near_vtot": 190.9430586445338, "ovbur_max": 17.44890880745289, "ovbur_min": 0.0, "ovtot_max": 66.03574369768876, "ovtot_min": 0.0, "pyr_alpha": 18.82077742955497, "qvbur_max": 17.44890880745289, "qvbur_min": 12.028907073674937, "qvtot_max": 66.03574369768876, "qvtot_min": 26.131426058117654, "cone_angle": 175.75395876353807, "p_int_area": 238.49829716745282, "p_int_atom": 22.40018013294822, "sasa_volume": 530.6698202967846, "EA_delta_SCC": 1.2587, "IP_delta_SCC": 7.344, "HOMO_LUMO_gap": 5.011449948181, "sasa_volume_P": 16.27133747573474, "max_delta_qvbur": 5.6298082525048425, "max_delta_qvtot": 41.27019613985016, "nucleophilicity": -7.3438, "p_int_atom_area": 13.69809393064976, "p_int_times_p_int_area": 3990.345326204346, "global_electrophilicity_index": 1.5202, "p_int_atom_times_p_int_atom_area": 306.8397715245993}, "min_data": {"B1": 2.878293195572127, "B5": 4.789373338574745, "lval": 6.568777637679045, "sasa": 341.460577141241, "vbur": 59.025567268497944, "vtot": 190.6526682561692, "alpha": 123.693651, "p_int": 16.58239527765908, "sasa_P": 12.049965828776868, "pyr_val": 0.9153290426189654, "dip_norm": 0.9898858520051693, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 59.02556726849795, "near_vtot": 187.88219355267108, "ovbur_max": 17.169166782483707, "ovbur_min": 0.0, "ovtot_max": 65.90823753331284, "ovtot_min": 0.0, "pyr_alpha": 18.478959198062075, "qvbur_max": 17.169166782483707, "qvbur_min": 11.819100554948049, "qvtot_max": 65.90823753331284, "qvtot_min": 24.73905442361791, "cone_angle": 174.2513086987489, "p_int_area": 236.59856528949882, "p_int_atom": 22.036477968620993, "sasa_volume": 529.9130456572242, "EA_delta_SCC": 1.2582, "IP_delta_SCC": 7.3438, "HOMO_LUMO_gap": 5.009417200133, "sasa_volume_P": 16.059857956833504, "max_delta_qvbur": 5.11694787339467, "max_delta_qvtot": 39.663954904076505, "nucleophilicity": -7.344, "p_int_atom_area": 13.69809393064976, "p_int_times_p_int_area": 3923.370931757499, "global_electrophilicity_index": 1.5199, "p_int_atom_times_p_int_atom_area": 301.8577451148644}, "boltzmann_averaged_data": {"B1": 2.8784382788483733, "B5": 4.805812983082333, "lval": 6.600876780885442, "sasa": 341.4629225250077, "vbur": 59.02670068993578, "vtot": 190.94139761151237, "alpha": 123.7018339244, "p_int": 16.583246023758708, "B1_std": 0.0019128181835959296, "B5_std": 0.0012469128043304386, "sasa_P": 12.179221862233353, "pyr_val": 0.919520030204034, "dip_norm": 1.0049105790690618, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0024346531735292306, "sasa_std": 0.030922190568283405, "vbur_std": 0.01494334283083113, "vtot_std": 0.02189952039396526, "alpha_std": 0.0006206577767855709, "near_vbur": 59.02670068993579, "near_vtot": 190.92555049620836, "ovbur_max": 17.447308683070066, "ovbur_min": 0.0, "ovtot_max": 65.90896686857307, "ovtot_min": 0.0, "p_int_std": 0.011216472712075501, "pyr_alpha": 18.480914398346215, "qvbur_max": 17.447308683070066, "qvbur_min": 11.820300648235168, "qvtot_max": 65.90896686857307, "qvtot_min": 26.123461692368316, "cone_angle": 174.25990385711947, "p_int_area": 236.60943175584072, "p_int_atom": 22.038558345000943, "sasa_P_std": 0.009803800993352452, "pyr_val_std": 0.0003178776816128638, "sasa_volume": 529.9173744081625, "EA_delta_SCC": 1.25869714, "IP_delta_SCC": 7.343801144, "dip_norm_std": 0.001139594262448311, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.009428827451835, "near_vbur_std": 0.014943342830830058, "near_vtot_std": 0.23083228711502468, "ovbur_max_std": 0.02109648399646661, "ovbur_min_std": 0.0, "ovtot_max_std": 0.009615758506444154, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.025777903234899063, "qvbur_max_std": 0.02109648399646661, "qvbur_min_std": 0.01582236299734989, "qvtot_max_std": 0.009615758506444154, "qvtot_min_std": 0.10500440864254706, "sasa_volume_P": 16.270127812886628, "cone_angle_std": 0.11332095364508234, "p_int_area_std": 0.14326650836694543, "p_int_atom_std": 0.02742825962618521, "max_delta_qvbur": 5.626874691136332, "max_delta_qvtot": 39.67314260394513, "nucleophilicity": -7.343801144, "p_int_atom_area": 13.698093930649762, "sasa_volume_std": 0.05707145386602511, "EA_delta_SCC_std": 0.000037707033826591115, "IP_delta_SCC_std": 0.000015082813530669937, "HOMO_LUMO_gap_std": 0.0001532977988137814, "sasa_volume_P_std": 0.015948530745681963, "max_delta_qvbur_std": 0.038676887326855494, "max_delta_qvtot_std": 0.12113318522197856, "nucleophilicity_std": 0.000015082813530669937, "p_int_atom_area_std": 0.0000000000000017763568394002505, "p_int_times_p_int_area": 3923.754025293735, "p_int_times_p_int_area_std": 5.0508115138459795, "global_electrophilicity_index": 1.5201982840000001, "p_int_atom_times_p_int_atom_area": 301.8862423059281, "global_electrophilicity_index_std": 0.00002262422029595467, "p_int_atom_times_p_int_atom_area_std": 0.37571487671373294}} {"max_data": {"pyr_P": "0.9070358", "pyr_alpha": "24.695007", "qpole_amp": "2.9133453", "vbur_vbur": "58.68887", "sterimol_L": "6.7826977", "sterimol_B1": "2.9468663", "sterimol_B5": "5.785061", "dipolemoment": "1.3406996", "qpoletens_xx": "1.5875516", "qpoletens_yy": "0.2669321", "qpoletens_zz": "-2.3300357", "sterimol_burL": "6.691198", "vbur_far_vbur": "2.3266895", "vbur_far_vtot": "4.527793", "sterimol_burB1": "3.0860798", "sterimol_burB5": "5.43567", "vbur_near_vbur": "54.972523", "vbur_near_vtot": "182.34055", "vbur_ovbur_max": "15.955641", "vbur_ovbur_min": "-0.07787343", "vbur_ovtot_max": "63.687706", "vbur_ovtot_min": "-0.697964", "vbur_qvbur_max": "15.946457", "vbur_qvbur_min": "12.70129", "vbur_qvtot_max": "71.58614", "vbur_qvtot_min": "33.320377", "vbur_max_delta_qvbur": "4.4077134", "vbur_max_delta_qvtot": "32.950584"}, "min_data": {"pyr_P": "0.8712843", "pyr_alpha": "19.663961", "qpole_amp": "3.5366116", "vbur_vbur": "60.63163", "sterimol_L": "6.61978", "sterimol_B1": "3.1838129", "sterimol_B5": "5.247721", "dipolemoment": "2.541233", "qpoletens_xx": "2.242137", "qpoletens_yy": "0.5713765", "qpoletens_zz": "-2.2408395", "sterimol_burL": "6.5017605", "vbur_far_vbur": "0.25293902", "vbur_far_vtot": "3.214834", "sterimol_burB1": "3.2578664", "sterimol_burB5": "5.201386", "vbur_near_vbur": "56.843857", "vbur_near_vtot": "187.69072", "vbur_ovbur_max": "15.873587", "vbur_ovbur_min": "0.019139646", "vbur_ovtot_max": "76.60475", "vbur_ovtot_min": "0.06134026", "vbur_qvbur_max": "14.159998", "vbur_qvbur_min": "11.378452", "vbur_qvtot_max": "79.133255", "vbur_qvtot_min": "38.086006", "vbur_max_delta_qvbur": "3.4257612", "vbur_max_delta_qvtot": "33.407932"}, "delta_data": {"pyr_P": "0.011815817", "pyr_alpha": "1.3347386", "qpole_amp": "-0.77020866", "vbur_vbur": "-4.310599", "sterimol_L": "0.10565806", "sterimol_B1": "-0.1111326", "sterimol_B5": "0.015679922", "dipolemoment": "-0.30678123", "qpoletens_xx": "-1.1480083", "qpoletens_yy": "-0.553736", "qpoletens_zz": "-0.6089432", "sterimol_burL": "-0.13424179", "vbur_far_vbur": "-3.0547493", "vbur_far_vtot": "-9.560009", "sterimol_burB1": "-0.14953092", "sterimol_burB5": "0.037112575", "vbur_near_vbur": "-1.3145105", "vbur_near_vtot": "-8.613203", "vbur_ovbur_max": "-0.62803364", "vbur_ovbur_min": "-0.17031175", "vbur_ovtot_max": "-6.003325", "vbur_ovtot_min": "-0.041105602", "vbur_qvbur_max": "-1.1105213", "vbur_qvbur_min": "0.13959576", "vbur_qvtot_max": "-1.1934639", "vbur_qvtot_min": "-2.0915375", "vbur_max_delta_qvbur": "-0.09344768", "vbur_max_delta_qvtot": "-3.6206036"}, "vburminconf_data": {"pyr_P": "0.8843555", "pyr_alpha": "20.416756", "qpole_amp": "5.075119", "vbur_vbur": "58.99988", "sterimol_L": "6.897209", "sterimol_B1": "3.016306", "sterimol_B5": "5.3176684", "dipolemoment": "1.9021788", "qpoletens_xx": "2.8754041", "qpoletens_yy": "0.56648445", "qpoletens_zz": "-2.8210156", "sterimol_burL": "6.543338", "vbur_far_vbur": "1.2389193", "vbur_far_vtot": "6.8260264", "sterimol_burB1": "3.1212642", "sterimol_burB5": "5.1221056", "vbur_near_vbur": "56.994316", "vbur_near_vtot": "181.58797", "vbur_ovbur_max": "15.544811", "vbur_ovbur_min": "0.031821724", "vbur_ovtot_max": "69.36315", "vbur_ovtot_min": "0.019007768", "vbur_qvbur_max": "15.483251", "vbur_qvbur_min": "11.833004", "vbur_qvtot_max": "77.19611", "vbur_qvtot_min": "34.131493", "vbur_max_delta_qvbur": "2.825671", "vbur_max_delta_qvtot": "31.706871"}, "boltzmann_averaged_data": {"nbo_P": "1.0733117", "nmr_P": "134.80672", "pyr_P": "0.9095518", "fmo_mu": "-0.11094936", "vmin_r": "1.8466167", "volume": "237.38988", "Pint_dP": "2.9016712", "fmo_eta": "0.23913582", "fukui_m": "0.5676745", "fukui_p": "0.24975105", "nuesp_P": "-54.142597", "somo_ra": "0.11206814", "somo_rc": "-0.4622561", "nbo_P_ra": "0.7534712", "nbo_P_rc": "1.4036686", "efg_amp_P": "2.6056623", "fmo_omega": "0.026921289", "pyr_alpha": "19.216322", "qpole_amp": "3.1165762", "vbur_vbur": "58.73654", "vbur_vtot": "192.77687", "vmin_vmin": "-0.049503144", "E_solv_cds": "-2.0217338", "Pint_P_int": "16.62499", "Pint_P_max": "28.260723", "Pint_P_min": "11.9782295", "fmo_e_homo": "-0.233943", "fmo_e_lumo": "-0.0037695593", "nbo_lp_P_e": "-0.3475842", "sphericity": "0.87825346", "sterimol_L": "6.4975605", "E_oxidation": "0.298884", "E_reduction": "0.05655585", "sterimol_B1": "2.934819", "sterimol_B5": "5.622626", "E_solv_total": "-5.4088707", "dipolemoment": "2.3922925", "efgtens_xx_P": "-1.675488", "efgtens_yy_P": "-0.21138443", "efgtens_zz_P": "1.7181444", "nbo_bd_e_avg": "-0.5482957", "nbo_bd_e_max": "-0.45412868", "nbo_lp_P_occ": "1.9563073", "qpoletens_xx": "1.7993064", "qpoletens_yy": "0.41610673", "qpoletens_zz": "-2.6987681", "surface_area": "209.77592", "E_solv_elstat": "-3.5161867", "nbo_bds_e_avg": "0.1698458", "nbo_bds_e_min": "0.15792865", "nmrtens_sxx_P": "-25.683502", "nmrtens_syy_P": "101.7637", "nmrtens_szz_P": "279.27548", "spindens_P_ra": "0.3146828", "spindens_P_rc": "0.7972514", "sterimol_burL": "6.5458055", "vbur_far_vbur": "5.075537", "vbur_far_vtot": "9.885026", "nbo_bd_occ_avg": "1.9597237", "nbo_bd_occ_min": "1.9435743", "sterimol_burB1": "3.0724394", "sterimol_burB5": "5.427345", "vbur_near_vbur": "55.021904", "vbur_near_vtot": "181.29837", "vbur_ovbur_max": "15.158893", "vbur_ovbur_min": "-0.020896383", "vbur_ovtot_max": "68.47223", "vbur_ovtot_min": "-0.033088513", "vbur_qvbur_max": "15.95925", "vbur_qvbur_min": "11.891836", "vbur_qvtot_max": "79.072495", "vbur_qvtot_min": "33.12095", "nbo_bds_occ_avg": "0.054861028", "nbo_bds_occ_max": "0.06406946", "nbo_lp_P_percent_s": "58.52273", "vbur_max_delta_qvbur": "3.7041578", "vbur_max_delta_qvtot": "39.772366", "vbur_ratio_vbur_vtot": "0.29992428"}} CC(C)(C)P(F)C(C)(C)C {"max_data": {"B1": 2.9145233518590867, "B5": 4.806215699719308, "lval": 6.764489843851347, "sasa": 341.7106046427163, "vbur": 52.976145978539336, "vtot": 190.01254473995152, "alpha": 123.710861, "p_int": 16.746929578226105, "sasa_P": 11.459967501890699, "pyr_val": 0.8950585184864172, "dip_norm": 0.9956756499985324, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 52.976145978539336, "near_vtot": 186.96964685824202, "ovbur_max": 15.58396197432499, "ovbur_min": 0.0, "ovtot_max": 65.50777272344996, "ovtot_min": 0.0, "pyr_alpha": 21.6784982591981, "qvbur_max": 15.58396197432499, "qvbur_min": 10.828347549848854, "qvtot_max": 65.50777272344996, "qvtot_min": 25.50962842477005, "cone_angle": 165.5619751498707, "p_int_area": 238.29860385584018, "p_int_atom": 22.690521145255943, "sasa_volume": 529.9179610517333, "EA_delta_SCC": 1.1328, "IP_delta_SCC": 7.2206, "HOMO_LUMO_gap": 5.119234610208, "sasa_volume_P": 10.158297703817434, "max_delta_qvbur": 5.047012367152371, "max_delta_qvtot": 40.93399952589856, "nucleophilicity": -7.2141, "p_int_atom_area": 13.298149582309623, "p_int_times_p_int_area": 3990.7699373633554, "global_electrophilicity_index": 1.4328, "p_int_atom_times_p_int_atom_area": 299.47320786693865}, "min_data": {"B1": 2.884126386988612, "B5": 4.784441656188058, "lval": 6.761551223626746, "sasa": 341.6205759078626, "vbur": 52.673092118156056, "vtot": 189.94842252034687, "alpha": 123.699343, "p_int": 16.570812866016766, "sasa_P": 11.139968409342261, "pyr_val": 0.8906813022250397, "dip_norm": 0.9756198029970486, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 52.67309211815605, "near_vtot": 186.80525457476494, "ovbur_max": 15.222628525406462, "ovbur_min": 0.0, "ovtot_max": 65.32214877635708, "ovtot_min": 0.0, "pyr_alpha": 21.485477215832212, "qvbur_max": 15.222628525406462, "qvbur_min": 10.53694960717262, "qvtot_max": 65.32214877635708, "qvtot_min": 24.573773197551404, "cone_angle": 165.3754680983674, "p_int_area": 235.9983918863027, "p_int_atom": 22.31306227752037, "sasa_volume": 529.5700999768865, "EA_delta_SCC": 1.1246, "IP_delta_SCC": 7.2141, "HOMO_LUMO_gap": 5.104017502291, "sasa_volume_P": 9.823938034695663, "max_delta_qvbur": 4.394280975557608, "max_delta_qvtot": 39.81252035158703, "nucleophilicity": -7.2206, "p_int_atom_area": 13.198163495224591, "p_int_times_p_int_area": 3910.6851886288114, "global_electrophilicity_index": 1.4273, "p_int_atom_times_p_int_atom_area": 296.72243980585614}, "boltzmann_averaged_data": {"B1": 2.884461969480782, "B5": 4.805975314278723, "lval": 6.7644574014840675, "sasa": 341.6215698250954, "vbur": 52.9728002639207, "vtot": 189.9491304296513, "alpha": 123.71073384127999, "p_int": 16.572757194519554, "B1_std": 0.0031761727938807165, "B5_std": 0.0022751654637699252, "sasa_P": 11.456434711908962, "pyr_val": 0.8950101940188915, "dip_norm": 0.995454233447636, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0003070558408938689, "sasa_std": 0.009407084540457704, "vbur_std": 0.03166603739983416, "vtot_std": 0.00670011793149041, "alpha_std": 0.0012035135216883805, "near_vbur": 52.9728002639207, "near_vtot": 186.80706946557453, "ovbur_max": 15.57997285304893, "ovbur_min": 0.0, "ovtot_max": 65.50572343507406, "ovtot_min": 0.0, "p_int_std": 0.018402400116281293, "pyr_alpha": 21.48760816815097, "qvbur_max": 15.57997285304893, "qvbur_min": 10.540166640459764, "qvtot_max": 65.50572343507406, "qvtot_min": 24.584105039259896, "cone_angle": 165.37752713621597, "p_int_area": 236.0237862264464, "p_int_atom": 22.31722942342017, "sasa_P_std": 0.03343664132750605, "pyr_val_std": 0.0004573744537180219, "sasa_volume": 529.5739403631527, "EA_delta_SCC": 1.1246905280000001, "IP_delta_SCC": 7.214171759999999, "dip_norm_std": 0.0020956314512249547, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.119066613336596, "near_vbur_std": 0.031666037399834895, "near_vtot_std": 0.017177316897548645, "ovbur_max_std": 0.03775565997672571, "ovbur_min_std": 0.0, "ovtot_max_std": 0.019395809192180917, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.02016873030572511, "qvbur_max_std": 0.03775565997672571, "qvbur_min_std": 0.03044811288445629, "qvtot_max_std": 0.019395809192180917, "qvtot_min_std": 0.0977873259507602, "sasa_volume_P": 10.154606373070328, "cone_angle_std": 0.01948808459581031, "p_int_area_std": 0.24034868971079754, "p_int_atom_std": 0.03944060177123939, "max_delta_qvbur": 5.039806212589165, "max_delta_qvtot": 40.92161839581416, "nucleophilicity": -7.214171759999999, "p_int_atom_area": 13.297045735908203, "sasa_volume_std": 0.03634793429826267, "EA_delta_SCC_std": 0.0008568163637653037, "IP_delta_SCC_std": 0.000679183702984688, "HOMO_LUMO_gap_std": 0.001590032569813243, "sasa_volume_P_std": 0.03493717510813244, "max_delta_qvbur_std": 0.068203772861182, "max_delta_qvtot_std": 0.11718313514294112, "nucleophilicity_std": 0.000679183702984688, "p_int_atom_area_std": 0.010447526288209543, "p_int_times_p_int_area": 3911.5693242548405, "p_int_times_p_int_area_std": 8.368039415096364, "global_electrophilicity_index": 1.42736072, "p_int_atom_times_p_int_atom_area": 296.75280828525047, "global_electrophilicity_index_std": 0.0005746939025255161, "p_int_atom_times_p_int_atom_area_std": 0.2874272058120068}} \\x0000000000000200000000000008020000000000002000009000000001401020100000100440400100000000000008200100000100000000000000010000044000000000000000000000000100800020000800000000000020100100481000020202300000002000200000100004000002000011200008000000204200200000 \\x00000000022000080000010000000400000000000000000000000000000040000000400000000000000000000000000000010000000000000000000000800000 phal (-10.35232162475586, 4.732247352600098, 1.0209288597106934, 3.848907709121704) (0.5266225337982178, 5.723027229309082) -1012 FP(c1ccccc1)c1ccccc1 204.1840057373047 {"max_data": {"pyr_P": 0.9565725640878615, "pyr_alpha": 14.277441876789839, "qpole_amp": 8.988920286669003, "vbur_vbur": 44.52625295055894, "vbur_vtot": 225.30781828553205, "sterimol_L": 7.730538667675779, "sterimol_B1": 2.6736959851011513, "sterimol_B5": 6.202267043080479, "dipolemoment": 2.702187349168326, "qpoletens_xx": 7.133725995150613, "qpoletens_yy": -2.072604308582976, "qpoletens_zz": -5.0611216865676365, "sterimol_burL": 7.275828120523569, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.6736959851011513, "sterimol_burB5": 6.039862370808139, "vbur_near_vbur": 44.52625295055894, "vbur_near_vtot": 225.30781828553202, "vbur_ovbur_max": 14.318434719842902, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.83754269733791, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.318434719842902, "vbur_qvbur_min": 9.189318294268789, "vbur_qvtot_max": 89.83754269733791, "vbur_qvtot_min": 19.409214273911306, "vbur_max_delta_qvbur": 4.8153450292298565, "vbur_max_delta_qvtot": 70.4283284234266}, "min_data": {"pyr_P": 0.9565725640878615, "pyr_alpha": 14.277441876789839, "qpole_amp": 8.988920286669003, "vbur_vbur": 44.52625295055894, "vbur_vtot": 225.30781828553205, "sterimol_L": 7.730538667675779, "sterimol_B1": 2.6736959851011513, "sterimol_B5": 6.202267043080479, "dipolemoment": 2.702187349168326, "qpoletens_xx": 7.133725995150613, "qpoletens_yy": -2.072604308582976, "qpoletens_zz": -5.0611216865676365, "sterimol_burL": 7.275828120523569, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.6736959851011513, "sterimol_burB5": 6.039862370808139, "vbur_near_vbur": 44.52625295055894, "vbur_near_vtot": 225.30781828553202, "vbur_ovbur_max": 14.318434719842902, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.83754269733791, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.318434719842902, "vbur_qvbur_min": 9.189318294268789, "vbur_qvtot_max": 89.83754269733791, "vbur_qvtot_min": 19.409214273911306, "vbur_max_delta_qvbur": 4.8153450292298565, "vbur_max_delta_qvtot": 70.4283284234266}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9565725640878615, "pyr_alpha": 14.277441876789839, "qpole_amp": 8.988920286669003, "vbur_vbur": 44.52625295055894, "vbur_vtot": 225.30781828553205, "sterimol_L": 7.730538667675779, "sterimol_B1": 2.6736959851011513, "sterimol_B5": 6.202267043080479, "dipolemoment": 2.702187349168326, "qpoletens_xx": 7.133725995150613, "qpoletens_yy": -2.072604308582976, "qpoletens_zz": -5.0611216865676365, "sterimol_burL": 7.275828120523569, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.6736959851011513, "sterimol_burB5": 6.039862370808139, "vbur_near_vbur": 44.52625295055894, "vbur_near_vtot": 225.30781828553202, "vbur_ovbur_max": 14.318434719842902, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.83754269733791, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.318434719842902, "vbur_qvbur_min": 9.189318294268789, "vbur_qvtot_max": 89.83754269733791, "vbur_qvtot_min": 19.409214273911306, "vbur_max_delta_qvbur": 4.8153450292298565, "vbur_max_delta_qvtot": 70.4283284234266}, "boltzmann_averaged_data": {"nbo_P": 1.13925, "nmr_P": 99.1325, "pyr_P": 0.9565725640878615, "fmo_mu": -0.15002, "vmin_r": 1.8838284876541613, "volume": 252.81611, "Pint_dP": 3.51, "fmo_eta": 0.1983, "fukui_m": 0.2999799999999999, "fukui_p": 0.2263900000000001, "nuesp_P": -54.127012, "somo_ra": 0.05521, "somo_rc": -0.4133, "nbo_P_ra": 0.91286, "nbo_P_rc": 1.43923, "efg_amp_P": 2.7202622591026038, "fmo_omega": 0.05674735350479071, "pyr_alpha": 14.277441876789839, "qpole_amp": 8.988920286669003, "vbur_vbur": 44.52625295055894, "vbur_vtot": 225.30781828553205, "vmin_vmin": -0.0363624, "E_solv_cds": -4.66, "Pint_P_int": 18.39, "Pint_P_max": 31.15, "Pint_P_min": 11.92, "fmo_e_homo": -0.24917, "fmo_e_lumo": -0.05087, "nbo_lp_P_e": -0.36179, "sphericity": 0.810733, "sterimol_L": 7.730538667675779, "E_oxidation": 0.30481940000004215, "E_reduction": 0.0023281999999653635, "sterimol_B1": 2.6736959851011513, "sterimol_B5": 6.202267043080479, "E_solv_total": -10.469054242744487, "dipolemoment": 2.702187349168326, "efgtens_xx_P": -1.914767, "efgtens_yy_P": -0.01738, "efgtens_zz_P": 1.932147, "nbo_bd_e_avg": -0.5810833333333333, "nbo_bd_e_max": -0.49106, "nbo_lp_P_occ": 1.94705, "qpoletens_xx": 7.133725995150613, "qpoletens_yy": -2.072604308582976, "qpoletens_zz": -5.0611216865676365, "surface_area": 238.49331, "E_solv_elstat": -5.809054242744487, "nbo_bds_e_avg": 0.19306333333333334, "nbo_bds_e_min": 0.14791, "nmrtens_sxx_P": -163.6135, "nmrtens_syy_P": 190.1935, "nmrtens_szz_P": 270.8176, "spindens_P_ra": 0.28321, "spindens_P_rc": 0.36241, "sterimol_burL": 7.275828120523569, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.96818, "nbo_bd_occ_min": 1.95646, "sterimol_burB1": 2.6736959851011513, "sterimol_burB5": 6.039862370808139, "vbur_near_vbur": 44.52625295055894, "vbur_near_vtot": 225.30781828553202, "vbur_ovbur_max": 14.318434719842902, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.83754269733791, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.318434719842902, "vbur_qvbur_min": 9.189318294268789, "vbur_qvtot_max": 89.83754269733791, "vbur_qvtot_min": 19.409214273911306, "nbo_bds_occ_avg": 0.04633666666666667, "nbo_bds_occ_max": 0.04871, "nbo_lp_P_percent_s": 58.9, "vbur_max_delta_qvbur": 4.8153450292298565, "vbur_max_delta_qvtot": 70.4283284234266, "vbur_ratio_vbur_vtot": 0.19762409173982115}} {"max_data": {"B1": 2.793395537977145, "B5": 6.064456317164231, "lval": 7.631922485097932, "sasa": 386.9621447147834, "vbur": 48.44199399049714, "vtot": 222.4707564731609, "alpha": 156.119095, "p_int": 19.27592263278782, "sasa_P": 26.709924256151876, "pyr_val": 0.9766637413077436, "dip_norm": 1.1947577160244667, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 48.441993990497124, "near_vtot": 222.47075647316086, "ovbur_max": 14.383402450498908, "ovbur_min": 0.0, "ovtot_max": 87.93528528538336, "ovtot_min": 0.0, "pyr_alpha": 11.924185379645587, "qvbur_max": 14.383402450498908, "qvbur_min": 10.128992487425892, "qvtot_max": 87.93528528538336, "qvtot_min": 20.03283132693347, "cone_angle": 142.71110516391522, "p_int_area": 259.2340797854016, "p_int_atom": 22.011784077232438, "sasa_volume": 586.3162400057163, "EA_delta_SCC": 1.4589, "IP_delta_SCC": 7.1192, "HOMO_LUMO_gap": 3.82268631959, "sasa_volume_P": 39.37701943361079, "max_delta_qvbur": 4.417592810971707, "max_delta_qvtot": 67.90245395844988, "nucleophilicity": -7.1126, "p_int_atom_area": 22.796827855387928, "p_int_times_p_int_area": 4996.976065725346, "global_electrophilicity_index": 1.625, "p_int_atom_times_p_int_atom_area": 492.9953637600643}, "min_data": {"B1": 2.60629127269938, "B5": 6.029659606683964, "lval": 7.2871688612459495, "sasa": 385.7321827473456, "vbur": 47.3230258906204, "vtot": 222.1467450638114, "alpha": 156.090588, "p_int": 19.262466185220383, "sasa_P": 23.68993282022605, "pyr_val": 0.9690070081983132, "dip_norm": 1.1841587731381293, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 47.32302589062039, "near_vtot": 217.71941391615633, "ovbur_max": 14.313466944256612, "ovbur_min": 0.0, "ovtot_max": 86.64483839296355, "ovtot_min": 0.0, "pyr_alpha": 10.340618786810406, "qvbur_max": 14.313466944256612, "qvbur_min": 9.965809639527201, "qvtot_max": 86.64483839296355, "qvtot_min": 19.497199867422474, "cone_angle": 140.8800418327458, "p_int_area": 257.5335198673362, "p_int_atom": 21.076055461722355, "sasa_volume": 585.5334497030044, "EA_delta_SCC": 1.2855, "IP_delta_SCC": 7.1126, "HOMO_LUMO_gap": 3.740663237919, "sasa_volume_P": 34.315755308442164, "max_delta_qvbur": 3.6832699954275974, "max_delta_qvtot": 67.14763852554108, "nucleophilicity": -7.1192, "p_int_atom_area": 22.39688350704779, "p_int_times_p_int_area": 4960.730718005346, "global_electrophilicity_index": 1.5129, "p_int_atom_times_p_int_atom_area": 480.46720823149303}, "boltzmann_averaged_data": {"B1": 2.608360645873352, "B5": 6.030044458301876, "lval": 7.628109510018129, "sasa": 385.74578612670547, "vbur": 47.33540167780504, "vtot": 222.15032862999882, "alpha": 156.11877971258, "p_int": 19.275773804477726, "B1_std": 0.01956799023835628, "B5_std": 0.0036391564350173326, "sasa_P": 26.676523150870537, "pyr_val": 0.9765790578395533, "dip_norm": 1.1842759974464523, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.03605548775790118, "sasa_std": 0.12863353882736347, "vbur_std": 0.1170254286983493, "vtot_std": 0.03388619754795174, "alpha_std": 0.0029813574634256503, "near_vbur": 47.33540167780503, "near_vtot": 217.7719637648368, "ovbur_max": 14.382628963799869, "ovbur_min": 0.0, "ovtot_max": 87.92101294275321, "ovtot_min": 0.0, "p_int_std": 0.001407320320847264, "pyr_alpha": 10.358133033327164, "qvbur_max": 14.382628963799869, "qvbur_min": 9.967614441824962, "qvtot_max": 87.92101294275321, "qvtot_min": 20.02690724299128, "cone_angle": 140.90029339318855, "p_int_area": 259.2152715927078, "p_int_atom": 21.086404620209898, "sasa_P_std": 0.3158408112737924, "pyr_val_std": 0.0008007667731176956, "sasa_volume": 585.5421073637524, "EA_delta_SCC": 1.2874178040000002, "IP_delta_SCC": 7.112672996, "dip_norm_std": 0.0011084729181820093, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.821779144306719, "near_vbur_std": 0.11702542869834856, "near_vtot_std": 0.4969113057712876, "ovbur_max_std": 0.007314089293646738, "ovbur_min_std": 0.0, "ovtot_max_std": 0.13495925470486245, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.1656146939482326, "qvbur_max_std": 0.007314089293646738, "qvbur_min_std": 0.017066208351842575, "qvtot_max_std": 0.13495925470486245, "qvtot_min_std": 0.05601813061561057, "sasa_volume_P": 39.32104185238642, "cone_angle_std": 0.1914987311323111, "p_int_area_std": 0.17785024743846847, "p_int_atom_std": 0.09786163018181027, "max_delta_qvbur": 4.409471200631788, "max_delta_qvtot": 67.89410569976191, "nucleophilicity": -7.112672996, "p_int_atom_area": 22.792404470895285, "sasa_volume_std": 0.08186682959582016, "EA_delta_SCC_std": 0.018134752311999854, "IP_delta_SCC_std": 0.0006902500880000577, "HOMO_LUMO_gap_std": 0.008578248385066404, "sasa_volume_P_std": 0.5293239405740696, "max_delta_qvbur_std": 0.07679793758329168, "max_delta_qvtot_std": 0.07894112408925039, "nucleophilicity_std": 0.0006902500880000577, "p_int_atom_area_std": 0.041827518429830464, "p_int_times_p_int_area": 4996.575192179564, "p_int_times_p_int_area_std": 3.7906597656546692, "global_electrophilicity_index": 1.5141398259999999, "p_int_atom_times_p_int_atom_area": 480.6057696316391, "global_electrophilicity_index_std": 0.011723793161333247, "p_int_atom_times_p_int_atom_area_std": 1.3102364327384772}} {"max_data": {"pyr_P": "0.94765615", "pyr_alpha": "18.318235", "qpole_amp": "9.715806", "vbur_vbur": "46.32006", "sterimol_L": "7.309676", "sterimol_B1": "3.4125297", "sterimol_B5": "6.3800945", "dipolemoment": "2.4914105", "qpoletens_xx": "5.2600274", "qpoletens_yy": "1.5600696", "qpoletens_zz": "-7.1328254", "sterimol_burL": "7.259207", "vbur_far_vbur": "1.2187587", "vbur_far_vtot": "-0.86503416", "sterimol_burB1": "3.42601", "sterimol_burB5": "6.100444", "vbur_near_vbur": "45.71986", "vbur_near_vtot": "229.01115", "vbur_ovbur_max": "15.586867", "vbur_ovbur_min": "-0.20809472", "vbur_ovtot_max": "88.07707", "vbur_ovtot_min": "-0.7642064", "vbur_qvbur_max": "16.371778", "vbur_qvbur_min": "10.291954", "vbur_qvtot_max": "89.90841", "vbur_qvtot_min": "42.55244", "vbur_max_delta_qvbur": "5.850399", "vbur_max_delta_qvtot": "50.881153"}, "min_data": {"pyr_P": "0.933423", "pyr_alpha": "15.009247", "qpole_amp": "8.084841", "vbur_vbur": "47.45046", "sterimol_L": "7.39536", "sterimol_B1": "3.2521024", "sterimol_B5": "6.2750516", "dipolemoment": "2.9141188", "qpoletens_xx": "4.7360063", "qpoletens_yy": "-0.57916164", "qpoletens_zz": "-6.959946", "sterimol_burL": "7.0709987", "vbur_far_vbur": "4.3380976", "vbur_far_vtot": "3.474541", "sterimol_burB1": "3.208633", "sterimol_burB5": "6.0428824", "vbur_near_vbur": "45.46255", "vbur_near_vtot": "228.14044", "vbur_ovbur_max": "13.767426", "vbur_ovbur_min": "-0.007822774", "vbur_ovtot_max": "87.13383", "vbur_ovtot_min": "0.022924414", "vbur_qvbur_max": "13.724078", "vbur_qvbur_min": "9.562907", "vbur_qvtot_max": "83.784515", "vbur_qvtot_min": "36.88254", "vbur_max_delta_qvbur": "4.908491", "vbur_max_delta_qvtot": "49.164925"}, "delta_data": {"pyr_P": "0.006490398", "pyr_alpha": "1.6523516", "qpole_amp": "1.2474822", "vbur_vbur": "1.5938374", "sterimol_L": "0.060112666", "sterimol_B1": "0.10518965", "sterimol_B5": "0.1089151", "dipolemoment": "0.22928761", "qpoletens_xx": "0.5044818", "qpoletens_yy": "1.456907", "qpoletens_zz": "1.5617923", "sterimol_burL": "-0.031452563", "vbur_far_vbur": "-0.048597902", "vbur_far_vtot": "1.2413877", "sterimol_burB1": "0.10471423", "sterimol_burB5": "0.08470258", "vbur_near_vbur": "2.089248", "vbur_near_vtot": "1.7121651", "vbur_ovbur_max": "0.80960244", "vbur_ovbur_min": "-0.20923239", "vbur_ovtot_max": "2.0305119", "vbur_ovtot_min": "-0.14694393", "vbur_qvbur_max": "0.94173414", "vbur_qvbur_min": "-0.31458825", "vbur_qvtot_max": "4.542606", "vbur_qvtot_min": "3.7124486", "vbur_max_delta_qvbur": "2.1685834", "vbur_max_delta_qvtot": "1.189344"}, "vburminconf_data": {"pyr_P": "0.9268343", "pyr_alpha": "18.159916", "qpole_amp": "9.770197", "vbur_vbur": "47.819557", "sterimol_L": "7.505167", "sterimol_B1": "3.3411021", "sterimol_B5": "6.1474557", "dipolemoment": "2.3038704", "qpoletens_xx": "5.803578", "qpoletens_yy": "0.24982044", "qpoletens_zz": "-8.390609", "sterimol_burL": "7.0090866", "vbur_far_vbur": "1.2585016", "vbur_far_vtot": "2.398716", "sterimol_burB1": "3.493326", "sterimol_burB5": "5.9398794", "vbur_near_vbur": "45.756496", "vbur_near_vtot": "228.11435", "vbur_ovbur_max": "13.344291", "vbur_ovbur_min": "0.011122251", "vbur_ovtot_max": "88.008156", "vbur_ovtot_min": "0.03278953", "vbur_qvbur_max": "14.4572525", "vbur_qvbur_min": "9.933396", "vbur_qvtot_max": "88.38364", "vbur_qvtot_min": "39.90228", "vbur_max_delta_qvbur": "3.7331777", "vbur_max_delta_qvtot": "47.421402"}, "boltzmann_averaged_data": {"nbo_P": "1.1030642", "nmr_P": "199.15431", "pyr_P": "0.9419942", "fmo_mu": "-0.1399121", "vmin_r": "1.9184939", "volume": "253.05795", "Pint_dP": "3.6610255", "fmo_eta": "0.19563906", "fukui_m": "0.30036828", "fukui_p": "0.12895997", "nuesp_P": "-54.125233", "somo_ra": "0.06157158", "somo_rc": "-0.41582033", "nbo_P_ra": "0.76967233", "nbo_P_rc": "1.1901135", "efg_amp_P": "2.3079512", "fmo_omega": "0.04752109", "pyr_alpha": "16.001173", "qpole_amp": "9.38968", "vbur_vbur": "45.2643", "vbur_vtot": "225.27818", "vmin_vmin": "-0.036843333", "E_solv_cds": "-4.640544", "Pint_P_int": "18.151155", "Pint_P_max": "31.542759", "Pint_P_min": "12.2825165", "fmo_e_homo": "-0.23983221", "fmo_e_lumo": "-0.039844092", "nbo_lp_P_e": "-0.35946515", "sphericity": "0.80457485", "sterimol_L": "7.371103", "E_oxidation": "0.2950661", "E_reduction": "0.011340019", "sterimol_B1": "3.2357514", "sterimol_B5": "6.3528824", "E_solv_total": "-10.469605", "dipolemoment": "2.483918", "efgtens_xx_P": "-1.2218794", "efgtens_yy_P": "-0.4102043", "efgtens_zz_P": "1.6305397", "nbo_bd_e_avg": "-0.57821834", "nbo_bd_e_max": "-0.48039347", "nbo_lp_P_occ": "1.9336337", "qpoletens_xx": "5.090093", "qpoletens_yy": "0.012215736", "qpoletens_zz": "-6.2883134", "surface_area": "241.28857", "E_solv_elstat": "-5.7629323", "nbo_bds_e_avg": "0.19348614", "nbo_bds_e_min": "0.17356123", "nmrtens_sxx_P": "77.23935", "nmrtens_syy_P": "171.21788", "nmrtens_szz_P": "315.14615", "spindens_P_ra": "0.14126587", "spindens_P_rc": "0.44476303", "sterimol_burL": "7.195779", "vbur_far_vbur": "-0.32005727", "vbur_far_vtot": "-0.047296286", "nbo_bd_occ_avg": "1.965185", "nbo_bd_occ_min": "1.9549887", "sterimol_burB1": "3.452452", "sterimol_burB5": "6.052089", "vbur_near_vbur": "44.371227", "vbur_near_vtot": "229.05576", "vbur_ovbur_max": "13.591944", "vbur_ovbur_min": "-0.05104052", "vbur_ovtot_max": "84.02434", "vbur_ovtot_min": "-0.019349983", "vbur_qvbur_max": "13.1354065", "vbur_qvbur_min": "10.420658", "vbur_qvtot_max": "86.041405", "vbur_qvtot_min": "45.9622", "nbo_bds_occ_avg": "0.041824922", "nbo_bds_occ_max": "0.04837499", "nbo_lp_P_percent_s": "57.80959", "vbur_max_delta_qvbur": "2.8740435", "vbur_max_delta_qvtot": "48.852444", "vbur_ratio_vbur_vtot": "0.20260221"}} FP(c1ccccc1)c1ccccc1 {"max_data": {"B1": 2.623361104472127, "B5": 6.327165929004966, "lval": 8.048111753952309, "sasa": 387.7022310890751, "vbur": 46.71691816985383, "vtot": 222.1146036492333, "alpha": 156.102959, "p_int": 19.214757290039554, "sasa_P": 24.49993052323928, "pyr_val": 0.9580733235095233, "dip_norm": 1.2300296744387917, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.716918169853834, "near_vtot": 221.58148070599884, "ovbur_max": 14.33677877967071, "ovbur_min": 0.0, "ovtot_max": 89.98393540954832, "ovtot_min": 0.0, "pyr_alpha": 15.809468135858946, "qvbur_max": 14.33677877967071, "qvbur_min": 9.348046001053586, "qvtot_max": 89.98393540954832, "qvtot_min": 21.019044646512157, "cone_angle": 145.92377912557993, "p_int_area": 258.1348307291039, "p_int_atom": 22.062706572579838, "sasa_volume": 586.9368785087861, "EA_delta_SCC": 1.4915, "IP_delta_SCC": 7.0457, "HOMO_LUMO_gap": 3.559754684883, "sasa_volume_P": 25.40756883298459, "max_delta_qvbur": 4.988732778617123, "max_delta_qvtot": 71.37943041691221, "nucleophilicity": -7.0201, "p_int_atom_area": 22.296897419962754, "p_int_times_p_int_area": 4959.998120565176, "global_electrophilicity_index": 1.6403, "p_int_atom_times_p_int_atom_area": 482.58646277258043}, "min_data": {"B1": 2.508253919940563, "B5": 6.096485394400176, "lval": 7.465026038052104, "sasa": 386.78211833067803, "vbur": 43.97777750869723, "vtot": 221.58148070599884, "alpha": 156.075872, "p_int": 19.142386476483907, "sasa_P": 21.349939455965643, "pyr_val": 0.9464131401249901, "dip_norm": 1.2040020764101695, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 43.97777750869722, "near_vtot": 217.08912370534696, "ovbur_max": 12.763229889219048, "ovbur_min": 0.0, "ovtot_max": 86.72599285338893, "ovtot_min": 0.0, "pyr_alpha": 13.983916445891385, "qvbur_max": 12.763229889219048, "qvbur_min": 9.114927646912598, "qvtot_max": 86.72599285338893, "qvtot_min": 18.170578712061634, "cone_angle": 137.97986128524758, "p_int_area": 255.4332405416441, "p_int_atom": 21.414575295623422, "sasa_volume": 585.9378013499501, "EA_delta_SCC": 1.3519, "IP_delta_SCC": 7.0201, "HOMO_LUMO_gap": 3.469560755111, "sasa_volume_P": 22.11693421843242, "max_delta_qvbur": 3.6483022423064497, "max_delta_qvtot": 65.70694820687677, "nucleophilicity": -7.0457, "p_int_atom_area": 20.9970782878573, "p_int_times_p_int_area": 4889.601809388829, "global_electrophilicity_index": 1.5457, "p_int_atom_times_p_int_atom_area": 462.4904715258033}, "boltzmann_averaged_data": {"B1": 2.532041963594237, "B5": 6.187350487304924, "lval": 7.763280436477968, "sasa": 387.0876473127652, "vbur": 45.382012360665215, "vtot": 221.70492174551305, "alpha": 156.1020119554296, "p_int": 19.213206495538053, "B1_std": 0.01799476599621137, "B5_std": 0.01870819068080733, "sasa_P": 23.98483553297815, "pyr_val": 0.9550846546832122, "dip_norm": 1.212689713922864, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.057334062943658975, "sasa_std": 0.09583999807088596, "vbur_std": 0.2671107883754286, "vtot_std": 0.07551440920800713, "alpha_std": 0.004727761049368509, "near_vbur": 45.382012360665215, "near_vtot": 217.18729567877762, "ovbur_max": 14.316640066465222, "ovbur_min": 0.0, "ovtot_max": 89.93674806773745, "ovtot_min": 0.0, "p_int_std": 0.009843857445919837, "pyr_alpha": 14.515062409815716, "qvbur_max": 14.316640066465222, "qvbur_min": 9.341522818036182, "qvtot_max": 89.93674806773745, "qvtot_min": 18.627178398322325, "cone_angle": 138.29683329047248, "p_int_area": 258.07534421601866, "p_int_atom": 21.437262383255355, "sasa_P_std": 0.447554224042859, "pyr_val_std": 0.0012770280643871945, "sasa_volume": 586.3337244541325, "EA_delta_SCC": 1.3578672406724068, "IP_delta_SCC": 7.020830211302113, "dip_norm_std": 0.002619505243929452, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.556146385768718, "near_vbur_std": 0.26711078837542895, "near_vtot_std": 0.5009982586433397, "ovbur_max_std": 0.13415903804947774, "ovbur_min_std": 0.0, "ovtot_max_std": 0.2880211162217126, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.19205982841641356, "qvbur_max_std": 0.13415903804947774, "qvbur_min_std": 0.03162960269968835, "qvtot_max_std": 0.2880211162217126, "qvtot_min_std": 0.23279303629130496, "sasa_volume_P": 25.182953550618027, "cone_angle_std": 1.1130729370370842, "p_int_area_std": 0.37079651766860616, "p_int_atom_std": 0.10880032641499238, "max_delta_qvbur": 4.9732253575071, "max_delta_qvtot": 71.27760351081498, "nucleophilicity": -7.020830211302113, "p_int_atom_area": 21.590855603228416, "sasa_volume_std": 0.08976913186213374, "EA_delta_SCC_std": 0.027620562291376327, "IP_delta_SCC_std": 0.003972235009772382, "HOMO_LUMO_gap_std": 0.014231991127741499, "sasa_volume_P_std": 0.48114658248349207, "max_delta_qvbur_std": 0.11198115484908873, "max_delta_qvtot_std": 0.5522291733076198, "nucleophilicity_std": 0.003972235009772382, "p_int_atom_area_std": 0.10269795594034446, "p_int_times_p_int_area": 4958.45851234041, "p_int_times_p_int_area_std": 9.630604844500192, "global_electrophilicity_index": 1.5497058240582409, "p_int_atom_times_p_int_atom_area": 462.84278097648127, "global_electrophilicity_index_std": 0.018537136314299252, "p_int_atom_times_p_int_atom_area_std": 2.191668956502878}} \\x048000000200000000180004801010100c00001103004000040004000400200890800001440100000456810004000028908180480200900040800c2000000400a8200100000000000004008000000000001000200021800010810800000008030000000100018824000402200200080031801000000600801000400000221800 \\x00000000002008000100000000000000000000000080000000004000000040000000000000000000080002001000000020010000000080000000800000002000 phal (-7.071224689483643, 0.135980948805809, -3.418640375137329, 1.8880680799484253) (2.2251620292663574, 4.687414169311523) -1283 CP(C)F 80.04199981689453 {"max_data": {"pyr_P": 0.9659899665017413, "pyr_alpha": 12.582539139210802, "qpole_amp": 2.498962784183838, "vbur_vbur": 38.23618235851109, "vbur_vtot": 88.47382612438147, "sterimol_L": 5.806220703431501, "sterimol_B1": 2.5416708097242457, "sterimol_B5": 3.4604707542753035, "dipolemoment": 2.308026382803284, "qpoletens_xx": 2.0280150084093, "qpoletens_yy": -0.8196525644220733, "qpoletens_zz": -1.2083624439872265, "sterimol_burL": 5.806220703431501, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.5416708097242457, "sterimol_burB5": 3.4604707542753035, "vbur_near_vbur": 38.23618235851109, "vbur_near_vtot": 88.47382612438147, "vbur_ovbur_max": 10.127494769338115, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 26.731843879494683, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 10.127494769338115, "vbur_qvbur_min": 9.098324589328953, "vbur_qvtot_max": 26.731843879494683, "vbur_qvtot_min": 18.224078374830807, "vbur_max_delta_qvbur": 0.9214420005976347, "vbur_max_delta_qvtot": 7.788756312529124}, "min_data": {"pyr_P": 0.9659899665017413, "pyr_alpha": 12.582539139210802, "qpole_amp": 2.498962784183838, "vbur_vbur": 38.23618235851109, "vbur_vtot": 88.47382612438147, "sterimol_L": 5.806220703431501, "sterimol_B1": 2.5416708097242457, "sterimol_B5": 3.4604707542753035, "dipolemoment": 2.308026382803284, "qpoletens_xx": 2.0280150084093, "qpoletens_yy": -0.8196525644220733, "qpoletens_zz": -1.2083624439872265, "sterimol_burL": 5.806220703431501, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.5416708097242457, "sterimol_burB5": 3.4604707542753035, "vbur_near_vbur": 38.23618235851109, "vbur_near_vtot": 88.47382612438147, "vbur_ovbur_max": 10.127494769338115, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 26.731843879494683, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 10.127494769338115, "vbur_qvbur_min": 9.098324589328953, "vbur_qvtot_max": 26.731843879494683, "vbur_qvtot_min": 18.224078374830807, "vbur_max_delta_qvbur": 0.9214420005976347, "vbur_max_delta_qvtot": 7.788756312529124}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9659899665017413, "pyr_alpha": 12.582539139210802, "qpole_amp": 2.498962784183838, "vbur_vbur": 38.23618235851109, "vbur_vtot": 88.47382612438147, "sterimol_L": 5.806220703431501, "sterimol_B1": 2.5416708097242457, "sterimol_B5": 3.4604707542753035, "dipolemoment": 2.308026382803284, "qpoletens_xx": 2.0280150084093, "qpoletens_yy": -0.8196525644220733, "qpoletens_zz": -1.2083624439872265, "sterimol_burL": 5.806220703431501, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.5416708097242457, "sterimol_burB5": 3.4604707542753035, "vbur_near_vbur": 38.23618235851109, "vbur_near_vtot": 88.47382612438147, "vbur_ovbur_max": 10.127494769338115, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 26.731843879494683, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 10.127494769338115, "vbur_qvbur_min": 9.098324589328953, "vbur_qvtot_max": 26.731843879494683, "vbur_qvtot_min": 18.224078374830807, "vbur_max_delta_qvbur": 0.9214420005976347, "vbur_max_delta_qvtot": 7.788756312529124}, "boltzmann_averaged_data": {"nbo_P": 1.10108, "nmr_P": 73.1711, "pyr_P": 0.9659899665017413, "fmo_mu": -0.128295, "vmin_r": 1.8682177926920627, "volume": 105.31506, "Pint_dP": 2.95, "fmo_eta": 0.25939, "fukui_m": 0.5663099999999999, "fukui_p": 0.5722100000000001, "nuesp_P": -54.13215, "somo_ra": 0.14119, "somo_rc": -0.55676, "nbo_P_ra": 0.52887, "nbo_P_rc": 1.66739, "efg_amp_P": 2.7955302915938867, "fmo_omega": 0.03172752809476078, "pyr_alpha": 12.582539139210802, "qpole_amp": 2.498962784183838, "vbur_vbur": 38.23618235851109, "vbur_vtot": 88.47382612438147, "vmin_vmin": -0.0408067, "E_solv_cds": 0.47, "Pint_P_int": 14.79, "Pint_P_max": 24.67, "Pint_P_min": 9.67, "fmo_e_homo": -0.25799, "fmo_e_lumo": 0.0014, "nbo_lp_P_e": -0.37011, "sphericity": 0.905262, "sterimol_L": 5.806220703431501, "E_oxidation": 0.33946660000003703, "E_reduction": 0.07142299999998158, "sterimol_B1": 2.5416708097242457, "sterimol_B5": 3.4604707542753035, "E_solv_total": -3.097449494872642, "dipolemoment": 2.308026382803284, "efgtens_xx_P": -1.980773, "efgtens_yy_P": 0.008093, "efgtens_zz_P": 1.972679, "nbo_bd_e_avg": -0.5756566666666667, "nbo_bd_e_max": -0.48744, "nbo_lp_P_occ": 1.97535, "qpoletens_xx": 2.0280150084093, "qpoletens_yy": -0.8196525644220733, "qpoletens_zz": -1.2083624439872265, "surface_area": 119.13433, "E_solv_elstat": -3.5674494948726423, "nbo_bds_e_avg": 0.17628333333333335, "nbo_bds_e_min": 0.14813, "nmrtens_sxx_P": -245.7141, "nmrtens_syy_P": 109.383, "nmrtens_szz_P": 355.8443, "spindens_P_ra": 0.75862, "spindens_P_rc": 0.70306, "sterimol_burL": 5.806220703431501, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9859633333333333, "nbo_bd_occ_min": 1.98494, "sterimol_burB1": 2.5416708097242457, "sterimol_burB5": 3.4604707542753035, "vbur_near_vbur": 38.23618235851109, "vbur_near_vtot": 88.47382612438147, "vbur_ovbur_max": 10.127494769338115, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 26.731843879494683, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 10.127494769338115, "vbur_qvbur_min": 9.098324589328953, "vbur_qvtot_max": 26.731843879494683, "vbur_qvtot_min": 18.224078374830807, "nbo_bds_occ_avg": 0.032573333333333336, "nbo_bds_occ_max": 0.03604, "nbo_lp_P_percent_s": 60.48, "vbur_max_delta_qvbur": 0.9214420005976347, "vbur_max_delta_qvtot": 7.788756312529124, "vbur_ratio_vbur_vtot": 0.4321750740694374}} {"max_data": {"B1": 2.5521945909309385, "B5": 3.4418650912110103, "lval": 5.6687967433152195, "sasa": 221.40957611380682, "vbur": 41.996271498498835, "vtot": 87.65679205630272, "alpha": 54.281293, "p_int": 14.448684469226597, "sasa_P": 32.46990792202364, "pyr_val": 0.9785368661802698, "dip_norm": 1.2214958043317217, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 41.996271498498835, "near_vtot": 85.2555595837635, "ovbur_max": 11.026498150868692, "ovbur_min": 0.0, "ovtot_max": 26.88572395536831, "ovtot_min": 0.0, "pyr_alpha": 9.883592950181834, "qvbur_max": 11.026498150868692, "qvbur_min": 10.070712898890646, "qvtot_max": 26.88572395536831, "qvtot_min": 17.52868553273639, "cone_angle": 117.99456173225201, "p_int_area": 129.09064734317903, "p_int_atom": 17.073099067911013, "sasa_volume": 286.0696595579218, "EA_delta_SCC": 0.6157, "IP_delta_SCC": 7.7093, "HOMO_LUMO_gap": 5.712516163083, "sasa_volume_P": 39.769036566662365, "max_delta_qvbur": 0.9557852519780461, "max_delta_qvtot": 8.516587212090673, "nucleophilicity": -7.7093, "p_int_atom_area": 24.796549597088624, "p_int_times_p_int_area": 1865.1900313897986, "global_electrophilicity_index": 1.2213, "p_int_atom_times_p_int_atom_area": 423.353947813463}, "min_data": {"B1": 2.5521945909309385, "B5": 3.4418650912110103, "lval": 5.6687967433152195, "sasa": 221.40957611380682, "vbur": 41.996271498498835, "vtot": 87.65679205630272, "alpha": 54.281293, "p_int": 14.448684469226597, "sasa_P": 32.46990792202364, "pyr_val": 0.9785368661802698, "dip_norm": 1.2214958043317217, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 41.996271498498835, "near_vtot": 85.2555595837635, "ovbur_max": 11.026498150868692, "ovbur_min": 0.0, "ovtot_max": 26.88572395536831, "ovtot_min": 0.0, "pyr_alpha": 9.883592950181834, "qvbur_max": 11.026498150868692, "qvbur_min": 10.070712898890646, "qvtot_max": 26.88572395536831, "qvtot_min": 17.52868553273639, "cone_angle": 117.99456173225201, "p_int_area": 129.09064734317903, "p_int_atom": 17.073099067911013, "sasa_volume": 286.0696595579218, "EA_delta_SCC": 0.6157, "IP_delta_SCC": 7.7093, "HOMO_LUMO_gap": 5.712516163083, "sasa_volume_P": 39.769036566662365, "max_delta_qvbur": 0.9557852519780461, "max_delta_qvtot": 8.516587212090673, "nucleophilicity": -7.7093, "p_int_atom_area": 24.796549597088624, "p_int_times_p_int_area": 1865.1900313897986, "global_electrophilicity_index": 1.2213, "p_int_atom_times_p_int_atom_area": 423.353947813463}, "boltzmann_averaged_data": {"B1": 2.5521945909309385, "B5": 3.4418650912110103, "lval": 5.6687967433152195, "sasa": 221.40957611380682, "vbur": 41.996271498498835, "vtot": 87.65679205630272, "alpha": 54.281293, "p_int": 14.448684469226597, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 32.46990792202364, "pyr_val": 0.9785368661802698, "dip_norm": 1.2214958043317217, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 41.996271498498835, "near_vtot": 85.2555595837635, "ovbur_max": 11.026498150868692, "ovbur_min": 0.0, "ovtot_max": 26.88572395536831, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 9.883592950181834, "qvbur_max": 11.026498150868692, "qvbur_min": 10.070712898890646, "qvtot_max": 26.88572395536831, "qvtot_min": 17.52868553273639, "cone_angle": 117.99456173225201, "p_int_area": 129.09064734317903, "p_int_atom": 17.073099067911013, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 286.0696595579218, "EA_delta_SCC": 0.6157, "IP_delta_SCC": 7.7093, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.712516163083, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 39.769036566662365, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 0.9557852519780461, "max_delta_qvtot": 8.516587212090673, "nucleophilicity": -7.7093, "p_int_atom_area": 24.796549597088624, "sasa_volume_std": 0.0, "EA_delta_SCC_std": 0.0, "IP_delta_SCC_std": 0.0, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": 0.0, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 1865.1900313897986, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": 1.2213, "p_int_atom_times_p_int_atom_area": 423.353947813463, "global_electrophilicity_index_std": 0.0, "p_int_atom_times_p_int_atom_area_std": 0.0}} {"max_data": {"pyr_P": "0.9631611", "pyr_alpha": "11.491557", "qpole_amp": "2.059984", "vbur_vbur": "36.57864", "sterimol_L": "5.9697595", "sterimol_B1": "2.1626668", "sterimol_B5": "4.3653893", "dipolemoment": "1.354711", "qpoletens_xx": "1.5631273", "qpoletens_yy": "0.26890805", "qpoletens_zz": "-1.8259872", "sterimol_burL": "6.2735023", "vbur_far_vbur": "-1.9040952", "vbur_far_vtot": "-4.4392514", "sterimol_burB1": "2.3133478", "sterimol_burB5": "3.9436553", "vbur_near_vbur": "36.61866", "vbur_near_vtot": "97.79565", "vbur_ovbur_max": "10.036256", "vbur_ovbur_min": "-0.060363445", "vbur_ovtot_max": "44.050495", "vbur_ovtot_min": "0.13864718", "vbur_qvbur_max": "11.4747505", "vbur_qvbur_min": "9.106249", "vbur_qvtot_max": "40.750248", "vbur_qvtot_min": "11.894566", "vbur_max_delta_qvbur": "2.3612223", "vbur_max_delta_qvtot": "19.579592"}, "min_data": {"pyr_P": "0.96170914", "pyr_alpha": "13.157567", "qpole_amp": "2.6844468", "vbur_vbur": "41.68349", "sterimol_L": "5.7920895", "sterimol_B1": "2.4858134", "sterimol_B5": "3.8702126", "dipolemoment": "2.0561092", "qpoletens_xx": "1.3753796", "qpoletens_yy": "0.552292", "qpoletens_zz": "-2.2921317", "sterimol_burL": "5.368652", "vbur_far_vbur": "0.028813459", "vbur_far_vtot": "0.20833571", "sterimol_burB1": "2.480385", "sterimol_burB5": "3.892819", "vbur_near_vbur": "38.37671", "vbur_near_vtot": "96.35984", "vbur_ovbur_max": "10.554748", "vbur_ovbur_min": "-0.11165343", "vbur_ovtot_max": "40.5759", "vbur_ovtot_min": "-0.40111464", "vbur_qvbur_max": "12.581365", "vbur_qvbur_min": "9.00051", "vbur_qvtot_max": "34.606953", "vbur_qvtot_min": "15.188786", "vbur_max_delta_qvbur": "2.7465053", "vbur_max_delta_qvtot": "27.788057"}, "delta_data": {"pyr_P": "-0.0073701385", "pyr_alpha": "-1.6376162", "qpole_amp": "-0.873492", "vbur_vbur": "-2.5425313", "sterimol_L": "0.45526242", "sterimol_B1": "-0.13699646", "sterimol_B5": "0.46837685", "dipolemoment": "-0.015153454", "qpoletens_xx": "-0.51847464", "qpoletens_yy": "-0.21273415", "qpoletens_zz": "-0.9319912", "sterimol_burL": "0.15474206", "vbur_far_vbur": "-1.7867342", "vbur_far_vtot": "-5.5078416", "sterimol_burB1": "-0.21589585", "sterimol_burB5": "0.18453991", "vbur_near_vbur": "-0.30411708", "vbur_near_vtot": "-4.757036", "vbur_ovbur_max": "0.82185894", "vbur_ovbur_min": "-0.25795794", "vbur_ovtot_max": "-1.6111332", "vbur_ovtot_min": "0.06316416", "vbur_qvbur_max": "0.6103089", "vbur_qvbur_min": "-0.7934818", "vbur_qvtot_max": "0.69821995", "vbur_qvtot_min": "-3.23743", "vbur_max_delta_qvbur": "0.037024353", "vbur_max_delta_qvtot": "-5.2398443"}, "vburminconf_data": {"pyr_P": "0.9517341", "pyr_alpha": "13.215025", "qpole_amp": "3.6169686", "vbur_vbur": "39.58022", "sterimol_L": "6.05479", "sterimol_B1": "2.5362208", "sterimol_B5": "3.7745292", "dipolemoment": "1.954115", "qpoletens_xx": "2.0277333", "qpoletens_yy": "0.34315273", "qpoletens_zz": "-2.2395897", "sterimol_burL": "6.1136665", "vbur_far_vbur": "0.20165905", "vbur_far_vtot": "-0.123446085", "sterimol_burB1": "2.4917119", "sterimol_burB5": "3.7068598", "vbur_near_vbur": "38.894295", "vbur_near_vtot": "94.585625", "vbur_ovbur_max": "11.86053", "vbur_ovbur_min": "-0.26651657", "vbur_ovtot_max": "35.52415", "vbur_ovtot_min": "0.04911275", "vbur_qvbur_max": "12.964575", "vbur_qvbur_min": "8.938517", "vbur_qvtot_max": "30.24776", "vbur_qvtot_min": "12.330249", "vbur_max_delta_qvbur": "1.5853596", "vbur_max_delta_qvtot": "11.285038"}, "boltzmann_averaged_data": {"nbo_P": "1.0652074", "nmr_P": "206.22495", "pyr_P": "0.9739165", "fmo_mu": "-0.124216735", "vmin_r": "1.9079201", "volume": "106.95644", "Pint_dP": "2.8876214", "fmo_eta": "0.25551444", "fukui_m": "0.5610529", "fukui_p": "0.38880768", "nuesp_P": "-54.13219", "somo_ra": "0.12633643", "somo_rc": "-0.54996246", "nbo_P_ra": "0.6946139", "nbo_P_rc": "1.4366838", "efg_amp_P": "2.5533354", "fmo_omega": "0.030153655", "pyr_alpha": "11.60703", "qpole_amp": "2.8084967", "vbur_vbur": "37.929005", "vbur_vtot": "89.29864", "vmin_vmin": "-0.041878946", "E_solv_cds": "0.40114412", "Pint_P_int": "14.812633", "Pint_P_max": "24.448713", "Pint_P_min": "11.46191", "fmo_e_homo": "-0.2575567", "fmo_e_lumo": "-0.0043290365", "nbo_lp_P_e": "-0.36790374", "sphericity": "0.89949876", "sterimol_L": "5.891878", "E_oxidation": "0.3418954", "E_reduction": "0.062125083", "sterimol_B1": "2.2391007", "sterimol_B5": "4.1296906", "E_solv_total": "-2.638797", "dipolemoment": "1.7271463", "efgtens_xx_P": "-1.7578511", "efgtens_yy_P": "-0.26376313", "efgtens_zz_P": "1.666555", "nbo_bd_e_avg": "-0.5720793", "nbo_bd_e_max": "-0.49170837", "nbo_lp_P_occ": "1.9663503", "qpoletens_xx": "1.3028977", "qpoletens_yy": "0.1665684", "qpoletens_zz": "-1.6845012", "surface_area": "127.79877", "E_solv_elstat": "-2.9146786", "nbo_bds_e_avg": "0.17681639", "nbo_bds_e_min": "0.16432917", "nmrtens_sxx_P": "29.089722", "nmrtens_syy_P": "166.33565", "nmrtens_szz_P": "388.3041", "spindens_P_ra": "0.5233017", "spindens_P_rc": "0.68425727", "sterimol_burL": "5.799326", "vbur_far_vbur": "-1.1261082", "vbur_far_vtot": "-1.5061847", "nbo_bd_occ_avg": "1.9840049", "nbo_bd_occ_min": "1.9712411", "sterimol_burB1": "2.4091477", "sterimol_burB5": "3.8880217", "vbur_near_vbur": "38.164333", "vbur_near_vtot": "94.09059", "vbur_ovbur_max": "11.177684", "vbur_ovbur_min": "0.022026213", "vbur_ovtot_max": "41.880447", "vbur_ovtot_min": "0.051743925", "vbur_qvbur_max": "11.057028", "vbur_qvbur_min": "9.271801", "vbur_qvtot_max": "38.73379", "vbur_qvtot_min": "15.364828", "nbo_bds_occ_avg": "0.029602472", "nbo_bds_occ_max": "0.044807673", "nbo_lp_P_percent_s": "61.238785", "vbur_max_delta_qvbur": "2.303107", "vbur_max_delta_qvtot": "30.579052", "vbur_ratio_vbur_vtot": "0.4135453"}} CP(C)F {"max_data": {"B1": 2.524781304373014, "B5": 3.4521665657554235, "lval": 5.75191468647013, "sasa": 221.22959580068908, "vbur": 38.86082963530256, "vtot": 87.6508287987835, "alpha": 54.255219, "p_int": 14.485214012977218, "sasa_P": 30.589913253301603, "pyr_val": 0.959292290806435, "dip_norm": 1.219768420643853, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 38.860829635302565, "near_vtot": 87.6508287987835, "ovbur_max": 10.455358183223275, "ovbur_min": 0.0, "ovtot_max": 26.798450994554607, "ovtot_min": 0.0, "pyr_alpha": 13.821988435750855, "qvbur_max": 10.455358183223275, "qvbur_min": 9.149895400033747, "qvtot_max": 26.798450994554607, "qvtot_min": 18.074858372270068, "cone_angle": 113.19019782490477, "p_int_area": 128.89018022729533, "p_int_atom": 17.28710894375379, "sasa_volume": 285.3418280297583, "EA_delta_SCC": 0.4648, "IP_delta_SCC": 7.5055, "HOMO_LUMO_gap": 5.875911674227, "sasa_volume_P": 21.96770330247345, "max_delta_qvbur": 1.1422799352908353, "max_delta_qvtot": 8.244858880817713, "nucleophilicity": -7.5003, "p_int_atom_area": 23.996660900408344, "p_int_times_p_int_area": 1867.0018447635775, "global_electrophilicity_index": 1.1278, "p_int_atom_times_p_int_atom_area": 414.832891271676}, "min_data": {"B1": 2.519689744477239, "B5": 3.444376849329503, "lval": 5.730515045172952, "sasa": 221.14959159139212, "vbur": 38.70930270511092, "vtot": 87.51324248864167, "alpha": 54.254079, "p_int": 14.472828708655978, "sasa_P": 30.589913253301603, "pyr_val": 0.9586503735304803, "dip_norm": 1.219677826313162, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 38.709302705110915, "near_vtot": 87.51324248864167, "ovbur_max": 10.432046347809175, "ovbur_min": 0.0, "ovtot_max": 26.707901507390037, "ovtot_min": 0.0, "pyr_alpha": 13.704922670427141, "qvbur_max": 10.432046347809175, "qvbur_min": 9.149895400033747, "qvtot_max": 26.707901507390037, "qvtot_min": 18.01991615538133, "cone_angle": 112.96771972590629, "p_int_area": 128.7907129441699, "p_int_atom": 17.190888896249547, "sasa_volume": 285.2420115889848, "EA_delta_SCC": 0.4603, "IP_delta_SCC": 7.5003, "HOMO_LUMO_gap": 5.868902131746, "sasa_volume_P": 21.929424541352567, "max_delta_qvbur": 1.084000346755591, "max_delta_qvtot": 8.19183065997418, "nucleophilicity": -7.5055, "p_int_atom_area": 23.696702639153237, "p_int_times_p_int_area": 1863.9659277066535, "global_electrophilicity_index": 1.1252, "p_int_atom_times_p_int_atom_area": 407.3673822771467}, "boltzmann_averaged_data": {"B1": 2.5203065869586125, "B5": 3.445320573474503, "lval": 5.733107611716106, "sasa": 221.15928410134845, "vbur": 38.84247214770984, "vtot": 87.52991107011536, "alpha": 54.255080889, "p_int": 14.474329188274497, "B1_std": 0.001661383698410167, "B5_std": 0.002541796256978538, "sasa_P": 30.589913253301603, "pyr_val": 0.9587281418084622, "dip_norm": 1.2197574451406898, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.006982735336661656, "sasa_std": 0.026105494553931016, "vbur_std": 0.049443466608225066, "vtot_std": 0.044894621191381046, "alpha_std": 0.00037198372501881386, "near_vbur": 38.84247214770985, "near_vtot": 87.52991107011536, "ovbur_max": 10.452533954362856, "ovbur_min": 0.0, "ovtot_max": 26.718871577760027, "ovtot_min": 0.0, "p_int_std": 0.0040413435411479825, "pyr_alpha": 13.807805918281888, "qvbur_max": 10.452533954362856, "qvbur_min": 9.149895400033747, "qvtot_max": 26.718871577760027, "qvtot_min": 18.026572404957403, "cone_angle": 113.16324460321111, "p_int_area": 128.80276340552055, "p_int_atom": 17.275451884998652, "sasa_P_std": 0.0, "pyr_val_std": 0.00020945857847688313, "sasa_volume": 285.2541043507845, "EA_delta_SCC": 0.460845175, "IP_delta_SCC": 7.50092998, "dip_norm_std": 0.00002956106718951836, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.875062468155426, "near_vbur_std": 0.0494434666082297, "near_vtot_std": 0.044894621191381046, "ovbur_max_std": 0.007606687170496921, "ovbur_min_std": 0.0, "ovtot_max_std": 0.029546434678978325, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.03819873636606444, "qvbur_max_std": 0.007606687170496921, "qvbur_min_std": 0.0, "qvtot_max_std": 0.029546434678978325, "qvtot_min_std": 0.017927728507959047, "sasa_volume_P": 21.963065830563654, "cone_angle_std": 0.07259494035140081, "p_int_area_std": 0.03245632499518598, "p_int_atom_std": 0.03139674709836141, "max_delta_qvbur": 1.1352193631397904, "max_delta_qvtot": 8.198255028929374, "nucleophilicity": -7.50092998, "p_int_atom_area": 23.960320957057288, "sasa_volume_std": 0.032570255664093654, "EA_delta_SCC_std": 0.001468356809285469, "IP_delta_SCC_std": 0.001696767868507465, "HOMO_LUMO_gap_std": 0.002287224318211487, "sasa_volume_P_std": 0.012490417676190841, "max_delta_qvbur_std": 0.019016717926240274, "max_delta_qvtot_std": 0.017303188702198977, "nucleophilicity_std": 0.001696767868507465, "p_int_atom_area_std": 0.0978768345367478, "p_int_times_p_int_area": 1864.3337290580998, "p_int_times_p_int_area_std": 0.9906243295467435, "global_electrophilicity_index": 1.12551499, "p_int_atom_times_p_int_atom_area": 413.9284448569888, "global_electrophilicity_index_std": 0.0008483839342538049, "p_int_atom_times_p_int_atom_area_std": 2.4360068815331033}} \\x0000000000000000000000000000000000000000000000000000000000000000100000000000400100000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000202000000000000000000000000000000000010200000000000200000200000 \\x00000000022000002000000000000000000000000000000080000000000040000000000000000000000000000000000000010000000000000000000000000000 phal (-19.031980514526367, 0.2837926149368286, 1.0211042165756226, 1.2622768878936768) (0.0008307439857162, 6.591677665710449) -1284 CP(F)F 84.00499725341797 {"max_data": {"pyr_P": 0.9710009536158958, "pyr_alpha": 11.5793078015835, "qpole_amp": 1.7779942186058593, "vbur_vbur": 36.8587259285598, "vbur_vtot": 78.72048976300376, "sterimol_L": 5.872178433500694, "sterimol_B1": 2.234189504435709, "sterimol_B5": 3.395834764677166, "dipolemoment": 2.378788352704421, "qpoletens_xx": 1.3250836368017571, "qpoletens_yy": -0.14897903031348037, "qpoletens_zz": -1.1761046064882767, "sterimol_burL": 5.872178433500694, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.234189504435709, "sterimol_burB5": 3.395834764677166, "vbur_near_vbur": 36.8587259285598, "vbur_near_vtot": 77.46839407622872, "vbur_ovbur_max": 9.723775572708506, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 25.9177395244239, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.723775572708506, "vbur_qvbur_min": 8.888097753778304, "vbur_qvtot_max": 25.9177395244239, "vbur_qvtot_min": 15.841300484803254, "vbur_max_delta_qvbur": 0.7969793467144122, "vbur_max_delta_qvtot": 8.675198822094057}, "min_data": {"pyr_P": 0.9710009536158958, "pyr_alpha": 11.5793078015835, "qpole_amp": 1.7779942186058593, "vbur_vbur": 36.8587259285598, "vbur_vtot": 78.72048976300376, "sterimol_L": 5.872178433500694, "sterimol_B1": 2.234189504435709, "sterimol_B5": 3.395834764677166, "dipolemoment": 2.378788352704421, "qpoletens_xx": 1.3250836368017571, "qpoletens_yy": -0.14897903031348037, "qpoletens_zz": -1.1761046064882767, "sterimol_burL": 5.872178433500694, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.234189504435709, "sterimol_burB5": 3.395834764677166, "vbur_near_vbur": 36.8587259285598, "vbur_near_vtot": 77.46839407622872, "vbur_ovbur_max": 9.723775572708506, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 25.9177395244239, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.723775572708506, "vbur_qvbur_min": 8.888097753778304, "vbur_qvtot_max": 25.9177395244239, "vbur_qvtot_min": 15.841300484803254, "vbur_max_delta_qvbur": 0.7969793467144122, "vbur_max_delta_qvtot": 8.675198822094057}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9710009536158958, "pyr_alpha": 11.5793078015835, "qpole_amp": 1.7779942186058593, "vbur_vbur": 36.8587259285598, "vbur_vtot": 78.72048976300376, "sterimol_L": 5.872178433500694, "sterimol_B1": 2.234189504435709, "sterimol_B5": 3.395834764677166, "dipolemoment": 2.378788352704421, "qpoletens_xx": 1.3250836368017571, "qpoletens_yy": -0.14897903031348037, "qpoletens_zz": -1.1761046064882767, "sterimol_burL": 5.872178433500694, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.234189504435709, "sterimol_burB5": 3.395834764677166, "vbur_near_vbur": 36.8587259285598, "vbur_near_vtot": 77.46839407622872, "vbur_ovbur_max": 9.723775572708506, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 25.9177395244239, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.723775572708506, "vbur_qvbur_min": 8.888097753778304, "vbur_qvtot_max": 25.9177395244239, "vbur_qvtot_min": 15.841300484803254, "vbur_max_delta_qvbur": 0.7969793467144122, "vbur_max_delta_qvtot": 8.675198822094057}, "boltzmann_averaged_data": {"nbo_P": 1.40988, "nmr_P": -8.0799, "pyr_P": 0.9710009536158958, "fmo_mu": -0.15112499999999998, "vmin_r": 1.9765894187949562, "volume": 86.12006, "Pint_dP": 3.07, "fmo_eta": 0.27577, "fukui_m": 0.53122, "fukui_p": 0.69874, "nuesp_P": -54.07128, "somo_ra": 0.14243, "somo_rc": -0.6041, "nbo_P_ra": 0.71114, "nbo_P_rc": 1.9411, "efg_amp_P": 2.892919664633292, "fmo_omega": 0.041409082976755975, "pyr_alpha": 11.5793078015835, "qpole_amp": 1.7779942186058593, "vbur_vbur": 36.8587259285598, "vbur_vtot": 78.72048976300376, "vmin_vmin": -0.016974, "E_solv_cds": 0.73, "Pint_P_int": 14.15, "Pint_P_max": 22.92, "Pint_P_min": 9.36, "fmo_e_homo": -0.28901, "fmo_e_lumo": -0.01324, "nbo_lp_P_e": -0.42315, "sphericity": 0.91935, "sterimol_L": 5.872178433500694, "E_oxidation": 0.37819179999996777, "E_reduction": 0.06363450000003468, "sterimol_B1": 2.234189504435709, "sterimol_B5": 3.395834764677166, "E_solv_total": -2.5641291962892927, "dipolemoment": 2.378788352704421, "efgtens_xx_P": -1.597326, "efgtens_yy_P": -0.708289, "efgtens_zz_P": 2.305615, "nbo_bd_e_avg": -0.6957233333333334, "nbo_bd_e_max": -0.51369, "nbo_lp_P_occ": 1.99176, "qpoletens_xx": 1.3250836368017571, "qpoletens_yy": -0.14897903031348037, "qpoletens_zz": -1.1761046064882767, "surface_area": 102.58235, "E_solv_elstat": -3.2941291962892927, "nbo_bds_e_avg": 0.1563, "nbo_bds_e_min": 0.14506, "nmrtens_sxx_P": -222.4712, "nmrtens_syy_P": -38.1567, "nmrtens_szz_P": 236.3882, "spindens_P_ra": 0.86203, "spindens_P_rc": 0.60526, "sterimol_burL": 5.872178433500694, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9902500000000003, "nbo_bd_occ_min": 1.9899, "sterimol_burB1": 2.234189504435709, "sterimol_burB5": 3.395834764677166, "vbur_near_vbur": 36.8587259285598, "vbur_near_vtot": 77.46839407622872, "vbur_ovbur_max": 9.723775572708506, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 25.9177395244239, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.723775572708506, "vbur_qvbur_min": 8.888097753778304, "vbur_qvtot_max": 25.9177395244239, "vbur_qvtot_min": 15.841300484803254, "nbo_bds_occ_avg": 0.05192, "nbo_bds_occ_max": 0.05729, "nbo_lp_P_percent_s": 67.24, "vbur_max_delta_qvbur": 0.7969793467144122, "vbur_max_delta_qvtot": 8.675198822094057, "vbur_ratio_vbur_vtot": 0.468222771981308}} {"max_data": {"B1": 2.2877672165876284, "B5": 3.3247372717868986, "lval": 5.784213735031663, "sasa": 202.23840661477945, "vbur": 40.32947526639078, "vtot": 78.50326236515806, "alpha": 44.571532, "p_int": 13.947987135463642, "sasa_P": 36.759895756501045, "pyr_val": 0.9866947538911427, "dip_norm": 1.2905456210456103, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 40.32947526639077, "near_vtot": 78.50326236515806, "ovbur_max": 10.467014100930323, "ovbur_min": 0.0, "ovtot_max": 25.7867567491484, "ovtot_min": 0.0, "pyr_alpha": 7.740723754111429, "qvbur_max": 10.467014100930323, "qvbur_min": 9.697723532265066, "qvtot_max": 25.7867567491484, "qvtot_min": 16.85646319393379, "cone_angle": 117.994561732252, "p_int_area": 107.88335644903404, "p_int_atom": 15.966648099615092, "sasa_volume": 252.80150915819397, "EA_delta_SCC": 0.7709, "IP_delta_SCC": 8.5706, "HOMO_LUMO_gap": 5.919258306877, "sasa_volume_P": 44.466406373501144, "max_delta_qvbur": 0.7692905686652569, "max_delta_qvtot": 8.246634718451766, "nucleophilicity": -8.5706, "p_int_atom_area": 28.496034819234904, "p_int_times_p_int_area": 1504.7556678817652, "global_electrophilicity_index": 1.3985, "p_int_atom_times_p_int_atom_area": 454.9861601931025}, "min_data": {"B1": 2.2877672165876284, "B5": 3.3247372717868986, "lval": 5.784213735031663, "sasa": 202.23840661477945, "vbur": 40.32947526639078, "vtot": 78.50326236515806, "alpha": 44.571532, "p_int": 13.947987135463642, "sasa_P": 36.759895756501045, "pyr_val": 0.9866947538911427, "dip_norm": 1.2905456210456103, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 40.32947526639077, "near_vtot": 78.50326236515806, "ovbur_max": 10.467014100930323, "ovbur_min": 0.0, "ovtot_max": 25.7867567491484, "ovtot_min": 0.0, "pyr_alpha": 7.740723754111429, "qvbur_max": 10.467014100930323, "qvbur_min": 9.697723532265066, "qvtot_max": 25.7867567491484, "qvtot_min": 16.85646319393379, "cone_angle": 117.994561732252, "p_int_area": 107.88335644903404, "p_int_atom": 15.966648099615092, "sasa_volume": 252.80150915819397, "EA_delta_SCC": 0.7709, "IP_delta_SCC": 8.5706, "HOMO_LUMO_gap": 5.919258306877, "sasa_volume_P": 44.466406373501144, "max_delta_qvbur": 0.7692905686652569, "max_delta_qvtot": 8.246634718451766, "nucleophilicity": -8.5706, "p_int_atom_area": 28.496034819234904, "p_int_times_p_int_area": 1504.7556678817652, "global_electrophilicity_index": 1.3985, "p_int_atom_times_p_int_atom_area": 454.9861601931025}, "boltzmann_averaged_data": {"B1": 2.2877672165876284, "B5": 3.3247372717868986, "lval": 5.784213735031663, "sasa": 202.23840661477945, "vbur": 40.32947526639078, "vtot": 78.50326236515806, "alpha": 44.571532, "p_int": 13.947987135463642, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 36.759895756501045, "pyr_val": 0.9866947538911427, "dip_norm": 1.2905456210456103, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 40.32947526639077, "near_vtot": 78.50326236515806, "ovbur_max": 10.467014100930323, "ovbur_min": 0.0, "ovtot_max": 25.7867567491484, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 7.740723754111429, "qvbur_max": 10.467014100930323, "qvbur_min": 9.697723532265066, "qvtot_max": 25.7867567491484, "qvtot_min": 16.85646319393379, "cone_angle": 117.994561732252, "p_int_area": 107.88335644903404, "p_int_atom": 15.966648099615092, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 252.80150915819397, "EA_delta_SCC": 0.7709, "IP_delta_SCC": 8.5706, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.919258306877, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 44.466406373501144, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 0.7692905686652569, "max_delta_qvtot": 8.246634718451766, "nucleophilicity": -8.5706, "p_int_atom_area": 28.496034819234904, "sasa_volume_std": 0.0, "EA_delta_SCC_std": 0.0, "IP_delta_SCC_std": 0.0, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": 0.0, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 1504.7556678817652, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": 1.3985, "p_int_atom_times_p_int_atom_area": 454.9861601931025, "global_electrophilicity_index_std": 0.0, "p_int_atom_times_p_int_atom_area_std": 0.0}} {"max_data": {"pyr_P": "0.97057676", "pyr_alpha": "8.934853", "qpole_amp": "2.65879", "vbur_vbur": "34.942093", "sterimol_L": "5.549524", "sterimol_B1": "2.1016307", "sterimol_B5": "4.1689224", "dipolemoment": "1.9708034", "qpoletens_xx": "1.8370472", "qpoletens_yy": "-0.043115802", "qpoletens_zz": "-1.3333316", "sterimol_burL": "5.6963644", "vbur_far_vbur": "-0.4028776", "vbur_far_vtot": "-1.4543219", "sterimol_burB1": "2.3166008", "sterimol_burB5": "3.5683503", "vbur_near_vbur": "35.079163", "vbur_near_vtot": "85.01553", "vbur_ovbur_max": "8.903484", "vbur_ovbur_min": "-0.22795467", "vbur_ovtot_max": "38.5036", "vbur_ovtot_min": "-0.02496412", "vbur_qvbur_max": "9.516289", "vbur_qvbur_min": "9.485777", "vbur_qvtot_max": "39.6406", "vbur_qvtot_min": "15.557061", "vbur_max_delta_qvbur": "2.0321467", "vbur_max_delta_qvtot": "16.918104"}, "min_data": {"pyr_P": "0.96846485", "pyr_alpha": "11.381049", "qpole_amp": "2.2223842", "vbur_vbur": "41.368073", "sterimol_L": "5.4409504", "sterimol_B1": "2.2343962", "sterimol_B5": "3.7860816", "dipolemoment": "2.1475854", "qpoletens_xx": "1.4383801", "qpoletens_yy": "0.4708872", "qpoletens_zz": "-2.3490162", "sterimol_burL": "4.8833404", "vbur_far_vbur": "-0.25519004", "vbur_far_vtot": "-1.4047031", "sterimol_burB1": "2.1350167", "sterimol_burB5": "4.0788703", "vbur_near_vbur": "36.951042", "vbur_near_vtot": "87.5134", "vbur_ovbur_max": "11.36414", "vbur_ovbur_min": "-0.01288803", "vbur_ovtot_max": "35.889824", "vbur_ovtot_min": "0.013843017", "vbur_qvbur_max": "13.621993", "vbur_qvbur_min": "8.599071", "vbur_qvtot_max": "35.20238", "vbur_qvtot_min": "13.055506", "vbur_max_delta_qvbur": "3.0301983", "vbur_max_delta_qvtot": "24.933651"}, "delta_data": {"pyr_P": "-0.024720756", "pyr_alpha": "-2.679439", "qpole_amp": "-0.016922517", "vbur_vbur": "-3.0227556", "sterimol_L": "0.273018", "sterimol_B1": "-0.0385742", "sterimol_B5": "0.19963247", "dipolemoment": "-0.19128938", "qpoletens_xx": "-0.34667933", "qpoletens_yy": "-0.3552174", "qpoletens_zz": "-0.13374224", "sterimol_burL": "0.1255775", "vbur_far_vbur": "-1.8453381", "vbur_far_vtot": "-4.9017344", "sterimol_burB1": "-0.041937478", "sterimol_burB5": "0.026189655", "vbur_near_vbur": "0.41881678", "vbur_near_vtot": "-7.360666", "vbur_ovbur_max": "0.40362492", "vbur_ovbur_min": "-0.2509048", "vbur_ovtot_max": "-2.1761892", "vbur_ovtot_min": "0.11453664", "vbur_qvbur_max": "1.1098669", "vbur_qvbur_min": "-0.29903933", "vbur_qvtot_max": "5.1362724", "vbur_qvtot_min": "-0.5874493", "vbur_max_delta_qvbur": "0.9708807", "vbur_max_delta_qvtot": "-2.4477108"}, "vburminconf_data": {"pyr_P": "0.9638987", "pyr_alpha": "10.730645", "qpole_amp": "3.2298954", "vbur_vbur": "38.78814", "sterimol_L": "5.4776287", "sterimol_B1": "2.4859097", "sterimol_B5": "3.7413445", "dipolemoment": "2.313522", "qpoletens_xx": "2.0402033", "qpoletens_yy": "-0.30155876", "qpoletens_zz": "-2.2458887", "sterimol_burL": "5.6596212", "vbur_far_vbur": "-0.12622526", "vbur_far_vtot": "-2.274632", "sterimol_burB1": "2.2740667", "sterimol_burB5": "3.9007702", "vbur_near_vbur": "37.71059", "vbur_near_vtot": "82.92277", "vbur_ovbur_max": "12.084081", "vbur_ovbur_min": "0.013846781", "vbur_ovtot_max": "34.058716", "vbur_ovtot_min": "0.029905153", "vbur_qvbur_max": "13.917659", "vbur_qvbur_min": "8.030293", "vbur_qvtot_max": "26.88022", "vbur_qvtot_min": "15.292478", "vbur_max_delta_qvbur": "1.4709978", "vbur_max_delta_qvtot": "10.90991"}, "boltzmann_averaged_data": {"nbo_P": "1.397179", "nmr_P": "34.381695", "pyr_P": "0.9842055", "fmo_mu": "-0.14357454", "vmin_r": "2.0159292", "volume": "88.722885", "Pint_dP": "2.9592502", "fmo_eta": "0.2537269", "fukui_m": "0.48038653", "fukui_p": "0.592764", "nuesp_P": "-54.07668", "somo_ra": "0.13111567", "somo_rc": "-0.5920264", "nbo_P_ra": "0.7768173", "nbo_P_rc": "1.7082163", "efg_amp_P": "2.4922957", "fmo_omega": "0.04110129", "pyr_alpha": "9.702425", "qpole_amp": "2.8739488", "vbur_vbur": "36.30983", "vbur_vtot": "80.01362", "vmin_vmin": "-0.017786287", "E_solv_cds": "0.61514586", "Pint_P_int": "14.349653", "Pint_P_max": "24.406012", "Pint_P_min": "10.013217", "fmo_e_homo": "-0.27817348", "fmo_e_lumo": "-0.027512167", "nbo_lp_P_e": "-0.4234121", "sphericity": "0.90321386", "sterimol_L": "5.5986648", "E_oxidation": "0.36271727", "E_reduction": "0.05743308", "sterimol_B1": "2.0642047", "sterimol_B5": "3.8543715", "E_solv_total": "-2.6241827", "dipolemoment": "1.8281307", "efgtens_xx_P": "-1.7039741", "efgtens_yy_P": "-0.3268511", "efgtens_zz_P": "1.9145211", "nbo_bd_e_avg": "-0.6793215", "nbo_bd_e_max": "-0.5622694", "nbo_lp_P_occ": "1.9921252", "qpoletens_xx": "1.1298729", "qpoletens_yy": "-0.14099543", "qpoletens_zz": "-1.9023952", "surface_area": "113.68079", "E_solv_elstat": "-3.1979885", "nbo_bds_e_avg": "0.15231466", "nbo_bds_e_min": "0.13057931", "nmrtens_sxx_P": "-167.78853", "nmrtens_syy_P": "70.31856", "nmrtens_szz_P": "323.12003", "spindens_P_ra": "0.7740723", "spindens_P_rc": "0.6003307", "sterimol_burL": "5.7811165", "vbur_far_vbur": "0.38332373", "vbur_far_vtot": "2.714171", "nbo_bd_occ_avg": "1.9900497", "nbo_bd_occ_min": "1.9747157", "sterimol_burB1": "2.37849", "sterimol_burB5": "3.66917", "vbur_near_vbur": "35.110268", "vbur_near_vtot": "81.915276", "vbur_ovbur_max": "10.3866005", "vbur_ovbur_min": "-0.01978342", "vbur_ovtot_max": "35.58038", "vbur_ovtot_min": "-0.053288244", "vbur_qvbur_max": "11.388737", "vbur_qvbur_min": "8.446513", "vbur_qvtot_max": "34.520626", "vbur_qvtot_min": "15.889068", "nbo_bds_occ_avg": "0.042028718", "nbo_bds_occ_max": "0.051341236", "nbo_lp_P_percent_s": "69.9096", "vbur_max_delta_qvbur": "2.2522454", "vbur_max_delta_qvtot": "23.223335", "vbur_ratio_vbur_vtot": "0.4303291"}} CP(F)F {"max_data": {"B1": 2.2352682359649867, "B5": 3.393296897014183, "lval": 5.789683332693396, "sasa": 201.64841286799103, "vbur": 37.60199052294123, "vtot": 77.86515826586565, "alpha": 44.57642, "p_int": 14.078268780512571, "sasa_P": 35.71989870571865, "pyr_val": 0.9780329272756111, "dip_norm": 1.2828667117046884, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 37.601990522941236, "near_vtot": 77.86515826586563, "ovbur_max": 10.15230432283999, "ovbur_min": 0.0, "ovtot_max": 26.191888574706347, "ovtot_min": 0.0, "pyr_alpha": 9.950527458338213, "qvbur_max": 10.15230432283999, "qvbur_min": 9.044992140670303, "qvtot_max": 26.191888574706347, "qvtot_min": 16.395497862424076, "cone_angle": 107.8703285697293, "p_int_area": 108.58289412776939, "p_int_atom": 16.063620415029703, "sasa_volume": 251.7106362044146, "EA_delta_SCC": 0.5732, "IP_delta_SCC": 8.4447, "HOMO_LUMO_gap": 6.067969167853, "sasa_volume_P": 25.9571654093089, "max_delta_qvbur": 1.1073121821696876, "max_delta_qvtot": 8.956700079800935, "nucleophilicity": -8.4447, "p_int_atom_area": 28.09609047089477, "p_int_times_p_int_area": 1528.6591684966777, "global_electrophilicity_index": 1.2914, "p_int_atom_times_p_int_atom_area": 451.32493247078673}, "min_data": {"B1": 2.2352682359649867, "B5": 3.393296897014183, "lval": 5.789683332693396, "sasa": 201.64841286799103, "vbur": 37.60199052294123, "vtot": 77.86515826586565, "alpha": 44.57642, "p_int": 14.078268780512571, "sasa_P": 35.71989870571865, "pyr_val": 0.9780329272756111, "dip_norm": 1.2828667117046884, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 37.601990522941236, "near_vtot": 77.86515826586563, "ovbur_max": 10.15230432283999, "ovbur_min": 0.0, "ovtot_max": 26.191888574706347, "ovtot_min": 0.0, "pyr_alpha": 9.950527458338213, "qvbur_max": 10.15230432283999, "qvbur_min": 9.044992140670303, "qvtot_max": 26.191888574706347, "qvtot_min": 16.395497862424076, "cone_angle": 107.8703285697293, "p_int_area": 108.58289412776939, "p_int_atom": 16.063620415029703, "sasa_volume": 251.7106362044146, "EA_delta_SCC": 0.5732, "IP_delta_SCC": 8.4447, "HOMO_LUMO_gap": 6.067969167853, "sasa_volume_P": 25.9571654093089, "max_delta_qvbur": 1.1073121821696876, "max_delta_qvtot": 8.956700079800935, "nucleophilicity": -8.4447, "p_int_atom_area": 28.09609047089477, "p_int_times_p_int_area": 1528.6591684966777, "global_electrophilicity_index": 1.2914, "p_int_atom_times_p_int_atom_area": 451.32493247078673}, "boltzmann_averaged_data": {"B1": 2.2352682359649867, "B5": 3.393296897014183, "lval": 5.789683332693396, "sasa": 201.64841286799103, "vbur": 37.60199052294123, "vtot": 77.86515826586565, "alpha": 44.57642, "p_int": 14.078268780512571, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 35.71989870571865, "pyr_val": 0.9780329272756111, "dip_norm": 1.2828667117046884, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 37.601990522941236, "near_vtot": 77.86515826586563, "ovbur_max": 10.15230432283999, "ovbur_min": 0.0, "ovtot_max": 26.191888574706347, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 9.950527458338213, "qvbur_max": 10.15230432283999, "qvbur_min": 9.044992140670303, "qvtot_max": 26.191888574706347, "qvtot_min": 16.395497862424076, "cone_angle": 107.8703285697293, "p_int_area": 108.58289412776939, "p_int_atom": 16.063620415029703, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 251.7106362044146, "EA_delta_SCC": 0.5732, "IP_delta_SCC": 8.4447, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 6.067969167853, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 25.9571654093089, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 1.1073121821696876, "max_delta_qvtot": 8.956700079800935, "nucleophilicity": -8.4447, "p_int_atom_area": 28.09609047089477, "sasa_volume_std": 0.0, "EA_delta_SCC_std": 0.0, "IP_delta_SCC_std": 0.0, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": 0.0, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 1528.6591684966777, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": 1.2914, "p_int_atom_times_p_int_atom_area": 451.32493247078673, "global_electrophilicity_index_std": 0.0, "p_int_atom_times_p_int_atom_area_std": 0.0}} \\x0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000001000000010000000000000000000000000000000000000000000000002000000040000000000000000002000000000800000000000000000000000010200000000000000000200000 \\x00000000022000000000000000000000000000008000000080000000000040000000000000000000000000000000000000010000000000000000000000000000 phal (-21.349613189697266, -2.6150152683258057, 0.9893622994422911, 5.817772388458252) (-0.38613361120224, 6.42864990234375) -1285 CCP(F)CC 108.09600067138672 {"max_data": {"pyr_P": 0.9647865556243994, "pyr_alpha": 15.638151097781098, "qpole_amp": 4.293541246905681, "vbur_vbur": 44.535666092449276, "vbur_vtot": 124.44053669384571, "sterimol_L": 6.825208781480967, "sterimol_B1": 2.8940616780542974, "sterimol_B5": 4.842321358928776, "dipolemoment": 2.412948785808954, "qpoletens_xx": 3.249479390933317, "qpoletens_yy": -0.4854807322081176, "qpoletens_zz": -1.157289180112877, "sterimol_burL": 6.825208781480967, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.8940616780542974, "sterimol_burB5": 4.842321358928776, "vbur_near_vbur": 44.53566609244927, "vbur_near_vtot": 124.15811759651876, "vbur_ovbur_max": 14.267185391773339, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 45.091327871741704, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.267185391773339, "vbur_qvbur_min": 9.392223797238074, "vbur_qvtot_max": 45.091327871741704, "vbur_qvtot_min": 20.676168492005306, "vbur_max_delta_qvbur": 5.178273944334711, "vbur_max_delta_qvtot": 27.2692122363943}, "min_data": {"pyr_P": 0.9481489557460827, "pyr_alpha": 12.812152504646743, "qpole_amp": 2.6684887542265754, "vbur_vbur": 38.72984935542605, "vbur_vtot": 123.89375936421303, "sterimol_L": 5.7858952498675755, "sterimol_B1": 2.5449214271368756, "sterimol_B5": 3.9852694853143875, "dipolemoment": 2.260215924902226, "qpoletens_xx": 2.1773714056544318, "qpoletens_yy": -1.0200822255415547, "qpoletens_zz": -2.7639986587251992, "sterimol_burL": 5.7858952498675755, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.5449214271368756, "sterimol_burB5": 3.9852694853143875, "vbur_near_vbur": 38.72984935542605, "vbur_near_vtot": 123.79434435768405, "vbur_ovbur_max": 10.350272460742538, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 40.69324672263042, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 10.350272460742538, "vbur_qvbur_min": 9.088911447438628, "vbur_qvtot_max": 40.69324672263042, "vbur_qvtot_min": 17.7006602320923, "vbur_max_delta_qvbur": 1.016619324155391, "vbur_max_delta_qvtot": 19.28903698805438}, "delta_data": {"pyr_P": 0.0166375998783167, "pyr_alpha": 2.8259985931343543, "qpole_amp": 1.6250524926791057, "vbur_vbur": 5.805816737023228, "vbur_vtot": 0.5467773296326897, "sterimol_L": 1.0393135316133915, "sterimol_B1": 0.34914025091742174, "sterimol_B5": 0.8570518736143882, "dipolemoment": 0.152732860906728, "qpoletens_xx": 1.072107985278885, "qpoletens_yy": 0.5346014933334371, "qpoletens_zz": 1.6067094786123222, "sterimol_burL": 1.0393135316133915, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.34914025091742174, "sterimol_burB5": 0.8570518736143882, "vbur_near_vbur": 5.805816737023221, "vbur_near_vtot": 0.36377323883471036, "vbur_ovbur_max": 3.916912931030801, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 4.398081149111285, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 3.916912931030801, "vbur_qvbur_min": 0.3033123497994463, "vbur_qvtot_max": 4.398081149111285, "vbur_qvtot_min": 2.9755082599130063, "vbur_max_delta_qvbur": 4.16165462017932, "vbur_max_delta_qvtot": 7.980175248339918}, "vburminconf_data": {"pyr_P": 0.9481489557460827, "pyr_alpha": 15.638151097781098, "qpole_amp": 3.466219359980896, "vbur_vbur": 38.72984935542605, "vbur_vtot": 123.89375936421303, "sterimol_L": 6.817404581630823, "sterimol_B1": 2.563539747644188, "sterimol_B5": 3.9852694853143875, "dipolemoment": 2.2784866723735355, "qpoletens_xx": 2.7068134448011607, "qpoletens_yy": -0.6377189460175803, "qpoletens_zz": -2.0690944987835804, "sterimol_burL": 6.817404581630823, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.563539747644188, "sterimol_burB5": 3.9852694853143875, "vbur_near_vbur": 38.72984935542605, "vbur_near_vtot": 123.89375936421304, "vbur_ovbur_max": 10.350272460742538, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 40.69324672263042, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 10.350272460742538, "vbur_qvbur_min": 9.172583819797095, "vbur_qvtot_max": 40.69324672263042, "vbur_qvtot_min": 20.676168492005306, "vbur_max_delta_qvbur": 1.016619324155391, "vbur_max_delta_qvtot": 19.28903698805438}, "boltzmann_averaged_data": {"nbo_P": 1.0948194385434635, "nmr_P": 54.581818448246025, "pyr_P": 0.9628119364301972, "fmo_mu": -0.12653486046777054, "vmin_r": 1.8631950242402573, "volume": 151.5947650798332, "Pint_dP": 3.0532937860795535, "fmo_eta": 0.2522235752259802, "fukui_m": 0.5473214152836338, "fukui_p": 0.5175782008832329, "nuesp_P": -54.13907243884423, "somo_ra": 0.125951488830689, "somo_rc": -0.5232383891897537, "nbo_P_ra": 0.5772412376602307, "nbo_P_rc": 1.6421408538270974, "efg_amp_P": 2.80332899331408, "fmo_omega": 0.031746931590015494, "pyr_alpha": 13.152811137909872, "qpole_amp": 3.0520736002584963, "vbur_vbur": 43.03421883161329, "vbur_vtot": 124.27737251854658, "vmin_vmin": -0.04295782137330402, "E_solv_cds": -1.3189569442381808, "Pint_P_int": 15.602318243764515, "Pint_P_max": 25.88720167641452, "Pint_P_min": 10.639523628645817, "fmo_e_homo": -0.25264664808076065, "fmo_e_lumo": -0.0004230728547804587, "nbo_lp_P_e": -0.36783945617303904, "sphericity": 0.864856218795579, "sterimol_L": 6.036317671744918, "E_oxidation": 0.3274398691867577, "E_reduction": 0.06296691420113315, "sterimol_B1": 2.729491296093695, "sterimol_B5": 4.747500660108815, "E_solv_total": -4.887442557901119, "dipolemoment": 2.305051833524038, "efgtens_xx_P": -2.0253595943351304, "efgtens_yy_P": 0.08924720050600471, "efgtens_zz_P": 1.9361120368928673, "nbo_bd_e_avg": -0.5661609632581424, "nbo_bd_e_max": -0.47375758758666503, "nbo_lp_P_occ": 1.9747745427608965, "qpoletens_xx": 2.4546039602879866, "qpoletens_yy": -0.9260416403501252, "qpoletens_zz": -1.5285623199378613, "surface_area": 158.991170494496, "E_solv_elstat": -3.5684856136629377, "nbo_bds_e_avg": 0.17831766805528781, "nbo_bds_e_min": 0.1476588081595904, "nmrtens_sxx_P": -244.4863025578295, "nmrtens_syy_P": 113.11844041182113, "nmrtens_szz_P": 295.1133346126273, "spindens_P_ra": 0.70213603053912, "spindens_P_rc": 0.679525785853244, "sterimol_burL": 6.036317671744918, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9790293577399383, "nbo_bd_occ_min": 1.974126687746824, "sterimol_burB1": 2.729491296093695, "sterimol_burB5": 4.747500660108815, "vbur_near_vbur": 43.03421883161327, "vbur_near_vtot": 123.88308595502731, "vbur_ovbur_max": 12.64143063072441, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 43.978367828135355, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 12.64143063072441, "vbur_qvbur_min": 9.255630783718601, "vbur_qvtot_max": 43.978367828135355, "vbur_qvtot_min": 19.228371786457473, "nbo_bds_occ_avg": 0.03672402630831148, "nbo_bds_occ_max": 0.038708242761691325, "nbo_lp_P_percent_s": 60.730019881935945, "vbur_max_delta_qvbur": 3.338197200802529, "vbur_max_delta_qvtot": 24.746635893800757, "vbur_ratio_vbur_vtot": 0.3462693369343773}} {"max_data": {"B1": 2.8674652046363533, "B5": 4.821233739254367, "lval": 6.6751848476066495, "sasa": 278.51984652431145, "vbur": 49.66586534973732, "vtot": 124.39410803087858, "alpha": 77.530754, "p_int": 15.369814691820316, "sasa_P": 30.749912799575814, "pyr_val": 0.9797172515403294, "dip_norm": 1.2179154322037307, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.66586534973732, "near_vtot": 124.39410803087858, "ovbur_max": 16.073510518021063, "ovbur_min": 0.0, "ovtot_max": 45.89054649598403, "ovtot_min": 0.0, "pyr_alpha": 12.793245030046572, "qvbur_max": 16.073510518021063, "qvbur_min": 10.198927993668189, "qvtot_max": 45.89054649598403, "qvtot_min": 22.897656470752832, "cone_angle": 158.7938064799479, "p_int_area": 177.8938733638743, "p_int_atom": 19.324883983012192, "sasa_volume": 384.2888058164454, "EA_delta_SCC": 1.1421, "IP_delta_SCC": 7.5842, "HOMO_LUMO_gap": 5.558231969462, "sasa_volume_P": 41.43127484879384, "max_delta_qvbur": 5.501593157727296, "max_delta_qvtot": 27.69518376287987, "nucleophilicity": -7.4827, "p_int_atom_area": 24.29661916166345, "p_int_times_p_int_area": 2704.6218784942876, "global_electrophilicity_index": 1.4699, "p_int_atom_times_p_int_atom_area": 445.9061199118303}, "min_data": {"B1": 2.560033639899623, "B5": 4.009872820809534, "lval": 5.667811602447369, "sasa": 265.96987493914963, "vbur": 42.614035136972454, "vtot": 123.01043490832322, "alpha": 77.301931, "p_int": 15.203569562860096, "sasa_P": 21.889937924641124, "pyr_val": 0.9644236538052591, "dip_norm": 1.085127181486115, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 42.614035136972454, "near_vtot": 120.81674229892681, "ovbur_max": 11.364519764373124, "ovbur_min": 0.0, "ovtot_max": 39.02378127509874, "ovtot_min": 0.0, "pyr_alpha": 9.622842248380714, "qvbur_max": 11.364519764373124, "qvbur_min": 10.15230432283999, "qvtot_max": 39.02378127509874, "qvtot_min": 17.604458392876168, "cone_angle": 123.98374974606364, "p_int_area": 169.69359179454094, "p_int_atom": 18.218938999743372, "sasa_volume": 370.95916360288214, "EA_delta_SCC": 0.804, "IP_delta_SCC": 7.4827, "HOMO_LUMO_gap": 5.284579493281, "sasa_volume_P": 27.327677262580174, "max_delta_qvbur": 1.142279935290837, "max_delta_qvtot": 15.91001209158826, "nucleophilicity": -7.5842, "p_int_atom_area": 20.6971200266022, "p_int_times_p_int_area": 2599.4942470101105, "global_electrophilicity_index": 1.2852, "p_int_atom_times_p_int_atom_area": 395.8118748527623}, "boltzmann_averaged_data": {"B1": 2.6428712193750754, "B5": 4.698632808959679, "lval": 5.89804015672122, "sasa": 275.46513132902754, "vbur": 47.4884432945027, "vtot": 123.74906104078745, "alpha": 77.33620644438999, "p_int": 15.290819556977935, "B1_std": 0.11814743991935205, "B5_std": 0.051921405351310006, "sasa_P": 24.58011719584637, "pyr_val": 0.9764184453737491, "dip_norm": 1.1539088577929812, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.41283821586841657, "sasa_std": 3.006315356208253, "vbur_std": 1.3140537139868942, "vtot_std": 0.3985094351464415, "alpha_std": 0.029200499673203713, "near_vbur": 47.4884432945027, "near_vtot": 123.20620760725541, "ovbur_max": 13.966807712935374, "ovbur_min": 0.0, "ovtot_max": 43.52076124957889, "ovtot_min": 0.0, "p_int_std": 0.0514431024704016, "pyr_alpha": 10.262663121504556, "qvbur_max": 13.966807712935374, "qvbur_min": 10.169235475782896, "qvtot_max": 43.52076124957889, "qvtot_min": 18.90614549004686, "cone_angle": 146.8971794804101, "p_int_area": 174.8213561504093, "p_int_atom": 18.950753977543215, "sasa_P_std": 1.3874672766858627, "pyr_val_std": 0.004153608383315134, "sasa_volume": 381.18918663976456, "EA_delta_SCC": 1.0413800819999999, "IP_delta_SCC": 7.54108722, "dip_norm_std": 0.04446523863533425, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.495487479281419, "near_vbur_std": 1.3140537139868946, "near_vtot_std": 0.8141446645485259, "ovbur_max_std": 0.5834029258460248, "ovbur_min_std": 0.0, "ovtot_max_std": 0.3279640867806107, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.8470908232768254, "qvbur_max_std": 0.5834029258460248, "qvbur_min_std": 0.009683615098157797, "qvtot_max_std": 0.3279640867806107, "qvtot_min_std": 1.2866605117489351, "sasa_volume_P": 30.927593743071224, "cone_angle_std": 7.381699300206358, "p_int_area_std": 2.5143325326959496, "p_int_atom_std": 0.3053749266033643, "max_delta_qvbur": 3.5802347134358845, "max_delta_qvtot": 24.61288503106188, "nucleophilicity": -7.54108722, "p_int_atom_area": 21.291534314740115, "sasa_volume_std": 2.9210229407749404, "EA_delta_SCC_std": 0.07809940800974914, "IP_delta_SCC_std": 0.02899384458590493, "HOMO_LUMO_gap_std": 0.050385906183929956, "sasa_volume_P_std": 2.570866660573441, "max_delta_qvbur_std": 0.6581805084024179, "max_delta_qvtot_std": 1.4484493138330308, "nucleophilicity_std": 0.02899384458590493, "p_int_atom_area_std": 0.48663241628596504, "p_int_times_p_int_area": 2673.071424913882, "p_int_times_p_int_area_std": 32.79207996583936, "global_electrophilicity_index": 1.417215569, "p_int_atom_times_p_int_atom_area": 403.3627816369364, "global_electrophilicity_index_std": 0.04221384712752719, "p_int_atom_times_p_int_atom_area_std": 4.835385787810104}} {"max_data": {"pyr_P": "0.9640341", "pyr_alpha": "18.067205", "qpole_amp": "3.6850219", "vbur_vbur": "42.761806", "sterimol_L": "6.9645796", "sterimol_B1": "2.5544074", "sterimol_B5": "4.963865", "dipolemoment": "1.8406212", "qpoletens_xx": "2.9930768", "qpoletens_yy": "0.7604871", "qpoletens_zz": "-2.0008352", "sterimol_burL": "6.8069925", "vbur_far_vbur": "-1.0113297", "vbur_far_vtot": "-1.5007218", "sterimol_burB1": "2.7196014", "sterimol_burB5": "4.9080377", "vbur_near_vbur": "43.708183", "vbur_near_vtot": "131.27263", "vbur_ovbur_max": "13.022624", "vbur_ovbur_min": "-0.085601725", "vbur_ovtot_max": "52.492744", "vbur_ovtot_min": "-0.16501293", "vbur_qvbur_max": "12.400818", "vbur_qvbur_min": "9.891771", "vbur_qvtot_max": "53.79824", "vbur_qvtot_min": "22.310978", "vbur_max_delta_qvbur": "6.421794", "vbur_max_delta_qvtot": "36.49689"}, "min_data": {"pyr_P": "0.93044716", "pyr_alpha": "12.277834", "qpole_amp": "3.1234298", "vbur_vbur": "42.43061", "sterimol_L": "5.7822833", "sterimol_B1": "2.4782498", "sterimol_B5": "4.2794", "dipolemoment": "2.0245786", "qpoletens_xx": "1.9295092", "qpoletens_yy": "-0.6102037", "qpoletens_zz": "-3.4821694", "sterimol_burL": "5.5847354", "vbur_far_vbur": "-0.043745656", "vbur_far_vtot": "-2.1686978", "sterimol_burB1": "2.5461564", "sterimol_burB5": "4.1695943", "vbur_near_vbur": "39.92463", "vbur_near_vtot": "128.31738", "vbur_ovbur_max": "10.790416", "vbur_ovbur_min": "-0.0017625125", "vbur_ovtot_max": "48.539997", "vbur_ovtot_min": "0.12321428", "vbur_qvbur_max": "11.273803", "vbur_qvbur_min": "8.859056", "vbur_qvtot_max": "46.205547", "vbur_qvtot_min": "14.06924", "vbur_max_delta_qvbur": "2.5573893", "vbur_max_delta_qvtot": "24.012287"}, "delta_data": {"pyr_P": "0.035256717", "pyr_alpha": "5.4045386", "qpole_amp": "1.4712174", "vbur_vbur": "2.9026575", "sterimol_L": "1.2316549", "sterimol_B1": "0.2285007", "sterimol_B5": "0.64044386", "dipolemoment": "0.33519122", "qpoletens_xx": "0.14455105", "qpoletens_yy": "1.4093456", "qpoletens_zz": "0.6494272", "sterimol_burL": "0.7622373", "vbur_far_vbur": "-0.58946323", "vbur_far_vtot": "-2.291768", "sterimol_burB1": "0.21362408", "sterimol_burB5": "0.65971506", "vbur_near_vbur": "3.798234", "vbur_near_vtot": "-0.58606994", "vbur_ovbur_max": "3.2809794", "vbur_ovbur_min": "-0.110504486", "vbur_ovtot_max": "4.294275", "vbur_ovtot_min": "0.195828", "vbur_qvbur_max": "4.8430095", "vbur_qvbur_min": "0.35290423", "vbur_qvtot_max": "11.666357", "vbur_qvtot_min": "6.2038603", "vbur_max_delta_qvbur": "6.1413975", "vbur_max_delta_qvtot": "18.006945"}, "vburminconf_data": {"pyr_P": "0.9256754", "pyr_alpha": "17.560724", "qpole_amp": "4.8819857", "vbur_vbur": "38.92587", "sterimol_L": "6.9060135", "sterimol_B1": "2.6297715", "sterimol_B5": "4.3778563", "dipolemoment": "1.82971", "qpoletens_xx": "3.072817", "qpoletens_yy": "0.6681563", "qpoletens_zz": "-3.1664076", "sterimol_burL": "6.6344995", "vbur_far_vbur": "-0.073225", "vbur_far_vtot": "-2.9014537", "sterimol_burB1": "2.568912", "sterimol_burB5": "4.278964", "vbur_near_vbur": "40.99566", "vbur_near_vtot": "130.26666", "vbur_ovbur_max": "10.612005", "vbur_ovbur_min": "0.017825834", "vbur_ovtot_max": "43.84077", "vbur_ovtot_min": "0.055647098", "vbur_qvbur_max": "10.649294", "vbur_qvbur_min": "8.816844", "vbur_qvtot_max": "47.90475", "vbur_qvtot_min": "20.550924", "vbur_max_delta_qvbur": "2.543803", "vbur_max_delta_qvtot": "17.795618"}, "boltzmann_averaged_data": {"nbo_P": "1.0611885", "nmr_P": "171.46245", "pyr_P": "0.96656984", "fmo_mu": "-0.12024915", "vmin_r": "1.8875633", "volume": "152.60634", "Pint_dP": "3.030424", "fmo_eta": "0.24949609", "fukui_m": "0.5558157", "fukui_p": "0.3450353", "nuesp_P": "-54.139755", "somo_ra": "0.12640747", "somo_rc": "-0.5118955", "nbo_P_ra": "0.69380814", "nbo_P_rc": "1.3543946", "efg_amp_P": "2.8150797", "fmo_omega": "0.031571366", "pyr_alpha": "12.255768", "qpole_amp": "3.6979904", "vbur_vbur": "41.430393", "vbur_vtot": "124.99323", "vmin_vmin": "-0.045581996", "E_solv_cds": "-1.1241786", "Pint_P_int": "15.414484", "Pint_P_max": "26.077866", "Pint_P_min": "10.680133", "fmo_e_homo": "-0.24712124", "fmo_e_lumo": "-0.00039357197", "nbo_lp_P_e": "-0.3617667", "sphericity": "0.86690366", "sterimol_L": "6.445545", "E_oxidation": "0.31918153", "E_reduction": "0.055515077", "sterimol_B1": "2.4681356", "sterimol_B5": "4.365882", "E_solv_total": "-4.419912", "dipolemoment": "1.7698784", "efgtens_xx_P": "-2.1289654", "efgtens_yy_P": "-0.046252813", "efgtens_zz_P": "1.768773", "nbo_bd_e_avg": "-0.56356394", "nbo_bd_e_max": "-0.46718812", "nbo_lp_P_occ": "1.9666717", "qpoletens_xx": "2.503036", "qpoletens_yy": "0.124086924", "qpoletens_zz": "-2.4294887", "surface_area": "158.50822", "E_solv_elstat": "-3.2956386", "nbo_bds_e_avg": "0.18014194", "nbo_bds_e_min": "0.16633537", "nmrtens_sxx_P": "62.594536", "nmrtens_syy_P": "140.64732", "nmrtens_szz_P": "332.4424", "spindens_P_ra": "0.4701329", "spindens_P_rc": "0.73079675", "sterimol_burL": "6.349511", "vbur_far_vbur": "-0.46447548", "vbur_far_vtot": "0.6587932", "nbo_bd_occ_avg": "1.9765942", "nbo_bd_occ_min": "1.9685875", "sterimol_burB1": "2.4970143", "sterimol_burB5": "4.5921946", "vbur_near_vbur": "42.880367", "vbur_near_vtot": "126.8932", "vbur_ovbur_max": "11.07952", "vbur_ovbur_min": "6.450139e-08", "vbur_ovtot_max": "51.97915", "vbur_ovtot_min": "0.11408389", "vbur_qvbur_max": "11.186518", "vbur_qvbur_min": "9.35203", "vbur_qvtot_max": "53.22475", "vbur_qvtot_min": "19.959686", "nbo_bds_occ_avg": "0.033292446", "nbo_bds_occ_max": "0.040639605", "nbo_lp_P_percent_s": "60.846123", "vbur_max_delta_qvbur": "2.2392561", "vbur_max_delta_qvtot": "36.10239", "vbur_ratio_vbur_vtot": "0.34753585"}} CCP(F)CC {"max_data": {"B1": 2.8567808455335566, "B5": 4.786038184619223, "lval": 6.753900026469092, "sasa": 278.7698518860602, "vbur": 45.959283518895624, "vtot": 123.5990130779679, "alpha": 77.47564, "p_int": 15.489830138480766, "sasa_P": 29.129917393549388, "pyr_val": 0.9614587385015603, "dip_norm": 1.205187952146884, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 45.95928351889562, "near_vtot": 123.5990130779679, "ovbur_max": 14.092004507822674, "ovbur_min": 0.0, "ovtot_max": 44.227636248990365, "ovtot_min": 0.0, "pyr_alpha": 16.888693380080614, "qvbur_max": 14.092004507822674, "qvbur_min": 9.581164355194572, "qvtot_max": 44.227636248990365, "qvtot_min": 20.576773830960082, "cone_angle": 157.79099175129178, "p_int_area": 177.59346664594213, "p_int_atom": 19.420879829702997, "sasa_volume": 383.7406463252192, "EA_delta_SCC": 1.0135, "IP_delta_SCC": 7.4212, "HOMO_LUMO_gap": 5.703665436136, "sasa_volume_P": 24.571109113285818, "max_delta_qvbur": 4.697334835940893, "max_delta_qvtot": 26.381523807820088, "nucleophilicity": -7.2943, "p_int_atom_area": 22.996800029557996, "p_int_times_p_int_area": 2711.3762893521466, "global_electrophilicity_index": 1.3793, "p_int_atom_times_p_int_atom_area": 422.2463466346288}, "min_data": {"B1": 2.5362003152702286, "B5": 3.923680585178037, "lval": 5.718897436676946, "sasa": 265.47988453609315, "vbur": 39.140571660271746, "vtot": 122.08101521850799, "alpha": 77.271609, "p_int": 15.26007593153423, "sasa_P": 21.11994010819647, "pyr_val": 0.9390257515410907, "dip_norm": 1.0608308064908372, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 39.140571660271746, "near_vtot": 118.00513975090342, "ovbur_max": 10.688476537364261, "ovbur_min": 0.0, "ovtot_max": 40.11615313925742, "ovtot_min": 0.0, "pyr_alpha": 13.370059681718175, "qvbur_max": 10.688476537364261, "qvbur_min": 9.114927646912598, "qvtot_max": 40.11615313925742, "qvtot_min": 17.094494110009215, "cone_angle": 120.05273626279887, "p_int_area": 168.39379464430687, "p_int_atom": 18.343381556997404, "sasa_volume": 369.91000395484207, "EA_delta_SCC": 0.6478, "IP_delta_SCC": 7.2943, "HOMO_LUMO_gap": 5.424403494256, "sasa_volume_P": 16.38955345373556, "max_delta_qvbur": 1.328774618603628, "max_delta_qvtot": 19.539379308297338, "nucleophilicity": -7.4212, "p_int_atom_area": 19.497286981581784, "p_int_times_p_int_area": 2592.7324360900425, "global_electrophilicity_index": 1.1863, "p_int_atom_times_p_int_atom_area": 377.79904511907273}, "boltzmann_averaged_data": {"B1": 2.6168020822602425, "B5": 4.747690788936231, "lval": 5.8736288840612065, "sasa": 276.3844844681804, "vbur": 45.2691418766242, "vtot": 123.36554730334647, "alpha": 77.28866774664999, "p_int": 15.334161264888834, "B1_std": 0.1259978677188448, "B5_std": 0.024113259610966064, "sasa_P": 21.864241897509782, "pyr_val": 0.9557744726874997, "dip_norm": 1.136315135984616, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.34550452821980293, "sasa_std": 2.4818355607471667, "vbur_std": 1.1527675716886518, "vtot_std": 0.32031222443329843, "alpha_std": 0.022426789799488055, "near_vbur": 45.2691418766242, "near_vtot": 122.82331847535332, "ovbur_max": 13.608556438336116, "ovbur_min": 0.0, "ovtot_max": 43.74618051786502, "ovtot_min": 0.0, "p_int_std": 0.04674358064859409, "pyr_alpha": 14.228150923695383, "qvbur_max": 13.608556438336116, "qvbur_min": 9.229902435089171, "qvtot_max": 43.74618051786502, "qvtot_min": 18.312979363201556, "cone_angle": 147.614154353121, "p_int_area": 175.1153497633709, "p_int_atom": 19.267439037863685, "sasa_P_std": 1.2811882468398985, "pyr_val_std": 0.0048344314083345104, "sasa_volume": 381.55953078065477, "EA_delta_SCC": 0.9182236480000001, "IP_delta_SCC": 7.378312573000001, "dip_norm_std": 0.038766129704466655, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.661065470916911, "near_vbur_std": 1.1527675716886523, "near_vtot_std": 1.3128750321448734, "ovbur_max_std": 0.27717114837567525, "ovbur_min_std": 0.0, "ovtot_max_std": 0.3281555378811009, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.7265533042070972, "qvbur_max_std": 0.27717114837567525, "qvbur_min_std": 0.18953815088302808, "qvtot_max_std": 0.3281555378811009, "qvtot_min_std": 0.4645436959901589, "sasa_volume_P": 17.056556728733145, "cone_angle_std": 7.046868282188852, "p_int_area_std": 1.949782132281945, "p_int_atom_std": 0.2822420340009613, "max_delta_qvbur": 4.318479395610885, "max_delta_qvtot": 25.425017000666145, "nucleophilicity": -7.378312573000001, "p_int_atom_area": 19.749495887088564, "sasa_volume_std": 2.393459822794764, "EA_delta_SCC_std": 0.06176650634261337, "IP_delta_SCC_std": 0.025355513550698934, "HOMO_LUMO_gap_std": 0.040016981870466664, "sasa_volume_P_std": 1.346887585598721, "max_delta_qvbur_std": 0.37682208111818516, "max_delta_qvtot_std": 0.4825443342961639, "nucleophilicity_std": 0.025355513550698934, "p_int_atom_area_std": 0.41368579203311867, "p_int_times_p_int_area": 2685.1750684450712, "p_int_times_p_int_area_std": 23.98870816103502, "global_electrophilicity_index": 1.3322214839999997, "p_int_atom_times_p_int_atom_area": 380.4194422158457, "global_electrophilicity_index_std": 0.03287365738456466, "p_int_atom_times_p_int_atom_area_std": 3.9493444478978503}} \\x0000000000000200000000000000000000000000000000001000000001000020100000100000400100000000000008000000000000000000000000010000040000000000000000000000000000000000000000000000000000000000481000000202100000000000200000100004000000000010200000000000200000200000 \\x00000000022000000000010000004000000000000000001000000000000040000000000040000000080040000000000000010000000000000000000000000000 phal (-15.705862998962402, -1.1180713176727295, 2.297636270523072, 1.1462000608444214) (0.0435428656637668, 6.079940319061279) -1286 CCP(F)F 98.03199768066406 {"max_data": {"pyr_P": 0.9703008805659479, "pyr_alpha": 12.29151718326048, "qpole_amp": 1.375888782958405, "vbur_vbur": 39.02479446798965, "vbur_vtot": 96.67608838559092, "sterimol_L": 6.920714405294324, "sterimol_B1": 2.2445434550061982, "sterimol_B5": 4.636995634812927, "dipolemoment": 2.545944179868514, "qpoletens_xx": 0.9657074017672076, "qpoletens_yy": 0.23724460079587228, "qpoletens_zz": -0.887483746602007, "sterimol_burL": 6.920714405294324, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.2445434550061982, "sterimol_burB5": 4.636995634812927, "vbur_near_vbur": 39.02479446798965, "vbur_near_vtot": 96.4661029995665, "vbur_ovbur_max": 11.698443560368359, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 42.986824622012215, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.698443560368359, "vbur_qvbur_min": 8.914245370140325, "vbur_qvtot_max": 42.986824622012215, "vbur_qvtot_min": 16.827154516362956, "vbur_max_delta_qvbur": 2.774785048337707, "vbur_max_delta_qvtot": 25.783130056066756}, "min_data": {"pyr_P": 0.9675053397299704, "pyr_alpha": 11.724055368989767, "qpole_amp": 1.1254880487274044, "vbur_vbur": 36.96540820331685, "vbur_vtot": 96.46610299956649, "sterimol_L": 5.8664489200986765, "sterimol_B1": 2.237380180956148, "sterimol_B5": 3.426183764772519, "dipolemoment": 2.414752133889762, "qpoletens_xx": 0.6502391458061347, "qpoletens_yy": 0.014229674582124652, "qpoletens_zz": -0.9799370763493322, "sterimol_burL": 5.8664489200986765, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.237380180956148, "sterimol_burB5": 3.426183764772519, "vbur_near_vbur": 36.96540820331685, "vbur_near_vtot": 95.22868407453316, "vbur_ovbur_max": 9.806402040412493, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 36.838072728024684, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.806402040412493, "vbur_qvbur_min": 8.895419086359668, "vbur_qvtot_max": 36.838072728024684, "vbur_qvtot_min": 15.818810675966045, "vbur_max_delta_qvbur": 0.8764681004549573, "vbur_max_delta_qvtot": 16.089067767917136}, "delta_data": {"pyr_P": 0.002795540835977439, "pyr_alpha": 0.5674618142707128, "qpole_amp": 0.2504007342310006, "vbur_vbur": 2.0593862646728027, "vbur_vtot": 0.20998538602442807, "sterimol_L": 1.0542654851956472, "sterimol_B1": 0.007163274050050017, "sterimol_B5": 1.2108118700404082, "dipolemoment": 0.1311920459787519, "qpoletens_xx": 0.31546825596107286, "qpoletens_yy": 0.22301492621374763, "qpoletens_zz": 0.09245332974732523, "sterimol_burL": 1.0542654851956472, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.007163274050050017, "sterimol_burB5": 1.2108118700404082, "vbur_near_vbur": 2.0593862646728027, "vbur_near_vtot": 1.2374189250333387, "vbur_ovbur_max": 1.8920415199558658, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 6.14875189398753, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 1.8920415199558658, "vbur_qvbur_min": 0.01882628378065654, "vbur_qvtot_max": 6.14875189398753, "vbur_qvtot_min": 1.0083438403969112, "vbur_max_delta_qvbur": 1.8983169478827495, "vbur_max_delta_qvtot": 9.69406228814962}, "vburminconf_data": {"pyr_P": 0.9675053397299704, "pyr_alpha": 12.29151718326048, "qpole_amp": 1.1254880487274044, "vbur_vbur": 36.96540820331685, "vbur_vtot": 96.46610299956649, "sterimol_L": 6.920714405294324, "sterimol_B1": 2.2445434550061982, "sterimol_B5": 3.426183764772519, "dipolemoment": 2.414752133889762, "qpoletens_xx": 0.6502391458061347, "qpoletens_yy": 0.23724460079587228, "qpoletens_zz": -0.887483746602007, "sterimol_burL": 6.920714405294324, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.2445434550061982, "sterimol_burB5": 3.426183764772519, "vbur_near_vbur": 36.96540820331685, "vbur_near_vtot": 96.4661029995665, "vbur_ovbur_max": 9.806402040412493, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 36.838072728024684, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 9.806402040412493, "vbur_qvbur_min": 8.914245370140325, "vbur_qvtot_max": 36.838072728024684, "vbur_qvtot_min": 16.827154516362956, "vbur_max_delta_qvbur": 0.8764681004549573, "vbur_max_delta_qvtot": 16.089067767917136}, "boltzmann_averaged_data": {"nbo_P": 1.407193505600655, "nmr_P": -7.681491118532675, "pyr_P": 0.968751523578697, "fmo_mu": -0.14779697360958155, "vmin_r": 1.9567623402894012, "volume": 109.15290042231686, "Pint_dP": 3.040119802559126, "fmo_eta": 0.26930629238595516, "fukui_m": 0.4960269101946151, "fukui_p": 0.624982420518849, "nuesp_P": -54.075728843630145, "somo_ra": 0.13075963356494857, "somo_rc": -0.568257232010564, "nbo_P_ra": 0.782211085081806, "nbo_P_rc": 1.90322041579527, "efg_amp_P": 2.9261574627637, "fmo_omega": 0.04056289027088156, "pyr_alpha": 12.038556561611763, "qpole_amp": 1.2371105822608257, "vbur_vbur": 37.88343231811295, "vbur_vtot": 96.55970935765096, "vmin_vmin": -0.018906619952413474, "E_solv_cds": -0.20891551167980582, "Pint_P_int": 14.729880197440874, "Pint_P_max": 23.959993734711944, "Pint_P_min": 9.746267324802915, "fmo_e_homo": -0.28245011980255913, "fmo_e_lumo": -0.013143827416603972, "nbo_lp_P_e": -0.42045034061181324, "sphericity": 0.9012584560455308, "sterimol_L": 6.450748592950429, "E_oxidation": 0.36562338489472324, "E_reduction": 0.05867560264915537, "sterimol_B1": 2.241350242333255, "sterimol_B5": 3.965934133242156, "E_solv_total": -3.3848731295343937, "dipolemoment": 2.4732343448008214, "efgtens_xx_P": -1.6254072629391012, "efgtens_yy_P": -0.7037832285730856, "efgtens_zz_P": 2.329190491512187, "nbo_bd_e_avg": -0.6899655106636912, "nbo_bd_e_max": -0.5007667653309036, "nbo_lp_P_occ": 1.989490933359321, "qpoletens_xx": 0.79086719183758, "qpoletens_yy": 0.13782999182438774, "qpoletens_zz": -0.9286971836619677, "surface_area": 122.55721144339698, "E_solv_elstat": -3.1759576178545874, "nbo_bds_e_avg": 0.15769433377642209, "nbo_bds_e_min": 0.1451891613820861, "nmrtens_sxx_P": -214.58000203193592, "nmrtens_syy_P": -42.794318082269314, "nmrtens_szz_P": 234.32988049128244, "spindens_P_ra": 0.7771223876682367, "spindens_P_rc": 0.5617922566906732, "sterimol_burL": 6.450748592950429, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9870210844883203, "nbo_bd_occ_min": 1.9815838524777563, "sterimol_burB1": 2.241350242333255, "sterimol_burB5": 3.965934133242156, "vbur_near_vbur": 37.88343231811295, "vbur_near_vtot": 95.91449185561913, "vbur_ovbur_max": 10.649827953904694, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 39.579036194378375, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 10.649827953904694, "vbur_qvbur_min": 8.905853072493636, "vbur_qvtot_max": 39.579036194378375, "vbur_qvtot_min": 16.377659452047013, "nbo_bds_occ_avg": 0.05503704904706694, "nbo_bds_occ_max": 0.05707976039488176, "nbo_lp_P_percent_s": 67.27722574527593, "vbur_max_delta_qvbur": 1.7226914464960528, "vbur_max_delta_qvtot": 20.410444045655268, "vbur_ratio_vbur_vtot": 0.3923206752511484}} {"max_data": {"B1": 2.2807546527659994, "B5": 4.515441152009831, "lval": 6.798748111116432, "sasa": 231.09853706701122, "vbur": 42.66065880780065, "vtot": 96.03787755684574, "alpha": 55.911176, "p_int": 14.604181097610734, "sasa_P": 36.049897769909215, "pyr_val": 0.9870319488219892, "dip_norm": 1.291528164617404, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 42.66065880780065, "near_vtot": 96.03787755684574, "ovbur_max": 12.495143781956912, "ovbur_min": 0.0, "ovtot_max": 41.624523426168956, "ovtot_min": 0.0, "pyr_alpha": 8.855260768272206, "qvbur_max": 12.495143781956912, "qvbur_min": 9.779314956214412, "qvtot_max": 41.624523426168956, "qvtot_min": 17.609373860854863, "cone_angle": 133.51930384572188, "p_int_area": 132.6849486609035, "p_int_atom": 16.74764080544712, "sasa_volume": 302.1030066075777, "EA_delta_SCC": 1.1338, "IP_delta_SCC": 8.1594, "HOMO_LUMO_gap": 5.726954275894, "sasa_volume_P": 46.748846908889206, "max_delta_qvbur": 2.750796578863648, "max_delta_qvtot": 24.170784251282353, "nucleophilicity": -8.1071, "p_int_atom_area": 28.09609047089477, "p_int_times_p_int_area": 1922.3711095286155, "global_electrophilicity_index": 1.5307, "p_int_atom_times_p_int_atom_area": 462.747186080601}, "min_data": {"B1": 2.2793869320754947, "B5": 3.3586142474570995, "lval": 5.777977974705875, "sasa": 226.69867555067847, "vbur": 40.51596994970357, "vtot": 95.65353287934353, "alpha": 55.652094, "p_int": 14.488237957129005, "sasa_P": 32.33990829067584, "pyr_val": 0.9825701762975717, "dip_norm": 1.2282060087786577, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 40.515969949703575, "near_vtot": 95.65353287934352, "ovbur_max": 10.618541031121966, "ovbur_min": 0.0, "ovtot_max": 35.07226451668776, "ovtot_min": 0.0, "pyr_alpha": 7.644290804402524, "qvbur_max": 10.618541031121966, "qvbur_min": 9.721035367679164, "qvtot_max": 35.07226451668776, "qvtot_min": 16.72385553666407, "cone_angle": 117.99456173225201, "p_int_area": 130.48589109108443, "p_int_atom": 16.47016287052353, "sasa_volume": 297.33928739288734, "EA_delta_SCC": 0.8943, "IP_delta_SCC": 8.1071, "HOMO_LUMO_gap": 5.671059711131, "sasa_volume_P": 40.05572583292951, "max_delta_qvbur": 0.839226074907554, "max_delta_qvtot": 13.978682993524718, "nucleophilicity": -8.1594, "p_int_atom_area": 26.29634090336414, "p_int_times_p_int_area": 1905.639584177308, "global_electrophilicity_index": 1.4103, "p_int_atom_times_p_int_atom_area": 440.40167194712944}, "boltzmann_averaged_data": {"B1": 2.279562424317293, "B5": 4.367008691886671, "lval": 5.9089529909087135, "sasa": 230.53399083585057, "vbur": 42.38547378041821, "vtot": 95.98856229127543, "alpha": 55.685336811419994, "p_int": 14.503114621484215, "B1_std": 0.00045741320837899683, "B5_std": 0.38688301611883846, "sasa_P": 32.81593704075627, "pyr_val": 0.9864594587893811, "dip_norm": 1.2834032988017343, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.34138091669923887, "sasa_std": 1.4714662040144715, "vbur_std": 0.717258295767139, "vtot_std": 0.12853818274460815, "alpha_std": 0.08664600139193222, "near_vbur": 42.38547378041821, "near_vtot": 95.98856229127543, "ovbur_max": 12.25435688299728, "ovbur_min": 0.0, "ovtot_max": 40.783803085493425, "ovtot_min": 0.0, "p_int_std": 0.03877540512874269, "pyr_alpha": 7.799670360466642, "qvbur_max": 12.25435688299728, "qvbur_min": 9.728513221684121, "qvtot_max": 40.783803085493425, "qvtot_min": 16.83747639284099, "cone_angle": 131.52732418514256, "p_int_area": 132.40278758412, "p_int_atom": 16.712037611617074, "sasa_P_std": 1.2407490816873037, "pyr_val_std": 0.0014921713911470625, "sasa_volume": 301.4917737951408, "EA_delta_SCC": 1.103069755, "IP_delta_SCC": 8.113810613, "dip_norm_std": 0.021177123856324132, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.67823154273574, "near_vbur_std": 0.7172582957671365, "near_vtot_std": 0.12853818274461293, "ovbur_max_std": 0.6276010087962459, "ovbur_min_std": 0.0, "ovtot_max_std": 2.191302501104706, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.4049903319220975, "qvbur_max_std": 0.6276010087962459, "qvbur_min_std": 0.01949071455888998, "qvtot_max_std": 2.191302501104706, "qvtot_min_std": 0.296148022442381, "sasa_volume_P": 40.9145201981859, "cone_angle_std": 5.1920118988316535, "p_int_area_std": 0.7354410775564615, "p_int_atom_std": 0.09279823969098505, "max_delta_qvbur": 2.5055229675010415, "max_delta_qvtot": 22.86303573889947, "nucleophilicity": -8.113810613, "p_int_atom_area": 26.527266770373995, "sasa_volume_std": 1.5931528307903897, "EA_delta_SCC_std": 0.08009710181860498, "IP_delta_SCC_std": 0.017490932881473707, "HOMO_LUMO_gap_std": 0.018693079937071574, "sasa_volume_P_std": 2.238411692298099, "max_delta_qvbur_std": 0.6392954375315796, "max_delta_qvtot_std": 3.408591950681191, "nucleophilicity_std": 0.017490932881473707, "p_int_atom_area_std": 0.601898640327729, "p_int_times_p_int_area": 1920.2242875107893, "p_int_times_p_int_area_std": 5.595602044443616, "global_electrophilicity_index": 1.5152514759999998, "p_int_atom_times_p_int_atom_area": 443.2688248655952, "global_electrophilicity_index_std": 0.04026593344033415, "p_int_atom_times_p_int_atom_area_std": 7.473114491598118}} {"max_data": {"pyr_P": "0.97146696", "pyr_alpha": "12.909451", "qpole_amp": "3.6777594", "vbur_vbur": "38.65057", "sterimol_L": "6.26036", "sterimol_B1": "2.3982644", "sterimol_B5": "4.265978", "dipolemoment": "2.2979155", "qpoletens_xx": "2.350206", "qpoletens_yy": "0.9683206", "qpoletens_zz": "-2.5074751", "sterimol_burL": "6.1421704", "vbur_far_vbur": "0.1850654", "vbur_far_vtot": "-0.3499235", "sterimol_burB1": "2.5213802", "sterimol_burB5": "4.0618534", "vbur_near_vbur": "38.068386", "vbur_near_vtot": "104.47564", "vbur_ovbur_max": "10.357736", "vbur_ovbur_min": "-0.0414474", "vbur_ovtot_max": "44.971832", "vbur_ovtot_min": "0.14521597", "vbur_qvbur_max": "8.859254", "vbur_qvbur_min": "9.562196", "vbur_qvtot_max": "45.778454", "vbur_qvtot_min": "22.452812", "vbur_max_delta_qvbur": "1.7279909", "vbur_max_delta_qvtot": "24.784119"}, "min_data": {"pyr_P": "0.9572401", "pyr_alpha": "11.867747", "qpole_amp": "2.5922444", "vbur_vbur": "41.240192", "sterimol_L": "5.571985", "sterimol_B1": "2.2589097", "sterimol_B5": "3.9357126", "dipolemoment": "2.3323774", "qpoletens_xx": "1.5608678", "qpoletens_yy": "0.45635915", "qpoletens_zz": "-3.332054", "sterimol_burL": "5.2333117", "vbur_far_vbur": "-0.12963521", "vbur_far_vtot": "-2.097837", "sterimol_burB1": "2.191233", "sterimol_burB5": "4.1883926", "vbur_near_vbur": "36.53346", "vbur_near_vtot": "102.18098", "vbur_ovbur_max": "11.182236", "vbur_ovbur_min": "-0.017315164", "vbur_ovtot_max": "35.485798", "vbur_ovtot_min": "-0.009466863", "vbur_qvbur_max": "11.928183", "vbur_qvbur_min": "8.548077", "vbur_qvtot_max": "37.72696", "vbur_qvtot_min": "12.312098", "vbur_max_delta_qvbur": "2.7050266", "vbur_max_delta_qvtot": "22.894037"}, "delta_data": {"pyr_P": "0.0019446758", "pyr_alpha": "1.0773088", "qpole_amp": "1.5073601", "vbur_vbur": "0.5050873", "sterimol_L": "0.64076734", "sterimol_B1": "0.2134931", "sterimol_B5": "0.4022976", "dipolemoment": "-0.0040163673", "qpoletens_xx": "0.07891354", "qpoletens_yy": "0.18831687", "qpoletens_zz": "0.59263766", "sterimol_burL": "0.490679", "vbur_far_vbur": "-0.9214108", "vbur_far_vtot": "-1.2124975", "sterimol_burB1": "0.2353093", "sterimol_burB5": "0.5340165", "vbur_near_vbur": "2.3262763", "vbur_near_vtot": "-2.7957318", "vbur_ovbur_max": "2.1108308", "vbur_ovbur_min": "-0.1298657", "vbur_ovtot_max": "6.381389", "vbur_ovtot_min": "0.58901757", "vbur_qvbur_max": "2.451507", "vbur_qvbur_min": "0.0018824606", "vbur_qvtot_max": "17.030478", "vbur_qvtot_min": "8.753223", "vbur_max_delta_qvbur": "1.1007742", "vbur_max_delta_qvtot": "8.11694"}, "vburminconf_data": {"pyr_P": "0.9408295", "pyr_alpha": "13.598556", "qpole_amp": "4.0901065", "vbur_vbur": "38.194874", "sterimol_L": "5.739325", "sterimol_B1": "2.4095376", "sterimol_B5": "3.9540412", "dipolemoment": "2.3449357", "qpoletens_xx": "2.319666", "qpoletens_yy": "0.4041051", "qpoletens_zz": "-3.7793128", "sterimol_burL": "6.0229964", "vbur_far_vbur": "-0.04594102", "vbur_far_vtot": "-3.3469777", "sterimol_burB1": "2.1840813", "sterimol_burB5": "4.1439333", "vbur_near_vbur": "37.68756", "vbur_near_vtot": "100.93024", "vbur_ovbur_max": "10.142063", "vbur_ovbur_min": "0.004161523", "vbur_ovtot_max": "37.34309", "vbur_ovtot_min": "0.025300495", "vbur_qvbur_max": "11.042645", "vbur_qvbur_min": "8.2457", "vbur_qvtot_max": "37.43531", "vbur_qvtot_min": "20.818846", "vbur_max_delta_qvbur": "1.6397842", "vbur_max_delta_qvtot": "13.5904"}, "boltzmann_averaged_data": {"nbo_P": "1.3941822", "nmr_P": "31.337652", "pyr_P": "0.9762503", "fmo_mu": "-0.1441783", "vmin_r": "2.0177872", "volume": "111.4996", "Pint_dP": "3.0291667", "fmo_eta": "0.253964", "fukui_m": "0.5034317", "fukui_p": "0.5694769", "nuesp_P": "-54.0809", "somo_ra": "0.1320743", "somo_rc": "-0.5679077", "nbo_P_ra": "0.7602288", "nbo_P_rc": "1.5996649", "efg_amp_P": "3.0738535", "fmo_omega": "0.036397494", "pyr_alpha": "10.367519", "qpole_amp": "3.2438893", "vbur_vbur": "38.550816", "vbur_vtot": "97.75866", "vmin_vmin": "-0.022196721", "E_solv_cds": "-0.13926713", "Pint_P_int": "14.658159", "Pint_P_max": "24.747656", "Pint_P_min": "9.8535", "fmo_e_homo": "-0.2686514", "fmo_e_lumo": "-0.01572698", "nbo_lp_P_e": "-0.42300498", "sphericity": "0.883812", "sterimol_L": "6.0112987", "E_oxidation": "0.34678844", "E_reduction": "0.06021788", "sterimol_B1": "2.2025461", "sterimol_B5": "3.6705134", "E_solv_total": "-3.4648619", "dipolemoment": "1.9456688", "efgtens_xx_P": "-2.3355622", "efgtens_yy_P": "-0.13811901", "efgtens_zz_P": "2.122505", "nbo_bd_e_avg": "-0.674945", "nbo_bd_e_max": "-0.5251886", "nbo_lp_P_occ": "1.9935064", "qpoletens_xx": "1.5295099", "qpoletens_yy": "0.20959914", "qpoletens_zz": "-2.5261128", "surface_area": "129.91234", "E_solv_elstat": "-3.5675347", "nbo_bds_e_avg": "0.15097569", "nbo_bds_e_min": "0.13750201", "nmrtens_sxx_P": "-101.48931", "nmrtens_syy_P": "38.181942", "nmrtens_szz_P": "303.82236", "spindens_P_ra": "0.7953803", "spindens_P_rc": "0.6767336", "sterimol_burL": "6.2597237", "vbur_far_vbur": "0.32894707", "vbur_far_vtot": "2.6190794", "nbo_bd_occ_avg": "1.9861276", "nbo_bd_occ_min": "1.9730344", "sterimol_burB1": "2.3872006", "sterimol_burB5": "4.0384045", "vbur_near_vbur": "37.554195", "vbur_near_vtot": "95.69614", "vbur_ovbur_max": "9.943686", "vbur_ovbur_min": "-0.022618057", "vbur_ovtot_max": "37.1214", "vbur_ovtot_min": "0.014623854", "vbur_qvbur_max": "10.519981", "vbur_qvbur_min": "8.511865", "vbur_qvtot_max": "39.824562", "vbur_qvtot_min": "17.849525", "nbo_bds_occ_avg": "0.04257119", "nbo_bds_occ_max": "0.046401117", "nbo_lp_P_percent_s": "70.798996", "vbur_max_delta_qvbur": "1.9218822", "vbur_max_delta_qvtot": "23.065035", "vbur_ratio_vbur_vtot": "0.3875355"}} CCP(F)F {"max_data": {"B1": 2.2521722105784643, "B5": 4.704054468525164, "lval": 6.809884229056691, "sasa": 230.60853482097815, "vbur": 41.18035725900538, "vtot": 95.90350131905203, "alpha": 55.797055, "p_int": 14.703427251692844, "sasa_P": 35.01990069076896, "pyr_val": 0.9790255703225268, "dip_norm": 1.2861450151518683, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 41.18035725900538, "near_vtot": 95.90350131905204, "ovbur_max": 13.520864540177257, "ovbur_min": 0.0, "ovtot_max": 43.16470760329521, "ovtot_min": 0.0, "pyr_alpha": 11.014780592448826, "qvbur_max": 13.520864540177257, "qvbur_min": 9.056648058377352, "qvtot_max": 43.16470760329521, "qvtot_min": 16.54820020047176, "cone_angle": 133.75402482107032, "p_int_area": 131.98500396794006, "p_int_atom": 17.00644431032903, "sasa_volume": 301.06518689691137, "EA_delta_SCC": 0.9577, "IP_delta_SCC": 8.0617, "HOMO_LUMO_gap": 5.899043105408, "sasa_volume_P": 27.990160325863286, "max_delta_qvbur": 4.534151988042202, "max_delta_qvtot": 26.033273789377496, "nucleophilicity": -8.0192, "p_int_atom_area": 27.596160035469595, "p_int_times_p_int_area": 1922.1976018943387, "global_electrophilicity_index": 1.4266, "p_int_atom_times_p_int_atom_area": 458.20818820183746}, "min_data": {"B1": 2.2153774599314877, "B5": 3.4013052171937828, "lval": 5.739291099705474, "sasa": 226.02867879358473, "vbur": 37.648614193769426, "vtot": 95.21318524581895, "alpha": 55.500294, "p_int": 14.532536756325163, "sasa_P": 30.489913536880223, "pyr_val": 0.9730749630310098, "dip_norm": 1.216241341181922, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 37.64861419376943, "near_vtot": 90.68906486412722, "ovbur_max": 10.233895746789337, "ovbur_min": 0.0, "ovtot_max": 35.94931175427791, "ovtot_min": 0.0, "pyr_alpha": 9.72269034234855, "qvbur_max": 10.233895746789337, "qvbur_min": 8.963400716720956, "qvtot_max": 35.94931175427791, "qvtot_min": 15.518770200291984, "cone_angle": 109.41072749922398, "p_int_area": 130.58549718840038, "p_int_atom": 16.604056057542003, "sasa_volume": 295.98559639467584, "EA_delta_SCC": 0.7145, "IP_delta_SCC": 8.0192, "HOMO_LUMO_gap": 5.834356525814, "sasa_volume_P": 23.425396693993033, "max_delta_qvbur": 1.1772476884119847, "max_delta_qvtot": 17.060319132855607, "nucleophilicity": -8.0617, "p_int_atom_area": 25.2964800325138, "p_int_times_p_int_area": 1902.1014788943778, "global_electrophilicity_index": 1.3104, "p_int_atom_times_p_int_atom_area": 425.43025167230405}, "boltzmann_averaged_data": {"B1": 2.220656861644139, "B5": 4.546173142287175, "lval": 5.868087728220842, "sasa": 230.08026725194128, "vbur": 40.687100385090815, "vtot": 95.78064032013299, "alpha": 55.538204134649995, "p_int": 14.577709803325412, "B1_std": 0.011459565860980419, "B5_std": 0.41385407892152276, "sasa_P": 31.064650407044745, "pyr_val": 0.9764228053099921, "dip_norm": 1.2774636621961188, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.3402130274113244, "sasa_std": 1.4608708213048496, "vbur_std": 1.1415767736960098, "vtot_std": 0.25979738442286887, "alpha_std": 0.09436272401412193, "near_vbur": 40.68710038509082, "near_vtot": 95.25677697514774, "ovbur_max": 13.046285691592349, "ovbur_min": 0.0, "ovtot_max": 42.262226571709895, "ovtot_min": 0.0, "p_int_std": 0.0459975453977197, "pyr_alpha": 10.305172561132151, "qvbur_max": 13.046285691592349, "qvbur_min": 8.978080179481214, "qvtot_max": 42.262226571709895, "qvtot_min": 16.24184645176185, "cone_angle": 130.5902964302259, "p_int_area": 131.74945898987744, "p_int_atom": 16.947357071628765, "sasa_P_std": 1.4397595024598386, "pyr_val_std": 0.0013424202506332336, "sasa_volume": 300.39451917222027, "EA_delta_SCC": 0.90814708, "IP_delta_SCC": 8.024137085000001, "dip_norm_std": 0.022200222261952875, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.849323252053584, "near_vbur_std": 1.1415767736960072, "near_vtot_std": 1.6559910228046695, "ovbur_max_std": 1.0746606426913377, "ovbur_min_std": 0.0, "ovtot_max_std": 2.2918243080729015, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.288288431951696, "qvbur_max_std": 1.0746606426913377, "qvbur_min_std": 0.03186164163560486, "qvtot_max_std": 2.2918243080729015, "qvtot_min_std": 0.26699033267403705, "sasa_volume_P": 23.982177850840138, "cone_angle_std": 7.75324741005979, "p_int_area_std": 0.5017863393937937, "p_int_atom_std": 0.13247960647707308, "max_delta_qvbur": 4.049156245802503, "max_delta_qvtot": 24.918471517829133, "nucleophilicity": -8.024137085000001, "p_int_atom_area": 25.642761847915395, "sasa_volume_std": 1.5899240338111766, "EA_delta_SCC_std": 0.07013418492770554, "IP_delta_SCC_std": 0.013545016655684798, "HOMO_LUMO_gap_std": 0.018074703692672243, "sasa_volume_P_std": 1.4498386401028935, "max_delta_qvbur_std": 1.097808018308324, "max_delta_qvtot_std": 2.8496738462959383, "nucleophilicity_std": 0.013545016655684798, "p_int_atom_area_std": 0.704771800257257, "p_int_times_p_int_area": 1920.588504549015, "p_int_times_p_int_area_std": 5.031957796737618, "global_electrophilicity_index": 1.4019545200000003, "p_int_atom_times_p_int_atom_area": 434.49103902232326, "global_electrophilicity_index_std": 0.03319147606795457, "p_int_atom_times_p_int_atom_area_std": 8.703618196068481}} \\x0000000000000000000000000000000000000000000000000000000000000000100000100000000000000000000200000000000000000001000000010000000000000000000000000000000000000000080000002000000040000000401000000002100000000800000000100004000000000010200000000000000000200000 \\x00000000022000000000010000000000000000100000000000000800000040000000000040000000080000000000000000010000000000000000000000000000 phal (-19.82457160949707, -3.713601112365722, 1.723242998123169, 5.981271743774414) (-0.2755200862884521, 6.266945838928223) -1287 FP(F)c1ccccc1 146.0760040283203 {"max_data": {"pyr_P": 0.969020909122451, "pyr_alpha": 11.95876876401835, "qpole_amp": 5.911915909724617, "vbur_vbur": 40.80910780853399, "vbur_vtot": 147.51078646549107, "sterimol_L": 7.920591308000178, "sterimol_B1": 2.2479770452518064, "sterimol_B5": 6.052762639244943, "dipolemoment": 3.1589897793719777, "qpoletens_xx": 3.8072387291671546, "qpoletens_yy": 0.6662200738936135, "qpoletens_zz": -4.473458803060768, "sterimol_burL": 7.436472171473457, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.2479770452518064, "sterimol_burB5": 6.020095920165261, "vbur_near_vbur": 40.809107808533994, "vbur_near_vtot": 147.51078646549107, "vbur_ovbur_max": 13.637550789775865, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.13946055940181, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.637550789775865, "vbur_qvbur_min": 8.87240918396109, "vbur_qvtot_max": 89.13946055940181, "vbur_qvtot_min": 16.62460301966376, "vbur_max_delta_qvbur": 4.553868865609644, "vbur_max_delta_qvtot": 69.30513680491805}, "min_data": {"pyr_P": 0.969020909122451, "pyr_alpha": 11.95876876401835, "qpole_amp": 5.911915909724617, "vbur_vbur": 40.80910780853399, "vbur_vtot": 147.51078646549107, "sterimol_L": 7.920591308000178, "sterimol_B1": 2.2479770452518064, "sterimol_B5": 6.052762639244943, "dipolemoment": 3.1589897793719777, "qpoletens_xx": 3.8072387291671546, "qpoletens_yy": 0.6662200738936135, "qpoletens_zz": -4.473458803060768, "sterimol_burL": 7.436472171473457, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.2479770452518064, "sterimol_burB5": 6.020095920165261, "vbur_near_vbur": 40.809107808533994, "vbur_near_vtot": 147.51078646549107, "vbur_ovbur_max": 13.637550789775865, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.13946055940181, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.637550789775865, "vbur_qvbur_min": 8.87240918396109, "vbur_qvtot_max": 89.13946055940181, "vbur_qvtot_min": 16.62460301966376, "vbur_max_delta_qvbur": 4.553868865609644, "vbur_max_delta_qvtot": 69.30513680491805}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.969020909122451, "pyr_alpha": 11.95876876401835, "qpole_amp": 5.911915909724617, "vbur_vbur": 40.80910780853399, "vbur_vtot": 147.51078646549107, "sterimol_L": 7.920591308000178, "sterimol_B1": 2.2479770452518064, "sterimol_B5": 6.052762639244943, "dipolemoment": 3.1589897793719777, "qpoletens_xx": 3.8072387291671546, "qpoletens_yy": 0.6662200738936135, "qpoletens_zz": -4.473458803060768, "sterimol_burL": 7.436472171473457, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.2479770452518064, "sterimol_burB5": 6.020095920165261, "vbur_near_vbur": 40.809107808533994, "vbur_near_vtot": 147.51078646549107, "vbur_ovbur_max": 13.637550789775865, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.13946055940181, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.637550789775865, "vbur_qvbur_min": 8.87240918396109, "vbur_qvtot_max": 89.13946055940181, "vbur_qvtot_min": 16.62460301966376, "vbur_max_delta_qvbur": 4.553868865609644, "vbur_max_delta_qvtot": 69.30513680491805}, "boltzmann_averaged_data": {"nbo_P": 1.42184, "nmr_P": 36.5135, "pyr_P": 0.969020909122451, "fmo_mu": -0.17374, "vmin_r": 1.9783405780483168, "volume": 160.50779, "Pint_dP": 3.24, "fmo_eta": 0.22582000000000002, "fukui_m": 0.05926000000000009, "fukui_p": 0.27186, "nuesp_P": -54.073398, "somo_ra": 0.06132, "somo_rc": -0.45288, "nbo_P_ra": 1.14998, "nbo_P_rc": 1.4811, "efg_amp_P": 2.8058511941455486, "fmo_omega": 0.06683550526968382, "pyr_alpha": 11.95876876401835, "qpole_amp": 5.911915909724617, "vbur_vbur": 40.80910780853399, "vbur_vtot": 147.51078646549107, "vmin_vmin": -0.0178776, "E_solv_cds": -1.96, "Pint_P_int": 16.62, "Pint_P_max": 27.46, "Pint_P_min": 10.3, "fmo_e_homo": -0.28665, "fmo_e_lumo": -0.06083, "nbo_lp_P_e": -0.41528, "sphericity": 0.868662, "sterimol_L": 7.920591308000178, "E_oxidation": 0.35359060000007503, "E_reduction": 0.00021010000000387663, "sterimol_B1": 2.2479770452518064, "sterimol_B5": 6.052762639244943, "E_solv_total": -6.31908311385151, "dipolemoment": 3.1589897793719777, "efgtens_xx_P": -1.54668, "efgtens_yy_P": -0.690298, "efgtens_zz_P": 2.236978, "nbo_bd_e_avg": -0.6937633333333334, "nbo_bd_e_max": -0.51514, "nbo_lp_P_occ": 1.98259, "qpoletens_xx": 3.8072387291671546, "qpoletens_yy": 0.6662200738936135, "qpoletens_zz": -4.473458803060768, "surface_area": 164.42355, "E_solv_elstat": -4.35908311385151, "nbo_bds_e_avg": 0.16860666666666668, "nbo_bds_e_min": 0.14863, "nmrtens_sxx_P": -147.549, "nmrtens_syy_P": -5.4186, "nmrtens_szz_P": 262.5082, "spindens_P_ra": 0.29875, "spindens_P_rc": -0.00257, "sterimol_burL": 7.436472171473457, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.98234, "nbo_bd_occ_min": 1.9708, "sterimol_burB1": 2.2479770452518064, "sterimol_burB5": 6.020095920165261, "vbur_near_vbur": 40.809107808533994, "vbur_near_vtot": 147.51078646549107, "vbur_ovbur_max": 13.637550789775865, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 89.13946055940181, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.637550789775865, "vbur_qvbur_min": 8.87240918396109, "vbur_qvtot_max": 89.13946055940181, "vbur_qvtot_min": 16.62460301966376, "nbo_bds_occ_avg": 0.06145666666666666, "nbo_bds_occ_max": 0.06439, "nbo_lp_P_percent_s": 66.48, "vbur_max_delta_qvbur": 4.553868865609644, "vbur_max_delta_qvtot": 69.30513680491805, "vbur_ratio_vbur_vtot": 0.27665168620113717}} {"max_data": {"B1": 2.2836787656279287, "B5": 5.939064956752498, "lval": 7.970215766287339, "sasa": 288.9498922628483, "vbur": 43.5931322243646, "vtot": 146.2194718745671, "alpha": 94.830364, "p_int": 17.378880520413464, "sasa_P": 34.299902732534974, "pyr_val": 0.9845044009505913, "dip_norm": 1.47742275601806, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 43.5931322243646, "near_vtot": 146.2194718745671, "ovbur_max": 13.684047388075946, "ovbur_min": 0.0, "ovtot_max": 86.31394633705355, "ovtot_min": 0.0, "pyr_alpha": 8.643452509603886, "qvbur_max": 13.684047388075946, "qvbur_min": 9.919185968699004, "qvtot_max": 86.31394633705355, "qvtot_min": 17.33244685524502, "cone_angle": 140.0180050771403, "p_int_area": 175.45281575875458, "p_int_atom": 18.031387497042218, "sasa_volume": 406.3303050461517, "EA_delta_SCC": 1.7691, "IP_delta_SCC": 7.8685, "HOMO_LUMO_gap": 4.285375302912, "sasa_volume_P": 47.48610502773244, "max_delta_qvbur": 3.834796925619239, "max_delta_qvtot": 65.88788308093146, "nucleophilicity": -7.8001, "p_int_atom_area": 27.496173948384556, "p_int_times_p_int_area": 3049.1735220415126, "global_electrophilicity_index": 1.9036, "p_int_atom_times_p_int_atom_area": 495.79416714939924}, "min_data": {"B1": 2.266847690718739, "B5": 5.757338729961786, "lval": 6.852498772581687, "sasa": 287.6199766276667, "vbur": 41.8214327328931, "vtot": 145.36079505821814, "alpha": 94.78006, "p_int": 17.345585502422864, "sasa_P": 31.759909935431814, "pyr_val": 0.983452969519327, "dip_norm": 1.4441568474372861, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 41.82143273289309, "near_vtot": 142.8303190175378, "ovbur_max": 11.28292834042378, "ovbur_min": 0.0, "ovtot_max": 79.13603954406308, "ovtot_min": 0.0, "pyr_alpha": 8.309824809776487, "qvbur_max": 11.28292834042378, "qvbur_min": 9.849250462456707, "qvtot_max": 79.13603954406308, "qvtot_min": 15.243113911856831, "cone_angle": 117.994561732252, "p_int_area": 173.85353520867378, "p_int_atom": 18.01749936454437, "sasa_volume": 405.240207606985, "EA_delta_SCC": 1.3511, "IP_delta_SCC": 7.8001, "HOMO_LUMO_gap": 4.131572231282, "sasa_volume_P": 44.89203949322045, "max_delta_qvbur": 1.0373766759273941, "max_delta_qvtot": 59.45491587586463, "nucleophilicity": -7.8685, "p_int_atom_area": 27.196215687129456, "p_int_times_p_int_area": 3015.591359860535, "global_electrophilicity_index": 1.6232, "p_int_atom_times_p_int_atom_area": 490.0077988608666}, "boltzmann_averaged_data": {"B1": 2.278411480735098, "B5": 5.882193734078345, "lval": 7.620426233107155, "sasa": 288.53369516481825, "vbur": 43.0386788685086, "vtot": 145.9507489648907, "alpha": 94.79580263680002, "p_int": 17.368460844533306, "B1_std": 0.007804471568084298, "B5_std": 0.08426539468307928, "sasa_P": 32.55480068128525, "pyr_val": 0.9841753554841772, "dip_norm": 1.4670121899277069, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.5182788708151698, "sasa_std": 0.6166741470004831, "vbur_std": 0.8215267523305415, "vtot_std": 0.3981634468104864, "alpha_std": 0.02332567229835876, "near_vbur": 43.0386788685086, "near_vtot": 145.15883648795977, "ovbur_max": 12.932617182113201, "ovbur_min": 0.0, "ovtot_max": 84.06762040618719, "ovtot_min": 0.0, "p_int_std": 0.01543870624238113, "pyr_alpha": 8.414233598437471, "qvbur_max": 12.932617182113201, "qvbur_min": 9.871136779135234, "qvtot_max": 84.06762040618719, "qvtot_min": 16.678590110611687, "cone_angle": 133.1257684823575, "p_int_area": 174.9523209106068, "p_int_atom": 18.021845655609575, "sasa_P_std": 1.1777798907725725, "pyr_val_std": 0.00048754264094041607, "sasa_volume": 405.9891590525645, "EA_delta_SCC": 1.6382869, "IP_delta_SCC": 7.84709422, "dip_norm_std": 0.015425208378306637, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 4.179704902548608, "near_vbur_std": 0.8215267523305447, "near_vtot_std": 1.571530472966693, "ovbur_max_std": 1.1133849406584968, "ovbur_min_std": 0.0, "ovtot_max_std": 3.328353642681872, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.15470122447180312, "qvbur_max_std": 1.1133849406584968, "qvbur_min_std": 0.03242868759199549, "qvtot_max_std": 3.328353642681872, "qvtot_min_std": 0.9688115370475738, "sasa_volume_P": 45.70385230224598, "cone_angle_std": 10.212142619759161, "p_int_area_std": 0.7415770917685677, "p_int_atom_std": 0.006439846284211711, "max_delta_qvbur": 2.9593442584781764, "max_delta_qvtot": 63.8746859941058, "nucleophilicity": -7.84709422, "p_int_atom_area": 27.29008762498924, "sasa_volume_std": 0.5054718439743157, "EA_delta_SCC_std": 0.19382416946394995, "IP_delta_SCC_std": 0.0317166822759193, "HOMO_LUMO_gap_std": 0.07131758999925618, "sasa_volume_P_std": 1.202853104693407, "max_delta_qvbur_std": 1.2971475036798024, "max_delta_qvtot_std": 2.982929487346665, "nucleophilicity_std": 0.0317166822759193, "p_int_atom_area_std": 0.13908890158282342, "p_int_times_p_int_area": 3038.6639843869757, "p_int_times_p_int_area_std": 15.571853333807866, "global_electrophilicity_index": 1.8158488200000003, "p_int_atom_times_p_int_atom_area": 491.8186428167629, "global_electrophilicity_index_std": 0.13001984956385543, "p_int_atom_times_p_int_atom_area_std": 2.6831053295152496}} {"max_data": {"pyr_P": "0.9593078", "pyr_alpha": "15.064508", "qpole_amp": "5.3400774", "vbur_vbur": "40.543205", "sterimol_L": "6.786602", "sterimol_B1": "2.8496165", "sterimol_B5": "6.0805635", "dipolemoment": "1.7690594", "qpoletens_xx": "3.2986596", "qpoletens_yy": "0.47124884", "qpoletens_zz": "-4.1110806", "sterimol_burL": "6.909406", "vbur_far_vbur": "0.99499416", "vbur_far_vtot": "0.3259065", "sterimol_burB1": "2.824132", "sterimol_burB5": "5.8293414", "vbur_near_vbur": "38.7539", "vbur_near_vtot": "149.19844", "vbur_ovbur_max": "14.078074", "vbur_ovbur_min": "0.16259599", "vbur_ovtot_max": "67.26878", "vbur_ovtot_min": "0.24156184", "vbur_qvbur_max": "16.178164", "vbur_qvbur_min": "9.960312", "vbur_qvtot_max": "72.790855", "vbur_qvtot_min": "30.777206", "vbur_max_delta_qvbur": "8.172116", "vbur_max_delta_qvtot": "47.34424"}, "min_data": {"pyr_P": "0.9515015", "pyr_alpha": "13.87311", "qpole_amp": "5.1767387", "vbur_vbur": "40.219555", "sterimol_L": "6.5179944", "sterimol_B1": "2.5558376", "sterimol_B5": "5.7258983", "dipolemoment": "2.3015463", "qpoletens_xx": "3.1201537", "qpoletens_yy": "0.11842377", "qpoletens_zz": "-4.308819", "sterimol_burL": "6.4976583", "vbur_far_vbur": "-1.1532737", "vbur_far_vtot": "-2.3775022", "sterimol_burB1": "2.5277786", "sterimol_burB5": "5.68097", "vbur_near_vbur": "39.257816", "vbur_near_vtot": "151.1652", "vbur_ovbur_max": "13.828394", "vbur_ovbur_min": "-0.025987074", "vbur_ovtot_max": "71.13033", "vbur_ovtot_min": "-0.058116578", "vbur_qvbur_max": "14.198664", "vbur_qvbur_min": "8.937411", "vbur_qvtot_max": "72.19744", "vbur_qvtot_min": "19.331217", "vbur_max_delta_qvbur": "5.6688676", "vbur_max_delta_qvtot": "50.768982"}, "delta_data": {"pyr_P": "0.0025195468", "pyr_alpha": "0.5606405", "qpole_amp": "1.1062027", "vbur_vbur": "-1.0043966", "sterimol_L": "0.29610166", "sterimol_B1": "0.102224514", "sterimol_B5": "0.014554135", "dipolemoment": "-0.03474937", "qpoletens_xx": "0.39869928", "qpoletens_yy": "0.22317028", "qpoletens_zz": "1.0759712", "sterimol_burL": "-0.08720508", "vbur_far_vbur": "-0.9897568", "vbur_far_vtot": "-0.4046678", "sterimol_burB1": "0.16728796", "sterimol_burB5": "0.15256949", "vbur_near_vbur": "0.7382652", "vbur_near_vtot": "-5.42283", "vbur_ovbur_max": "1.0949298", "vbur_ovbur_min": "0.048770107", "vbur_ovtot_max": "0.4818867", "vbur_ovtot_min": "-0.072078146", "vbur_qvbur_max": "2.8770058", "vbur_qvbur_min": "-0.16230859", "vbur_qvtot_max": "6.187235", "vbur_qvtot_min": "3.7824755", "vbur_max_delta_qvbur": "2.8980367", "vbur_max_delta_qvtot": "2.753673"}, "vburminconf_data": {"pyr_P": "0.942742", "pyr_alpha": "15.684322", "qpole_amp": "5.494597", "vbur_vbur": "42.87797", "sterimol_L": "6.764953", "sterimol_B1": "2.854326", "sterimol_B5": "5.7513013", "dipolemoment": "2.2925828", "qpoletens_xx": "3.7424774", "qpoletens_yy": "0.14331566", "qpoletens_zz": "-3.5236323", "sterimol_burL": "6.6730466", "vbur_far_vbur": "-0.3959612", "vbur_far_vtot": "-1.6962323", "sterimol_burB1": "2.5829558", "sterimol_burB5": "5.8174276", "vbur_near_vbur": "40.399097", "vbur_near_vtot": "146.76527", "vbur_ovbur_max": "12.623692", "vbur_ovbur_min": "-0.022946808", "vbur_ovtot_max": "76.03367", "vbur_ovtot_min": "-0.009981544", "vbur_qvbur_max": "14.077806", "vbur_qvbur_min": "9.450768", "vbur_qvtot_max": "73.175896", "vbur_qvtot_min": "27.222925", "vbur_max_delta_qvbur": "3.4011512", "vbur_max_delta_qvtot": "46.102764"}, "boltzmann_averaged_data": {"nbo_P": "1.4152715", "nmr_P": "82.06536", "pyr_P": "0.9561341", "fmo_mu": "-0.15335825", "vmin_r": "2.0276413", "volume": "161.84427", "Pint_dP": "3.394151", "fmo_eta": "0.2097777", "fukui_m": "0.30983818", "fukui_p": "0.29941908", "nuesp_P": "-54.073166", "somo_ra": "0.07646659", "somo_rc": "-0.46637613", "nbo_P_ra": "0.8249349", "nbo_P_rc": "1.4636971", "efg_amp_P": "2.7500572", "fmo_omega": "0.052895322", "pyr_alpha": "13.335665", "qpole_amp": "6.36377", "vbur_vbur": "39.85467", "vbur_vtot": "147.86694", "vmin_vmin": "-0.022388458", "E_solv_cds": "-1.9803817", "Pint_P_int": "16.50338", "Pint_P_max": "28.17529", "Pint_P_min": "10.374594", "fmo_e_homo": "-0.26240608", "fmo_e_lumo": "-0.04803305", "nbo_lp_P_e": "-0.4107312", "sphericity": "0.8490155", "sterimol_L": "6.835996", "E_oxidation": "0.3316735", "E_reduction": "0.01403495", "sterimol_B1": "2.5866902", "sterimol_B5": "5.943201", "E_solv_total": "-6.201314", "dipolemoment": "1.9102273", "efgtens_xx_P": "-1.443107", "efgtens_yy_P": "-0.414994", "efgtens_zz_P": "1.9353503", "nbo_bd_e_avg": "-0.68141186", "nbo_bd_e_max": "-0.5249476", "nbo_lp_P_occ": "1.972366", "qpoletens_xx": "3.6523888", "qpoletens_yy": "0.003167327", "qpoletens_zz": "-4.584323", "surface_area": "171.45769", "E_solv_elstat": "-4.5911064", "nbo_bds_e_avg": "0.1632344", "nbo_bds_e_min": "0.14629869", "nmrtens_sxx_P": "-9.360901", "nmrtens_syy_P": "78.545364", "nmrtens_szz_P": "294.30695", "spindens_P_ra": "0.31992587", "spindens_P_rc": "0.47742042", "sterimol_burL": "6.947124", "vbur_far_vbur": "0.49380782", "vbur_far_vtot": "3.380634", "nbo_bd_occ_avg": "1.9794992", "nbo_bd_occ_min": "1.9620373", "sterimol_burB1": "2.734666", "sterimol_burB5": "5.764995", "vbur_near_vbur": "38.61207", "vbur_near_vtot": "147.21608", "vbur_ovbur_max": "12.685764", "vbur_ovbur_min": "-0.03716124", "vbur_ovtot_max": "72.99624", "vbur_ovtot_min": "0.036919016", "vbur_qvbur_max": "12.754326", "vbur_qvbur_min": "9.104529", "vbur_qvtot_max": "74.05305", "vbur_qvtot_min": "28.117163", "nbo_bds_occ_avg": "0.047713388", "nbo_bds_occ_max": "0.053386353", "nbo_lp_P_percent_s": "66.789055", "vbur_max_delta_qvbur": "3.8873339", "vbur_max_delta_qvtot": "47.688572", "vbur_ratio_vbur_vtot": "0.26771966"}} FP(F)c1ccccc1 {"max_data": {"B1": 2.234443705434887, "B5": 6.012217364485707, "lval": 7.815687434087082, "sasa": 288.249899988374, "vbur": 41.798120897479, "vtot": 145.1705403183981, "alpha": 94.691595, "p_int": 17.386933753806936, "sasa_P": 31.85990965185319, "pyr_val": 0.9734632167481961, "dip_norm": 1.5019194385851726, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 41.798120897478995, "near_vtot": 142.0566948486408, "ovbur_max": 14.231875520307266, "ovbur_min": 0.0, "ovtot_max": 89.77345042564633, "ovtot_min": 0.0, "pyr_alpha": 11.258660294884415, "qvbur_max": 14.231875520307266, "qvbur_min": 9.044992140670303, "qvtot_max": 89.77345042564633, "qvtot_min": 15.134432080817215, "cone_angle": 137.99114071656078, "p_int_area": 173.0541759731939, "p_int_atom": 18.2764640409536, "sasa_volume": 405.0045771628075, "EA_delta_SCC": 1.6912, "IP_delta_SCC": 7.8215, "HOMO_LUMO_gap": 4.160071537332, "sasa_volume_P": 29.570037407403262, "max_delta_qvbur": 5.035356449445322, "max_delta_qvtot": 71.72766917998686, "nucleophilicity": -7.748, "p_int_atom_area": 26.596299164619246, "p_int_times_p_int_area": 3005.3982239416564, "global_electrophilicity_index": 1.8451, "p_int_atom_times_p_int_atom_area": 485.0354382469887}, "min_data": {"B1": 2.233988587524764, "B5": 5.987775492973487, "lval": 6.909399650644167, "sasa": 287.5799578007083, "vbur": 40.13132466537094, "vtot": 144.9575575701401, "alpha": 94.65403, "p_int": 17.359161837846017, "sasa_P": 30.399913792100975, "pyr_val": 0.9718242710298228, "dip_norm": 1.4526214234961565, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 40.13132466537094, "near_vtot": 139.3665765111181, "ovbur_max": 12.366928687179369, "ovbur_min": 0.0, "ovtot_max": 83.55879807908354, "ovtot_min": 0.0, "pyr_alpha": 10.877410882826098, "qvbur_max": 12.366928687179369, "qvbur_min": 9.021680305256202, "qvtot_max": 83.55879807908354, "qvtot_min": 14.99127026520476, "cone_angle": 123.12829999571454, "p_int_area": 172.85383762870856, "p_int_atom": 18.236952263351956, "sasa_volume": 404.49871995304716, "EA_delta_SCC": 1.409, "IP_delta_SCC": 7.748, "HOMO_LUMO_gap": 4.022791826853, "sasa_volume_P": 28.85566783295822, "max_delta_qvbur": 3.286968793387919, "max_delta_qvtot": 65.73048563549062, "nucleophilicity": -7.8215, "p_int_atom_area": 26.496313077534214, "p_int_times_p_int_area": 3004.075447433757, "global_electrophilicity_index": 1.6535, "p_int_atom_times_p_int_atom_area": 484.25891317940267}, "boltzmann_averaged_data": {"B1": 2.2343498783265363, "B5": 5.992814429204446, "lval": 7.628847144652491, "sasa": 288.11178470696484, "vbur": 41.45449418626761, "vtot": 145.00146609352097, "alpha": 94.6617744004, "p_int": 17.36488729604052, "B1_std": 0.0001841164609807706, "B5_std": 0.009887879124246185, "sasa_P": 30.700906538547493, "pyr_val": 0.9731253316988963, "dip_norm": 1.491756159794421, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.36663575659434366, "sasa_std": 0.2710229193603091, "vbur_std": 0.6742969604268448, "vtot_std": 0.08616147373461541, "alpha_std": 0.015196797803171855, "near_vbur": 41.454494186267596, "near_vtot": 139.92117130758177, "ovbur_max": 13.84739808118962, "ovbur_min": 0.0, "ovtot_max": 88.49223769787895, "ovtot_min": 0.0, "p_int_std": 0.011235037707034753, "pyr_alpha": 10.95600926161604, "qvbur_max": 13.84739808118962, "qvbur_min": 9.026486273245172, "qvtot_max": 88.49223769787895, "qvtot_min": 15.104917840910552, "cone_angle": 134.92701747355113, "p_int_area": 173.01287422009483, "p_int_atom": 18.24509801142231, "sasa_P_std": 0.5906365466290971, "pyr_val_std": 0.0006630301262476485, "sasa_volume": 404.9002896404433, "EA_delta_SCC": 1.6330216480000002, "IP_delta_SCC": 7.80634724, "dip_norm_std": 0.019943350656341757, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 4.0510934119653506, "near_vbur_std": 0.674296960426842, "near_vtot_std": 1.0882785689321592, "ovbur_max_std": 0.7544581375405238, "ovbur_min_std": 0.0, "ovtot_max_std": 2.5141172668100706, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.1542332018535412, "qvbur_max_std": 0.7544581375405238, "qvbur_min_std": 0.00943072671925715, "qvtot_max_std": 2.5141172668100706, "qvtot_min_std": 0.05791564395041682, "sasa_volume_P": 29.002942264425812, "cone_angle_std": 6.0127135688924485, "p_int_area_std": 0.08104622157236589, "p_int_atom_std": 0.01598436031029008, "max_delta_qvbur": 4.674908850272528, "max_delta_qvtot": 70.49128982045352, "nucleophilicity": -7.80634724, "p_int_atom_area": 26.575686032905793, "sasa_volume_std": 0.20464287858390437, "EA_delta_SCC_std": 0.11416308638506624, "IP_delta_SCC_std": 0.029734184441184912, "HOMO_LUMO_gap_std": 0.05553605757027254, "sasa_volume_P_std": 0.2889958732750977, "max_delta_qvbur_std": 0.707304503944241, "max_delta_qvtot_std": 2.426140974689659, "nucleophilicity_std": 0.029734184441184912, "p_int_atom_area_std": 0.04044904428488045, "p_int_times_p_int_area": 3004.3481510386255, "p_int_times_p_int_area_std": 0.5351249069435645, "global_electrophilicity_index": 1.805599744, "p_int_atom_times_p_int_atom_area": 484.87534983905516, "global_electrophilicity_index_std": 0.07751115291062612, "p_int_atom_times_p_int_atom_area_std": 0.3141406745960042}} \\x0400000000000000001801008010001040000011020040040c08040004002008908000004400000000160000000400008081000800000001000004000000000008200000000000000000000040000004000000200020800010008800000008010000000100018800000402200200080020000000000200800000400000221800 \\x00000000002008000102000000000000000000000080000000004000000040010000000000000000080002001000100020010000000000000000000000000000 phal (-12.83592700958252, -2.6724064350128174, -1.3287086486816406, 5.026537895202637) (0.47343710064888, 5.320948600769043) -663 C1CCN(P(N2CCCCC2)N2CCCCC2)CC1 283.3999938964844 {"max_data": {"pyr_P": 0.9148727706074957, "pyr_alpha": 19.80738712876195, "qpole_amp": 3.7771868382221196, "vbur_vbur": 64.76450801476348, "vbur_vtot": 314.60466831498, "sterimol_L": 7.557078092854142, "sterimol_B1": 4.145157909680853, "sterimol_B5": 6.473905907939597, "dipolemoment": 1.2540790048567327, "qpoletens_xx": 2.0041841853709736, "qpoletens_yy": 1.4238361662893921, "qpoletens_zz": -2.1733495384206214, "sterimol_burL": 7.26093288864323, "vbur_far_vbur": 1.266590536576315, "vbur_far_vtot": 2.446258423395154, "sterimol_burB1": 4.099146359029024, "sterimol_burB5": 6.101914087038512, "vbur_near_vbur": 63.525110999203676, "vbur_near_vtot": 315.0643345911243, "vbur_ovbur_max": 19.232094786593954, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 97.97016946558544, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 20.49868532317027, "vbur_qvbur_min": 14.179329400796947, "vbur_qvtot_max": 97.97016946558544, "vbur_qvtot_min": 60.67616891866846, "vbur_max_delta_qvbur": 7.8777538575497985, "vbur_max_delta_qvtot": 45.118162116483745}, "min_data": {"pyr_P": 0.9074319664249457, "pyr_alpha": 19.065328925181753, "qpole_amp": 2.662380594066114, "vbur_vbur": 54.547065445140014, "vbur_vtot": 313.98541432731025, "sterimol_L": 7.2092021013128935, "sterimol_B1": 3.8621464202681883, "sterimol_B5": 5.98867443745491, "dipolemoment": 0.8729129167749072, "qpoletens_xx": 1.0873664353898473, "qpoletens_yy": 0.7642609160891962, "qpoletens_zz": -3.0651187679906338, "sterimol_burL": 6.772473893339099, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.79074016632942, "sterimol_burB5": 5.8897241885897715, "vbur_near_vbur": 54.54706544514001, "vbur_near_vtot": 309.84101296575574, "vbur_ovbur_max": 16.42593259862182, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 94.85511011642554, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.42593259862182, "vbur_qvbur_min": 10.714247280501874, "vbur_qvtot_max": 94.85511011642554, "vbur_qvtot_min": 48.98931886441358, "vbur_max_delta_qvbur": 2.7862899995369954, "vbur_max_delta_qvtot": 32.56755463904648}, "delta_data": {"pyr_P": 0.007440804182549998, "pyr_alpha": 0.7420582035801964, "qpole_amp": 1.1148062441560058, "vbur_vbur": 10.217442569623465, "vbur_vtot": 0.6192539876697651, "sterimol_L": 0.3478759915412484, "sterimol_B1": 0.2830114894126643, "sterimol_B5": 0.4852314704846865, "dipolemoment": 0.3811660880818255, "qpoletens_xx": 0.9168177499811263, "qpoletens_yy": 0.6595752502001959, "qpoletens_zz": 0.8917692295700124, "sterimol_burL": 0.4884589953041303, "vbur_far_vbur": 1.266590536576315, "vbur_far_vtot": 2.446258423395154, "sterimol_burB1": 0.30840619269960357, "sterimol_burB5": 0.2121898984487407, "vbur_near_vbur": 8.97804555406367, "vbur_near_vtot": 5.2233216253685555, "vbur_ovbur_max": 2.8061621879721343, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 3.115059349159907, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 4.072752724548451, "vbur_qvbur_min": 3.4650821202950723, "vbur_qvtot_max": 3.115059349159907, "vbur_qvtot_min": 11.686850054254876, "vbur_max_delta_qvbur": 5.091463858012803, "vbur_max_delta_qvtot": 12.550607477437268}, "vburminconf_data": {"pyr_P": 0.9146622600108739, "pyr_alpha": 19.111967701153862, "qpole_amp": 3.4629997172846143, "vbur_vbur": 54.547065445140014, "vbur_vtot": 314.11504685537795, "sterimol_L": 7.240397856909282, "sterimol_B1": 3.9543137569042432, "sterimol_B5": 6.439885998788744, "dipolemoment": 1.1667871437433417, "qpoletens_xx": 1.4894115776730106, "qpoletens_yy": 1.3367416366770122, "qpoletens_zz": -2.8261532143500228, "sterimol_burL": 6.772473893339099, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.8422875585054044, "sterimol_burB5": 6.073299557798533, "vbur_near_vbur": 54.54706544514001, "vbur_near_vtot": 314.24988844528366, "vbur_ovbur_max": 16.42593259862182, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 96.74410942324094, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.42593259862182, "vbur_qvbur_min": 10.849168980929905, "vbur_qvtot_max": 96.74410942324094, "vbur_qvtot_min": 58.64436718682983, "vbur_max_delta_qvbur": 5.5757177130374345, "vbur_max_delta_qvtot": 38.090324816397164}, "boltzmann_averaged_data": {"nbo_P": 1.3022525882370597, "nmr_P": 159.7127765178908, "pyr_P": 0.9128771132585792, "fmo_mu": -0.08800878474226471, "vmin_r": 1.7985543065634844, "volume": 396.2353245626967, "Pint_dP": 3.777704933464455, "fmo_eta": 0.2398834611738659, "fukui_m": 0.2304107487639411, "fukui_p": 0.15080058005066205, "nuesp_P": -54.15363257258533, "somo_ra": 0.10910529478790718, "somo_rc": -0.3662175101652527, "nbo_P_ra": 1.151452008186398, "nbo_P_rc": 1.5326633370010012, "efg_amp_P": 1.8968747732008222, "fmo_omega": 0.016150259698344282, "pyr_alpha": 19.34718825119975, "qpole_amp": 3.428568552033046, "vbur_vbur": 55.641906460781655, "vbur_vtot": 314.24157338922186, "vmin_vmin": -0.05988752671989477, "E_solv_cds": -8.109316724674253, "Pint_P_int": 18.84920537845988, "Pint_P_max": 34.714438967019, "Pint_P_min": 12.68978491122869, "fmo_e_homo": -0.20795051532919764, "fmo_e_lumo": 0.03193294584466823, "nbo_lp_P_e": -0.3175418243016063, "sphericity": 0.7879868203930127, "sterimol_L": 7.323029790011887, "E_oxidation": 0.25895166327490504, "E_reduction": 0.07102660685717699, "sterimol_B1": 4.020509865312577, "sterimol_B5": 6.430805348965898, "E_solv_total": -11.380498984521235, "dipolemoment": 1.157814498300182, "efgtens_xx_P": -0.8312594133625009, "efgtens_yy_P": -0.7159498875924392, "efgtens_zz_P": 1.5472091684205018, "nbo_bd_e_avg": -0.5598807137160884, "nbo_bd_e_max": -0.5324265303217752, "nbo_lp_P_occ": 1.9451550470101862, "qpoletens_xx": 1.607020175262796, "qpoletens_yy": 1.1788569710064802, "qpoletens_zz": -2.785877146269275, "surface_area": 331.10636197308037, "E_solv_elstat": -3.271182259846982, "nbo_bds_e_avg": 0.23356639043880897, "nbo_bds_e_min": 0.21286402082856473, "nmrtens_sxx_P": 102.53211281614529, "nmrtens_syy_P": 119.12420132256516, "nmrtens_szz_P": 257.48200699361263, "spindens_P_ra": 0.2164031739802831, "spindens_P_rc": 0.2466752188912829, "sterimol_burL": 6.876290059931383, "vbur_far_vbur": 0.000054563293703566675, "vbur_far_vtot": 0.0005339202205143374, "nbo_bd_occ_avg": 1.9651683957519928, "nbo_bd_occ_min": 1.958837726310861, "sterimol_burB1": 3.8740852340928282, "sterimol_burB5": 6.067040392450841, "vbur_near_vbur": 55.64185189748795, "vbur_near_vtot": 313.4101952492043, "vbur_ovbur_max": 16.959497054815586, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 96.34861568762257, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.959551684306774, "vbur_qvbur_min": 11.127886466469239, "vbur_qvtot_max": 96.34861568762257, "vbur_qvtot_min": 53.94193002378312, "nbo_bds_occ_avg": 0.08530375126428495, "nbo_bds_occ_max": 0.09198455553521713, "nbo_lp_P_percent_s": 56.36882280508038, "vbur_max_delta_qvbur": 5.673046167051419, "vbur_max_delta_qvtot": 36.28980360192966, "vbur_ratio_vbur_vtot": 0.1770669326812732}} {"max_data": {"B1": 4.243859760831963, "B5": 6.428153138823957, "lval": 7.353202681057145, "sasa": 496.8405442426515, "vbur": 75.94995977913362, "vtot": 311.1774013265311, "alpha": 218.326969, "p_int": 19.34564010624183, "sasa_P": 10.86996917500453, "pyr_val": 0.9604677126492112, "dip_norm": 0.5888726517677655, "far_vbur": 4.2893777161941635, "far_vtot": 6.533933347350427, "near_vbur": 71.96363592332274, "near_vtot": 312.7466272956368, "ovbur_max": 21.58675959345541, "ovbur_min": 0.0, "ovtot_max": 96.84618656232115, "ovtot_min": 0.0, "pyr_alpha": 18.069637372725005, "qvbur_max": 25.503147943023997, "qvbur_min": 16.796177415858125, "qvtot_max": 96.84618656232115, "qvtot_min": 55.975637247603316, "cone_angle": 204.35300530262003, "p_int_area": 385.0067303518057, "p_int_atom": 31.966374313764277, "sasa_volume": 828.7251085501074, "EA_delta_SCC": 1.0906, "IP_delta_SCC": 5.9616, "HOMO_LUMO_gap": 5.291633945329, "sasa_volume_P": 15.080317219203978, "max_delta_qvbur": 10.87497122067705, "max_delta_qvtot": 46.60180340690254, "nucleophilicity": -5.6474, "p_int_atom_area": 15.097899149840252, "p_int_times_p_int_area": 7318.576590317539, "global_electrophilicity_index": 1.2668, "p_int_atom_times_p_int_atom_area": 424.43603332771744}, "min_data": {"B1": 3.803446878682911, "B5": 5.942184103233057, "lval": 6.660077182859471, "sasa": 480.89070247876083, "vbur": 60.237782710031084, "vtot": 309.6492945632687, "alpha": 218.22873, "p_int": 18.827395198180565, "sasa_P": 2.2699935627654297, "pyr_val": 0.9274176733297198, "dip_norm": 0.2095256547537795, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 60.237782710031084, "near_vtot": 301.353522674748, "ovbur_max": 17.740306750129125, "ovbur_min": 0.0, "ovtot_max": 93.50211275066152, "ovtot_min": 0.0, "pyr_alpha": 13.487992137218066, "qvbur_max": 17.740306750129125, "qvbur_min": 11.877380143483295, "qvtot_max": 93.50211275066152, "qvtot_min": 48.15811181758455, "cone_angle": 170.8632877847831, "p_int_area": 370.00714397713955, "p_int_atom": 27.671898086033796, "sasa_volume": 810.7082682764442, "EA_delta_SCC": 0.9521, "IP_delta_SCC": 5.6474, "HOMO_LUMO_gap": 4.599955928672, "sasa_volume_P": 2.9560247292486252, "max_delta_qvbur": 4.650711165112693, "max_delta_qvtot": 27.638427185792565, "nucleophilicity": -5.9616, "p_int_atom_area": 8.298845228057887, "p_int_times_p_int_area": 6968.131195251414, "global_electrophilicity_index": 1.1756, "p_int_atom_times_p_int_atom_area": 240.20381382252629}, "boltzmann_averaged_data": {"B1": 4.101931790761259, "B5": 6.337799389934634, "lval": 7.083008237581559, "sasa": 487.86682388014935, "vbur": 71.93137688891754, "vtot": 310.5685120285772, "alpha": 218.26706627187, "p_int": 18.970587968775625, "B1_std": 0.0738565969740258, "B5_std": 0.1453948015883676, "sasa_P": 3.5616453999066535, "pyr_val": 0.9312304068729307, "dip_norm": 0.3811352436979586, "far_vbur": 1.5169859854763112, "far_vtot": 2.895439492697334, "lval_std": 0.1376376050503592, "sasa_std": 2.2921239093331462, "vbur_std": 1.701060953241029, "vtot_std": 0.19374255357262465, "alpha_std": 0.017377137268044848, "near_vbur": 70.41439090344124, "near_vtot": 307.524543062721, "ovbur_max": 20.377292617317607, "ovbur_min": 0.0, "ovtot_max": 95.16236400758154, "ovtot_min": 0.0, "p_int_std": 0.10127015699659993, "pyr_alpha": 17.4113601251677, "qvbur_max": 21.6724952789455, "qvbur_min": 15.920592220932734, "qvtot_max": 95.16239593538926, "qvtot_min": 53.62928230202807, "cone_angle": 193.19056172403717, "p_int_area": 375.5486228193849, "p_int_atom": 30.100570181305823, "sasa_P_std": 1.0682886555904936, "pyr_val_std": 0.0050955316307822645, "sasa_volume": 818.3065423435196, "EA_delta_SCC": 1.0716118630000004, "IP_delta_SCC": 5.792955388, "dip_norm_std": 0.03366319475774371, "far_vbur_std": 0.3591379646805009, "far_vtot_std": 0.6277258542278863, "HOMO_LUMO_gap": 5.0113271499927095, "near_vbur_std": 1.4390518633339677, "near_vtot_std": 0.9783281241480676, "ovbur_max_std": 0.30678152612260773, "ovbur_min_std": 0.0, "ovtot_max_std": 0.6472220544923856, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.5740154448367594, "qvbur_max_std": 0.5526574530031989, "qvbur_min_std": 0.6488891577321935, "qvtot_max_std": 0.6472259357942681, "qvtot_min_std": 0.7949593824706014, "sasa_volume_P": 4.621304601971852, "cone_angle_std": 3.2854415023228025, "p_int_area_std": 1.9146165304114167, "p_int_atom_std": 0.4886161262858779, "max_delta_qvbur": 5.728176971283359, "max_delta_qvtot": 34.03178975055619, "nucleophilicity": -5.792955388, "p_int_atom_area": 9.365938743585952, "sasa_volume_std": 2.3521588899204207, "EA_delta_SCC_std": 0.02205665555267232, "IP_delta_SCC_std": 0.03305731704130659, "HOMO_LUMO_gap_std": 0.0571103680998247, "sasa_volume_P_std": 1.5562870981563772, "max_delta_qvbur_std": 0.40713935103676124, "max_delta_qvtot_std": 3.8366203423341805, "nucleophilicity_std": 0.03305731704130659, "p_int_atom_area_std": 0.8169954359657373, "p_int_times_p_int_area": 7124.444069030838, "p_int_times_p_int_area_std": 60.92261936570697, "global_electrophilicity_index": 1.2476441829999998, "p_int_atom_times_p_int_atom_area": 281.71169538387716, "global_electrophilicity_index_std": 0.014535041863115184, "p_int_atom_times_p_int_atom_area_std": 21.116579017549117}} {"max_data": {"pyr_P": "0.9355262", "pyr_alpha": "21.362095", "qpole_amp": "8.497289", "vbur_vbur": "67.06443", "sterimol_L": "7.80516", "sterimol_B1": "4.347053", "sterimol_B5": "6.561822", "dipolemoment": "2.2610934", "qpoletens_xx": "4.0453153", "qpoletens_yy": "2.3384662", "qpoletens_zz": "-2.5205152", "sterimol_burL": "7.2242527", "vbur_far_vbur": "1.854966", "vbur_far_vtot": "7.7446866", "sterimol_burB1": "4.368359", "sterimol_burB5": "6.232061", "vbur_near_vbur": "64.370895", "vbur_near_vtot": "323.37402", "vbur_ovbur_max": "19.970434", "vbur_ovbur_min": "-0.03895254", "vbur_ovtot_max": "109.52577", "vbur_ovtot_min": "0.3620723", "vbur_qvbur_max": "20.452621", "vbur_qvbur_min": "14.456011", "vbur_qvtot_max": "113.564384", "vbur_qvtot_min": "64.351654", "vbur_max_delta_qvbur": "11.113522", "vbur_max_delta_qvtot": "78.1779"}, "min_data": {"pyr_P": "0.9027844", "pyr_alpha": "17.92484", "qpole_amp": "2.5711014", "vbur_vbur": "52.26607", "sterimol_L": "6.513893", "sterimol_B1": "3.5966787", "sterimol_B5": "6.155138", "dipolemoment": "0.91997576", "qpoletens_xx": "1.3137275", "qpoletens_yy": "-0.28800136", "qpoletens_zz": "-6.1325965", "sterimol_burL": "6.5294557", "vbur_far_vbur": "-0.99524516", "vbur_far_vtot": "-2.1638818", "sterimol_burB1": "3.5015843", "sterimol_burB5": "5.718127", "vbur_near_vbur": "54.078804", "vbur_near_vtot": "307.85117", "vbur_ovbur_max": "15.247152", "vbur_ovbur_min": "-0.01806493", "vbur_ovtot_max": "86.804565", "vbur_ovtot_min": "-0.034354765", "vbur_qvbur_max": "15.237133", "vbur_qvbur_min": "9.935051", "vbur_qvtot_max": "87.19508", "vbur_qvtot_min": "39.956642", "vbur_max_delta_qvbur": "2.0669906", "vbur_max_delta_qvtot": "26.139883"}, "delta_data": {"pyr_P": "0.05117452", "pyr_alpha": "5.811121", "qpole_amp": "5.4549074", "vbur_vbur": "14.9322815", "sterimol_L": "1.1201897", "sterimol_B1": "0.7454835", "sterimol_B5": "0.6002078", "dipolemoment": "1.630546", "qpoletens_xx": "3.6964254", "qpoletens_yy": "2.7290177", "qpoletens_zz": "3.5598338", "sterimol_burL": "0.7797474", "vbur_far_vbur": "4.240897", "vbur_far_vtot": "12.933536", "sterimol_burB1": "0.8904521", "sterimol_burB5": "0.31139404", "vbur_near_vbur": "10.342997", "vbur_near_vtot": "17.84975", "vbur_ovbur_max": "4.6915073", "vbur_ovbur_min": "-0.0050038802", "vbur_ovtot_max": "24.043966", "vbur_ovtot_min": "0.29607058", "vbur_qvbur_max": "5.241013", "vbur_qvbur_min": "4.1686783", "vbur_qvtot_max": "30.937416", "vbur_qvtot_min": "23.2106", "vbur_max_delta_qvbur": "8.049176", "vbur_max_delta_qvtot": "58.37672"}, "vburminconf_data": {"pyr_P": "0.9058186", "pyr_alpha": "19.691313", "qpole_amp": "5.1802936", "vbur_vbur": "51.695827", "sterimol_L": "7.7622576", "sterimol_B1": "3.8644924", "sterimol_B5": "6.3186665", "dipolemoment": "1.3364235", "qpoletens_xx": "3.7521577", "qpoletens_yy": "0.6308963", "qpoletens_zz": "-4.407189", "sterimol_burL": "6.9391413", "vbur_far_vbur": "-0.7047173", "vbur_far_vtot": "-0.6943672", "sterimol_burB1": "3.868073", "sterimol_burB5": "5.893022", "vbur_near_vbur": "54.26205", "vbur_near_vtot": "319.405", "vbur_ovbur_max": "15.927532", "vbur_ovbur_min": "-0.019098422", "vbur_ovtot_max": "96.069305", "vbur_ovtot_min": "0.061458953", "vbur_qvbur_max": "15.404622", "vbur_qvbur_min": "11.195265", "vbur_qvtot_max": "95.96173", "vbur_qvtot_min": "61.071953", "vbur_max_delta_qvbur": "3.8801951", "vbur_max_delta_qvtot": "42.439644"}, "boltzmann_averaged_data": {"nbo_P": "1.2311289", "nmr_P": "190.00992", "pyr_P": "0.923022", "fmo_mu": "-0.09588316", "vmin_r": "1.7862588", "volume": "394.27283", "Pint_dP": "3.656321", "fmo_eta": "0.24378052", "fukui_m": "0.24472213", "fukui_p": "0.17441228", "nuesp_P": "-54.153336", "somo_ra": "0.10985392", "somo_rc": "-0.38769153", "nbo_P_ra": "1.0379616", "nbo_P_rc": "1.5329112", "efg_amp_P": "1.8926289", "fmo_omega": "0.01807784", "pyr_alpha": "18.694565", "qpole_amp": "4.6752505", "vbur_vbur": "55.147873", "vbur_vtot": "314.54074", "vmin_vmin": "-0.057018455", "E_solv_cds": "-7.9164443", "Pint_P_int": "18.742928", "Pint_P_max": "33.484962", "Pint_P_min": "12.3105345", "fmo_e_homo": "-0.21542624", "fmo_e_lumo": "0.026862614", "nbo_lp_P_e": "-0.3181333", "sphericity": "0.80195147", "sterimol_L": "7.293387", "E_oxidation": "0.2682624", "E_reduction": "0.0686678", "sterimol_B1": "4.1685743", "sterimol_B5": "6.395262", "E_solv_total": "-11.793725", "dipolemoment": "1.6498985", "efgtens_xx_P": "-0.85148007", "efgtens_yy_P": "-0.6732374", "efgtens_zz_P": "1.5384825", "nbo_bd_e_avg": "-0.5605545", "nbo_bd_e_max": "-0.5306456", "nbo_lp_P_occ": "1.9399053", "qpoletens_xx": "2.5356085", "qpoletens_yy": "0.6200446", "qpoletens_zz": "-4.2172303", "surface_area": "324.47028", "E_solv_elstat": "-3.7931306", "nbo_bds_e_avg": "0.23198655", "nbo_bds_e_min": "0.20583536", "nmrtens_sxx_P": "155.14905", "nmrtens_syy_P": "171.68347", "nmrtens_szz_P": "286.20447", "spindens_P_ra": "0.24076302", "spindens_P_rc": "0.29120684", "sterimol_burL": "6.9867125", "vbur_far_vbur": "-0.35197818", "vbur_far_vtot": "-6.7854543", "nbo_bd_occ_avg": "1.9654928", "nbo_bd_occ_min": "1.9606888", "sterimol_burB1": "3.967574", "sterimol_burB5": "6.181781", "vbur_near_vbur": "56.17647", "vbur_near_vtot": "328.13577", "vbur_ovbur_max": "16.445581", "vbur_ovbur_min": "-0.03364202", "vbur_ovtot_max": "102.29833", "vbur_ovtot_min": "0.038619444", "vbur_qvbur_max": "17.148878", "vbur_qvbur_min": "11.509747", "vbur_qvtot_max": "105.595535", "vbur_qvtot_min": "54.460415", "nbo_bds_occ_avg": "0.082869574", "nbo_bds_occ_max": "0.088312045", "nbo_lp_P_percent_s": "55.898106", "vbur_max_delta_qvbur": "5.638459", "vbur_max_delta_qvtot": "47.770096", "vbur_ratio_vbur_vtot": "0.17309842"}} C1CCN(P(N2CCCCC2)N2CCCCC2)CC1 {"max_data": {"B1": 4.374652179678982, "B5": 6.448301186929664, "lval": 7.642145986911208, "sasa": 497.9504971689849, "vbur": 63.04685887742998, "vtot": 311.03346545380924, "alpha": 218.286575, "p_int": 19.168304036597316, "sasa_P": 10.019971585422756, "pyr_val": 0.941592818727352, "dip_norm": 0.6753339914442335, "far_vbur": 0.8392260749075539, "far_vtot": 1.304620734195253, "near_vbur": 62.207632802522426, "near_vtot": 311.56750280523755, "ovbur_max": 17.856865927199618, "ovbur_min": 0.0, "ovtot_max": 97.09099923618145, "ovtot_min": 0.0, "pyr_alpha": 22.38970341198854, "qvbur_max": 18.36972630630979, "qvbur_min": 14.022069001580379, "qvtot_max": 97.09099923618145, "qvtot_min": 56.662508617068895, "cone_angle": 188.93251489254192, "p_int_area": 389.1066536499821, "p_int_atom": 30.03369828642001, "sasa_volume": 830.1948231719407, "EA_delta_SCC": 1.0825, "IP_delta_SCC": 5.9243, "HOMO_LUMO_gap": 5.617561343566, "sasa_volume_P": 10.610433130541084, "max_delta_qvbur": 5.61815233479779, "max_delta_qvtot": 45.786747231169144, "nucleophilicity": -5.5534, "p_int_atom_area": 14.797940888585146, "p_int_times_p_int_area": 7386.370777033705, "global_electrophilicity_index": 1.2366, "p_int_atom_times_p_int_atom_area": 420.3129668172555}, "min_data": {"B1": 3.7552605679834294, "B5": 5.899441818042236, "lval": 6.642428994669609, "sasa": 482.55065975838664, "vbur": 54.712877716889686, "vtot": 309.5815703874528, "alpha": 218.166832, "p_int": 18.848139455157305, "sasa_P": 5.02998573599565, "pyr_val": 0.8902640504645767, "dip_norm": 0.37106603185956, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.712877716889686, "near_vtot": 307.4378024747715, "ovbur_max": 15.001166088972525, "ovbur_min": 0.0, "ovtot_max": 92.06834168238522, "ovtot_min": 0.0, "pyr_alpha": 16.611400413578295, "qvbur_max": 15.001166088972525, "qvbur_min": 11.655917707049358, "qvtot_max": 92.06834168238522, "qvtot_min": 47.08756192120194, "cone_angle": 164.4059831716424, "p_int_area": 368.60632072400193, "p_int_atom": 27.01750507832283, "sasa_volume": 812.1175662030602, "EA_delta_SCC": 0.9372, "IP_delta_SCC": 5.5534, "HOMO_LUMO_gap": 4.812829243473, "sasa_volume_P": 4.697357145111427, "max_delta_qvbur": 2.587613730964959, "max_delta_qvtot": 25.398172430061535, "nucleophilicity": -5.9243, "p_int_atom_area": 10.498539143928653, "p_int_times_p_int_area": 6985.0709679219835, "global_electrophilicity_index": 1.1542, "p_int_atom_times_p_int_atom_area": 306.31308247084297}, "boltzmann_averaged_data": {"B1": 4.1514653456915696, "B5": 6.31065434804588, "lval": 7.298029727318244, "sasa": 489.732365205299, "vbur": 58.540148066767955, "vtot": 310.24783934171614, "alpha": 218.2278322091, "p_int": 19.006787808618057, "B1_std": 0.11145640966216676, "B5_std": 0.11414424228109402, "sasa_P": 7.210032553831546, "pyr_val": 0.9168336975119379, "dip_norm": 0.5397467058881741, "far_vbur": 0.17493888993884393, "far_vtot": 0.1617617910023617, "lval_std": 0.19468721854550383, "sasa_std": 2.2483145441327985, "vbur_std": 2.50013126148488, "vtot_std": 0.353855792986186, "alpha_std": 0.019910427191258594, "near_vbur": 58.36520917682911, "near_vtot": 310.1165138812541, "ovbur_max": 16.452227952285423, "ovbur_min": 0.0, "ovtot_max": 94.78771125623832, "ovtot_min": 0.0, "p_int_std": 0.07460018104194185, "pyr_alpha": 19.59215186255318, "qvbur_max": 16.593346147964667, "qvbur_min": 12.773518218101529, "qvtot_max": 94.78771125623832, "qvtot_min": 52.0641184036895, "cone_angle": 176.56763704064286, "p_int_area": 378.3034584051094, "p_int_atom": 28.52587883868563, "sasa_P_std": 1.682321089273595, "pyr_val_std": 0.014267220929747327, "sasa_volume": 820.1260607931176, "EA_delta_SCC": 1.02871012, "IP_delta_SCC": 5.704326136000001, "dip_norm_std": 0.08744757128053866, "far_vbur_std": 0.21481493189163994, "far_vtot_std": 0.2615813821800732, "HOMO_LUMO_gap": 5.167868898746719, "near_vbur_std": 2.322569357404826, "near_vtot_std": 0.789832608427646, "ovbur_max_std": 0.8045566804521904, "ovbur_min_std": 0.0, "ovtot_max_std": 1.636961776702045, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.6182912115484578, "qvbur_max_std": 0.9282470139379881, "qvbur_min_std": 0.8194696043125637, "qvtot_max_std": 1.636961776702045, "qvtot_min_std": 2.584826227015839, "sasa_volume_P": 7.346725075223869, "cone_angle_std": 7.200778674575332, "p_int_area_std": 1.884553802950298, "p_int_atom_std": 0.6815148485270285, "max_delta_qvbur": 3.651575223998589, "max_delta_qvtot": 34.13127694321397, "nucleophilicity": -5.704326136000001, "p_int_atom_area": 12.316934116978892, "sasa_volume_std": 1.9716260554825886, "EA_delta_SCC_std": 0.04367110358790581, "IP_delta_SCC_std": 0.06383952905770444, "HOMO_LUMO_gap_std": 0.16650061685854253, "sasa_volume_P_std": 2.0426722878329704, "max_delta_qvbur_std": 0.4956378403819632, "max_delta_qvtot_std": 3.3538670527048744, "nucleophilicity_std": 0.06383952905770444, "p_int_atom_area_std": 0.8534719224778413, "p_int_times_p_int_area": 7190.392297463233, "p_int_times_p_int_area_std": 54.01345263598803, "global_electrophilicity_index": 1.212378773, "p_int_atom_times_p_int_atom_area": 350.96729295052717, "global_electrophilicity_index_std": 0.023669444820579734, "p_int_atom_times_p_int_atom_area_std": 19.7581890913542}} \\x000000080000040000080a2000000308004011004080140480000200250020000010911820000400300a000020000020020000180100010143000010440004400a020600004502100000002400002001004000c082000104200020200010000000642302200010000094200000080000810b082012800050c080000000000081 \\x14000000002000000000000000010000000000000000000000000000080000000000000021000000000000000000000000000040800000000041020000000000 pn3 (-3.671345472335816, 1.0006061792373655, 2.608505249023437, 0.9181367754936218) (1.1943562030792236, 5.643921852111816) -674 CN1CCN(P(N2CCN(C)CC2)N2CCN(C)CC2)CC1 328.44500732421875 {"max_data": {"pyr_P": 0.9262358484372368, "pyr_alpha": 20.085174700831708, "qpole_amp": 11.815908934464058, "vbur_vbur": 64.49780232787086, "vbur_vtot": 356.71071412852365, "sterimol_L": 7.939651192521284, "sterimol_B1": 4.471482175573712, "sterimol_B5": 7.512698187530061, "dipolemoment": 1.953746774612311, "qpoletens_xx": 6.507076413556356, "qpoletens_yy": 2.915036943520122, "qpoletens_zz": -1.1575456073685255, "sterimol_burL": 7.079469470319182, "vbur_far_vbur": 1.9589794178426407, "vbur_far_vtot": 12.439913060965003, "sterimol_burB1": 4.058234804219259, "sterimol_burB5": 7.005705573739617, "vbur_near_vbur": 62.538822910028216, "vbur_near_vtot": 357.36142990149733, "vbur_ovbur_max": 18.82314606669194, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 130.80096423789277, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 20.762253296099445, "vbur_qvbur_min": 13.935633616302908, "vbur_qvtot_max": 130.80096423789277, "vbur_qvtot_min": 62.037063658530364, "vbur_max_delta_qvbur": 8.171653065458914, "vbur_max_delta_qvtot": 80.36396118770881}, "min_data": {"pyr_P": 0.9007346136394847, "pyr_alpha": 18.020258756688055, "qpole_amp": 1.6469646899671615, "vbur_vbur": 54.188320148653084, "vbur_vtot": 355.745061369432, "sterimol_L": 7.210489009296374, "sterimol_B1": 3.6954078053196255, "sterimol_B5": 7.0306440304502535, "dipolemoment": 0.197078731814455, "qpoletens_xx": 1.1531261348658735, "qpoletens_yy": -2.3298886284403886, "qpoletens_zz": -9.422113357076478, "sterimol_burL": 6.751240972728045, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.69056993497796, "sterimol_burB5": 5.8395169957617705, "vbur_near_vbur": 54.188320148653084, "vbur_near_vtot": 343.45206678722496, "vbur_ovbur_max": 16.247082902705596, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 109.15362707190546, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.247082902705596, "vbur_qvbur_min": 10.63475852676133, "vbur_qvtot_max": 109.15362707190546, "vbur_qvtot_min": 41.75197039058562, "vbur_max_delta_qvbur": 3.022664451449671, "vbur_max_delta_qvtot": 40.1830659830831}, "delta_data": {"pyr_P": 0.025501234797752126, "pyr_alpha": 2.064915944143653, "qpole_amp": 10.168944244496897, "vbur_vbur": 10.309482179217774, "vbur_vtot": 0.9656527590916539, "sterimol_L": 0.7291621832249096, "sterimol_B1": 0.7760743702540864, "sterimol_B5": 0.4820541570798076, "dipolemoment": 1.7566680427978558, "qpoletens_xx": 5.3539502786904825, "qpoletens_yy": 5.244925571960511, "qpoletens_zz": 8.264567749707952, "sterimol_burL": 0.32822849759113737, "vbur_far_vbur": 1.9589794178426407, "vbur_far_vtot": 12.439913060965003, "sterimol_burB1": 0.36766486924129893, "sterimol_burB5": 1.166188577977847, "vbur_near_vbur": 8.350502761375132, "vbur_near_vtot": 13.909363114272367, "vbur_ovbur_max": 2.576063163986344, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 21.64733716598731, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 4.5151703933938485, "vbur_qvbur_min": 3.300875089541579, "vbur_qvtot_max": 21.64733716598731, "vbur_qvtot_min": 20.285093267944745, "vbur_max_delta_qvbur": 5.148988614009243, "vbur_max_delta_qvtot": 40.18089520462571}, "vburminconf_data": {"pyr_P": 0.9171670778906272, "pyr_alpha": 18.742938812056426, "qpole_amp": 8.950995097811921, "vbur_vbur": 54.188320148653084, "vbur_vtot": 355.81989212641037, "sterimol_L": 7.891788451905901, "sterimol_B1": 3.8317301553825214, "sterimol_B5": 7.486232978891346, "dipolemoment": 1.075765388298141, "qpoletens_xx": 5.356438168845937, "qpoletens_yy": 1.627774903963953, "qpoletens_zz": -6.98421307280989, "sterimol_burL": 6.751240972728045, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.8317301553825214, "sterimol_burB5": 5.9086995118170895, "vbur_near_vbur": 54.188320148653084, "vbur_near_vtot": 355.8198921264103, "vbur_ovbur_max": 16.247082902705596, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 109.73489030324583, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.247082902705596, "vbur_qvbur_min": 10.850214885584386, "vbur_qvtot_max": 109.73489030324583, "vbur_qvtot_min": 61.432321803596246, "vbur_max_delta_qvbur": 5.396868017121211, "vbur_max_delta_qvtot": 48.30256849964959}, "boltzmann_averaged_data": {"nbo_P": 1.302810177698861, "nmr_P": 162.2665208638223, "pyr_P": 0.9165612982802182, "fmo_mu": -0.09091527537793158, "vmin_r": 1.800289734330671, "volume": 450.47503173808656, "Pint_dP": 3.9846849861824447, "fmo_eta": 0.24345076747455688, "fukui_m": 0.2068877294294148, "fukui_p": 0.2205840785351266, "nuesp_P": -54.1487435502985, "somo_ra": 0.10927593056442277, "somo_rc": -0.3448167487036754, "nbo_P_ra": 1.0822260991637356, "nbo_P_rc": 1.5096979071282763, "efg_amp_P": 1.9115619093577214, "fmo_omega": 0.01698734371335433, "pyr_alpha": 18.783382044389086, "qpole_amp": 7.772500131467305, "vbur_vbur": 55.617392770065166, "vbur_vtot": 355.84789379027904, "vmin_vmin": -0.05536300747773505, "E_solv_cds": -7.639626379759558, "Pint_P_int": 18.620718124425007, "Pint_P_max": 37.2081418747909, "Pint_P_min": 12.357543055590735, "fmo_e_homo": -0.21264065911521, "fmo_e_lumo": 0.03081010835934686, "nbo_lp_P_e": -0.323614667260351, "sphericity": 0.7523867360858697, "sterimol_L": 7.755774095298955, "E_oxidation": 0.2622902574808427, "E_reduction": 0.07056103518312942, "sterimol_B1": 3.862045317560466, "sterimol_B5": 7.485818031991357, "E_solv_total": -14.63568080327504, "dipolemoment": 0.9743857007235475, "efgtens_xx_P": -0.8517472402184441, "efgtens_yy_P": -0.7067320786424466, "efgtens_zz_P": 1.5584793189312984, "nbo_bd_e_avg": -0.5649720939975514, "nbo_bd_e_max": -0.5386187260108452, "nbo_lp_P_occ": 1.9463295299988026, "qpoletens_xx": 4.765022589666863, "qpoletens_yy": 1.211552191762479, "qpoletens_zz": -5.976574781429343, "surface_area": 377.728374424766, "E_solv_elstat": -6.996054423515485, "nbo_bds_e_avg": 0.22851772198305928, "nbo_bds_e_min": 0.2073974569260071, "nmrtens_sxx_P": 106.31232043663256, "nmrtens_syy_P": 122.75362869860612, "nmrtens_szz_P": 257.7335354110737, "spindens_P_ra": 0.3146242314451196, "spindens_P_rc": 0.2265629056432737, "sterimol_burL": 6.772195074679394, "vbur_far_vbur": 0.0015613973303350596, "vbur_far_vtot": 0.9757915540768604, "nbo_bd_occ_avg": 1.9653800109733723, "nbo_bd_occ_min": 1.9591446469089115, "sterimol_burB1": 3.8601437740242632, "sterimol_burB5": 6.121424242710525, "vbur_near_vbur": 55.61583137273483, "vbur_near_vtot": 354.70378544687577, "vbur_ovbur_max": 16.380431937660695, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 110.0402128439166, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.38166759003205, "vbur_qvbur_min": 11.374742857485836, "vbur_qvtot_max": 110.0402128439166, "vbur_qvtot_min": 59.84866876872498, "nbo_bds_occ_avg": 0.08347813637686415, "nbo_bds_occ_max": 0.08959933762355729, "nbo_lp_P_percent_s": 56.490348367355736, "vbur_max_delta_qvbur": 4.898112120851933, "vbur_max_delta_qvtot": 48.68673923684815, "vbur_ratio_vbur_vtot": 0.15629431076713934}} {"max_data": {"B1": 4.50361029935994, "B5": 7.420737955847375, "lval": 7.813853120810497, "sasa": 558.9908739166247, "vbur": 91.23086789307534, "vtot": 353.37581573703494, "alpha": 247.388409, "p_int": 19.357541151576196, "sasa_P": 11.26996804069007, "pyr_val": 0.9652549156263464, "dip_norm": 0.8654946562515565, "far_vbur": 14.453337956741205, "far_vtot": 35.27319005770101, "near_vbur": 77.9547776247461, "near_vtot": 353.375815737035, "ovbur_max": 22.32108240899952, "ovbur_min": 0.16318284789869103, "ovtot_max": 128.20463058402925, "ovtot_min": 0.06723568162176548, "pyr_alpha": 18.939027802727733, "qvbur_max": 34.757946602421185, "qvbur_min": 17.227446371018953, "qvtot_max": 128.20463058402925, "qvtot_min": 68.20216211557087, "cone_angle": 233.00390661347362, "p_int_area": 430.9927751043718, "p_int_atom": 33.698416332655846, "sasa_volume": 937.2565244310416, "EA_delta_SCC": 1.08, "IP_delta_SCC": 5.653, "HOMO_LUMO_gap": 5.218626042489, "sasa_volume_P": 16.11972900160123, "max_delta_qvbur": 19.1506727926821, "max_delta_qvtot": 76.15162267773165, "nucleophilicity": -4.9264, "p_int_atom_area": 15.497843498180387, "p_int_times_p_int_area": 8207.91547065454, "global_electrophilicity_index": 1.23, "p_int_atom_times_p_int_atom_area": 428.72667340490233}, "min_data": {"B1": 3.683926511512021, "B5": 6.864844887993453, "lval": 6.138742935029499, "sasa": 524.3212113002239, "vbur": 59.57339540072927, "vtot": 349.28391120790684, "alpha": 246.991298, "p_int": 18.88879649959059, "sasa_P": 0.9499973060031519, "pyr_val": 0.9138211814075543, "dip_norm": 0.2122003770024926, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 59.573395400729275, "near_vtot": 313.5237649498879, "ovbur_max": 17.44890880745289, "ovbur_min": 0.0, "ovtot_max": 103.12225977377562, "ovtot_min": 0.0, "pyr_alpha": 12.567935299511216, "qvbur_max": 17.44890880745289, "qvbur_min": 11.79578871953395, "qvtot_max": 103.12225977377562, "qvtot_min": 38.27716989978012, "cone_angle": 170.29930245888198, "p_int_area": 401.99165769950537, "p_int_atom": 27.408183775929487, "sasa_volume": 898.711110364602, "EA_delta_SCC": 0.8795, "IP_delta_SCC": 4.9264, "HOMO_LUMO_gap": 4.407354135462, "sasa_volume_P": 1.0959671757122773, "max_delta_qvbur": 2.9955708507116796, "max_delta_qvtot": 33.64242793386356, "nucleophilicity": -5.653, "p_int_atom_area": 6.799053921782364, "p_int_times_p_int_area": 7712.007790117303, "global_electrophilicity_index": 1.0855, "p_int_atom_times_p_int_atom_area": 221.81986471704025}, "boltzmann_averaged_data": {"B1": 4.094794804653274, "B5": 7.3895123442277235, "lval": 6.961284815682105, "sasa": 547.8815575496908, "vbur": 72.15401447493159, "vtot": 351.7823071136209, "alpha": 247.17725769160077, "p_int": 19.00465966829951, "B1_std": 0.06905082891277359, "B5_std": 0.08640204053208374, "sasa_P": 3.5141776601441608, "pyr_val": 0.9314026628135066, "dip_norm": 0.35000293213572936, "far_vbur": 1.7897374487027014, "far_vtot": 13.23842027104116, "lval_std": 0.09026439998951064, "sasa_std": 2.1036479540394253, "vbur_std": 0.8202081145284317, "vtot_std": 0.14914927244389067, "alpha_std": 0.017161441762171967, "near_vbur": 70.36427702622888, "near_vtot": 338.30525529689925, "ovbur_max": 20.33800758177244, "ovbur_min": 0.0001192436154515785, "ovtot_max": 110.03348994701945, "ovtot_min": 0.00004949416518141102, "p_int_std": 0.05861410378043431, "pyr_alpha": 17.13292156886462, "qvbur_max": 21.906228625523156, "qvbur_min": 15.952963149061347, "qvtot_max": 110.0428621180461, "qvtot_min": 54.15986968574912, "cone_angle": 201.44509736091823, "p_int_area": 420.3129902041783, "p_int_atom": 29.704800951005012, "sasa_P_std": 0.26154736007642376, "pyr_val_std": 0.006475390677530804, "sasa_volume": 924.9117113191289, "EA_delta_SCC": 1.0114030560916831, "IP_delta_SCC": 5.515853090592719, "dip_norm_std": 0.028698952365255288, "far_vbur_std": 0.4212127335069143, "far_vtot_std": 1.1430951226513646, "HOMO_LUMO_gap": 4.927686410571439, "near_vbur_std": 0.4805167039939017, "near_vtot_std": 1.748477188885733, "ovbur_max_std": 0.10398560480277037, "ovbur_min_std": 0.004407565239351574, "ovtot_max_std": 2.7938997942982153, "ovtot_min_std": 0.0018205978936846985, "pyr_alpha_std": 0.8105007348703954, "qvbur_max_std": 0.3319924420397928, "qvbur_min_std": 0.18214204215616908, "qvtot_max_std": 2.789051713899516, "qvtot_min_std": 1.4715502565798648, "sasa_volume_P": 4.4479026188994455, "cone_angle_std": 1.2345670674938758, "p_int_area_std": 1.1714955879899653, "p_int_atom_std": 0.27719599025053593, "max_delta_qvbur": 5.917882410533371, "max_delta_qvtot": 46.80594027066831, "nucleophilicity": -5.515853090592719, "p_int_atom_area": 9.068481226648775, "sasa_volume_std": 1.754179275302593, "EA_delta_SCC_std": 0.015202647390346645, "IP_delta_SCC_std": 0.04771195827570268, "HOMO_LUMO_gap_std": 0.06060102164587143, "sasa_volume_P_std": 0.41389165326346716, "max_delta_qvbur_std": 0.21186290847094225, "max_delta_qvtot_std": 4.853617374107706, "nucleophilicity_std": 0.04771195827570268, "p_int_atom_area_std": 0.3750101689150694, "p_int_times_p_int_area": 7987.928077229833, "p_int_times_p_int_area_std": 38.36209869199522, "global_electrophilicity_index": 1.1822984209526286, "p_int_atom_times_p_int_atom_area": 269.44042715789675, "global_electrophilicity_index_std": 0.012920357319969248, "p_int_atom_times_p_int_atom_area_std": 12.907885141480216}} {"max_data": {"pyr_P": "0.93709004", "pyr_alpha": "19.983326", "qpole_amp": "10.655225", "vbur_vbur": "63.790356", "sterimol_L": "7.4180627", "sterimol_B1": "4.6300197", "sterimol_B5": "6.8951316", "dipolemoment": "1.8033208", "qpoletens_xx": "5.840436", "qpoletens_yy": "2.2444823", "qpoletens_zz": "-1.2314316", "sterimol_burL": "6.852207", "vbur_far_vbur": "0.72411203", "vbur_far_vtot": "8.61485", "sterimol_burB1": "4.2009463", "sterimol_burB5": "6.421891", "vbur_near_vbur": "62.447063", "vbur_near_vtot": "357.2428", "vbur_ovbur_max": "17.703741", "vbur_ovbur_min": "-0.106082045", "vbur_ovtot_max": "107.40377", "vbur_ovtot_min": "-0.1671797", "vbur_qvbur_max": "19.455933", "vbur_qvbur_min": "15.384545", "vbur_qvtot_max": "101.06614", "vbur_qvtot_min": "64.109436", "vbur_max_delta_qvbur": "5.7523193", "vbur_max_delta_qvtot": "60.83038"}, "min_data": {"pyr_P": "0.9102904", "pyr_alpha": "16.37751", "qpole_amp": "1.3684888", "vbur_vbur": "52.410015", "sterimol_L": "6.907883", "sterimol_B1": "3.6637707", "sterimol_B5": "6.6244655", "dipolemoment": "0.5214443", "qpoletens_xx": "1.0226525", "qpoletens_yy": "-1.490532", "qpoletens_zz": "-8.368945", "sterimol_burL": "6.510667", "vbur_far_vbur": "-0.16124073", "vbur_far_vtot": "-0.41878435", "sterimol_burB1": "3.57117", "sterimol_burB5": "5.4156613", "vbur_near_vbur": "53.851536", "vbur_near_vtot": "346.58725", "vbur_ovbur_max": "15.473634", "vbur_ovbur_min": "0.010262848", "vbur_ovtot_max": "97.673775", "vbur_ovtot_min": "0.015013677", "vbur_qvbur_max": "14.370423", "vbur_qvbur_min": "10.37339", "vbur_qvtot_max": "95.49824", "vbur_qvtot_min": "39.5339", "vbur_max_delta_qvbur": "2.2867541", "vbur_max_delta_qvtot": "29.638836"}, "delta_data": {"pyr_P": "0.027747372", "pyr_alpha": "2.9643147", "qpole_amp": "7.551933", "vbur_vbur": "10.511808", "sterimol_L": "0.505906", "sterimol_B1": "0.7482328", "sterimol_B5": "0.13924043", "dipolemoment": "1.5832278", "qpoletens_xx": "3.9588375", "qpoletens_yy": "4.1943226", "qpoletens_zz": "6.3715463", "sterimol_burL": "0.3077615", "vbur_far_vbur": "1.59018", "vbur_far_vtot": "8.891502", "sterimol_burB1": "0.44229886", "sterimol_burB5": "0.9778686", "vbur_near_vbur": "7.9739757", "vbur_near_vtot": "12.135275", "vbur_ovbur_max": "2.6925597", "vbur_ovbur_min": "0.12169405", "vbur_ovtot_max": "17.37421", "vbur_ovtot_min": "-0.07140649", "vbur_qvbur_max": "3.949947", "vbur_qvbur_min": "4.218584", "vbur_qvtot_max": "13.094183", "vbur_qvtot_min": "20.152327", "vbur_max_delta_qvbur": "4.56818", "vbur_max_delta_qvtot": "32.46664"}, "vburminconf_data": {"pyr_P": "0.91627985", "pyr_alpha": "18.741388", "qpole_amp": "6.795449", "vbur_vbur": "52.066196", "sterimol_L": "7.5190387", "sterimol_B1": "3.993921", "sterimol_B5": "6.7668324", "dipolemoment": "1.3938947", "qpoletens_xx": "4.112849", "qpoletens_yy": "1.0946573", "qpoletens_zz": "-5.549153", "sterimol_burL": "6.6627026", "vbur_far_vbur": "-0.2519967", "vbur_far_vtot": "-0.03391571", "sterimol_burB1": "3.8666728", "sterimol_burB5": "5.3631697", "vbur_near_vbur": "54.100807", "vbur_near_vtot": "355.0075", "vbur_ovbur_max": "15.247366", "vbur_ovbur_min": "0.008456771", "vbur_ovtot_max": "89.31228", "vbur_ovtot_min": "0.016109386", "vbur_qvbur_max": "14.741794", "vbur_qvbur_min": "10.646095", "vbur_qvtot_max": "96.30694", "vbur_qvtot_min": "61.847588", "vbur_max_delta_qvbur": "3.9607544", "vbur_max_delta_qvtot": "44.693676"}, "boltzmann_averaged_data": {"nbo_P": "1.3092855", "nmr_P": "167.08588", "pyr_P": "0.9200039", "fmo_mu": "-0.08888931", "vmin_r": "1.792017", "volume": "449.03925", "Pint_dP": "3.7500188", "fmo_eta": "0.24778381", "fukui_m": "0.21111126", "fukui_p": "0.25121456", "nuesp_P": "-54.14914", "somo_ra": "0.11199563", "somo_rc": "-0.34825632", "nbo_P_ra": "1.0753933", "nbo_P_rc": "1.4619547", "efg_amp_P": "1.9090846", "fmo_omega": "0.015714925", "pyr_alpha": "18.106451", "qpole_amp": "6.8366675", "vbur_vbur": "54.89402", "vbur_vtot": "355.63284", "vmin_vmin": "-0.056105386", "E_solv_cds": "-7.573964", "Pint_P_int": "18.238379", "Pint_P_max": "35.85235", "Pint_P_min": "12.346936", "fmo_e_homo": "-0.21274334", "fmo_e_lumo": "0.036022898", "nbo_lp_P_e": "-0.32335708", "sphericity": "0.7690193", "sterimol_L": "7.4682584", "E_oxidation": "0.26512888", "E_reduction": "0.07425384", "sterimol_B1": "3.9582157", "sterimol_B5": "7.072908", "E_solv_total": "-14.416302", "dipolemoment": "0.9060505", "efgtens_xx_P": "-0.8371188", "efgtens_yy_P": "-0.6760703", "efgtens_zz_P": "1.5430559", "nbo_bd_e_avg": "-0.5657244", "nbo_bd_e_max": "-0.53502315", "nbo_lp_P_occ": "1.9455949", "qpoletens_xx": "4.2568846", "qpoletens_yy": "0.850778", "qpoletens_zz": "-5.089995", "surface_area": "369.4922", "E_solv_elstat": "-6.869945", "nbo_bds_e_avg": "0.22913761", "nbo_bds_e_min": "0.21022466", "nmrtens_sxx_P": "111.50575", "nmrtens_syy_P": "138.63116", "nmrtens_szz_P": "256.16125", "spindens_P_ra": "0.35550946", "spindens_P_rc": "0.24801883", "sterimol_burL": "6.614936", "vbur_far_vbur": "-0.37390438", "vbur_far_vtot": "-1.0976856", "nbo_bd_occ_avg": "1.9651513", "nbo_bd_occ_min": "1.9597013", "sterimol_burB1": "3.8809266", "sterimol_burB5": "5.968409", "vbur_near_vbur": "55.77381", "vbur_near_vtot": "359.34143", "vbur_ovbur_max": "15.250077", "vbur_ovbur_min": "0.010011078", "vbur_ovtot_max": "92.809074", "vbur_ovtot_min": "-0.018924238", "vbur_qvbur_max": "15.042016", "vbur_qvbur_min": "11.640109", "vbur_qvtot_max": "97.284706", "vbur_qvtot_min": "60.566235", "nbo_bds_occ_avg": "0.08220973", "nbo_bds_occ_max": "0.084566295", "nbo_lp_P_percent_s": "56.348026", "vbur_max_delta_qvbur": "3.8621302", "vbur_max_delta_qvtot": "30.814407", "vbur_ratio_vbur_vtot": "0.15650813"}} CN1CCN(P(N2CCN(C)CC2)N2CCN(C)CC2)CC1 {"max_data": {"B1": 4.600427509968821, "B5": 7.440231803007197, "lval": 7.679347061940984, "sasa": 560.4208270231358, "vbur": 67.84909697273432, "vtot": 352.61254678737856, "alpha": 247.327307, "p_int": 19.473117380456912, "sasa_P": 10.179971131696966, "pyr_val": 0.9514092347048516, "dip_norm": 1.2388438158218331, "far_vbur": 3.3452483819231658, "far_vtot": 15.809291163678672, "near_vbur": 64.83021428660854, "near_vtot": 352.09281292458775, "ovbur_max": 19.98989886758965, "ovbur_min": 0.0, "ovtot_max": 127.85942531712271, "ovtot_min": 0.0, "pyr_alpha": 23.235651874621745, "qvbur_max": 22.903878294351987, "qvbur_min": 14.534929380690548, "qvtot_max": 127.85942531712271, "qvtot_min": 64.44382465297727, "cone_angle": 204.00137710105082, "p_int_area": 432.49307480310506, "p_int_atom": 31.188490753610665, "sasa_volume": 938.8934230974842, "EA_delta_SCC": 1.0598, "IP_delta_SCC": 5.6761, "HOMO_LUMO_gap": 5.622367741557, "sasa_volume_P": 11.686155013629277, "max_delta_qvbur": 9.49957293124523, "max_delta_qvtot": 76.18701062674114, "nucleophilicity": -4.9773, "p_int_atom_area": 15.39785741109535, "p_int_times_p_int_area": 8295.223816711834, "global_electrophilicity_index": 1.2186, "p_int_atom_times_p_int_atom_area": 438.62478801058535}, "min_data": {"B1": 3.6257491286170485, "B5": 6.992686296218569, "lval": 6.417202460298333, "sasa": 519.0610997879572, "vbur": 54.60797445752625, "vtot": 350.1318362460456, "alpha": 246.963086, "p_int": 18.90262917701885, "sasa_P": 4.969985906142818, "pyr_val": 0.8775292604330583, "dip_norm": 0.2006614063540869, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.60797445752624, "near_vtot": 331.0999468470426, "ovbur_max": 14.931230582730228, "ovbur_min": 0.0, "ovtot_max": 103.42104102367674, "ovtot_min": 0.0, "pyr_alpha": 15.085713719447494, "qvbur_max": 14.931230582730228, "qvbur_min": 11.760820966412803, "qvtot_max": 103.42104102367674, "qvtot_min": 36.13807056865926, "cone_angle": 164.69521859177289, "p_int_area": 405.1947742508655, "p_int_atom": 27.062778650009065, "sasa_volume": 898.5505677672019, "EA_delta_SCC": 0.8292, "IP_delta_SCC": 4.9773, "HOMO_LUMO_gap": 4.658663770359, "sasa_volume_P": 4.537200043612691, "max_delta_qvbur": 2.5526459778438113, "max_delta_qvtot": 28.889748635629765, "nucleophilicity": -5.6761, "p_int_atom_area": 10.198580882673546, "p_int_times_p_int_area": 7747.971224827497, "global_electrophilicity_index": 1.0659, "p_int_atom_times_p_int_atom_area": 299.70483663107814}, "boltzmann_averaged_data": {"B1": 4.209540176484614, "B5": 7.372481946836691, "lval": 7.084742081095523, "sasa": 550.7593695779008, "vbur": 60.58750779976473, "vtot": 351.55699357655425, "alpha": 247.13063407059357, "p_int": 19.02877476146331, "B1_std": 0.09685330248951173, "B5_std": 0.0971515164724726, "sasa_P": 5.693956951764873, "pyr_val": 0.9193354846587246, "dip_norm": 0.30876271896008545, "far_vbur": 0.23926051396635398, "far_vtot": 2.5522467688103068, "lval_std": 0.08076261846619605, "sasa_std": 1.9860739759320643, "vbur_std": 1.378097642245616, "vtot_std": 0.22025515136307172, "alpha_std": 0.02486595235112214, "near_vbur": 60.34824728579837, "near_vtot": 345.1078445724361, "ovbur_max": 16.956378414355708, "ovbur_min": 0.0, "ovtot_max": 110.93400956742754, "ovtot_min": 0.0, "p_int_std": 0.03005735414351125, "pyr_alpha": 18.968109255253264, "qvbur_max": 17.145225262910863, "qvbur_min": 13.471511499749475, "qvtot_max": 110.93410932534916, "qvtot_min": 52.58308847477182, "cone_angle": 185.97778013025916, "p_int_area": 425.28291512847784, "p_int_atom": 29.055955511161372, "sasa_P_std": 0.5083824772227584, "pyr_val_std": 0.016781470962390833, "sasa_volume": 927.7511756826916, "EA_delta_SCC": 0.984190750537527, "IP_delta_SCC": 5.43095186859343, "dip_norm_std": 0.0778364829441189, "far_vbur_std": 0.22491592312669842, "far_vtot_std": 0.6386431271849152, "HOMO_LUMO_gap": 5.088023940822262, "near_vbur_std": 1.1676480975804926, "near_vtot_std": 1.1189099082342369, "ovbur_max_std": 0.4012377243860841, "ovbur_min_std": 0.0, "ovtot_max_std": 1.0555172012615384, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.8799654858261168, "qvbur_max_std": 0.5150423620623733, "qvbur_min_std": 0.4633690393805375, "qvtot_max_std": 1.055090229529146, "qvtot_min_std": 3.5505796624209855, "sasa_volume_P": 5.6200023698892, "cone_angle_std": 3.2740966052340794, "p_int_area_std": 1.9899065128036992, "p_int_atom_std": 0.367684521658762, "max_delta_qvbur": 3.618967726197435, "max_delta_qvtot": 47.64964379275123, "nucleophilicity": -5.43095186859343, "p_int_atom_area": 11.31335550993332, "sasa_volume_std": 1.7998077933586223, "EA_delta_SCC_std": 0.01189762355363595, "IP_delta_SCC_std": 0.08783658153204911, "HOMO_LUMO_gap_std": 0.14815083028038928, "sasa_volume_P_std": 0.7038894814171548, "max_delta_qvbur_std": 0.15001036131290757, "max_delta_qvtot_std": 4.1631149029555266, "nucleophilicity_std": 0.08783658153204911, "p_int_atom_area_std": 0.38024413810703517, "p_int_times_p_int_area": 8092.596974375566, "p_int_times_p_int_area_std": 36.63474304208838, "global_electrophilicity_index": 1.1569037731886593, "p_int_atom_times_p_int_atom_area": 328.6433977634586, "global_electrophilicity_index_std": 0.014034653092902978, "p_int_atom_times_p_int_atom_area_std": 9.359855252635386}} \\x000000000000000010180a2000010308014002004003040080040200250028000040011820040080300a0000000000640300001811040109030000004400042002620202080502900010000400012401024000c002000100004020044010080000440100204000000084041000001040012f0800128000408000400000000081 \\x00400000022000000000000002010002000000000000000000801000080000000000000001000000000000000000000000000040800000000001020000000000 pn3 (-3.836721897125244, 0.7818853855133057, 1.1648308038711548, 1.5467394590377808) (1.402819037437439, 5.847975730895996) -1288 CC(C)(C)P(F)F 126.08599853515625 {"max_data": {"pyr_P": 0.9635984767856375, "pyr_alpha": 13.033181494710098, "qpole_amp": 0.8868558345976869, "vbur_vbur": 42.632119621294116, "vbur_vtot": 130.80955962774874, "sterimol_L": 6.914683343534703, "sterimol_B1": 2.257465002162935, "sterimol_B5": 4.660593628860572, "dipolemoment": 2.56573847101875, "qpoletens_xx": 0.7101165225460765, "qpoletens_yy": -0.23234913779283156, "qpoletens_zz": -0.47776738475324493, "sterimol_burL": 6.914683343534703, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.257465002162935, "sterimol_burB5": 4.660593628860572, "vbur_near_vbur": 42.63211962129411, "vbur_near_vtot": 128.51472865499503, "vbur_ovbur_max": 13.449287951969309, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 59.593421968264316, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.449287951969309, "vbur_qvbur_min": 8.952943842356115, "vbur_qvtot_max": 59.593421968264316, "vbur_qvtot_min": 16.357300128841974, "vbur_max_delta_qvbur": 3.7798994212938073, "vbur_max_delta_qvtot": 37.75113450956794}, "min_data": {"pyr_P": 0.9635984767856375, "pyr_alpha": 13.033181494710098, "qpole_amp": 0.8868558345976869, "vbur_vbur": 42.632119621294116, "vbur_vtot": 130.80955962774874, "sterimol_L": 6.914683343534703, "sterimol_B1": 2.257465002162935, "sterimol_B5": 4.660593628860572, "dipolemoment": 2.56573847101875, "qpoletens_xx": 0.7101165225460765, "qpoletens_yy": -0.23234913779283156, "qpoletens_zz": -0.47776738475324493, "sterimol_burL": 6.914683343534703, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.257465002162935, "sterimol_burB5": 4.660593628860572, "vbur_near_vbur": 42.63211962129411, "vbur_near_vtot": 128.51472865499503, "vbur_ovbur_max": 13.449287951969309, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 59.593421968264316, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.449287951969309, "vbur_qvbur_min": 8.952943842356115, "vbur_qvtot_max": 59.593421968264316, "vbur_qvtot_min": 16.357300128841974, "vbur_max_delta_qvbur": 3.7798994212938073, "vbur_max_delta_qvtot": 37.75113450956794}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9635984767856375, "pyr_alpha": 13.033181494710098, "qpole_amp": 0.8868558345976869, "vbur_vbur": 42.632119621294116, "vbur_vtot": 130.80955962774874, "sterimol_L": 6.914683343534703, "sterimol_B1": 2.257465002162935, "sterimol_B5": 4.660593628860572, "dipolemoment": 2.56573847101875, "qpoletens_xx": 0.7101165225460765, "qpoletens_yy": -0.23234913779283156, "qpoletens_zz": -0.47776738475324493, "sterimol_burL": 6.914683343534703, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.257465002162935, "sterimol_burB5": 4.660593628860572, "vbur_near_vbur": 42.63211962129411, "vbur_near_vtot": 128.51472865499503, "vbur_ovbur_max": 13.449287951969309, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 59.593421968264316, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.449287951969309, "vbur_qvbur_min": 8.952943842356115, "vbur_qvtot_max": 59.593421968264316, "vbur_qvtot_min": 16.357300128841974, "vbur_max_delta_qvbur": 3.7798994212938073, "vbur_max_delta_qvtot": 37.75113450956794}, "boltzmann_averaged_data": {"nbo_P": 1.41559, "nmr_P": 4.4393, "pyr_P": 0.9635984767856375, "fmo_mu": -0.142245, "vmin_r": 1.9567559509614394, "volume": 154.41333, "Pint_dP": 2.68, "fmo_eta": 0.26156999999999997, "fukui_m": 0.45481000000000016, "fukui_p": 0.5799199999999999, "nuesp_P": -54.080518, "somo_ra": 0.12277, "somo_rc": -0.53157, "nbo_P_ra": 0.83567, "nbo_P_rc": 1.8704, "efg_amp_P": 2.9147246121292487, "fmo_omega": 0.03867729484459228, "pyr_alpha": 13.033181494710098, "qpole_amp": 0.8868558345976869, "vbur_vbur": 42.632119621294116, "vbur_vtot": 130.80955962774874, "vmin_vmin": -0.0206114, "E_solv_cds": -0.93, "Pint_P_int": 15.5, "Pint_P_max": 24.86, "Pint_P_min": 10.57, "fmo_e_homo": -0.27303, "fmo_e_lumo": -0.01146, "nbo_lp_P_e": -0.41639, "sphericity": 0.90075, "sterimol_L": 6.914683343534703, "E_oxidation": 0.34722229999999854, "E_reduction": 0.05524060000004738, "sterimol_B1": 2.257465002162935, "sterimol_B5": 4.660593628860572, "E_solv_total": -4.045741805925176, "dipolemoment": 2.56573847101875, "efgtens_xx_P": -1.642226, "efgtens_yy_P": -0.670574, "efgtens_zz_P": 2.3128, "nbo_bd_e_avg": -0.6825399999999999, "nbo_bd_e_max": -0.4758, "nbo_lp_P_occ": 1.98597, "qpoletens_xx": 0.7101165225460765, "qpoletens_yy": -0.23234913779283156, "qpoletens_zz": -0.47776738475324493, "surface_area": 154.52659, "E_solv_elstat": -3.115741805925176, "nbo_bds_e_avg": 0.15621333333333334, "nbo_bds_e_min": 0.14846, "nmrtens_sxx_P": -175.6925, "nmrtens_syy_P": -47.7752, "nmrtens_szz_P": 236.7856, "spindens_P_ra": 0.74739, "spindens_P_rc": 0.51099, "sterimol_burL": 6.914683343534703, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.97862, "nbo_bd_occ_min": 1.95778, "sterimol_burB1": 2.257465002162935, "sterimol_burB5": 4.660593628860572, "vbur_near_vbur": 42.63211962129411, "vbur_near_vtot": 128.51472865499503, "vbur_ovbur_max": 13.449287951969309, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 59.593421968264316, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.449287951969309, "vbur_qvbur_min": 8.952943842356115, "vbur_qvtot_max": 59.593421968264316, "vbur_qvtot_min": 16.357300128841974, "nbo_bds_occ_avg": 0.059553333333333326, "nbo_bds_occ_max": 0.07264, "nbo_lp_P_percent_s": 67.52, "vbur_max_delta_qvbur": 3.7798994212938073, "vbur_max_delta_qvtot": 37.75113450956794, "vbur_ratio_vbur_vtot": 0.3259098168560039}} {"max_data": {"B1": 2.2723325558423477, "B5": 4.597548257373176, "lval": 6.776755547404308, "sasa": 269.05913693711875, "vbur": 46.343928803228245, "vtot": 129.9001716877742, "alpha": 78.057494, "p_int": 15.420309569536693, "sasa_P": 26.619924511372627, "pyr_val": 0.9803561380177301, "dip_norm": 1.2694723313251062, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.34392880322825, "near_vtot": 129.9001716877742, "ovbur_max": 14.441682039034156, "ovbur_min": 0.0, "ovtot_max": 58.842869917633934, "ovtot_min": 0.0, "pyr_alpha": 9.39819906425344, "qvbur_max": 14.441682039034156, "qvbur_min": 9.919185968699004, "qvtot_max": 58.842869917633934, "qvtot_min": 17.51288234200594, "cone_angle": 137.62557758415835, "p_int_area": 169.78786568318952, "p_int_atom": 18.09077109877464, "sasa_volume": 381.4113174990247, "EA_delta_SCC": 1.1729, "IP_delta_SCC": 7.713, "HOMO_LUMO_gap": 5.409260400663, "sasa_volume_P": 35.74342500576328, "max_delta_qvbur": 3.846452843326288, "max_delta_qvtot": 35.824161333114574, "nucleophilicity": -7.713, "p_int_atom_area": 23.296758290813102, "p_int_times_p_int_area": 2618.1814499856982, "global_electrophilicity_index": 1.5091, "p_int_atom_times_p_int_atom_area": 421.45632158258013}, "min_data": {"B1": 2.2723325558423477, "B5": 4.597548257373176, "lval": 6.776755547404308, "sasa": 269.05913693711875, "vbur": 46.343928803228245, "vtot": 129.9001716877742, "alpha": 78.057494, "p_int": 15.420309569536693, "sasa_P": 26.619924511372627, "pyr_val": 0.9803561380177301, "dip_norm": 1.2694723313251062, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.34392880322825, "near_vtot": 129.9001716877742, "ovbur_max": 14.441682039034156, "ovbur_min": 0.0, "ovtot_max": 58.842869917633934, "ovtot_min": 0.0, "pyr_alpha": 9.39819906425344, "qvbur_max": 14.441682039034156, "qvbur_min": 9.919185968699004, "qvtot_max": 58.842869917633934, "qvtot_min": 17.51288234200594, "cone_angle": 137.62557758415835, "p_int_area": 169.78786568318952, "p_int_atom": 18.09077109877464, "sasa_volume": 381.4113174990247, "EA_delta_SCC": 1.1729, "IP_delta_SCC": 7.713, "HOMO_LUMO_gap": 5.409260400663, "sasa_volume_P": 35.74342500576328, "max_delta_qvbur": 3.846452843326288, "max_delta_qvtot": 35.824161333114574, "nucleophilicity": -7.713, "p_int_atom_area": 23.296758290813102, "p_int_times_p_int_area": 2618.1814499856982, "global_electrophilicity_index": 1.5091, "p_int_atom_times_p_int_atom_area": 421.45632158258013}, "boltzmann_averaged_data": {"B1": 2.2723325558423477, "B5": 4.597548257373176, "lval": 6.776755547404308, "sasa": 269.05913693711875, "vbur": 46.343928803228245, "vtot": 129.9001716877742, "alpha": 78.057494, "p_int": 15.420309569536693, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 26.619924511372627, "pyr_val": 0.9803561380177301, "dip_norm": 1.2694723313251062, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 46.34392880322825, "near_vtot": 129.9001716877742, "ovbur_max": 14.441682039034156, "ovbur_min": 0.0, "ovtot_max": 58.842869917633934, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 9.39819906425344, "qvbur_max": 14.441682039034156, "qvbur_min": 9.919185968699004, "qvtot_max": 58.842869917633934, "qvtot_min": 17.51288234200594, "cone_angle": 137.62557758415835, "p_int_area": 169.78786568318952, "p_int_atom": 18.09077109877464, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 381.4113174990247, "EA_delta_SCC": 1.1729, "IP_delta_SCC": 7.713, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.409260400663, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 35.74342500576328, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 3.846452843326288, "max_delta_qvtot": 35.824161333114574, "nucleophilicity": -7.713, "p_int_atom_area": 23.296758290813102, "sasa_volume_std": 0.0, "EA_delta_SCC_std": 0.0, "IP_delta_SCC_std": 0.0, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": 0.0, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 2618.1814499856982, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": 1.5091, "p_int_atom_times_p_int_atom_area": 421.45632158258013, "global_electrophilicity_index_std": 0.0, "p_int_atom_times_p_int_atom_area_std": 0.0}} {"max_data": {"pyr_P": "0.9457347", "pyr_alpha": "15.772321", "qpole_amp": "3.6721103", "vbur_vbur": "45.16739", "sterimol_L": "6.022667", "sterimol_B1": "2.5408216", "sterimol_B5": "4.876051", "dipolemoment": "1.9609319", "qpoletens_xx": "3.0394", "qpoletens_yy": "0.31677738", "qpoletens_zz": "-1.9086465", "sterimol_burL": "6.4036145", "vbur_far_vbur": "1.1225642", "vbur_far_vtot": "2.149343", "sterimol_burB1": "2.626269", "sterimol_burB5": "4.3629313", "vbur_near_vbur": "43.25479", "vbur_near_vtot": "127.40985", "vbur_ovbur_max": "13.374522", "vbur_ovbur_min": "-0.0608308", "vbur_ovtot_max": "47.354877", "vbur_ovtot_min": "-0.461778", "vbur_qvbur_max": "13.292536", "vbur_qvbur_min": "10.912635", "vbur_qvtot_max": "52.981693", "vbur_qvtot_min": "25.64054", "vbur_max_delta_qvbur": "4.445444", "vbur_max_delta_qvtot": "21.925516"}, "min_data": {"pyr_P": "0.9342283", "pyr_alpha": "15.826095", "qpole_amp": "3.9984791", "vbur_vbur": "49.143112", "sterimol_L": "6.1302037", "sterimol_B1": "2.5762165", "sterimol_B5": "4.6369205", "dipolemoment": "2.2823822", "qpoletens_xx": "4.499284", "qpoletens_yy": "0.04437258", "qpoletens_zz": "-2.899683", "sterimol_burL": "5.9000187", "vbur_far_vbur": "0.08045652", "vbur_far_vtot": "-0.10228001", "sterimol_burB1": "2.575301", "sterimol_burB5": "4.784943", "vbur_near_vbur": "45.00615", "vbur_near_vtot": "131.8277", "vbur_ovbur_max": "13.971444", "vbur_ovbur_min": "0.007300335", "vbur_ovtot_max": "51.616596", "vbur_ovtot_min": "0.05861008", "vbur_qvbur_max": "14.617095", "vbur_qvbur_min": "9.83673", "vbur_qvtot_max": "56.79095", "vbur_qvtot_min": "26.38553", "vbur_max_delta_qvbur": "4.132627", "vbur_max_delta_qvtot": "32.987957"}, "delta_data": {"pyr_P": "-0.005199092", "pyr_alpha": "-0.47811827", "qpole_amp": "0.29240528", "vbur_vbur": "-4.6233463", "sterimol_L": "0.13331522", "sterimol_B1": "0.0033773787", "sterimol_B5": "0.05947928", "dipolemoment": "-0.27448726", "qpoletens_xx": "-0.1309584", "qpoletens_yy": "-0.14090443", "qpoletens_zz": "0.29619157", "sterimol_burL": "-0.13011241", "vbur_far_vbur": "-2.5538752", "vbur_far_vtot": "-8.345664", "sterimol_burB1": "-0.014853713", "sterimol_burB5": "-0.046545822", "vbur_near_vbur": "-0.71559936", "vbur_near_vtot": "-10.28982", "vbur_ovbur_max": "0.29287443", "vbur_ovbur_min": "-0.3009568", "vbur_ovtot_max": "-3.4726536", "vbur_ovtot_min": "-0.011242324", "vbur_qvbur_max": "0.790768", "vbur_qvbur_min": "0.14752431", "vbur_qvtot_max": "2.4430072", "vbur_qvtot_min": "-0.28349072", "vbur_max_delta_qvbur": "0.79004043", "vbur_max_delta_qvtot": "-3.2183516"}, "vburminconf_data": {"pyr_P": "0.9303008", "pyr_alpha": "15.126198", "qpole_amp": "5.4895973", "vbur_vbur": "48.060997", "sterimol_L": "6.213822", "sterimol_B1": "2.5971324", "sterimol_B5": "4.6193542", "dipolemoment": "2.2900517", "qpoletens_xx": "3.3888543", "qpoletens_yy": "-0.05200224", "qpoletens_zz": "-2.8697343", "sterimol_burL": "6.215426", "vbur_far_vbur": "0.6809701", "vbur_far_vtot": "2.054632", "sterimol_burB1": "2.4260666", "sterimol_burB5": "4.5975556", "vbur_near_vbur": "46.089302", "vbur_near_vtot": "125.424995", "vbur_ovbur_max": "13.185653", "vbur_ovbur_min": "0.035333294", "vbur_ovtot_max": "50.753113", "vbur_ovtot_min": "0.050647505", "vbur_qvbur_max": "15.04103", "vbur_qvbur_min": "10.062388", "vbur_qvtot_max": "53.480827", "vbur_qvtot_min": "24.737576", "vbur_max_delta_qvbur": "2.626424", "vbur_max_delta_qvtot": "19.605494"}, "boltzmann_averaged_data": {"nbo_P": "1.3997687", "nmr_P": "44.980972", "pyr_P": "0.9528272", "fmo_mu": "-0.13091819", "vmin_r": "1.9533674", "volume": "154.07843", "Pint_dP": "2.9474819", "fmo_eta": "0.2413374", "fukui_m": "0.43694875", "fukui_p": "0.4033203", "nuesp_P": "-54.083107", "somo_ra": "0.11917334", "somo_rc": "-0.5137247", "nbo_P_ra": "0.8116125", "nbo_P_rc": "1.5771614", "efg_amp_P": "2.3721266", "fmo_omega": "0.035980605", "pyr_alpha": "14.117135", "qpole_amp": "3.4967103", "vbur_vbur": "46.095284", "vbur_vtot": "131.9411", "vmin_vmin": "-0.027439335", "E_solv_cds": "-0.58937657", "Pint_P_int": "15.4925785", "Pint_P_max": "26.750067", "Pint_P_min": "10.478499", "fmo_e_homo": "-0.2531923", "fmo_e_lumo": "-0.01599398", "nbo_lp_P_e": "-0.40824172", "sphericity": "0.8902866", "sterimol_L": "6.387198", "E_oxidation": "0.32362336", "E_reduction": "0.05362882", "sterimol_B1": "2.342701", "sterimol_B5": "4.4153194", "E_solv_total": "-4.17125", "dipolemoment": "2.0840352", "efgtens_xx_P": "-1.5814726", "efgtens_yy_P": "-0.21808432", "efgtens_zz_P": "1.886043", "nbo_bd_e_avg": "-0.66748065", "nbo_bd_e_max": "-0.513184", "nbo_lp_P_occ": "1.9822452", "qpoletens_xx": "2.2419906", "qpoletens_yy": "-0.22433531", "qpoletens_zz": "-3.2162654", "surface_area": "158.21822", "E_solv_elstat": "-3.4923806", "nbo_bds_e_avg": "0.15307283", "nbo_bds_e_min": "0.13442342", "nmrtens_sxx_P": "-99.91932", "nmrtens_syy_P": "36.10255", "nmrtens_szz_P": "279.371", "spindens_P_ra": "0.5511786", "spindens_P_rc": "0.6144887", "sterimol_burL": "6.3848877", "vbur_far_vbur": "1.724853", "vbur_far_vtot": "6.45678", "nbo_bd_occ_avg": "1.9771774", "nbo_bd_occ_min": "1.9528693", "sterimol_burB1": "2.588488", "sterimol_burB5": "4.6002493", "vbur_near_vbur": "43.498352", "vbur_near_vtot": "122.35272", "vbur_ovbur_max": "12.622843", "vbur_ovbur_min": "-0.028154382", "vbur_ovtot_max": "47.34757", "vbur_ovtot_min": "-0.06267706", "vbur_qvbur_max": "13.920845", "vbur_qvbur_min": "10.002342", "vbur_qvtot_max": "55.528454", "vbur_qvtot_min": "23.262041", "nbo_bds_occ_avg": "0.054007553", "nbo_bds_occ_max": "0.06632552", "nbo_lp_P_percent_s": "67.77312", "vbur_max_delta_qvbur": "3.1870072", "vbur_max_delta_qvtot": "26.602713", "vbur_ratio_vbur_vtot": "0.34549022"}} CC(C)(C)P(F)F {"max_data": {"B1": 2.2674983698557374, "B5": 4.6246256115221325, "lval": 6.840459307353808, "sasa": 268.2791475017107, "vbur": 43.45326121188001, "vtot": 128.7692843745856, "alpha": 78.032085, "p_int": 15.526176010277164, "sasa_P": 25.529927602379537, "pyr_val": 0.9700513024750038, "dip_norm": 1.244403069748705, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 43.453261211880005, "near_vtot": 126.27809615949947, "ovbur_max": 13.858886153681688, "ovbur_min": 0.0, "ovtot_max": 58.66160668740916, "ovtot_min": 0.0, "pyr_alpha": 11.617531644491523, "qvbur_max": 13.858886153681688, "qvbur_min": 9.149895400033747, "qvtot_max": 58.66160668740916, "qvtot_min": 15.794352622675001, "cone_angle": 131.79825829314672, "p_int_area": 169.88767903513337, "p_int_atom": 18.121873058122144, "sasa_volume": 379.9212290387078, "EA_delta_SCC": 1.0042, "IP_delta_SCC": 7.6304, "HOMO_LUMO_gap": 5.583135056445, "sasa_volume_P": 22.06390793777097, "max_delta_qvbur": 4.032947526639079, "max_delta_qvtot": 37.74861237508168, "nucleophilicity": -7.6304, "p_int_atom_area": 22.596855681217857, "p_int_times_p_int_area": 2637.7060066769545, "global_electrophilicity_index": 1.4064, "p_int_atom_times_p_int_atom_area": 409.4973501677362}, "min_data": {"B1": 2.2674983698557374, "B5": 4.6246256115221325, "lval": 6.840459307353808, "sasa": 268.2791475017107, "vbur": 43.45326121188001, "vtot": 128.7692843745856, "alpha": 78.032085, "p_int": 15.526176010277164, "sasa_P": 25.529927602379537, "pyr_val": 0.9700513024750038, "dip_norm": 1.244403069748705, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 43.453261211880005, "near_vtot": 126.27809615949947, "ovbur_max": 13.858886153681688, "ovbur_min": 0.0, "ovtot_max": 58.66160668740916, "ovtot_min": 0.0, "pyr_alpha": 11.617531644491523, "qvbur_max": 13.858886153681688, "qvbur_min": 9.149895400033747, "qvtot_max": 58.66160668740916, "qvtot_min": 15.794352622675001, "cone_angle": 131.79825829314672, "p_int_area": 169.88767903513337, "p_int_atom": 18.121873058122144, "sasa_volume": 379.9212290387078, "EA_delta_SCC": 1.0042, "IP_delta_SCC": 7.6304, "HOMO_LUMO_gap": 5.583135056445, "sasa_volume_P": 22.06390793777097, "max_delta_qvbur": 4.032947526639079, "max_delta_qvtot": 37.74861237508168, "nucleophilicity": -7.6304, "p_int_atom_area": 22.596855681217857, "p_int_times_p_int_area": 2637.7060066769545, "global_electrophilicity_index": 1.4064, "p_int_atom_times_p_int_atom_area": 409.4973501677362}, "boltzmann_averaged_data": {"B1": 2.2674983698557374, "B5": 4.6246256115221325, "lval": 6.840459307353808, "sasa": 268.2791475017107, "vbur": 43.45326121188001, "vtot": 128.7692843745856, "alpha": 78.032085, "p_int": 15.526176010277164, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 25.529927602379537, "pyr_val": 0.9700513024750038, "dip_norm": 1.244403069748705, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 43.453261211880005, "near_vtot": 126.27809615949947, "ovbur_max": 13.858886153681688, "ovbur_min": 0.0, "ovtot_max": 58.66160668740916, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 11.617531644491523, "qvbur_max": 13.858886153681688, "qvbur_min": 9.149895400033747, "qvtot_max": 58.66160668740916, "qvtot_min": 15.794352622675001, "cone_angle": 131.79825829314672, "p_int_area": 169.88767903513337, "p_int_atom": 18.121873058122144, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 379.9212290387078, "EA_delta_SCC": 1.0042, "IP_delta_SCC": 7.6304, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.583135056445, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 22.06390793777097, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 4.032947526639079, "max_delta_qvtot": 37.74861237508168, "nucleophilicity": -7.6304, "p_int_atom_area": 22.596855681217857, "sasa_volume_std": 0.0, "EA_delta_SCC_std": 0.0, "IP_delta_SCC_std": 0.0, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": 0.0, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 2637.7060066769545, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": 1.4064, "p_int_atom_times_p_int_atom_area": 409.4973501677362, "global_electrophilicity_index_std": 0.0, "p_int_atom_times_p_int_atom_area_std": 0.0}} \\x0000000000000000000000000000000000000000002000000000000000000000100000100040000000080000000a00200000800100000001000000010000004008000000000000000000000100800000080000002000000060000000401000020002300000000800000000100004000000000010200000000000000200200000 \\x00000000022000000000000000000400000000000000000000000000000040000000000000000000000000000800000000010000000000000000000000804000 phal (-15.963048934936523, -0.16078482568264, 0.6214315891265869, 5.946713447570801) (-0.071217380464077, 6.206404209136963) -1289 CN(C)P(F)N(C)C 138.12600708007812 {"max_data": {"pyr_P": 0.9510605248938473, "pyr_alpha": 17.749808982849114, "qpole_amp": 5.210488696997204, "vbur_vbur": 47.80307223304746, "vbur_vtot": 151.40335472193215, "sterimol_L": 6.635337695568641, "sterimol_B1": 2.702301614883631, "sterimol_B5": 4.667798329886167, "dipolemoment": 2.386100530031033, "qpoletens_xx": 4.163903107639952, "qpoletens_yy": -0.2521948505240532, "qpoletens_zz": -2.837616347745756, "sterimol_burL": 6.635337695568641, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.702301614883631, "sterimol_burB5": 4.667798329886167, "vbur_near_vbur": 47.80307223304746, "vbur_near_vtot": 151.40335472193215, "vbur_ovbur_max": 16.0828758719521, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 55.010435063100424, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.0828758719521, "vbur_qvbur_min": 9.347249897095399, "vbur_qvtot_max": 55.010435063100424, "vbur_qvtot_min": 19.274716980468853, "vbur_max_delta_qvbur": 6.735625974856703, "vbur_max_delta_qvtot": 36.06718606742177}, "min_data": {"pyr_P": 0.9317429105177538, "pyr_alpha": 14.579451591050775, "qpole_amp": 5.085803908166768, "vbur_vbur": 47.2163197218837, "vbur_vtot": 151.2365197772949, "sterimol_L": 6.512427222854068, "sterimol_B1": 2.6628214729713022, "sterimol_B5": 4.624957959929877, "dipolemoment": 2.317306875209645, "qpoletens_xx": 3.715665507105446, "qpoletens_yy": -1.3262867598941965, "qpoletens_zz": -3.463470656581393, "sterimol_burL": 6.512427222854068, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.6628214729713022, "sterimol_burB5": 4.624957959929877, "vbur_near_vbur": 47.21631972188369, "vbur_near_vtot": 150.93963414370117, "vbur_ovbur_max": 15.653009058960471, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 54.90486467116564, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.653009058960471, "vbur_qvbur_min": 8.847307472253549, "vbur_qvtot_max": 54.90486467116564, "vbur_qvtot_min": 18.837678603743864, "vbur_max_delta_qvbur": 6.383156106296656, "vbur_max_delta_qvtot": 35.73571808263157}, "delta_data": {"pyr_P": 0.019317614376093473, "pyr_alpha": 3.1703573917983388, "qpole_amp": 0.12468478883043588, "vbur_vbur": 0.586752511163759, "vbur_vtot": 0.1668349446372588, "sterimol_L": 0.12291047271457245, "sterimol_B1": 0.03948014191232874, "sterimol_B5": 0.04284036995628959, "dipolemoment": 0.0687936548213881, "qpoletens_xx": 0.44823760053450634, "qpoletens_yy": 1.0740919093701433, "qpoletens_zz": 0.625854308835637, "sterimol_burL": 0.12291047271457245, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.03948014191232874, "sterimol_burB5": 0.04284036995628959, "vbur_near_vbur": 0.5867525111637661, "vbur_near_vtot": 0.46372057823097634, "vbur_ovbur_max": 0.4298668129916301, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.10557039193478346, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.4298668129916301, "vbur_qvbur_min": 0.4999424248418496, "vbur_qvtot_max": 0.10557039193478346, "vbur_qvtot_min": 0.43703837672498835, "vbur_max_delta_qvbur": 0.35246986856004625, "vbur_max_delta_qvtot": 0.33146798479020134}, "vburminconf_data": {"pyr_P": 0.9510605248938473, "pyr_alpha": 14.579451591050775, "qpole_amp": 5.210488696997204, "vbur_vbur": 47.2163197218837, "vbur_vtot": 151.2365197772949, "sterimol_L": 6.512427222854068, "sterimol_B1": 2.702301614883631, "sterimol_B5": 4.624957959929877, "dipolemoment": 2.317306875209645, "qpoletens_xx": 4.163903107639952, "qpoletens_yy": -1.3262867598941965, "qpoletens_zz": -2.837616347745756, "sterimol_burL": 6.512427222854068, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.702301614883631, "sterimol_burB5": 4.624957959929877, "vbur_near_vbur": 47.21631972188369, "vbur_near_vtot": 150.93963414370117, "vbur_ovbur_max": 16.0828758719521, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 54.90486467116564, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.0828758719521, "vbur_qvbur_min": 9.347249897095399, "vbur_qvtot_max": 54.90486467116564, "vbur_qvtot_min": 18.837678603743864, "vbur_max_delta_qvbur": 6.735625974856703, "vbur_max_delta_qvtot": 36.06718606742177}, "boltzmann_averaged_data": {"nbo_P": 1.4099381357560878, "nmr_P": 113.76748947348874, "pyr_P": 0.9361209648039366, "fmo_mu": -0.1076699188485393, "vmin_r": 1.8550880775479661, "volume": 183.5451830139342, "Pint_dP": 3.2299999999999995, "fmo_eta": 0.2485199302404571, "fukui_m": 0.14204879296723175, "fukui_p": 0.4292090426301454, "nuesp_P": -54.115094191614766, "somo_ra": 0.12847446224342968, "somo_rc": -0.4498407502032798, "nbo_P_ra": 0.9807290931259425, "nbo_P_rc": 1.5519869287233197, "efg_amp_P": 2.297013229535629, "fmo_omega": 0.02332671661967636, "pyr_alpha": 17.031293927228603, "qpole_amp": 5.114061888864241, "vbur_vbur": 47.67009337259313, "vbur_vtot": 151.3655440259407, "vmin_vmin": -0.04088237462801288, "E_solv_cds": -1.1958644744669955, "Pint_P_int": 16.16186917203772, "Pint_P_max": 27.86525731036282, "Pint_P_min": 11.006401879028287, "fmo_e_homo": -0.23192988396876785, "fmo_e_lumo": 0.01659004627168925, "nbo_lp_P_e": -0.36131375971987506, "sphericity": 0.852953287633367, "sterimol_L": 6.607481837624258, "E_oxidation": 0.2956113822331329, "E_reduction": 0.0735272341918258, "sterimol_B1": 2.6717690687330373, "sterimol_B5": 4.658089187667192, "E_solv_total": -5.256100862257462, "dipolemoment": 2.370509456025244, "efgtens_xx_P": -1.4175903564970362, "efgtens_yy_P": -0.35458243325188327, "efgtens_zz_P": 1.77217356311357, "nbo_bd_e_avg": -0.6419466604800906, "nbo_bd_e_max": -0.5833344692836095, "nbo_lp_P_occ": 1.9604849042885402, "qpoletens_xx": 3.8172519923744037, "qpoletens_yy": -0.4956220458298993, "qpoletens_zz": -3.321629946544504, "surface_area": 183.1136832716583, "E_solv_elstat": -4.060236387790466, "nbo_bds_e_avg": 0.20363938641464724, "nbo_bds_e_min": 0.15311897216658463, "nmrtens_sxx_P": -24.23285846857599, "nmrtens_syy_P": 100.95897834638097, "nmrtens_szz_P": 264.57634854266126, "spindens_P_ra": 0.5637381529077798, "spindens_P_rc": 0.10190343536929258, "sterimol_burL": 6.607481837624258, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.97545158872583, "nbo_bd_occ_min": 1.9688744636514655, "sterimol_burB1": 2.6717690687330373, "sterimol_burB5": 4.658089187667192, "vbur_near_vbur": 47.67009337259312, "vbur_near_vtot": 151.2982592466012, "vbur_ovbur_max": 15.750432074373533, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 54.98650908042442, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.750432074373533, "vbur_qvbur_min": 8.96061209845171, "vbur_qvtot_max": 54.98650908042442, "vbur_qvtot_min": 19.17566863520241, "nbo_bds_occ_avg": 0.09331754073046314, "nbo_bds_occ_max": 0.1242751405751127, "nbo_lp_P_percent_s": 62.30301374070317, "vbur_max_delta_qvbur": 6.463038238156029, "vbur_max_delta_qvtot": 35.810840445222006, "vbur_ratio_vbur_vtot": 0.31493290243812033}} {"max_data": {"B1": 2.6739657975411504, "B5": 4.595213876895768, "lval": 6.470054662368441, "sasa": 310.32014910708625, "vbur": 53.17429657955917, "vtot": 150.04487310418685, "alpha": 96.384002, "p_int": 16.148130911139795, "sasa_P": 20.649941441015955, "pyr_val": 0.9720318369931612, "dip_norm": 1.2683556283629602, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 53.174296579559176, "near_vtot": 150.04487310418682, "ovbur_max": 17.320693712675347, "ovbur_min": 0.0, "ovtot_max": 55.68264276603897, "ovtot_min": 0.0, "pyr_alpha": 16.524146249504128, "qvbur_max": 17.320693712675347, "qvbur_min": 10.443702265516226, "qvtot_max": 55.68264276603897, "qvtot_min": 20.660721818234016, "cone_angle": 157.19079172154954, "p_int_area": 203.88976733655892, "p_int_atom": 21.160557034220325, "sasa_volume": 445.7647629057424, "EA_delta_SCC": 0.9957, "IP_delta_SCC": 6.7483, "HOMO_LUMO_gap": 4.873007725299, "sasa_volume_P": 26.81601477417035, "max_delta_qvbur": 7.133421636714209, "max_delta_qvtot": 35.10884095942442, "nucleophilicity": -6.4489, "p_int_atom_area": 20.397161765347093, "p_int_times_p_int_area": 3287.3780191421356, "global_electrophilicity_index": 1.3031, "p_int_atom_times_p_int_atom_area": 431.6153048718453}, "min_data": {"B1": 2.581335524191818, "B5": 4.5747302734498, "lval": 6.373238653963181, "sasa": 307.67017414124973, "vbur": 50.7964893673211, "vtot": 149.30460805725818, "alpha": 96.220018, "p_int": 16.062898216782767, "sasa_P": 18.399947821534795, "pyr_val": 0.9323557301133741, "dip_norm": 1.114151695237233, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 50.7964893673211, "near_vtot": 149.3046080572582, "ovbur_max": 16.318284789869104, "ovbur_min": 0.0, "ovtot_max": 53.56762378968164, "ovtot_min": 0.0, "pyr_alpha": 11.036817393279298, "qvbur_max": 16.318284789869104, "qvbur_min": 9.907530050991953, "qvtot_max": 53.56762378968164, "qvtot_min": 20.38414002616204, "cone_angle": 156.0051361038812, "p_int_area": 202.6879676968209, "p_int_atom": 20.647298033370525, "sasa_volume": 443.54131271463024, "EA_delta_SCC": 0.9114, "IP_delta_SCC": 6.4489, "HOMO_LUMO_gap": 4.73745430904, "sasa_volume_P": 24.38560018696569, "max_delta_qvbur": 5.874582524352878, "max_delta_qvtot": 33.183483763519604, "nucleophilicity": -6.7483, "p_int_atom_area": 20.197189591177025, "p_int_times_p_int_area": 3273.031836481138, "global_electrophilicity_index": 1.2229, "p_int_atom_times_p_int_atom_area": 419.0818354647562}, "boltzmann_averaged_data": {"B1": 2.673932126573188, "B5": 4.574737691342612, "lval": 6.470019501915768, "sasa": 307.930072444851, "vbur": 50.797368223516216, "vtot": 149.3048129613556, "alpha": 96.22007834034001, "p_int": 16.062929664586804, "B1_std": 0.0017601990479351915, "B5_std": 0.0003888249782595978, "sasa_P": 20.649335742733587, "pyr_val": 0.9720172460351726, "dip_norm": 1.1142075134369183, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0018391769383691787, "sasa_std": 0.009024770653494897, "vbur_std": 0.04568203059953366, "vtot_std": 0.010667249870964424, "alpha_std": 0.003138091709387826, "near_vbur": 50.797368223516216, "near_vtot": 149.30481296135562, "ovbur_max": 16.3183493636532, "ovbur_min": 0.0, "ovtot_max": 53.56804749163965, "ovtot_min": 0.0, "p_int_std": 0.001634822996316386, "pyr_alpha": 11.038841572623504, "qvbur_max": 16.3183493636532, "qvbur_min": 10.443524862448724, "qvtot_max": 53.56804749163965, "qvtot_min": 20.384241492224994, "cone_angle": 156.0055717111487, "p_int_area": 203.88933266850583, "p_int_atom": 20.647467451050492, "sasa_P_std": 0.03154419889717641, "pyr_val_std": 0.0007589176726455046, "sasa_volume": 443.54165074083824, "EA_delta_SCC": 0.9956688760000001, "IP_delta_SCC": 6.748190631, "dip_norm_std": 0.0029268687568021886, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 4.872958017446966, "near_vbur_std": 0.04568203059953379, "near_vtot_std": 0.01066724987096386, "ovbur_max_std": 0.004278996905585684, "ovbur_min_std": 0.0, "ovtot_max_std": 0.022241552496704044, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.10522999025136061, "qvbur_max_std": 0.004278996905585684, "qvbur_min_std": 0.009222831718014088, "qvtot_max_std": 0.022241552496704044, "qvtot_min_std": 0.005280957879190289, "sasa_volume_P": 26.81544736223122, "cone_angle_std": 0.02266239722855557, "p_int_area_std": 0.022807350398489332, "p_int_atom_std": 0.008807765390666706, "max_delta_qvbur": 5.874821703784226, "max_delta_qvtot": 33.183805999414666, "nucleophilicity": -6.748190631, "p_int_atom_area": 20.297140683131577, "sasa_volume_std": 0.01806475221308941, "EA_delta_SCC_std": 0.0016178953293164557, "IP_delta_SCC_std": 0.00570173574640557, "HOMO_LUMO_gap_std": 0.0025874680430015553, "sasa_volume_P_std": 0.02963270832948068, "max_delta_qvbur_std": 0.012586118713911994, "max_delta_qvtot_std": 0.0170868783603729, "nucleophilicity_std": 0.00570173574640557, "p_int_atom_area_std": 0.0019229523802620375, "p_int_times_p_int_area": 3275.059972997327, "p_int_times_p_int_area_std": 0.054758677061297466, "global_electrophilicity_index": 1.30307052, "p_int_atom_times_p_int_atom_area": 419.08453569724503, "global_electrophilicity_index_std": 0.001533503090834834, "p_int_atom_times_p_int_atom_area_std": 0.14135249556556126}} {"max_data": {"pyr_P": "0.9527434", "pyr_alpha": "17.079851", "qpole_amp": "3.5491443", "vbur_vbur": "48.04016", "sterimol_L": "6.090143", "sterimol_B1": "2.8061738", "sterimol_B5": "4.8956656", "dipolemoment": "1.6912197", "qpoletens_xx": "1.8248618", "qpoletens_yy": "0.21663046", "qpoletens_zz": "-2.1487741", "sterimol_burL": "6.4491763", "vbur_far_vbur": "-1.9153745", "vbur_far_vtot": "0.4698365", "sterimol_burB1": "2.9765427", "sterimol_burB5": "4.3830643", "vbur_near_vbur": "48.879887", "vbur_near_vtot": "154.18881", "vbur_ovbur_max": "14.669737", "vbur_ovbur_min": "-0.13411069", "vbur_ovtot_max": "55.2899", "vbur_ovtot_min": "-0.37046105", "vbur_qvbur_max": "13.335679", "vbur_qvbur_min": "11.51584", "vbur_qvtot_max": "49.38672", "vbur_qvtot_min": "32.147835", "vbur_max_delta_qvbur": "6.4789944", "vbur_max_delta_qvtot": "28.854221"}, "min_data": {"pyr_P": "0.93131787", "pyr_alpha": "12.819686", "qpole_amp": "2.6407037", "vbur_vbur": "46.528534", "sterimol_L": "6.3236127", "sterimol_B1": "2.79153", "sterimol_B5": "4.7442994", "dipolemoment": "1.9580691", "qpoletens_xx": "1.4703796", "qpoletens_yy": "0.28331777", "qpoletens_zz": "-2.5906327", "sterimol_burL": "6.2223997", "vbur_far_vbur": "-0.14206505", "vbur_far_vtot": "4.70601", "sterimol_burB1": "2.8883672", "sterimol_burB5": "4.7045097", "vbur_near_vbur": "46.88557", "vbur_near_vtot": "152.88095", "vbur_ovbur_max": "13.652733", "vbur_ovbur_min": "-0.021020127", "vbur_ovtot_max": "53.12623", "vbur_ovtot_min": "-0.04187118", "vbur_qvbur_max": "12.6941805", "vbur_qvbur_min": "9.322765", "vbur_qvtot_max": "54.36347", "vbur_qvtot_min": "27.877079", "vbur_max_delta_qvbur": "3.832586", "vbur_max_delta_qvtot": "20.054947"}, "delta_data": {"pyr_P": "0.029244853", "pyr_alpha": "4.2119017", "qpole_amp": "0.17131995", "vbur_vbur": "1.6411827", "sterimol_L": "-0.026052803", "sterimol_B1": "0.0794394", "sterimol_B5": "-0.0684024", "dipolemoment": "0.06016774", "qpoletens_xx": "-0.13107044", "qpoletens_yy": "0.14806972", "qpoletens_zz": "0.47761273", "sterimol_burL": "0.23279335", "vbur_far_vbur": "-1.0116609", "vbur_far_vtot": "3.3289933", "sterimol_burB1": "0.106457196", "sterimol_burB5": "0.09409414", "vbur_near_vbur": "2.6857777", "vbur_near_vtot": "2.6827612", "vbur_ovbur_max": "1.7961501", "vbur_ovbur_min": "-0.207388", "vbur_ovtot_max": "1.95326", "vbur_ovtot_min": "-0.054963402", "vbur_qvbur_max": "0.109591454", "vbur_qvbur_min": "0.7776993", "vbur_qvtot_max": "4.521416", "vbur_qvtot_min": "3.9420795", "vbur_max_delta_qvbur": "1.6824437", "vbur_max_delta_qvtot": "3.8329952"}, "vburminconf_data": {"pyr_P": "0.9509934", "pyr_alpha": "15.187394", "qpole_amp": "3.786122", "vbur_vbur": "47.499065", "sterimol_L": "6.4000936", "sterimol_B1": "2.7359185", "sterimol_B5": "4.805735", "dipolemoment": "2.0850995", "qpoletens_xx": "2.7119184", "qpoletens_yy": "0.44615364", "qpoletens_zz": "-2.8279357", "sterimol_burL": "6.424652", "vbur_far_vbur": "0.39463276", "vbur_far_vtot": "1.89364", "sterimol_burB1": "3.0425577", "sterimol_burB5": "4.701756", "vbur_near_vbur": "47.0243", "vbur_near_vtot": "155.34341", "vbur_ovbur_max": "13.073465", "vbur_ovbur_min": "-0.0008723301", "vbur_ovtot_max": "56.990814", "vbur_ovtot_min": "-0.05370143", "vbur_qvbur_max": "14.318963", "vbur_qvbur_min": "10.490562", "vbur_qvtot_max": "56.38495", "vbur_qvtot_min": "24.751987", "vbur_max_delta_qvbur": "3.114677", "vbur_max_delta_qvtot": "17.345934"}, "boltzmann_averaged_data": {"nbo_P": "1.422193", "nmr_P": "95.97572", "pyr_P": "0.9290563", "fmo_mu": "-0.11295105", "vmin_r": "1.8834349", "volume": "182.7989", "Pint_dP": "3.2385292", "fmo_eta": "0.23885342", "fukui_m": "0.0148781855", "fukui_p": "0.3046479", "nuesp_P": "-54.106434", "somo_ra": "0.11740259", "somo_rc": "-0.4352735", "nbo_P_ra": "1.0311735", "nbo_P_rc": "1.3892347", "efg_amp_P": "2.2721698", "fmo_omega": "0.029133944", "pyr_alpha": "15.987004", "qpole_amp": "2.7124748", "vbur_vbur": "46.693707", "vbur_vtot": "150.66718", "vmin_vmin": "-0.040183056", "E_solv_cds": "-1.3565575", "Pint_P_int": "15.947843", "Pint_P_max": "30.066975", "Pint_P_min": "11.740484", "fmo_e_homo": "-0.2286177", "fmo_e_lumo": "0.0028054991", "nbo_lp_P_e": "-0.36196208", "sphericity": "0.8630495", "sterimol_L": "6.1479006", "E_oxidation": "0.29353824", "E_reduction": "0.06152494", "sterimol_B1": "2.8385706", "sterimol_B5": "4.921627", "E_solv_total": "-4.629679", "dipolemoment": "1.843357", "efgtens_xx_P": "-1.3043388", "efgtens_yy_P": "-0.50367594", "efgtens_zz_P": "1.7756841", "nbo_bd_e_avg": "-0.64768463", "nbo_bd_e_max": "-0.5105935", "nbo_lp_P_occ": "1.9567367", "qpoletens_xx": "1.5678222", "qpoletens_yy": "0.058014434", "qpoletens_zz": "-2.12425", "surface_area": "182.38087", "E_solv_elstat": "-3.295655", "nbo_bds_e_avg": "0.1973085", "nbo_bds_e_min": "0.17276596", "nmrtens_sxx_P": "-25.44309", "nmrtens_syy_P": "21.11911", "nmrtens_szz_P": "233.2986", "spindens_P_ra": "0.38734344", "spindens_P_rc": "-0.09897761", "sterimol_burL": "6.2026315", "vbur_far_vbur": "-1.2194633", "vbur_far_vtot": "-5.882124", "nbo_bd_occ_avg": "1.9745715", "nbo_bd_occ_min": "1.9640181", "sterimol_burB1": "2.958693", "sterimol_burB5": "4.5966697", "vbur_near_vbur": "49.524506", "vbur_near_vtot": "162.24826", "vbur_ovbur_max": "13.702577", "vbur_ovbur_min": "-0.006985425", "vbur_ovtot_max": "52.039013", "vbur_ovtot_min": "-0.11091328", "vbur_qvbur_max": "12.542451", "vbur_qvbur_min": "9.961433", "vbur_qvtot_max": "52.87926", "vbur_qvtot_min": "29.741337", "nbo_bds_occ_avg": "0.09461724", "nbo_bds_occ_max": "0.10911119", "nbo_lp_P_percent_s": "61.1871", "vbur_max_delta_qvbur": "3.6103063", "vbur_max_delta_qvtot": "30.600473", "vbur_ratio_vbur_vtot": "0.32184526"}} CN(C)P(F)N(C)C {"max_data": {"B1": 2.638518084097458, "B5": 4.608543075191019, "lval": 6.74726677105398, "sasa": 307.59018904901615, "vbur": 48.535241332153525, "vtot": 149.02676124190154, "alpha": 96.35048, "p_int": 16.203848349809967, "sasa_P": 18.70994694244109, "pyr_val": 0.9591153305566945, "dip_norm": 1.3287979530387606, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 48.53524133215352, "near_vtot": 148.78033276102548, "ovbur_max": 14.72142406400334, "ovbur_min": 0.0, "ovtot_max": 54.43539997551558, "ovtot_min": 0.0, "pyr_alpha": 19.85645607739337, "qvbur_max": 14.72142406400334, "qvbur_min": 9.417981507295881, "qvtot_max": 54.43539997551558, "qvtot_min": 20.540060109556748, "cone_angle": 155.3708700908554, "p_int_area": 204.38936143554355, "p_int_atom": 21.480705016845594, "sasa_volume": 442.64926304816936, "EA_delta_SCC": 0.9404, "IP_delta_SCC": 6.7206, "HOMO_LUMO_gap": 5.228238246042, "sasa_volume_P": 16.153501658538733, "max_delta_qvbur": 5.326754392121556, "max_delta_qvtot": 34.294227647536545, "nucleophilicity": -6.5018, "p_int_atom_area": 20.297175678262054, "p_int_times_p_int_area": 3301.1222883572163, "global_electrophilicity_index": 1.2692, "p_int_atom_times_p_int_atom_area": 435.9976434198401}, "min_data": {"B1": 2.616194104872856, "B5": 4.534214437050322, "lval": 6.528268473126429, "sasa": 306.6801886987774, "vbur": 47.2997140552063, "vtot": 148.78033276102548, "alpha": 96.18785, "p_int": 16.047127589190563, "sasa_P": 18.20994836033417, "pyr_val": 0.9038269806365918, "dip_norm": 1.0603853073293688, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 47.299714055206294, "near_vtot": 145.55743171895492, "ovbur_max": 14.17359593177202, "ovbur_min": 0.0, "ovtot_max": 50.94007623850551, "ovtot_min": 0.0, "pyr_alpha": 13.609682160528209, "qvbur_max": 14.17359593177202, "qvbur_min": 9.289766412518338, "qvtot_max": 50.94007623850551, "qvtot_min": 18.758365864577364, "cone_angle": 146.45495886953046, "p_int_area": 201.88990669060476, "p_int_atom": 20.875541835485997, "sasa_volume": 441.711251609574, "EA_delta_SCC": 0.8611, "IP_delta_SCC": 6.5018, "HOMO_LUMO_gap": 5.168237493908, "sasa_volume_P": 15.744888912190909, "max_delta_qvbur": 4.032947526639079, "max_delta_qvtot": 30.512119059883627, "nucleophilicity": -6.7206, "p_int_atom_area": 19.097342633241638, "p_int_times_p_int_area": 3239.753091633912, "global_electrophilicity_index": 1.2014, "p_int_atom_times_p_int_atom_area": 398.6673750868461}, "boltzmann_averaged_data": {"B1": 2.6162443115617546, "B5": 4.573189758504513, "lval": 6.619988031000987, "sasa": 307.58912715692446, "vbur": 48.53246792309431, "vtot": 148.84691888776442, "alpha": 96.1946123803, "p_int": 16.15091289588412, "B1_std": 0.0010572818495573708, "B5_std": 0.001850082608188177, "sasa_P": 18.550302395160173, "pyr_val": 0.9562851864510136, "dip_norm": 1.076565941575069, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.006037615028483342, "sasa_std": 0.022404507459004522, "vbur_std": 0.058439084979923256, "vtot_std": 0.0032057308887932664, "alpha_std": 0.0005878494289969071, "near_vbur": 48.5324679230943, "near_vtot": 147.5661523038371, "ovbur_max": 14.685307853310515, "ovbur_min": 0.0, "ovtot_max": 53.04787530148566, "ovtot_min": 0.0, "p_int_std": 0.004920351305463904, "pyr_alpha": 14.101707823401531, "qvbur_max": 14.685307853310515, "qvbur_min": 9.417901897377941, "qvtot_max": 53.04787530148566, "qvtot_min": 18.762123566063273, "cone_angle": 155.36893795288177, "p_int_area": 204.38374063700383, "p_int_atom": 21.126592571477108, "sasa_P_std": 0.007640264650406164, "pyr_val_std": 0.00021329389685708275, "sasa_volume": 442.42303400998355, "EA_delta_SCC": 0.9296235070000001, "IP_delta_SCC": 6.702438762, "dip_norm_std": 0.0011062597277184945, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.228204654033427, "near_vbur_std": 0.058439084979923256, "near_vtot_std": 0.05787865620852762, "ovbur_max_std": 0.024246051101083393, "ovbur_min_std": 0.0, "ovtot_max_std": 0.09996686202796388, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.02957270414014104, "qvbur_max_std": 0.024246051101083393, "qvbur_min_std": 0.0017020573976628678, "qvtot_max_std": 0.09996686202796388, "qvtot_min_std": 0.079130921722538, "sasa_volume_P": 15.867713239830247, "cone_angle_std": 0.0480367354067215, "p_int_area_std": 0.118367174847463, "p_int_atom_std": 0.011947645343135535, "max_delta_qvbur": 5.265707805281834, "max_delta_qvtot": 34.28575173542239, "nucleophilicity": -6.702438762, "p_int_atom_area": 19.596160223517558, "sasa_volume_std": 0.03373296557610957, "EA_delta_SCC_std": 0.0005546562187075896, "IP_delta_SCC_std": 0.0010690550534729333, "HOMO_LUMO_gap_std": 0.0007216630370697232, "sasa_volume_P_std": 0.005889250733167568, "max_delta_qvbur_std": 0.05841061227335367, "max_delta_qvtot_std": 0.17880571482635388, "nucleophilicity_std": 0.0010690550534729333, "p_int_atom_area_std": 0.023738247586863357, "p_int_times_p_int_area": 3300.984572268543, "p_int_times_p_int_area_std": 2.902322891964042, "global_electrophilicity_index": 1.261217322, "p_int_atom_times_p_int_atom_area": 414.00037662378793, "global_electrophilicity_index_std": 0.0004228715506108212, "p_int_atom_times_p_int_atom_area_std": 0.7298164845574245}} \\x4000000000000000000802000000100000000000400000008003000000000010100800002000000038000000000000200010001001002000010000000000000002024080000002100000000400000000000000000000000000002000200000000000010020000000908000000000000001000200100000000000000000200080 \\x00000000022000000000000000000000000800000000000000000000000040000000000008020000004000000000020000010000100000000000000000000000 phal (-13.671655654907228, 0.4596064984798431, 1.5390762090682983, 4.942412853240967) (0.0265516582876443, 5.793511867523193) -1290 CN(C)P(F)F 113.0469970703125 {"max_data": {"pyr_P": 0.9675580553255899, "pyr_alpha": 12.137722109402157, "qpole_amp": 1.5289310158468423, "vbur_vbur": 40.152279685520014, "vbur_vtot": 110.2141011754984, "sterimol_L": 5.5844364246730045, "sterimol_B1": 2.1919315674788713, "sterimol_B5": 4.269673361114183, "dipolemoment": 2.9197862567717396, "qpoletens_xx": 0.8669207714463556, "qpoletens_yy": 0.34445433173328643, "qpoletens_zz": -1.211375103179642, "sterimol_burL": 5.5844364246730045, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.1919315674788713, "sterimol_burB5": 4.269673361114183, "vbur_near_vbur": 40.15227968552001, "vbur_near_vtot": 110.2141011754984, "vbur_ovbur_max": 11.728774795348302, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 46.145637337187864, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.728774795348302, "vbur_qvbur_min": 8.824297569854972, "vbur_qvtot_max": 46.145637337187864, "vbur_qvtot_min": 15.948002190604251, "vbur_max_delta_qvbur": 2.2298687233531815, "vbur_max_delta_qvtot": 26.044710734448678}, "min_data": {"pyr_P": 0.9675580553255899, "pyr_alpha": 12.137722109402157, "qpole_amp": 1.5289310158468423, "vbur_vbur": 40.152279685520014, "vbur_vtot": 110.2141011754984, "sterimol_L": 5.5844364246730045, "sterimol_B1": 2.1919315674788713, "sterimol_B5": 4.269673361114183, "dipolemoment": 2.9197862567717396, "qpoletens_xx": 0.8669207714463556, "qpoletens_yy": 0.34445433173328643, "qpoletens_zz": -1.211375103179642, "sterimol_burL": 5.5844364246730045, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.1919315674788713, "sterimol_burB5": 4.269673361114183, "vbur_near_vbur": 40.15227968552001, "vbur_near_vtot": 110.2141011754984, "vbur_ovbur_max": 11.728774795348302, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 46.145637337187864, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.728774795348302, "vbur_qvbur_min": 8.824297569854972, "vbur_qvtot_max": 46.145637337187864, "vbur_qvtot_min": 15.948002190604251, "vbur_max_delta_qvbur": 2.2298687233531815, "vbur_max_delta_qvtot": 26.044710734448678}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9675580553255899, "pyr_alpha": 12.137722109402157, "qpole_amp": 1.5289310158468423, "vbur_vbur": 40.152279685520014, "vbur_vtot": 110.2141011754984, "sterimol_L": 5.5844364246730045, "sterimol_B1": 2.1919315674788713, "sterimol_B5": 4.269673361114183, "dipolemoment": 2.9197862567717396, "qpoletens_xx": 0.8669207714463556, "qpoletens_yy": 0.34445433173328643, "qpoletens_zz": -1.211375103179642, "sterimol_burL": 5.5844364246730045, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.1919315674788713, "sterimol_burB5": 4.269673361114183, "vbur_near_vbur": 40.15227968552001, "vbur_near_vtot": 110.2141011754984, "vbur_ovbur_max": 11.728774795348302, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 46.145637337187864, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.728774795348302, "vbur_qvbur_min": 8.824297569854972, "vbur_qvtot_max": 46.145637337187864, "vbur_qvtot_min": 15.948002190604251, "vbur_max_delta_qvbur": 2.2298687233531815, "vbur_max_delta_qvtot": 26.044710734448678}, "boltzmann_averaged_data": {"nbo_P": 1.53637, "nmr_P": 61.9842, "pyr_P": 0.9675580553255899, "fmo_mu": -0.13097, "vmin_r": 1.9923119176868802, "volume": 125.61159, "Pint_dP": 3.08, "fmo_eta": 0.23994, "fukui_m": 0.21253999999999995, "fukui_p": 0.59866, "nuesp_P": -54.063281, "somo_ra": 0.12769, "somo_rc": -0.52684, "nbo_P_ra": 0.93771, "nbo_P_rc": 1.74891, "efg_amp_P": 2.391791582588667, "fmo_omega": 0.035744646369925824, "pyr_alpha": 12.137722109402157, "qpole_amp": 1.5289310158468423, "vbur_vbur": 40.152279685520014, "vbur_vtot": 110.2141011754984, "vmin_vmin": -0.0167852, "E_solv_cds": -0.13, "Pint_P_int": 15.04, "Pint_P_max": 26.22, "Pint_P_min": 9.98, "fmo_e_homo": -0.25094, "fmo_e_lumo": -0.011, "nbo_lp_P_e": -0.42618, "sphericity": 0.891056, "sterimol_L": 5.5844364246730045, "E_oxidation": 0.322965599999975, "E_reduction": 0.05806809999990037, "sterimol_B1": 2.1919315674788713, "sterimol_B5": 4.269673361114183, "E_solv_total": -3.6916382120349924, "dipolemoment": 2.9197862567717396, "efgtens_xx_P": -1.376235, "efgtens_yy_P": -0.511806, "efgtens_zz_P": 1.888041, "nbo_bd_e_avg": -0.7196766666666666, "nbo_bd_e_max": -0.59085, "nbo_lp_P_occ": 1.99297, "qpoletens_xx": 0.8669207714463556, "qpoletens_yy": 0.34445433173328643, "qpoletens_zz": -1.211375103179642, "surface_area": 136.1232, "E_solv_elstat": -3.5616382120349925, "nbo_bds_e_avg": 0.16341333333333333, "nbo_bds_e_min": 0.14843, "nmrtens_sxx_P": -47.9178, "nmrtens_syy_P": -24.1497, "nmrtens_szz_P": 258.0202, "spindens_P_ra": 0.74472, "spindens_P_rc": 0.16373, "sterimol_burL": 5.5844364246730045, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9858633333333333, "nbo_bd_occ_min": 1.97349, "sterimol_burB1": 2.1919315674788713, "sterimol_burB5": 4.269673361114183, "vbur_near_vbur": 40.15227968552001, "vbur_near_vtot": 110.2141011754984, "vbur_ovbur_max": 11.728774795348302, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 46.145637337187864, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.728774795348302, "vbur_qvbur_min": 8.824297569854972, "vbur_qvtot_max": 46.145637337187864, "vbur_qvtot_min": 15.948002190604251, "nbo_bds_occ_avg": 0.07110333333333334, "nbo_bds_occ_max": 0.07496, "nbo_lp_P_percent_s": 70.11, "vbur_max_delta_qvbur": 2.2298687233531815, "vbur_max_delta_qvtot": 26.044710734448678, "vbur_ratio_vbur_vtot": 0.3643116375969342}} {"max_data": {"B1": 2.313568949202735, "B5": 4.4635908299790685, "lval": 6.55711672500636, "sasa": 249.28877025503476, "vbur": 44.93356276067527, "vtot": 109.24725578413853, "alpha": 64.47542, "p_int": 15.059171878082472, "sasa_P": 30.66991302643871, "pyr_val": 0.9874943386566412, "dip_norm": 1.5104956140287202, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 44.93356276067527, "near_vtot": 109.24725578413853, "ovbur_max": 15.210972607699413, "ovbur_min": 0.0, "ovtot_max": 51.585719156795356, "ovtot_min": 0.0, "pyr_alpha": 10.613454788073211, "qvbur_max": 15.210972607699413, "qvbur_min": 9.81428270933556, "qvtot_max": 51.585719156795356, "qvtot_min": 17.58676867133967, "cone_angle": 144.63040838492768, "p_int_area": 147.28149281744453, "p_int_atom": 17.690729457297913, "sasa_volume": 334.3976978795545, "EA_delta_SCC": 1.0504, "IP_delta_SCC": 7.6583, "HOMO_LUMO_gap": 5.149739563111, "sasa_volume_P": 38.805557845335485, "max_delta_qvbur": 5.431657651485001, "max_delta_qvtot": 31.82062576842272, "nucleophilicity": -7.4973, "p_int_atom_area": 26.196354816279108, "p_int_times_p_int_area": 2217.937314798466, "global_electrophilicity_index": 1.4166, "p_int_atom_times_p_int_atom_area": 463.4326258221769}, "min_data": {"B1": 2.244945462679246, "B5": 4.199022299955779, "lval": 5.540819214342307, "sasa": 246.64881290860632, "vbur": 44.15261627430297, "vtot": 108.90041771768804, "alpha": 64.441126, "p_int": 14.99974224100897, "sasa_P": 29.909915181636183, "pyr_val": 0.9738182949006606, "dip_norm": 1.4806322973648793, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 44.15261627430297, "near_vtot": 108.90041771768804, "ovbur_max": 12.833165395461343, "ovbur_min": 0.0, "ovtot_max": 45.53864068419303, "ovtot_min": 0.0, "pyr_alpha": 7.528093403972619, "qvbur_max": 12.833165395461343, "qvbur_min": 9.779314956214412, "qvtot_max": 45.53864068419303, "qvtot_min": 16.473218329946608, "cone_angle": 129.95315717134025, "p_int_area": 144.68205648980606, "p_int_atom": 17.627376548761454, "sasa_volume": 331.992510359487, "EA_delta_SCC": 0.9459, "IP_delta_SCC": 7.4973, "HOMO_LUMO_gap": 4.77743568438, "sasa_volume_P": 38.36455703794466, "max_delta_qvbur": 2.331183541409871, "max_delta_qvtot": 25.142223110494715, "nucleophilicity": -7.6583, "p_int_atom_area": 25.696424380853934, "p_int_times_p_int_area": 2170.19355424619, "global_electrophilicity_index": 1.3787, "p_int_atom_times_p_int_atom_area": 452.9605485180867}, "boltzmann_averaged_data": {"B1": 2.3123275503315255, "B5": 4.458804785270947, "lval": 6.538731903038446, "sasa": 249.24101342663786, "vbur": 44.91943543873679, "vtot": 109.24098148351644, "alpha": 64.47479962154, "p_int": 15.058096795947812, "B1_std": 0.009145930655286386, "B5_std": 0.035260893197780245, "sasa_P": 29.923663542648658, "pyr_val": 0.9740656945322063, "dip_norm": 1.5099553866302713, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.13544905729166082, "sasa_std": 0.35184552762535415, "vbur_std": 0.1040821848567227, "vtot_std": 0.0462255280964772, "alpha_std": 0.0045706005594025965, "near_vbur": 44.91943543873679, "near_vtot": 109.24098148351644, "ovbur_max": 15.167958075230025, "ovbur_min": 0.0, "ovtot_max": 51.476327507225975, "ovtot_min": 0.0, "p_int_std": 0.007920602217682877, "pyr_alpha": 10.557640600634832, "qvbur_max": 15.167958075230025, "qvbur_min": 9.779947522868373, "qvtot_max": 51.476327507225975, "qvtot_min": 17.566624545663867, "cone_angle": 144.36489691047387, "p_int_area": 147.23446901427755, "p_int_atom": 17.68958340318249, "sasa_P_std": 0.10129021329092326, "pyr_val_std": 0.0018227017332913642, "sasa_volume": 334.3541880373165, "EA_delta_SCC": 0.9477904049999999, "IP_delta_SCC": 7.655387509999999, "dip_norm_std": 0.003980092489921191, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.143004585944755, "near_vbur_std": 0.1040821848567227, "near_vtot_std": 0.0462255280964772, "ovbur_max_std": 0.31690695090703885, "ovbur_min_std": 0.0, "ovtot_max_std": 0.8059363226694297, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.41120763014312184, "qvbur_max_std": 0.31690695090703885, "qvbur_min_std": 0.004660396336868159, "qvtot_max_std": 0.8059363226694297, "qvtot_min_std": 0.14841062032115462, "sasa_volume_P": 38.37253474255036, "cone_angle_std": 1.9561396339683275, "p_int_area_std": 0.34644500884221413, "p_int_atom_std": 0.008443483967938889, "max_delta_qvbur": 5.375570074833741, "max_delta_qvtot": 31.6998134643408, "nucleophilicity": -7.655387509999999, "p_int_atom_area": 26.187311074702265, "sasa_volume_std": 0.3205561154921499, "EA_delta_SCC_std": 0.013927443822754236, "IP_delta_SCC_std": 0.02145759287524809, "HOMO_LUMO_gap_std": 0.04961953450736364, "sasa_volume_P_std": 0.05877525330837345, "max_delta_qvbur_std": 0.41322180853564866, "max_delta_qvtot_std": 0.8900772999428211, "nucleophilicity_std": 0.02145759287524809, "p_int_atom_area_std": 0.06662921583415478, "p_int_times_p_int_area": 2217.0736301700754, "p_int_times_p_int_area_std": 6.363143951950744, "global_electrophilicity_index": 1.379385611, "p_int_atom_times_p_int_atom_area": 463.24318594374586, "global_electrophilicity_index_std": 0.0050511973290180475, "p_int_atom_times_p_int_atom_area_std": 1.3956867785670404}} {"max_data": {"pyr_P": "0.9655081", "pyr_alpha": "12.381192", "qpole_amp": "1.7897424", "vbur_vbur": "38.271557", "sterimol_L": "5.174263", "sterimol_B1": "2.403286", "sterimol_B5": "4.050179", "dipolemoment": "2.4172482", "qpoletens_xx": "0.85641694", "qpoletens_yy": "1.2621744", "qpoletens_zz": "-1.0074106", "sterimol_burL": "5.1337733", "vbur_far_vbur": "-0.94990844", "vbur_far_vtot": "-0.10222512", "sterimol_burB1": "2.2964745", "sterimol_burB5": "3.6407776", "vbur_near_vbur": "38.865963", "vbur_near_vtot": "109.87998", "vbur_ovbur_max": "9.521396", "vbur_ovbur_min": "-0.0049785343", "vbur_ovtot_max": "39.700756", "vbur_ovtot_min": "-0.03459347", "vbur_qvbur_max": "9.328438", "vbur_qvbur_min": "10.139184", "vbur_qvtot_max": "40.009487", "vbur_qvtot_min": "19.405022", "vbur_max_delta_qvbur": "2.0910625", "vbur_max_delta_qvtot": "20.515171"}, "min_data": {"pyr_P": "0.9641091", "pyr_alpha": "11.875615", "qpole_amp": "1.4800562", "vbur_vbur": "41.142704", "sterimol_L": "5.4820585", "sterimol_B1": "2.3675017", "sterimol_B5": "4.1256804", "dipolemoment": "2.8134034", "qpoletens_xx": "1.2952865", "qpoletens_yy": "0.42428714", "qpoletens_zz": "-1.4575136", "sterimol_burL": "5.486636", "vbur_far_vbur": "-0.15061975", "vbur_far_vtot": "-1.2691464", "sterimol_burB1": "2.3489745", "sterimol_burB5": "4.247716", "vbur_near_vbur": "39.584053", "vbur_near_vtot": "111.29891", "vbur_ovbur_max": "11.44667", "vbur_ovbur_min": "-0.018722532", "vbur_ovtot_max": "39.952015", "vbur_ovtot_min": "-0.01943002", "vbur_qvbur_max": "12.444706", "vbur_qvbur_min": "8.952613", "vbur_qvtot_max": "42.31132", "vbur_qvtot_min": "16.572666", "vbur_max_delta_qvbur": "3.6038108", "vbur_max_delta_qvtot": "26.624561"}, "delta_data": {"pyr_P": "-0.0026158984", "pyr_alpha": "0.5525465", "qpole_amp": "0.18283992", "vbur_vbur": "-1.5413043", "sterimol_L": "-0.12255308", "sterimol_B1": "0.025029855", "sterimol_B5": "-0.065044366", "dipolemoment": "-0.12470963", "qpoletens_xx": "-0.0579491", "qpoletens_yy": "-0.09313405", "qpoletens_zz": "0.216754", "sterimol_burL": "0.02154211", "vbur_far_vbur": "-1.2197826", "vbur_far_vtot": "-1.4549342", "sterimol_burB1": "0.053914264", "sterimol_burB5": "-0.15318403", "vbur_near_vbur": "-0.0899947", "vbur_near_vtot": "-2.358612", "vbur_ovbur_max": "0.05817638", "vbur_ovbur_min": "-0.18802324", "vbur_ovtot_max": "-1.7057484", "vbur_ovtot_min": "0.033874337", "vbur_qvbur_max": "-0.043166514", "vbur_qvbur_min": "0.17386691", "vbur_qvtot_max": "4.8460603", "vbur_qvtot_min": "0.89370924", "vbur_max_delta_qvbur": "-0.19739", "vbur_max_delta_qvtot": "0.09760869"}, "vburminconf_data": {"pyr_P": "0.9584842", "pyr_alpha": "12.9255085", "qpole_amp": "2.7945006", "vbur_vbur": "39.68824", "sterimol_L": "5.3170877", "sterimol_B1": "2.341952", "sterimol_B5": "4.1676016", "dipolemoment": "2.466472", "qpoletens_xx": "1.747208", "qpoletens_yy": "-0.00671386", "qpoletens_zz": "-2.2963848", "sterimol_burL": "5.289091", "vbur_far_vbur": "0.025403827", "vbur_far_vtot": "-1.9246248", "sterimol_burB1": "2.23668", "sterimol_burB5": "4.160289", "vbur_near_vbur": "40.195816", "vbur_near_vtot": "107.82906", "vbur_ovbur_max": "11.205456", "vbur_ovbur_min": "-0.00049193884", "vbur_ovtot_max": "42.642696", "vbur_ovtot_min": "-0.012987207", "vbur_qvbur_max": "12.9068165", "vbur_qvbur_min": "8.84676", "vbur_qvtot_max": "40.212746", "vbur_qvtot_min": "-2.5275605", "vbur_max_delta_qvbur": "1.7056813", "vbur_max_delta_qvtot": "19.440475"}, "boltzmann_averaged_data": {"nbo_P": "1.5820642", "nmr_P": "51.245396", "pyr_P": "0.96736497", "fmo_mu": "-0.13084012", "vmin_r": "1.9844575", "volume": "126.46865", "Pint_dP": "3.0901668", "fmo_eta": "0.24422789", "fukui_m": "0.17531738", "fukui_p": "0.6209421", "nuesp_P": "-54.06518", "somo_ra": "0.12817167", "somo_rc": "-0.5241109", "nbo_P_ra": "0.9495117", "nbo_P_rc": "1.727863", "efg_amp_P": "2.3629444", "fmo_omega": "0.035349134", "pyr_alpha": "12.278929", "qpole_amp": "1.4830803", "vbur_vbur": "39.827614", "vbur_vtot": "110.71548", "vmin_vmin": "-0.018189231", "E_solv_cds": "-0.15100782", "Pint_P_int": "14.893958", "Pint_P_max": "26.596428", "Pint_P_min": "10.182368", "fmo_e_homo": "-0.2554466", "fmo_e_lumo": "-0.008435508", "nbo_lp_P_e": "-0.42480287", "sphericity": "0.8937976", "sterimol_L": "5.487547", "E_oxidation": "0.32826978", "E_reduction": "0.05899664", "sterimol_B1": "2.2595332", "sterimol_B5": "3.9235694", "E_solv_total": "-3.646988", "dipolemoment": "2.8144975", "efgtens_xx_P": "-1.3832698", "efgtens_yy_P": "-0.50099105", "efgtens_zz_P": "1.8781352", "nbo_bd_e_avg": "-0.7186115", "nbo_bd_e_max": "-0.58402807", "nbo_lp_P_occ": "1.9908019", "qpoletens_xx": "0.93389016", "qpoletens_yy": "-0.07527543", "qpoletens_zz": "-1.2127119", "surface_area": "137.52225", "E_solv_elstat": "-3.4615498", "nbo_bds_e_avg": "0.1611389", "nbo_bds_e_min": "0.1494685", "nmrtens_sxx_P": "-106.17963", "nmrtens_syy_P": "-36.59654", "nmrtens_szz_P": "250.115", "spindens_P_ra": "0.8077857", "spindens_P_rc": "0.11993082", "sterimol_burL": "5.63089", "vbur_far_vbur": "-0.051035874", "vbur_far_vtot": "-0.4535241", "nbo_bd_occ_avg": "1.985829", "nbo_bd_occ_min": "1.9738204", "sterimol_burB1": "2.2167864", "sterimol_burB5": "3.9962754", "vbur_near_vbur": "39.98472", "vbur_near_vtot": "110.917305", "vbur_ovbur_max": "10.836249", "vbur_ovbur_min": "-0.015084078", "vbur_ovtot_max": "38.36048", "vbur_ovtot_min": "-0.07643638", "vbur_qvbur_max": "11.414402", "vbur_qvbur_min": "8.714307", "vbur_qvtot_max": "41.24735", "vbur_qvtot_min": "21.050957", "nbo_bds_occ_avg": "0.07380207", "nbo_bds_occ_max": "0.07990506", "nbo_lp_P_percent_s": "70.38211", "vbur_max_delta_qvbur": "2.020267", "vbur_max_delta_qvtot": "21.177658", "vbur_ratio_vbur_vtot": "0.37014717"}} CN(C)P(F)F {"max_data": {"B1": 2.296294692772376, "B5": 4.480657390117959, "lval": 6.630605530536832, "sasa": 248.89878344842452, "vbur": 42.753906149457045, "vtot": 108.80462197640594, "alpha": 64.440587, "p_int": 15.044163371515916, "sasa_P": 29.43991651445568, "pyr_val": 0.9800901950660208, "dip_norm": 1.4947287379320704, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 42.75390614945705, "near_vtot": 108.54328418369741, "ovbur_max": 14.546585298397599, "ovbur_min": 0.0, "ovtot_max": 52.29575227673999, "ovtot_min": 0.0, "pyr_alpha": 12.304452205764594, "qvbur_max": 14.546585298397599, "qvbur_min": 9.0916158114985, "qvtot_max": 52.29575227673999, "qvtot_min": 15.926388132988471, "cone_angle": 137.99055366313036, "p_int_area": 146.38197876203057, "p_int_atom": 17.768133365111808, "sasa_volume": 333.40514276278327, "EA_delta_SCC": 0.8592, "IP_delta_SCC": 7.6791, "HOMO_LUMO_gap": 5.495319736324, "sasa_volume_P": 24.4773303239169, "max_delta_qvbur": 5.454969486899099, "max_delta_qvtot": 34.14157512754652, "nucleophilicity": -7.5, "p_int_atom_area": 25.99638264210904, "p_int_times_p_int_area": 2202.194403141761, "global_electrophilicity_index": 1.3153, "p_int_atom_times_p_int_atom_area": 460.6774951290582}, "min_data": {"B1": 2.1878997439009567, "B5": 4.346054870434367, "lval": 5.180843027876575, "sasa": 245.4588253895017, "vbur": 42.07786292244818, "vtot": 108.55687907781265, "alpha": 64.353222, "p_int": 15.007267272758783, "sasa_P": 28.289919775609757, "pyr_val": 0.9650634653568663, "dip_norm": 1.4710557433353775, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 42.07786292244818, "near_vtot": 104.32013200112503, "ovbur_max": 13.41596128081381, "ovbur_min": 0.0, "ovtot_max": 46.41871186270488, "ovtot_min": 0.0, "pyr_alpha": 9.52058424015201, "qvbur_max": 13.41596128081381, "qvbur_min": 8.951744799013907, "qvtot_max": 46.41871186270488, "qvtot_min": 15.028019207308645, "cone_angle": 129.91913390464345, "p_int_area": 143.28147818988998, "p_int_atom": 17.7208306813753, "sasa_volume": 330.21215487874247, "EA_delta_SCC": 0.8003, "IP_delta_SCC": 7.5, "HOMO_LUMO_gap": 5.121051918025, "sasa_volume_P": 22.764968255202668, "max_delta_qvbur": 3.776517337083991, "max_delta_qvtot": 27.47925303249684, "nucleophilicity": -7.6791, "p_int_atom_area": 24.59657742291855, "p_int_times_p_int_area": 2150.2634384316375, "global_electrophilicity_index": 1.3065, "p_int_atom_times_p_int_atom_area": 437.0352679757149}, "boltzmann_averaged_data": {"B1": 2.2880501729612157, "B5": 4.4704195224708245, "lval": 6.520336594584493, "sasa": 248.63714023846285, "vbur": 42.12928277029447, "vtot": 108.57572240267966, "alpha": 64.43394201809998, "p_int": 15.041357054244449, "B1_std": 0.028734860300399866, "B5_std": 0.03568233242840407, "sasa_P": 29.352447762499054, "pyr_val": 0.9662063984185445, "dip_norm": 1.492928169963046, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.38432347094067226, "sasa_std": 0.9119125502760875, "vbur_std": 0.17921506386957886, "vtot_std": 0.06567517818509058, "alpha_std": 0.02315994514764802, "near_vbur": 42.12928277029447, "near_vtot": 104.64134495613149, "ovbur_max": 14.460590035620175, "ovbur_min": 0.0, "ovtot_max": 51.848744582848475, "ovtot_min": 0.0, "p_int_std": 0.009780937713929879, "pyr_alpha": 12.0927112083001, "qvbur_max": 14.460590035620175, "qvbur_min": 9.08097722228892, "qvtot_max": 51.848744582848475, "qvtot_min": 15.858058192501263, "cone_angle": 137.37664147629985, "p_int_area": 146.14615468851355, "p_int_atom": 17.7244285235003, "sasa_P_std": 0.3048573386556207, "pyr_val_std": 0.003983497233589957, "sasa_volume": 333.16228410432313, "EA_delta_SCC": 0.8047799339999999, "IP_delta_SCC": 7.665477654, "dip_norm_std": 0.0062755709533569605, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.4668529260641785, "near_vbur_std": 0.17921506386958072, "near_vtot_std": 1.1195326835524073, "ovbur_max_std": 0.2997217447473997, "ovbur_min_std": 0.0, "ovtot_max_std": 1.5579686787566798, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.7379869442212372, "qvbur_max_std": 0.2997217447473997, "qvbur_min_std": 0.03707897873163708, "qvtot_max_std": 1.5579686787566798, "qvtot_min_std": 0.23815229257824444, "sasa_volume_P": 24.347088064970496, "cone_angle_std": 2.1396856735559777, "p_int_area_std": 0.821924376821777, "p_int_atom_std": 0.012539661886043238, "max_delta_qvbur": 5.327306416384162, "max_delta_qvtot": 33.63483890899704, "nucleophilicity": -7.665477654, "p_int_atom_area": 25.88991345713741, "sasa_volume_std": 0.8464422165798332, "EA_delta_SCC_std": 0.015614041884010802, "IP_delta_SCC_std": 0.047478351467340196, "HOMO_LUMO_gap_std": 0.09921618660030469, "sasa_volume_P_std": 0.4539370638624009, "max_delta_qvbur_std": 0.444947744779645, "max_delta_qvtot_std": 1.7661422111523999, "nucleophilicity_std": 0.047478351467340196, "p_int_atom_area_std": 0.3710800903547921, "p_int_times_p_int_area": 2198.244533965909, "p_int_times_p_int_area_std": 13.766591817673298, "global_electrophilicity_index": 1.3071693279999999, "p_int_atom_times_p_int_atom_area": 458.8792673317748, "global_electrophilicity_index_std": 0.002332827989461696, "p_int_atom_times_p_int_atom_area_std": 6.267414685969441}} \\x4000000000000000000002000000000000000000400000008200000000000010100000000000000008000000000000000020001000002001000000000000000002004080000002100000000400000004000000000400000000000000080000000000000000000800000000000000000000000000100000400000000000200080 \\x00000000022100000000000000000000000800000000000004000000000040000000000008000000000000000000020000010000000000000000000000000000 phal (-19.96812057495117, -2.4012796878814697, 0.9209666848182678, 7.021976947784424) (-0.2754976749420166, 6.249284267425537) -128 CN(C)P(N(C)C)N(C)C 163.2050018310547 {"max_data": {"pyr_P": 0.9136316912405, "pyr_alpha": 19.182495285260842, "qpole_amp": 2.7447041201706437, "vbur_vbur": 54.827367892540884, "vbur_vtot": 191.37015534952832, "sterimol_L": 6.471899378980455, "sterimol_B1": 3.6131445769407913, "sterimol_B5": 4.684096540352365, "dipolemoment": 1.0304171333759309, "qpoletens_xx": 1.228781980491954, "qpoletens_yy": 1.0086529053263389, "qpoletens_zz": -2.237434885818293, "sterimol_burL": 6.471899378980455, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.6131445769407913, "sterimol_burB5": 4.684096540352365, "vbur_near_vbur": 54.82736789254088, "vbur_near_vtot": 190.0461284404733, "vbur_ovbur_max": 16.455217928947285, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 55.505914891232614, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.455217928947285, "vbur_qvbur_min": 10.967356206886242, "vbur_qvtot_max": 55.505914891232614, "vbur_qvtot_min": 40.32323736540309, "vbur_max_delta_qvbur": 5.487861722061043, "vbur_max_delta_qvtot": 15.182499884940043}, "min_data": {"pyr_P": 0.9136316912405, "pyr_alpha": 19.182495285260842, "qpole_amp": 2.7447041201706437, "vbur_vbur": 54.827367892540884, "vbur_vtot": 191.37015534952832, "sterimol_L": 6.471899378980455, "sterimol_B1": 3.6131445769407913, "sterimol_B5": 4.684096540352365, "dipolemoment": 1.0304171333759309, "qpoletens_xx": 1.228781980491954, "qpoletens_yy": 1.0086529053263389, "qpoletens_zz": -2.237434885818293, "sterimol_burL": 6.471899378980455, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.6131445769407913, "sterimol_burB5": 4.684096540352365, "vbur_near_vbur": 54.82736789254088, "vbur_near_vtot": 190.0461284404733, "vbur_ovbur_max": 16.455217928947285, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 55.505914891232614, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.455217928947285, "vbur_qvbur_min": 10.967356206886242, "vbur_qvtot_max": 55.505914891232614, "vbur_qvtot_min": 40.32323736540309, "vbur_max_delta_qvbur": 5.487861722061043, "vbur_max_delta_qvtot": 15.182499884940043}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9136316912405, "pyr_alpha": 19.182495285260842, "qpole_amp": 2.7447041201706437, "vbur_vbur": 54.827367892540884, "vbur_vtot": 191.37015534952832, "sterimol_L": 6.471899378980455, "sterimol_B1": 3.6131445769407913, "sterimol_B5": 4.684096540352365, "dipolemoment": 1.0304171333759309, "qpoletens_xx": 1.228781980491954, "qpoletens_yy": 1.0086529053263389, "qpoletens_zz": -2.237434885818293, "sterimol_burL": 6.471899378980455, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.6131445769407913, "sterimol_burB5": 4.684096540352365, "vbur_near_vbur": 54.82736789254088, "vbur_near_vtot": 190.0461284404733, "vbur_ovbur_max": 16.455217928947285, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 55.505914891232614, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.455217928947285, "vbur_qvbur_min": 10.967356206886242, "vbur_qvtot_max": 55.505914891232614, "vbur_qvtot_min": 40.32323736540309, "vbur_max_delta_qvbur": 5.487861722061043, "vbur_max_delta_qvtot": 15.182499884940043}, "boltzmann_averaged_data": {"nbo_P": 1.26803, "nmr_P": 153.0961, "pyr_P": 0.9136316912405, "fmo_mu": -0.09190000000000001, "vmin_r": 1.8040150635763201, "volume": 240.18757, "Pint_dP": 3.56, "fmo_eta": 0.24268, "fukui_m": 0.26535, "fukui_p": 0.045379999999999976, "nuesp_P": -54.150704, "somo_ra": 0.11506, "somo_rc": -0.3795, "nbo_P_ra": 1.22265, "nbo_P_rc": 1.53338, "efg_amp_P": 1.8979089898311774, "fmo_omega": 0.017400712872919073, "pyr_alpha": 19.182495285260842, "qpole_amp": 2.7447041201706437, "vbur_vbur": 54.827367892540884, "vbur_vtot": 191.37015534952832, "vmin_vmin": -0.0566069, "E_solv_cds": -2.33, "Pint_P_int": 16.97, "Pint_P_max": 34.2, "Pint_P_min": 12.2, "fmo_e_homo": -0.21324, "fmo_e_lumo": 0.02944, "nbo_lp_P_e": -0.32522, "sphericity": 0.833246, "sterimol_L": 6.471899378980455, "E_oxidation": 0.2725433000000521, "E_reduction": 0.07300500000008014, "sterimol_B1": 3.6131445769407913, "sterimol_B5": 4.684096540352365, "E_solv_total": -5.1588808547514144, "dipolemoment": 1.0304171333759309, "efgtens_xx_P": -0.853376, "efgtens_yy_P": -0.693509, "efgtens_zz_P": 1.546885, "nbo_bd_e_avg": -0.5606666666666666, "nbo_bd_e_max": -0.53389, "nbo_lp_P_occ": 1.94874, "qpoletens_xx": 1.228781980491954, "qpoletens_yy": 1.0086529053263389, "qpoletens_zz": -2.237434885818293, "surface_area": 224.25636, "E_solv_elstat": -2.8288808547514144, "nbo_bds_e_avg": 0.22264333333333333, "nbo_bds_e_min": 0.20257, "nmrtens_sxx_P": 91.0157, "nmrtens_syy_P": 111.1174, "nmrtens_szz_P": 257.1552, "spindens_P_ra": 0.06204, "spindens_P_rc": 0.29307, "sterimol_burL": 6.471899378980455, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.96516, "nbo_bd_occ_min": 1.95884, "sterimol_burB1": 3.6131445769407913, "sterimol_burB5": 4.684096540352365, "vbur_near_vbur": 54.82736789254088, "vbur_near_vtot": 190.0461284404733, "vbur_ovbur_max": 16.455217928947285, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 55.505914891232614, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.455217928947285, "vbur_qvbur_min": 10.967356206886242, "vbur_qvtot_max": 55.505914891232614, "vbur_qvtot_min": 40.32323736540309, "nbo_bds_occ_avg": 0.08721666666666666, "nbo_bds_occ_max": 0.09377, "nbo_lp_P_percent_s": 57.08, "vbur_max_delta_qvbur": 5.487861722061043, "vbur_max_delta_qvtot": 15.182499884940043, "vbur_ratio_vbur_vtot": 0.2864990509748051}} {"max_data": {"B1": 3.6966839922738357, "B5": 4.626190950844402, "lval": 6.312378886610581, "sasa": 358.5211370803288, "vbur": 60.272750463152235, "vtot": 190.0029952414538, "alpha": 128.647755, "p_int": 17.018734500171, "sasa_P": 11.109968494415845, "pyr_val": 0.9547699942230786, "dip_norm": 0.475009473589738, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 60.272750463152235, "near_vtot": 190.0029952414538, "ovbur_max": 17.565467984523384, "ovbur_min": 0.0, "ovtot_max": 54.95446009573668, "ovtot_min": 0.0, "pyr_alpha": 17.730967029299467, "qvbur_max": 17.565467984523384, "qvbur_min": 13.182842926672825, "qvtot_max": 54.95446009573668, "qvtot_min": 41.574689494069446, "cone_angle": 172.04071974507482, "p_int_area": 256.1974416297638, "p_int_atom": 24.950630832225873, "sasa_volume": 545.928418148432, "EA_delta_SCC": 0.8312, "IP_delta_SCC": 6.0407, "HOMO_LUMO_gap": 5.149882616621, "sasa_volume_P": 14.400512305330123, "max_delta_qvbur": 5.058668284859424, "max_delta_qvtot": 13.005590735409413, "nucleophilicity": -5.799, "p_int_atom_area": 14.797940888585146, "p_int_times_p_int_area": 4360.1562387200065, "global_electrophilicity_index": 1.1322, "p_int_atom_times_p_int_atom_area": 369.21796018818844}, "min_data": {"B1": 3.592005183600604, "B5": 4.6121741451463425, "lval": 6.2565403381552365, "sasa": 356.8711357557965, "vbur": 59.9114170142337, "vtot": 188.76804699988804, "alpha": 128.646649, "p_int": 16.906092973675143, "sasa_P": 10.619969883951068, "pyr_val": 0.9266594409862835, "dip_norm": 0.29380946206683, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 59.911417014233706, "near_vtot": 188.76804699988804, "ovbur_max": 17.507188395988138, "ovbur_min": 0.0, "ovtot_max": 54.453120315508095, "ovtot_min": 0.0, "pyr_alpha": 14.34030847813065, "qvbur_max": 17.507188395988138, "qvbur_min": 12.448520111128714, "qvtot_max": 54.453120315508095, "qvtot_min": 40.67882853024222, "cone_angle": 170.3253075386487, "p_int_area": 252.59809766555318, "p_int_atom": 24.867418135216987, "sasa_volume": 544.5770264067987, "EA_delta_SCC": 0.8295, "IP_delta_SCC": 5.799, "HOMO_LUMO_gap": 4.554608866201, "sasa_volume_P": 13.660507291557026, "max_delta_qvbur": 3.834796925619239, "max_delta_qvtot": 12.651829059354299, "nucleophilicity": -6.0407, "p_int_atom_area": 14.797940888585146, "p_int_times_p_int_area": 4270.446924107317, "global_electrophilicity_index": 1.1061, "p_int_atom_times_p_int_atom_area": 367.9865836166712}, "boltzmann_averaged_data": {"B1": 3.5920072771767773, "B5": 4.626190670508287, "lval": 6.312377769839612, "sasa": 356.87116875582296, "vbur": 59.911424240902676, "vtot": 188.76807169885285, "alpha": 128.64664902212, "p_int": 16.906095226505673, "B1_std": 0.0004681331825920345, "B5_std": 0.00006268443388279182, "sasa_P": 11.109958694443636, "pyr_val": 0.9266600031973482, "dip_norm": 0.47500584958950753, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0002497150830338453, "sasa_std": 0.00737895645856637, "vbur_std": 0.001615916149248706, "vtot_std": 0.005522801204829198, "alpha_std": 0.000004946132904127015, "near_vbur": 59.91142424090268, "near_vtot": 188.76807169885285, "ovbur_max": 17.507189561579906, "ovbur_min": 0.0, "ovtot_max": 54.4531303423037, "ovtot_min": 0.0, "p_int_std": 0.0005037431831607642, "pyr_alpha": 17.730899216128442, "qvbur_max": 17.507189561579906, "qvbur_min": 12.448534797585024, "qvtot_max": 54.4531303423037, "qvtot_min": 40.678846447461495, "cone_angle": 170.32534184689283, "p_int_area": 252.59816965243246, "p_int_atom": 24.950629167971933, "sasa_P_std": 0.0021913184902457583, "pyr_val_std": 0.00012571295869675704, "sasa_volume": 544.5770534346335, "EA_delta_SCC": 0.829500034, "IP_delta_SCC": 6.040695166000001, "dip_norm_std": 0.0008103429830265512, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.149870711145992, "near_vbur_std": 0.0016159161492486742, "near_vtot_std": 0.005522801204829198, "ovbur_max_std": 0.00026063163697559005, "ovbur_min_std": 0.0, "ovtot_max_std": 0.002242037236123164, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.01516333438219049, "qvbur_max_std": 0.00026063163697559005, "qvbur_min_std": 0.003283958625892482, "qvtot_max_std": 0.002242037236123164, "qvtot_min_std": 0.004006371962691718, "sasa_volume_P": 14.400497505229847, "cone_angle_std": 0.007671479890053783, "p_int_area_std": 0.016096594588396483, "p_int_atom_std": 0.0003721347728023749, "max_delta_qvbur": 5.058643807432238, "max_delta_qvtot": 13.005583660175892, "nucleophilicity": -6.040695166000001, "p_int_atom_area": 14.797940888585146, "sasa_volume_std": 0.006043547160669535, "EA_delta_SCC_std": 0.000007602555096808071, "IP_delta_SCC_std": 0.0010809044511167478, "HOMO_LUMO_gap_std": 0.0026621185207361987, "sasa_volume_P_std": 0.0033093699347788623, "max_delta_qvbur_std": 0.005473264376487471, "max_delta_qvtot_std": 0.0015820544902047774, "nucleophilicity_std": 0.0010809044511167478, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 4270.448718293609, "p_int_times_p_int_area_std": 0.4011882394352062, "global_electrophilicity_index": 1.1321994780000002, "p_int_atom_times_p_int_atom_area": 369.217935560657, "global_electrophilicity_index_std": 0.00011672158119216863, "p_int_atom_times_p_int_atom_area_std": 0.0055068283705165125}} {"max_data": {"pyr_P": "0.93778634", "pyr_alpha": "20.219345", "qpole_amp": "3.545626", "vbur_vbur": "54.08069", "sterimol_L": "6.717602", "sterimol_B1": "3.5952451", "sterimol_B5": "5.215473", "dipolemoment": "1.2392075", "qpoletens_xx": "1.3994724", "qpoletens_yy": "0.7873101", "qpoletens_zz": "-0.33673173", "sterimol_burL": "6.8719296", "vbur_far_vbur": "-4.008558", "vbur_far_vtot": "-3.0228047", "sterimol_burB1": "3.6957207", "sterimol_burB5": "5.0251718", "vbur_near_vbur": "59.348522", "vbur_near_vtot": "197.37367", "vbur_ovbur_max": "17.837818", "vbur_ovbur_min": "-0.20441397", "vbur_ovtot_max": "58.213768", "vbur_ovtot_min": "-0.05386178", "vbur_qvbur_max": "16.952997", "vbur_qvbur_min": "13.6923", "vbur_qvtot_max": "48.538025", "vbur_qvtot_min": "44.28103", "vbur_max_delta_qvbur": "7.3547206", "vbur_max_delta_qvtot": "32.83203"}, "min_data": {"pyr_P": "0.9048703", "pyr_alpha": "16.813013", "qpole_amp": "1.8358971", "vbur_vbur": "51.053173", "sterimol_L": "6.456803", "sterimol_B1": "3.3750498", "sterimol_B5": "5.1785417", "dipolemoment": "0.5380332", "qpoletens_xx": "0.95035315", "qpoletens_yy": "0.20916772", "qpoletens_zz": "-2.8789673", "sterimol_burL": "6.3774753", "vbur_far_vbur": "-0.061177563", "vbur_far_vtot": "-1.4304935", "sterimol_burB1": "3.4185052", "sterimol_burB5": "4.790071", "vbur_near_vbur": "54.170433", "vbur_near_vtot": "190.74446", "vbur_ovbur_max": "15.866352", "vbur_ovbur_min": "-0.0012134365", "vbur_ovtot_max": "64.83907", "vbur_ovtot_min": "0.016195036", "vbur_qvbur_max": "15.289842", "vbur_qvbur_min": "10.399891", "vbur_qvtot_max": "60.97879", "vbur_qvtot_min": "36.707615", "vbur_max_delta_qvbur": "3.7411225", "vbur_max_delta_qvtot": "18.16919"}, "delta_data": {"pyr_P": "0.04533256", "pyr_alpha": "6.3649244", "qpole_amp": "0.81344247", "vbur_vbur": "3.36875", "sterimol_L": "0.2687711", "sterimol_B1": "0.13095464", "sterimol_B5": "0.2706146", "dipolemoment": "0.45029172", "qpoletens_xx": "0.02253443", "qpoletens_yy": "0.4457696", "qpoletens_zz": "1.0458623", "sterimol_burL": "0.43595713", "vbur_far_vbur": "-0.5859809", "vbur_far_vtot": "0.6562068", "sterimol_burB1": "0.24917598", "sterimol_burB5": "0.172094", "vbur_near_vbur": "4.2456603", "vbur_near_vtot": "3.00587", "vbur_ovbur_max": "2.8786886", "vbur_ovbur_min": "-0.10308378", "vbur_ovtot_max": "1.3766698", "vbur_ovtot_min": "0.17444964", "vbur_qvbur_max": "1.7937485", "vbur_qvbur_min": "2.173036", "vbur_qvtot_max": "-4.544416", "vbur_qvtot_min": "3.2673075", "vbur_max_delta_qvbur": "5.1250806", "vbur_max_delta_qvtot": "3.7864587"}, "vburminconf_data": {"pyr_P": "0.93720686", "pyr_alpha": "16.501368", "qpole_amp": "3.8421912", "vbur_vbur": "51.4769", "sterimol_L": "6.699207", "sterimol_B1": "3.41401", "sterimol_B5": "5.294635", "dipolemoment": "1.0599036", "qpoletens_xx": "2.2703815", "qpoletens_yy": "0.6169778", "qpoletens_zz": "-3.4077432", "sterimol_burL": "6.921035", "vbur_far_vbur": "0.16380261", "vbur_far_vtot": "-1.9555644", "sterimol_burB1": "3.6720035", "sterimol_burB5": "5.0118704", "vbur_near_vbur": "53.582882", "vbur_near_vtot": "199.3856", "vbur_ovbur_max": "15.578846", "vbur_ovbur_min": "0.047083568", "vbur_ovtot_max": "66.48632", "vbur_ovtot_min": "-0.00013026668", "vbur_qvbur_max": "15.159199", "vbur_qvbur_min": "11.65961", "vbur_qvtot_max": "65.96874", "vbur_qvtot_min": "40.343098", "vbur_max_delta_qvbur": "4.838111", "vbur_max_delta_qvtot": "28.086208"}, "boltzmann_averaged_data": {"nbo_P": "1.2930545", "nmr_P": "137.44218", "pyr_P": "0.89013886", "fmo_mu": "-0.09622344", "vmin_r": "1.7907112", "volume": "239.03331", "Pint_dP": "3.3263586", "fmo_eta": "0.24024577", "fukui_m": "0.03750371", "fukui_p": "0.13384563", "nuesp_P": "-54.15051", "somo_ra": "0.11239632", "somo_rc": "-0.38781682", "nbo_P_ra": "1.170218", "nbo_P_rc": "1.3953704", "efg_amp_P": "2.0255527", "fmo_omega": "0.021681104", "pyr_alpha": "21.732157", "qpole_amp": "2.632595", "vbur_vbur": "52.05286", "vbur_vtot": "190.51605", "vmin_vmin": "-0.053983893", "E_solv_cds": "-2.3057806", "Pint_P_int": "16.887453", "Pint_P_max": "32.417027", "Pint_P_min": "12.056687", "fmo_e_homo": "-0.21441837", "fmo_e_lumo": "0.030395525", "nbo_lp_P_e": "-0.31703898", "sphericity": "0.8506796", "sterimol_L": "6.570007", "E_oxidation": "0.2741224", "E_reduction": "0.065716445", "sterimol_B1": "3.6774774", "sterimol_B5": "5.3482265", "E_solv_total": "-5.549123", "dipolemoment": "0.82048774", "efgtens_xx_P": "-1.0266573", "efgtens_yy_P": "-0.6512369", "efgtens_zz_P": "1.6777945", "nbo_bd_e_avg": "-0.5741592", "nbo_bd_e_max": "-0.50143784", "nbo_lp_P_occ": "1.9342145", "qpoletens_xx": "1.8190234", "qpoletens_yy": "0.0055970796", "qpoletens_zz": "-1.9576361", "surface_area": "216.6783", "E_solv_elstat": "-3.1660006", "nbo_bds_e_avg": "0.22919135", "nbo_bds_e_min": "0.21112525", "nmrtens_sxx_P": "93.24974", "nmrtens_syy_P": "110.11077", "nmrtens_szz_P": "230.67464", "spindens_P_ra": "0.14801228", "spindens_P_rc": "0.013187124", "sterimol_burL": "6.3869247", "vbur_far_vbur": "-2.8910828", "vbur_far_vtot": "-12.847293", "nbo_bd_occ_avg": "1.9656377", "nbo_bd_occ_min": "1.9584819", "sterimol_burB1": "3.6221955", "sterimol_burB5": "5.070936", "vbur_near_vbur": "57.534325", "vbur_near_vtot": "210.96684", "vbur_ovbur_max": "16.72965", "vbur_ovbur_min": "0.021397673", "vbur_ovtot_max": "64.48403", "vbur_ovtot_min": "-0.100438505", "vbur_qvbur_max": "15.028672", "vbur_qvbur_min": "10.625459", "vbur_qvtot_max": "56.81412", "vbur_qvtot_min": "38.334316", "nbo_bds_occ_avg": "0.110766284", "nbo_bds_occ_max": "0.12667999", "nbo_lp_P_percent_s": "54.687603", "vbur_max_delta_qvbur": "5.6454678", "vbur_max_delta_qvtot": "21.397009", "vbur_ratio_vbur_vtot": "0.29248214"}} CN(C)P(N(C)C)N(C)C {"max_data": {"B1": 3.6276589897449125, "B5": 4.638304550590663, "lval": 6.629248206287054, "sasa": 357.85116025049535, "vbur": 54.538038951283944, "vtot": 188.9954559704354, "alpha": 128.590442, "p_int": 17.077717508572036, "sasa_P": 11.789966566081265, "pyr_val": 0.9323325589672911, "dip_norm": 0.5732686979070111, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.538038951283944, "near_vtot": 189.18117859118917, "ovbur_max": 15.26925219623466, "ovbur_min": 0.0, "ovtot_max": 54.41463428154095, "ovtot_min": 0.0, "pyr_alpha": 21.356675872777604, "qvbur_max": 15.26925219623466, "qvbur_min": 12.401896440300519, "qvtot_max": 54.41463428154095, "qvtot_min": 43.42309363998511, "cone_angle": 165.61542485620663, "p_int_area": 255.09731625103043, "p_int_atom": 25.62177760887972, "sasa_volume": 544.0553929380696, "EA_delta_SCC": 0.8109, "IP_delta_SCC": 6.0417, "HOMO_LUMO_gap": 5.671971261105, "sasa_volume_P": 10.06484866954608, "max_delta_qvbur": 2.610925566379059, "max_delta_qvtot": 15.908395532051763, "nucleophilicity": -5.8337, "p_int_atom_area": 15.197885236925282, "p_int_times_p_int_area": 4356.47990412996, "global_electrophilicity_index": 1.1222, "p_int_atom_times_p_int_atom_area": 389.3968356657759}, "min_data": {"B1": 3.5326597643116213, "B5": 4.598619242639861, "lval": 6.537696476672092, "sasa": 353.3611674745187, "vbur": 52.882898636882935, "vtot": 188.66693112537467, "alpha": 128.569506, "p_int": 16.96726133493177, "sasa_P": 9.909971897359233, "pyr_val": 0.8991601410267431, "dip_norm": 0.355382892103714, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 52.88289863688294, "near_vtot": 187.3131134015719, "ovbur_max": 14.476649792155301, "ovbur_min": 0.0, "ovtot_max": 52.126295717614084, "ovtot_min": 0.0, "pyr_alpha": 17.80612048974376, "qvbur_max": 14.476649792155301, "qvbur_min": 11.900691978897395, "qvtot_max": 52.126295717614084, "qvtot_min": 38.13162027108905, "cone_angle": 159.28922922138813, "p_int_area": 250.1978895989449, "p_int_atom": 24.49202283285035, "sasa_volume": 539.552158343541, "EA_delta_SCC": 0.7683, "IP_delta_SCC": 5.8337, "HOMO_LUMO_gap": 5.085716810433, "sasa_volume_P": 8.506276835154903, "max_delta_qvbur": 2.004817845612491, "max_delta_qvtot": 8.703202077628973, "nucleophilicity": -6.0417, "p_int_atom_area": 13.49812175647969, "p_int_times_p_int_area": 4247.759276352589, "global_electrophilicity_index": 1.0764, "p_int_atom_times_p_int_atom_area": 332.7245710435374}, "boltzmann_averaged_data": {"B1": 3.6104476417464135, "B5": 4.628869540302051, "lval": 6.5454798992631185, "sasa": 356.81660767141284, "vbur": 54.341138913674904, "vtot": 188.95318232989231, "alpha": 128.57775039970002, "p_int": 17.07648650049866, "B1_std": 0.028650626090675153, "B5_std": 0.015668766717015066, "sasa_P": 10.165575972518685, "pyr_val": 0.9079619668178364, "dip_norm": 0.5006352893192554, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0129333484260257, "sasa_std": 0.736855031711609, "vbur_std": 0.11833693563318792, "vtot_std": 0.0711043808347684, "alpha_std": 0.004952072435877765, "near_vbur": 54.341138913674904, "near_vtot": 188.68583281152334, "ovbur_max": 14.883466613472752, "ovbur_min": 0.0, "ovtot_max": 54.12402391121018, "ovtot_min": 0.0, "p_int_std": 0.007374416425300949, "pyr_alpha": 20.416065483339366, "qvbur_max": 14.883466613472752, "qvbur_min": 12.269982456597821, "qvtot_max": 54.12402391121018, "qvtot_min": 40.547578828804006, "cone_angle": 164.42422641478007, "p_int_area": 254.8442848430441, "p_int_atom": 25.365877103408646, "sasa_P_std": 0.22909666200455367, "pyr_val_std": 0.014620707057730541, "sasa_volume": 543.4669159766943, "EA_delta_SCC": 0.799953979, "IP_delta_SCC": 5.9863808679999995, "dip_norm_std": 0.08659740185609291, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 5.516504739125959, "near_vbur_std": 0.11833693563318479, "near_vtot_std": 0.8229685070858077, "ovbur_max_std": 0.2307333702937823, "ovbur_min_std": 0.0, "ovtot_max_std": 0.41338141530736877, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.5632274834702988, "qvbur_max_std": 0.2307333702937823, "qvbur_min_std": 0.2201626112599944, "qvtot_max_std": 0.41338141530736877, "qvtot_min_std": 0.19132353655932727, "sasa_volume_P": 8.774092853273775, "cone_angle_std": 0.7096193346906845, "p_int_area_std": 0.46435618711694354, "p_int_atom_std": 0.4249034685858261, "max_delta_qvbur": 2.4115244019484283, "max_delta_qvtot": 13.574796761101226, "nucleophilicity": -5.9863808679999995, "p_int_atom_area": 14.823981265105571, "sasa_volume_std": 0.9840645736460797, "EA_delta_SCC_std": 0.018175345398851645, "IP_delta_SCC_std": 0.09185735890589561, "HOMO_LUMO_gap_std": 0.2582853518257419, "sasa_volume_P_std": 0.15675878429884363, "max_delta_qvbur_std": 0.12082318681904587, "max_delta_qvtot_std": 0.5394686071948747, "nucleophilicity_std": 0.09185735890589561, "p_int_atom_area_std": 0.6211517748395442, "p_int_times_p_int_area": 4351.847249562336, "p_int_times_p_int_area_std": 9.260525488224697, "global_electrophilicity_index": 1.1100110490000004, "p_int_atom_times_p_int_atom_area": 376.2870963142939, "global_electrophilicity_index_std": 0.020239043080630077, "p_int_atom_times_p_int_atom_area_std": 21.773341791831847}} \\x0000000000000000000802000000020800000000400000008000000020000000000000002000000030000000000000200000001801000100010000000400000002020200000002100000000400000001000000800000010000002000000000000000010020000000008000000000000001000000100000008000000000000080 \\x00000000022008000000000000000000000800000000002000000000000000000000000008000000000000000000020000000000000000000000002000000000 pn3 (-9.219647407531738, 3.5549800395965576, 2.675840377807617, 3.054547071456909) (1.0339466333389282, 5.892723083496094) -449 CCN(CC)P(N(CC)CC)N(CC)CC 247.36700439453125 {"max_data": {"pyr_P": 0.9228062213035173, "pyr_alpha": 23.96789808218611, "qpole_amp": 3.640926623755175, "vbur_vbur": 79.67701657835151, "vbur_vtot": 300.12281636743, "sterimol_L": 7.8933927684124745, "sterimol_B1": 4.535099316216892, "sterimol_B5": 5.8132793011962836, "dipolemoment": 1.2547012411276597, "qpoletens_xx": 2.827976573666327, "qpoletens_yy": 1.046564602996301, "qpoletens_zz": -1.7281596750519053, "sterimol_burL": 7.621014584153197, "vbur_far_vbur": 7.688445115088762, "vbur_far_vtot": 9.931122687908035, "sterimol_burB1": 4.50250282491617, "sterimol_burB5": 5.8132793011962836, "vbur_near_vbur": 71.98857146326274, "vbur_near_vtot": 299.16518159282896, "vbur_ovbur_max": 21.41908141911342, "vbur_ovbur_min": 0.02196399774409795, "vbur_ovtot_max": 90.19339037970376, "vbur_ovtot_min": 0.021349431357424092, "vbur_qvbur_max": 28.335648899195313, "vbur_qvbur_min": 16.096472632460355, "vbur_qvtot_max": 91.74542875803658, "vbur_qvtot_min": 65.04275820564527, "vbur_max_delta_qvbur": 13.945046758193236, "vbur_max_delta_qvtot": 41.164009647746184}, "min_data": {"pyr_P": 0.8772030378252325, "pyr_alpha": 18.917562871797717, "qpole_amp": 2.3486199645825474, "vbur_vbur": 57.576005324516565, "vbur_vtot": 297.78576659407963, "sterimol_L": 7.268097647770524, "sterimol_B1": 3.5762427055014196, "sterimol_B5": 5.342872920155206, "dipolemoment": 0.7205125979230586, "qpoletens_xx": 1.182841366748417, "qpoletens_yy": -0.6202094915120608, "qpoletens_zz": -2.5928861997316943, "sterimol_burL": 6.789843494736802, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.5762427055014196, "sterimol_burB5": 5.342872920155206, "vbur_near_vbur": 57.57495941986208, "vbur_near_vtot": 286.9991821753106, "vbur_ovbur_max": 17.625585237311363, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 79.28150572056475, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.625585237311363, "vbur_qvbur_min": 10.983044776703455, "vbur_qvtot_max": 84.14917056416304, "vbur_qvtot_min": 48.10194005177584, "vbur_max_delta_qvbur": 3.4180164108434354, "vbur_max_delta_qvtot": 19.850191284360818}, "delta_data": {"pyr_P": 0.04560318347828485, "pyr_alpha": 5.050335210388393, "qpole_amp": 1.2923066591726275, "vbur_vbur": 22.101011253834947, "vbur_vtot": 2.3370497733503726, "sterimol_L": 0.6252951206419501, "sterimol_B1": 0.9588566107154728, "sterimol_B5": 0.47040638104107746, "dipolemoment": 0.5341886432046011, "qpoletens_xx": 1.64513520691791, "qpoletens_yy": 1.6667740945083618, "qpoletens_zz": 0.864726524679789, "sterimol_burL": 0.8311710894163946, "vbur_far_vbur": 7.688445115088762, "vbur_far_vtot": 9.931122687908035, "sterimol_burB1": 0.9262601194147502, "sterimol_burB5": 0.47040638104107746, "vbur_near_vbur": 14.413612043400661, "vbur_near_vtot": 12.165999417518378, "vbur_ovbur_max": 3.793496181802059, "vbur_ovbur_min": 0.02196399774409795, "vbur_ovtot_max": 10.911884659139005, "vbur_ovtot_min": 0.021349431357424092, "vbur_qvbur_max": 10.71006366188395, "vbur_qvbur_min": 5.1134278557569, "vbur_qvtot_max": 7.596258193873538, "vbur_qvtot_min": 16.94081815386943, "vbur_max_delta_qvbur": 10.5270303473498, "vbur_max_delta_qvtot": 21.313818363385366}, "vburminconf_data": {"pyr_P": 0.9119233877982301, "pyr_alpha": 20.283594448769122, "qpole_amp": 3.195225624824351, "vbur_vbur": 57.576005324516565, "vbur_vtot": 298.71718658359003, "sterimol_L": 7.81130328144539, "sterimol_B1": 4.192221841047829, "sterimol_B5": 5.74246183910403, "dipolemoment": 0.9698105804012493, "qpoletens_xx": 1.5463215967353934, "qpoletens_yy": 1.046564602996301, "qpoletens_zz": -2.5928861997316943, "sterimol_burL": 7.43735988533394, "vbur_far_vbur": 0.0010459046544808546, "vbur_far_vtot": 0.002034865149973876, "sterimol_burB1": 4.192221841047829, "sterimol_burB5": 5.74246183910403, "vbur_near_vbur": 57.57495941986208, "vbur_near_vtot": 298.71515171844, "vbur_ovbur_max": 17.692523135198137, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 87.7454201320235, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.692523135198137, "vbur_qvbur_min": 11.823952118906062, "vbur_qvtot_max": 87.74643756459847, "vbur_qvtot_min": 63.170353715789005, "vbur_max_delta_qvbur": 5.173044421062306, "vbur_max_delta_qvtot": 23.128277294603052}, "boltzmann_averaged_data": {"nbo_P": 1.2953939101885936, "nmr_P": 154.68339871016246, "pyr_P": 0.9086301650280647, "fmo_mu": -0.08598415351661112, "vmin_r": 1.7819332910814172, "volume": 374.2843225685875, "Pint_dP": 3.7198101645358412, "fmo_eta": 0.23899319520971882, "fukui_m": 0.2438190955220867, "fukui_p": 0.028682654646597913, "nuesp_P": -54.153965843284496, "somo_ra": 0.10930502785868011, "somo_rc": -0.3699273619704536, "nbo_P_ra": 1.2667112555419953, "nbo_P_rc": 1.53921300571068, "efg_amp_P": 1.892988217456672, "fmo_omega": 0.015470198396251068, "pyr_alpha": 20.073856449660965, "qpole_amp": 2.715418133902071, "vbur_vbur": 62.69911281675693, "vbur_vtot": 298.8583751630735, "vmin_vmin": -0.059579206099479545, "E_solv_cds": -4.66530258610189, "Pint_P_int": 18.133986362585834, "Pint_P_max": 31.56075781916997, "Pint_P_min": 12.191879480481898, "fmo_e_homo": -0.20548075112147057, "fmo_e_lumo": 0.03351244408824833, "nbo_lp_P_e": -0.31782679680071324, "sphericity": 0.8027776469189979, "sterimol_L": 7.461006733419645, "E_oxidation": 0.25754728118856685, "E_reduction": 0.07183339756051221, "sterimol_B1": 4.374043172898222, "sterimol_B5": 5.622366155284587, "E_solv_total": -8.457701094099638, "dipolemoment": 0.955691876329909, "efgtens_xx_P": -0.8148047603500244, "efgtens_yy_P": -0.7299980935195318, "efgtens_zz_P": 1.544802537071311, "nbo_bd_e_avg": -0.5602769062781914, "nbo_bd_e_max": -0.5340572793275237, "nbo_lp_P_occ": 1.9447221415389417, "qpoletens_xx": 1.442401722334785, "qpoletens_yy": 0.7209325934242157, "qpoletens_zz": -2.163334315759, "surface_area": 312.8821833068039, "E_solv_elstat": -3.7923985079977474, "nbo_bds_e_avg": 0.23094769733907236, "nbo_bds_e_min": 0.20995599341483198, "nmrtens_sxx_P": 98.52253526521999, "nmrtens_syy_P": 122.16368688098231, "nmrtens_szz_P": 243.363975563468, "spindens_P_ra": 0.038979124736615876, "spindens_P_rc": 0.26402696055468305, "sterimol_burL": 6.986109141366307, "vbur_far_vbur": 0.2706379476603253, "vbur_far_vtot": 0.4328775927558371, "nbo_bd_occ_avg": 1.9651629675891373, "nbo_bd_occ_min": 1.9599100640071128, "sterimol_burB1": 4.345517617874364, "sterimol_burB5": 5.6217825180644905, "vbur_near_vbur": 62.4284748690966, "vbur_near_vtot": 297.7751039738845, "vbur_ovbur_max": 18.077406313560953, "vbur_ovbur_min": 0.0002567531005559944, "vbur_ovtot_max": 86.49423863925544, "vbur_ovtot_min": 0.00016838902159179217, "vbur_qvbur_max": 18.276618441108194, "vbur_qvbur_min": 11.600716782816313, "vbur_qvtot_max": 86.84548030037153, "vbur_qvtot_min": 62.883926189631325, "nbo_bds_occ_avg": 0.0896975528073341, "nbo_bds_occ_max": 0.09427416417549006, "nbo_lp_P_percent_s": 56.63155932970417, "vbur_max_delta_qvbur": 6.203649972832714, "vbur_max_delta_qvtot": 23.255782555811887, "vbur_ratio_vbur_vtot": 0.20979502263000058}} {"max_data": {"B1": 4.442228302188793, "B5": 5.8014282811449185, "lval": 7.704649418783108, "sasa": 475.3615650671941, "vbur": 95.95151456443031, "vtot": 297.3312069952334, "alpha": 198.636908, "p_int": 18.802882017674413, "sasa_P": 8.739975215229023, "pyr_val": 0.9528692616555618, "dip_norm": 0.5622819577400648, "far_vbur": 16.621338650252383, "far_vtot": 19.057322138304137, "near_vbur": 80.54239135571106, "near_vtot": 296.7431009478143, "ovbur_max": 21.843189783010498, "ovbur_min": 1.8183231622996998, "ovtot_max": 88.98099219092046, "ovtot_min": 2.1265923360190433, "pyr_alpha": 19.94933470368198, "qvbur_max": 29.65265464673357, "qvbur_min": 20.31626456338703, "qvtot_max": 90.87551886723354, "qvtot_min": 66.1794451946546, "cone_angle": 235.51226580597273, "p_int_area": 369.1034936516663, "p_int_atom": 34.39338285160586, "sasa_volume": 791.4781613153139, "EA_delta_SCC": 1.3264, "IP_delta_SCC": 6.2156, "HOMO_LUMO_gap": 5.405040045855, "sasa_volume_P": 12.005394003078635, "max_delta_qvbur": 15.572306056617943, "max_delta_qvtot": 42.860587759690134, "nucleophilicity": -5.7173, "p_int_atom_area": 11.698372188949069, "p_int_times_p_int_area": 6940.209443443719, "global_electrophilicity_index": 1.431, "p_int_atom_times_p_int_atom_area": 325.07157300849514}, "min_data": {"B1": 3.4922531710614284, "B5": 4.911255348506144, "lval": 6.871281808307318, "sasa": 456.2714804058765, "vbur": 63.699590269024746, "vtot": 292.81216230796844, "alpha": 198.432182, "p_int": 18.149115460378418, "sasa_P": 0.0, "pyr_val": 0.9161424966879762, "dip_norm": 0.1678451667460222, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 63.69959026902474, "near_vtot": 267.95207100086833, "ovbur_max": 17.98508102197716, "ovbur_min": 0.0, "ovtot_max": 74.22139448928999, "ovtot_min": 0.0, "pyr_alpha": 14.781935345039455, "qvbur_max": 17.98508102197716, "qvbur_min": 12.285337263230023, "qvtot_max": 78.65425710284887, "qvtot_min": 46.67975572002678, "cone_angle": 173.31484671901205, "p_int_area": 344.70188780896973, "p_int_atom": 26.694450270574297, "sasa_volume": 768.2286192173577, "EA_delta_SCC": 1.121, "IP_delta_SCC": 5.7173, "HOMO_LUMO_gap": 4.641989139631, "sasa_volume_P": 0.0, "max_delta_qvbur": 2.424430883066268, "max_delta_qvtot": 12.332505392069407, "nucleophilicity": -6.2156, "p_int_atom_area": 3.2995408738061447, "p_int_times_p_int_area": 6312.004138282891, "global_electrophilicity_index": 1.2901, "p_int_atom_times_p_int_atom_area": 113.48237250733686}, "boltzmann_averaged_data": {"B1": 4.197646853767481, "B5": 5.450036431949237, "lval": 7.3870880261369605, "sasa": 466.9899929528256, "vbur": 74.39357633193944, "vtot": 295.85968621445784, "alpha": 198.47468068529625, "p_int": 18.450970193796724, "B1_std": 0.22230747586710647, "B5_std": 0.1633423949101398, "sasa_P": 4.066696733519697, "pyr_val": 0.9290165117895447, "dip_norm": 0.44369043303666894, "far_vbur": 3.1896625926855786, "far_vtot": 4.533779343376601, "lval_std": 0.08224816333730543, "sasa_std": 4.004464528551706, "vbur_std": 3.874842177458316, "vtot_std": 0.4766122495302659, "alpha_std": 0.0193919399680704, "near_vbur": 71.20391373925385, "near_vtot": 289.1884150683383, "ovbur_max": 20.164607905425864, "ovbur_min": 0.05686342285715386, "ovtot_max": 83.71514331996339, "ovtot_min": 0.08113854031000345, "p_int_std": 0.07464510293931707, "pyr_alpha": 18.07881255997779, "qvbur_max": 22.029619427603258, "qvbur_min": 14.316244377338363, "qvtot_max": 85.81084634091212, "qvtot_min": 61.502749922388254, "cone_angle": 197.1729728779436, "p_int_area": 358.0506026050255, "p_int_atom": 29.11510944391196, "sasa_P_std": 1.5712068974986833, "pyr_val_std": 0.008888661680320806, "sasa_volume": 780.8047738440204, "EA_delta_SCC": 1.2305501249974997, "IP_delta_SCC": 6.039313879722405, "dip_norm_std": 0.06035850200883498, "far_vbur_std": 2.6546952332651386, "far_vtot_std": 4.183117260350631, "HOMO_LUMO_gap": 5.172966963296409, "near_vbur_std": 1.7071835357008391, "near_vtot_std": 3.65798994145229, "ovbur_max_std": 0.4376271872695684, "ovbur_min_std": 0.24795538353359822, "ovtot_max_std": 1.3006767164712565, "ovtot_min_std": 0.3681160383910631, "pyr_alpha_std": 1.0635358185148116, "qvbur_max_std": 1.6856350820055113, "qvbur_min_std": 1.460643255619336, "qvtot_max_std": 1.8727876396200032, "qvtot_min_std": 3.4033739987595064, "sasa_volume_P": 5.40593063736581, "cone_angle_std": 8.505530234949477, "p_int_area_std": 3.686474888945982, "p_int_atom_std": 1.1699883204160397, "max_delta_qvbur": 7.340023424962153, "max_delta_qvtot": 22.06035309986269, "nucleophilicity": -6.039313879722405, "p_int_atom_area": 9.112399749804444, "sasa_volume_std": 4.464644073816769, "EA_delta_SCC_std": 0.03518808405709496, "IP_delta_SCC_std": 0.10757109048233776, "HOMO_LUMO_gap_std": 0.1580061809539879, "sasa_volume_P_std": 2.1208503560720136, "max_delta_qvbur_std": 1.5593932990628818, "max_delta_qvtot_std": 4.676782392401876, "nucleophilicity_std": 0.10757109048233776, "p_int_atom_area_std": 0.9928187834693768, "p_int_times_p_int_area": 6606.485122418931, "p_int_times_p_int_area_std": 82.1975316928408, "global_electrophilicity_index": 1.3743293964120717, "p_int_atom_times_p_int_atom_area": 264.590267611885, "global_electrophilicity_index_std": 0.01692324096064292, "p_int_atom_times_p_int_atom_area_std": 24.592915077910153}} {"max_data": {"pyr_P": "0.9245635", "pyr_alpha": "23.810673", "qpole_amp": "2.8382082", "vbur_vbur": "83.21639", "sterimol_L": "7.787642", "sterimol_B1": "4.5442142", "sterimol_B5": "5.6676292", "dipolemoment": "1.0383617", "qpoletens_xx": "1.9840004", "qpoletens_yy": "1.7424886", "qpoletens_zz": "-1.1165586", "sterimol_burL": "7.638125", "vbur_far_vbur": "11.392989", "vbur_far_vtot": "13.859274", "sterimol_burB1": "4.4823675", "sterimol_burB5": "5.6821713", "vbur_near_vbur": "73.9329", "vbur_near_vtot": "300.03314", "vbur_ovbur_max": "21.878973", "vbur_ovbur_min": "0.24443947", "vbur_ovtot_max": "89.593315", "vbur_ovtot_min": "-0.29970577", "vbur_qvbur_max": "29.451786", "vbur_qvbur_min": "16.424475", "vbur_qvtot_max": "91.46355", "vbur_qvtot_min": "63.389366", "vbur_max_delta_qvbur": "15.4791975", "vbur_max_delta_qvtot": "43.461872"}, "min_data": {"pyr_P": "0.87487143", "pyr_alpha": "18.470537", "qpole_amp": "1.593816", "vbur_vbur": "56.837944", "sterimol_L": "7.124915", "sterimol_B1": "3.5347886", "sterimol_B5": "5.3221216", "dipolemoment": "0.5980571", "qpoletens_xx": "0.63348967", "qpoletens_yy": "-0.0067325966", "qpoletens_zz": "-2.6357014", "sterimol_burL": "6.7723646", "vbur_far_vbur": "0.03247655", "vbur_far_vtot": "1.8879809", "sterimol_burB1": "3.475041", "sterimol_burB5": "5.2941465", "vbur_near_vbur": "57.519848", "vbur_near_vtot": "282.58276", "vbur_ovbur_max": "17.464972", "vbur_ovbur_min": "0.040473882", "vbur_ovtot_max": "78.359955", "vbur_ovtot_min": "0.08079735", "vbur_qvbur_max": "18.244442", "vbur_qvbur_min": "10.700575", "vbur_qvtot_max": "83.86766", "vbur_qvtot_min": "47.306416", "vbur_max_delta_qvbur": "3.5078285", "vbur_max_delta_qvtot": "17.335361"}, "delta_data": {"pyr_P": "0.05420012", "pyr_alpha": "6.176319", "qpole_amp": "1.8254962", "vbur_vbur": "25.899166", "sterimol_L": "0.549794", "sterimol_B1": "0.9912367", "sterimol_B5": "0.5407766", "dipolemoment": "0.6520309", "qpoletens_xx": "1.1797628", "qpoletens_yy": "1.3164666", "qpoletens_zz": "1.317544", "sterimol_burL": "0.9543395", "vbur_far_vbur": "11.167603", "vbur_far_vtot": "11.218293", "sterimol_burB1": "0.92993855", "sterimol_burB5": "0.5769904", "vbur_near_vbur": "17.045717", "vbur_near_vtot": "14.8823", "vbur_ovbur_max": "3.702248", "vbur_ovbur_min": "0.2465276", "vbur_ovtot_max": "10.969735", "vbur_ovtot_min": "-0.18499587", "vbur_qvbur_max": "10.9254465", "vbur_qvbur_min": "5.70481", "vbur_qvtot_max": "7.846971", "vbur_qvtot_min": "16.593815", "vbur_max_delta_qvbur": "11.62156", "vbur_max_delta_qvtot": "26.58458"}, "vburminconf_data": {"pyr_P": "0.9066425", "pyr_alpha": "20.669771", "qpole_amp": "3.5444493", "vbur_vbur": "57.03984", "sterimol_L": "7.7037687", "sterimol_B1": "4.12025", "sterimol_B5": "5.827912", "dipolemoment": "0.9681739", "qpoletens_xx": "2.0570116", "qpoletens_yy": "0.91913384", "qpoletens_zz": "-2.8207278", "sterimol_burL": "7.225015", "vbur_far_vbur": "-0.39186028", "vbur_far_vtot": "2.448102", "sterimol_burB1": "4.1259036", "sterimol_burB5": "5.7492995", "vbur_near_vbur": "57.5859", "vbur_near_vtot": "297.8698", "vbur_ovbur_max": "18.683634", "vbur_ovbur_min": "0.039957542", "vbur_ovtot_max": "88.91128", "vbur_ovtot_min": "0.026517054", "vbur_qvbur_max": "18.206717", "vbur_qvbur_min": "11.459362", "vbur_qvtot_max": "89.52135", "vbur_qvtot_min": "64.44104", "vbur_max_delta_qvbur": "5.308778", "vbur_max_delta_qvtot": "28.50881"}, "boltzmann_averaged_data": {"nbo_P": "1.3087099", "nmr_P": "152.69424", "pyr_P": "0.8977068", "fmo_mu": "-0.08228803", "vmin_r": "1.7719822", "volume": "375.24313", "Pint_dP": "3.699688", "fmo_eta": "0.24095914", "fukui_m": "0.21257105", "fukui_p": "0.035875414", "nuesp_P": "-54.155457", "somo_ra": "0.11109783", "somo_rc": "-0.37342823", "nbo_P_ra": "1.2518756", "nbo_P_rc": "1.4806674", "efg_amp_P": "1.8900661", "fmo_omega": "0.013406623", "pyr_alpha": "21.18833", "qpole_amp": "2.211727", "vbur_vbur": "63.705437", "vbur_vtot": "299.3375", "vmin_vmin": "-0.060337212", "E_solv_cds": "-4.6580524", "Pint_P_int": "18.07394", "Pint_P_max": "31.924866", "Pint_P_min": "12.248864", "fmo_e_homo": "-0.20494668", "fmo_e_lumo": "0.03737555", "nbo_lp_P_e": "-0.31166252", "sphericity": "0.8034035", "sterimol_L": "7.266965", "E_oxidation": "0.2567628", "E_reduction": "0.07449089", "sterimol_B1": "4.3682146", "sterimol_B5": "5.640827", "E_solv_total": "-8.8941765", "dipolemoment": "0.74248695", "efgtens_xx_P": "-0.77105725", "efgtens_yy_P": "-0.7247111", "efgtens_zz_P": "1.5255708", "nbo_bd_e_avg": "-0.56760406", "nbo_bd_e_max": "-0.5341564", "nbo_lp_P_occ": "1.9408437", "qpoletens_xx": "1.0987358", "qpoletens_yy": "0.6213476", "qpoletens_zz": "-1.8217918", "surface_area": "314.6511", "E_solv_elstat": "-4.0181327", "nbo_bds_e_avg": "0.23826751", "nbo_bds_e_min": "0.21458727", "nmrtens_sxx_P": "100.7764", "nmrtens_syy_P": "123.08252", "nmrtens_szz_P": "243.09343", "spindens_P_ra": "0.03858382", "spindens_P_rc": "0.2494782", "sterimol_burL": "6.876688", "vbur_far_vbur": "0.52053124", "vbur_far_vtot": "-0.8873488", "nbo_bd_occ_avg": "1.9657637", "nbo_bd_occ_min": "1.9614763", "sterimol_burB1": "4.3078885", "sterimol_burB5": "5.6778374", "vbur_near_vbur": "63.420773", "vbur_near_vtot": "299.35046", "vbur_ovbur_max": "18.591736", "vbur_ovbur_min": "0.005956002", "vbur_ovtot_max": "88.00034", "vbur_ovtot_min": "-0.0005169638", "vbur_qvbur_max": "18.183924", "vbur_qvbur_min": "11.672209", "vbur_qvtot_max": "87.29677", "vbur_qvtot_min": "61.472157", "nbo_bds_occ_avg": "0.09805818", "nbo_bds_occ_max": "0.099923134", "nbo_lp_P_percent_s": "55.446877", "vbur_max_delta_qvbur": "6.1970186", "vbur_max_delta_qvtot": "25.312027", "vbur_ratio_vbur_vtot": "0.20469072"}} CCN(CC)P(N(CC)CC)N(CC)CC {"max_data": {"B1": 4.683205937515653, "B5": 5.813616696891767, "lval": 7.982870899590868, "sasa": 477.3414543040501, "vbur": 63.886084952337534, "vtot": 296.0214342827992, "alpha": 198.537931, "p_int": 18.665907285933805, "sasa_P": 9.569972861526525, "pyr_val": 0.9302592112433997, "dip_norm": 0.6610680751632165, "far_vbur": 1.0723444290485409, "far_vtot": 2.4411508299500277, "near_vbur": 63.245009478449816, "near_vtot": 296.0214342827992, "ovbur_max": 17.682027161593876, "ovbur_min": 0.06993550624229615, "ovtot_max": 89.58283846304005, "ovtot_min": 0.18858675939528113, "pyr_alpha": 23.062737284800303, "qvbur_max": 18.33475855318864, "qvbur_min": 14.966198335851375, "qvtot_max": 89.58283846304005, "qvtot_min": 67.73025234995632, "cone_angle": 189.13759305119444, "p_int_area": 369.6042026892682, "p_int_atom": 28.888212189559866, "sasa_volume": 791.8260502717986, "EA_delta_SCC": 1.2701, "IP_delta_SCC": 6.2473, "HOMO_LUMO_gap": 5.651854611836, "sasa_volume_P": 9.696551559902689, "max_delta_qvbur": 5.221851132758109, "max_delta_qvtot": 36.9489981369577, "nucleophilicity": -5.6834, "p_int_atom_area": 13.198163495224591, "p_int_times_p_int_area": 6800.558408374678, "global_electrophilicity_index": 1.3999, "p_int_atom_times_p_int_atom_area": 375.49450896311834}, "min_data": {"B1": 3.5802783352735252, "B5": 5.421007142071055, "lval": 7.063888858697476, "sasa": 456.571480499166, "vbur": 55.78522214593823, "vtot": 293.04482729826026, "alpha": 198.372022, "p_int": 18.14894699809321, "sasa_P": 4.429987437467352, "pyr_val": 0.8909890752526074, "dip_norm": 0.443813023693537, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 55.785222145938235, "near_vtot": 289.3991741527142, "ovbur_max": 15.548994221203845, "ovbur_min": 0.0, "ovtot_max": 78.25043339337671, "ovtot_min": 0.0, "pyr_alpha": 18.293884288399326, "qvbur_max": 15.548994221203845, "qvbur_min": 11.59763811851411, "qvtot_max": 78.25043339337671, "qvtot_min": 47.82001162587733, "cone_angle": 163.84211782726777, "p_int_area": 345.40375458836996, "p_int_atom": 26.775392930410504, "sasa_volume": 768.0397089498397, "EA_delta_SCC": 1.0993, "IP_delta_SCC": 5.6834, "HOMO_LUMO_gap": 4.815392557894, "sasa_volume_P": 4.172444359591971, "max_delta_qvbur": 1.6667962321080587, "max_delta_qvtot": 10.554320198050547, "nucleophilicity": -6.2473, "p_int_atom_area": 9.498678273078303, "p_int_times_p_int_area": 6304.11662891127, "global_electrophilicity_index": 1.2619, "p_int_atom_times_p_int_atom_area": 268.3377861983619}, "boltzmann_averaged_data": {"B1": 4.0490761907908075, "B5": 5.720773014601629, "lval": 7.653120374093197, "sasa": 469.18570926106344, "vbur": 58.98220405617996, "vtot": 295.550408054511, "alpha": 198.40611656428135, "p_int": 18.369829773155317, "B1_std": 0.1738417235232057, "B5_std": 0.06479936286592206, "sasa_P": 7.3699451996741825, "pyr_val": 0.9151669910584834, "dip_norm": 0.5719130411472487, "far_vbur": 0.19080209729053232, "far_vtot": 0.3831278501490244, "lval_std": 0.0880474036825125, "sasa_std": 3.4427857943119387, "vbur_std": 0.993048120678022, "vtot_std": 0.3331600264144168, "alpha_std": 0.01998814921637842, "near_vbur": 58.791401958889416, "near_vtot": 295.0350537837467, "ovbur_max": 16.64953790970953, "ovbur_min": 0.0000013987380996079154, "ovtot_max": 84.3841963064243, "ovtot_min": 0.000003771810624118106, "p_int_std": 0.04211210081240905, "pyr_alpha": 20.148910138361302, "qvbur_max": 16.825773781553767, "qvbur_min": 12.478778779314517, "qvtot_max": 84.6385210775675, "qvtot_min": 62.67781892281527, "cone_angle": 176.75406586419655, "p_int_area": 357.7134416669474, "p_int_atom": 27.4863127600024, "sasa_P_std": 0.6608402827126224, "pyr_val_std": 0.010963970650854481, "sasa_volume": 781.788827066111, "EA_delta_SCC": 1.1993641922838458, "IP_delta_SCC": 5.932438249764995, "dip_norm_std": 0.04350268699647864, "far_vbur_std": 0.1626544840232917, "far_vtot_std": 0.33155331941237315, "HOMO_LUMO_gap": 5.297270137072719, "near_vbur_std": 0.86299003411171, "near_vtot_std": 0.9209859487379457, "ovbur_max_std": 0.40903536810093954, "ovbur_min_std": 0.0003127610919347155, "ovtot_max_std": 1.213645259533894, "ovtot_min_std": 0.0008433856271598077, "pyr_alpha_std": 1.244443432905565, "qvbur_max_std": 0.5154695229254858, "qvbur_min_std": 0.34083083326740565, "qvtot_max_std": 1.2884225804724128, "qvtot_min_std": 2.698164161918894, "sasa_volume_P": 7.402047976184974, "cone_angle_std": 4.1457380928925245, "p_int_area_std": 2.9660591332615285, "p_int_atom_std": 0.35322429592039667, "max_delta_qvbur": 3.2430681159551336, "max_delta_qvtot": 21.248890832356942, "nucleophilicity": -5.932438249764995, "p_int_atom_area": 11.65523932804511, "sasa_volume_std": 3.473967188743841, "EA_delta_SCC_std": 0.028202970139394913, "IP_delta_SCC_std": 0.1043030033154115, "HOMO_LUMO_gap_std": 0.1492639346368739, "sasa_volume_P_std": 0.7401691030845206, "max_delta_qvbur_std": 0.4501281512741402, "max_delta_qvtot_std": 3.851289862083943, "nucleophilicity_std": 0.1043030033154115, "p_int_atom_area_std": 0.36068361675241845, "p_int_times_p_int_area": 6571.148028524892, "p_int_times_p_int_area_std": 57.96872914042298, "global_electrophilicity_index": 1.3434922668453373, "p_int_atom_times_p_int_atom_area": 320.4142796609271, "global_electrophilicity_index_std": 0.019868197980826896, "p_int_atom_times_p_int_atom_area_std": 12.334235367587837}} \\x0000000000000000000802200000030800400000400004008000020025002000000000182000000030080000000000200200001801000101030000004400040002020200000402100000000400002001004000c002000100000020000010000000440100200000000084000000000000010b0800128000408000000000000081 \\x00000000022000000000010000000000000000000200002040000000000000000000000040000000000000010000020000008000100000000000000000000000 pn3 (-3.3674349784851074, 3.6183621883392334, 5.211001396179199, 2.1797122955322266) (1.4455174207687378, 5.765910625457764) -472 C1CCN(P(N2CCCC2)N2CCCC2)C1 241.31900024414062 {"max_data": {"pyr_P": 0.9345320412845707, "pyr_alpha": 20.986388198251912, "qpole_amp": 4.658512995355717, "vbur_vbur": 59.73684434067401, "vbur_vtot": 267.599891626199, "sterimol_L": 7.190329949929174, "sterimol_B1": 3.8892014864253994, "sterimol_B5": 5.99551733720155, "dipolemoment": 1.4746153897574528, "qpoletens_xx": 2.3477559276104953, "qpoletens_yy": 1.5513732485437934, "qpoletens_zz": -2.6777010149808986, "sterimol_burL": 6.917579414890126, "vbur_far_vbur": 0.05020342341508103, "vbur_far_vtot": 0.08705659232694478, "sterimol_burB1": 3.8892014864253994, "sterimol_burB5": 5.99551733720155, "vbur_near_vbur": 59.71801805689336, "vbur_near_vtot": 267.599891626199, "vbur_ovbur_max": 17.263702226860985, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 84.18695480519895, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 17.31495155493055, "vbur_qvbur_min": 12.808148398772547, "vbur_qvtot_max": 84.18695480519895, "vbur_qvtot_min": 45.42768792966702, "vbur_max_delta_qvbur": 5.966886053813274, "vbur_max_delta_qvtot": 38.22106909838645}, "min_data": {"pyr_P": 0.8901868244253156, "pyr_alpha": 16.978544810658715, "qpole_amp": 3.293020124898807, "vbur_vbur": 53.08802845213922, "vbur_vtot": 266.77850903996335, "sterimol_L": 6.621136908013167, "sterimol_B1": 3.5730107306243717, "sterimol_B5": 5.793883718162079, "dipolemoment": 0.7745563611565254, "qpoletens_xx": 1.5202711266850082, "qpoletens_yy": 0.6734976189090425, "qpoletens_zz": -3.783310677694474, "sterimol_burL": 6.595468746851266, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.530022264511836, "sterimol_burB5": 5.793883718162079, "vbur_near_vbur": 53.08802845213923, "vbur_near_vtot": 266.6674614210523, "vbur_ovbur_max": 15.975147692540574, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 81.84938753664086, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.975147692540574, "vbur_qvbur_min": 10.419302167938275, "vbur_qvtot_max": 81.84938753664086, "vbur_qvtot_min": 39.34388672061655, "vbur_max_delta_qvbur": 3.4075573642986257, "vbur_max_delta_qvtot": 25.872650873715934}, "delta_data": {"pyr_P": 0.04434521685925508, "pyr_alpha": 4.007843387593198, "qpole_amp": 1.3654928704569098, "vbur_vbur": 6.648815888534791, "vbur_vtot": 0.821382586235643, "sterimol_L": 0.569193041916007, "sterimol_B1": 0.31619075580102773, "sterimol_B5": 0.20163361903947052, "dipolemoment": 0.7000590286009274, "qpoletens_xx": 0.8274848009254872, "qpoletens_yy": 0.877875629634751, "qpoletens_zz": 1.1056096627135754, "sterimol_burL": 0.3221106680388601, "vbur_far_vbur": 0.05020342341508103, "vbur_far_vtot": 0.08705659232694478, "sterimol_burB1": 0.3591792219135632, "sterimol_burB5": 0.20163361903947052, "vbur_near_vbur": 6.62998960475413, "vbur_near_vtot": 0.9324302051467157, "vbur_ovbur_max": 1.2885545343204114, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 2.3375672685580895, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 1.3398038623899744, "vbur_qvbur_min": 2.3888462308342717, "vbur_qvtot_max": 2.3375672685580895, "vbur_qvtot_min": 6.0838012090504705, "vbur_max_delta_qvbur": 2.5593286895146488, "vbur_max_delta_qvtot": 12.348418224670517}, "vburminconf_data": {"pyr_P": 0.9077497182873259, "pyr_alpha": 19.54850446620743, "qpole_amp": 3.8850392270817213, "vbur_vbur": 53.08802845213922, "vbur_vtot": 267.1368214466077, "sterimol_L": 6.683264057985216, "sterimol_B1": 3.5881194465968376, "sterimol_B5": 5.962024193713235, "dipolemoment": 1.248872308364238, "qpoletens_xx": 2.3477559276104953, "qpoletens_yy": 0.6734976189090425, "qpoletens_zz": -3.021253546519538, "sterimol_burL": 6.683264057985216, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.530022264511836, "sterimol_burB5": 5.962024193713235, "vbur_near_vbur": 53.08802845213923, "vbur_near_vtot": 267.1368214466077, "vbur_ovbur_max": 16.0556823509356, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 81.9525327039088, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.0556823509356, "vbur_qvbur_min": 10.501928635642262, "vbur_qvtot_max": 81.9525327039088, "vbur_qvtot_min": 43.3313420112776, "vbur_max_delta_qvbur": 5.146896804700287, "vbur_max_delta_qvtot": 29.547358380844926}, "boltzmann_averaged_data": {"nbo_P": 1.2985638075421433, "nmr_P": 171.8383582181829, "pyr_P": 0.9196030081399702, "fmo_mu": -0.08706274124845136, "vmin_r": 1.8021599247318318, "volume": 332.11360079846025, "Pint_dP": 3.6794922636940646, "fmo_eta": 0.23281318966874623, "fukui_m": 0.2203382129805691, "fukui_p": 0.1103289603200359, "nuesp_P": -54.15588025078884, "somo_ra": 0.11016510698949632, "somo_rc": -0.38215761674410526, "nbo_P_ra": 1.1882348472221076, "nbo_P_rc": 1.5189020205227128, "efg_amp_P": 1.9110044182346864, "fmo_omega": 0.016293145672675837, "pyr_alpha": 18.68783884875228, "qpole_amp": 4.050125372013555, "vbur_vbur": 54.19826282246627, "vbur_vtot": 267.0921849911691, "vmin_vmin": -0.061915548571607484, "E_solv_cds": -6.678847421690001, "Pint_P_int": 18.369146081294073, "Pint_P_max": 33.37680499746884, "Pint_P_min": 12.579146193379128, "fmo_e_homo": -0.20346933608282447, "fmo_e_lumo": 0.029343853585921748, "nbo_lp_P_e": -0.3155657712334651, "sphericity": 0.803147748743607, "sterimol_L": 6.904503511253107, "E_oxidation": 0.25677049913663247, "E_reduction": 0.07030083021956714, "sterimol_B1": 3.7263697162919485, "sterimol_B5": 5.932942516304421, "E_solv_total": -10.455220192448348, "dipolemoment": 1.2619693500826648, "efgtens_xx_P": -0.8444727995308952, "efgtens_yy_P": -0.7138238542693229, "efgtens_zz_P": 1.5582969459958416, "nbo_bd_e_avg": -0.5614016673461708, "nbo_bd_e_max": -0.5368650594017818, "nbo_lp_P_occ": 1.9450983436353413, "qpoletens_xx": 2.119873471275828, "qpoletens_yy": 1.1262169606900505, "qpoletens_zz": -3.2460904319658788, "surface_area": 288.7915565342458, "E_solv_elstat": -3.7763727707583485, "nbo_bds_e_avg": 0.24025044928974695, "nbo_bds_e_min": 0.22494061418067607, "nmrtens_sxx_P": 76.76555370805058, "nmrtens_syy_P": 144.4123808962013, "nmrtens_szz_P": 294.337207288515, "spindens_P_ra": 0.15487193345205313, "spindens_P_rc": 0.2259144115699899, "sterimol_burL": 6.759222875533973, "vbur_far_vbur": 0.001718173967770554, "vbur_far_vtot": 0.0009871569261976681, "nbo_bd_occ_avg": 1.9669146738333396, "nbo_bd_occ_min": 1.9609010881642213, "sterimol_burB1": 3.715245487725917, "sterimol_burB5": 5.932942516304421, "vbur_near_vbur": 54.1965446484985, "vbur_near_vtot": 267.1200050210557, "vbur_ovbur_max": 16.62275906133894, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 83.34765264721568, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.624489095086613, "vbur_qvbur_min": 10.90706744660651, "vbur_qvtot_max": 83.34765264721568, "vbur_qvtot_min": 43.50191773167859, "nbo_bds_occ_avg": 0.0814358218071776, "nbo_bds_occ_max": 0.08974647374750937, "nbo_lp_P_percent_s": 56.04563056271362, "vbur_max_delta_qvbur": 4.690386078899536, "vbur_max_delta_qvtot": 29.30180665777528, "vbur_ratio_vbur_vtot": 0.20291663813053015}} {"max_data": {"B1": 4.109453811040652, "B5": 5.840599961755062, "lval": 6.9257988469192515, "sasa": 446.65079844118213, "vbur": 71.49739921504077, "vtot": 264.7848507317563, "alpha": 183.190745, "p_int": 18.883446991369357, "sasa_P": 12.19996540340895, "pyr_val": 0.9661146498166359, "dip_norm": 0.6596953842494276, "far_vbur": 2.0397855987336375, "far_vtot": 3.543142766202471, "near_vbur": 70.35511927974993, "near_vtot": 264.722772386441, "ovbur_max": 20.432823740457525, "ovbur_min": 0.0, "ovtot_max": 82.68039881620878, "ovtot_min": 0.0, "pyr_alpha": 18.828708635265873, "qvbur_max": 21.94809304237394, "qvbur_min": 15.677209315981386, "qvtot_max": 82.68039881620878, "qvtot_min": 49.470878182270866, "cone_angle": 197.42804598312128, "p_int_area": 336.79713688468854, "p_int_atom": 29.729029940362828, "sasa_volume": 720.2150378821524, "EA_delta_SCC": 0.9183, "IP_delta_SCC": 6.1246, "HOMO_LUMO_gap": 5.295794179522, "sasa_volume_P": 17.142302018227003, "max_delta_qvbur": 8.916777045892758, "max_delta_qvtot": 49.082719229575844, "nucleophilicity": -5.8702, "p_int_atom_area": 15.697815672350456, "p_int_times_p_int_area": 6259.299341356799, "global_electrophilicity_index": 1.168, "p_int_atom_times_p_int_atom_area": 420.8142263159663}, "min_data": {"B1": 3.4650186866019, "B5": 5.667061755080221, "lval": 6.292377857485842, "sasa": 431.7009770690303, "vbur": 59.04887910391204, "vtot": 263.04005126421515, "alpha": 183.025033, "p_int": 18.356454656978073, "sasa_P": 5.059985650922067, "pyr_val": 0.9117981348291508, "dip_norm": 0.19170289512680816, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 59.04887910391205, "near_vtot": 259.0767648837055, "ovbur_max": 16.71458599190878, "ovbur_min": 0.0, "ovtot_max": 78.6829278198691, "ovtot_min": 0.0, "pyr_alpha": 12.098346023911285, "qvbur_max": 16.71458599190878, "qvbur_min": 11.714197295584604, "qvtot_max": 78.6829278198691, "qvtot_min": 32.33578505692128, "cone_angle": 168.82509484252304, "p_int_area": 324.79539225682555, "p_int_atom": 26.050566980960934, "sasa_volume": 704.3786414049066, "EA_delta_SCC": 0.6931, "IP_delta_SCC": 5.8702, "HOMO_LUMO_gap": 4.714258715303, "sasa_volume_P": 6.214423186866607, "max_delta_qvbur": 3.543398982943005, "max_delta_qvtot": 22.77659672963916, "nucleophilicity": -6.1246, "p_int_atom_area": 11.598386101864032, "p_int_times_p_int_area": 5996.422612567347, "global_electrophilicity_index": 1.0466, "p_int_atom_times_p_int_atom_area": 323.2158209029768}, "boltzmann_averaged_data": {"B1": 3.685724733158728, "B5": 5.68169730251454, "lval": 6.5387778981160105, "sasa": 435.0771694870149, "vbur": 68.04200858842236, "vtot": 263.20733564251367, "alpha": 183.06178427011002, "p_int": 18.416379171330842, "B1_std": 0.024978512188320978, "B5_std": 0.04325544349351321, "sasa_P": 5.960798196403085, "pyr_val": 0.9514272045081237, "dip_norm": 0.436312188169587, "far_vbur": 0.7211902096227543, "far_vtot": 0.7330848087935924, "lval_std": 0.07185197675601696, "sasa_std": 2.92653699704568, "vbur_std": 0.897859818929398, "vtot_std": 0.4378073315227131, "alpha_std": 0.018753423775121965, "near_vbur": 67.3208183787996, "near_vtot": 260.0040360076721, "ovbur_max": 19.646587332393043, "ovbur_min": 0.0, "ovtot_max": 82.23431815973666, "ovtot_min": 0.0, "p_int_std": 0.11071179763118126, "pyr_alpha": 14.666969989544112, "qvbur_max": 20.38489367437272, "qvbur_min": 14.254061044393332, "qvtot_max": 82.23431815973666, "qvtot_min": 44.03389332013574, "cone_angle": 190.32082302063594, "p_int_area": 326.4391689056812, "p_int_atom": 27.663283449518293, "sasa_P_std": 0.5227692154619625, "pyr_val_std": 0.00903754914049207, "sasa_volume": 707.7876708513409, "EA_delta_SCC": 0.854107151, "IP_delta_SCC": 5.975423285999999, "dip_norm_std": 0.02994692663140715, "far_vbur_std": 0.1710560944290396, "far_vtot_std": 0.3151642555260283, "HOMO_LUMO_gap": 5.056328712457925, "near_vbur_std": 0.7779490262829662, "near_vtot_std": 1.2812426649931203, "ovbur_max_std": 0.33318116678835236, "ovbur_min_std": 0.0, "ovtot_max_std": 0.6994259271614903, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.9230142998041798, "qvbur_max_std": 0.47065444788861066, "qvbur_min_std": 0.19307360177793226, "qvtot_max_std": 0.6994259271614903, "qvtot_min_std": 1.4925661206427727, "sasa_volume_P": 7.69549514228, "cone_angle_std": 1.591806196916048, "p_int_area_std": 1.5440036434214641, "p_int_atom_std": 0.18476670543909093, "max_delta_qvbur": 5.314080796239504, "max_delta_qvtot": 28.389835339964474, "nucleophilicity": -5.975423285999999, "p_int_atom_area": 11.912672369398422, "sasa_volume_std": 2.968800295096118, "EA_delta_SCC_std": 0.020005644887461118, "IP_delta_SCC_std": 0.018371593076328532, "HOMO_LUMO_gap_std": 0.04006351152717464, "sasa_volume_P_std": 0.7601981318298654, "max_delta_qvbur_std": 0.1483689392508358, "max_delta_qvtot_std": 2.756320827234332, "nucleophilicity_std": 0.018371593076328532, "p_int_atom_area_std": 0.5788445371044264, "p_int_times_p_int_area": 6011.791063994814, "p_int_times_p_int_area_std": 40.83142632703552, "global_electrophilicity_index": 1.1385067879999997, "p_int_atom_times_p_int_atom_area": 329.5920929394774, "global_electrophilicity_index_std": 0.012484530745008248, "p_int_atom_times_p_int_atom_area_std": 17.2719751536444}} {"max_data": {"pyr_P": "0.9412003", "pyr_alpha": "20.69154", "qpole_amp": "7.9401703", "vbur_vbur": "62.2828", "sterimol_L": "7.409432", "sterimol_B1": "3.988121", "sterimol_B5": "6.284006", "dipolemoment": "2.15248", "qpoletens_xx": "3.788522", "qpoletens_yy": "2.133856", "qpoletens_zz": "-2.1662066", "sterimol_burL": "7.11282", "vbur_far_vbur": "0.10442182", "vbur_far_vtot": "-0.062116265", "sterimol_burB1": "3.9966395", "sterimol_burB5": "6.002457", "vbur_near_vbur": "62.524315", "vbur_near_vtot": "266.72675", "vbur_ovbur_max": "18.88771", "vbur_ovbur_min": "-0.04712227", "vbur_ovtot_max": "89.47615", "vbur_ovtot_min": "0.3694385", "vbur_qvbur_max": "17.160025", "vbur_qvbur_min": "12.601682", "vbur_qvtot_max": "83.44402", "vbur_qvtot_min": "52.388287", "vbur_max_delta_qvbur": "9.190047", "vbur_max_delta_qvtot": "50.53811"}, "min_data": {"pyr_P": "0.9098634", "pyr_alpha": "16.273146", "qpole_amp": "2.5361755", "vbur_vbur": "51.515415", "sterimol_L": "6.288908", "sterimol_B1": "3.3953857", "sterimol_B5": "5.72015", "dipolemoment": "0.9283494", "qpoletens_xx": "1.5197616", "qpoletens_yy": "-0.3199453", "qpoletens_zz": "-5.9149766", "sterimol_burL": "6.3894844", "vbur_far_vbur": "-0.7798961", "vbur_far_vtot": "-1.4919449", "sterimol_burB1": "3.373318", "sterimol_burB5": "5.5163503", "vbur_near_vbur": "52.783936", "vbur_near_vtot": "260.62503", "vbur_ovbur_max": "14.799615", "vbur_ovbur_min": "-0.02315053", "vbur_ovtot_max": "79.04895", "vbur_ovtot_min": "-0.07185352", "vbur_qvbur_max": "15.059674", "vbur_qvbur_min": "9.861628", "vbur_qvtot_max": "73.43648", "vbur_qvtot_min": "34.486267", "vbur_max_delta_qvbur": "2.1396365", "vbur_max_delta_qvtot": "24.860632"}, "delta_data": {"pyr_P": "0.04172941", "pyr_alpha": "4.8438673", "qpole_amp": "3.8783643", "vbur_vbur": "9.491961", "sterimol_L": "0.5648565", "sterimol_B1": "0.75961876", "sterimol_B5": "0.35751364", "dipolemoment": "1.5009115", "qpoletens_xx": "2.016541", "qpoletens_yy": "2.4454927", "qpoletens_zz": "2.782195", "sterimol_burL": "0.728447", "vbur_far_vbur": "0.35818365", "vbur_far_vtot": "2.3314166", "sterimol_burB1": "0.7883555", "sterimol_burB5": "0.23190716", "vbur_near_vbur": "9.02685", "vbur_near_vtot": "2.9572263", "vbur_ovbur_max": "3.5545487", "vbur_ovbur_min": "-0.041874684", "vbur_ovtot_max": "8.191974", "vbur_ovtot_min": "0.45502567", "vbur_qvbur_max": "3.9835913", "vbur_qvbur_min": "3.5676634", "vbur_qvtot_max": "10.740427", "vbur_qvtot_min": "16.741838", "vbur_max_delta_qvbur": "5.912619", "vbur_max_delta_qvtot": "22.945547"}, "vburminconf_data": {"pyr_P": "0.90783393", "pyr_alpha": "19.300812", "qpole_amp": "5.1345453", "vbur_vbur": "50.91321", "sterimol_L": "7.4218974", "sterimol_B1": "3.8491316", "sterimol_B5": "5.813457", "dipolemoment": "1.1387821", "qpoletens_xx": "3.8683953", "qpoletens_yy": "0.5961306", "qpoletens_zz": "-4.523433", "sterimol_burL": "6.87263", "vbur_far_vbur": "-0.47222584", "vbur_far_vtot": "-0.57502043", "sterimol_burB1": "3.8268983", "sterimol_burB5": "5.6479573", "vbur_near_vbur": "52.88596", "vbur_near_vtot": "265.63266", "vbur_ovbur_max": "15.307088", "vbur_ovbur_min": "-0.030649768", "vbur_ovtot_max": "79.88439", "vbur_ovtot_min": "-0.00052530016", "vbur_qvbur_max": "14.672874", "vbur_qvbur_min": "10.701648", "vbur_qvtot_max": "80.41586", "vbur_qvtot_min": "52.878315", "vbur_max_delta_qvbur": "3.8544636", "vbur_max_delta_qvtot": "37.057148"}, "boltzmann_averaged_data": {"nbo_P": "1.305266", "nmr_P": "178.13855", "pyr_P": "0.9212608", "fmo_mu": "-0.096428245", "vmin_r": "1.7952412", "volume": "332.096", "Pint_dP": "3.6189215", "fmo_eta": "0.24721915", "fukui_m": "0.2949172", "fukui_p": "0.19709039", "nuesp_P": "-54.15766", "somo_ra": "0.1144715", "somo_rc": "-0.39484352", "nbo_P_ra": "1.0936079", "nbo_P_rc": "1.487486", "efg_amp_P": "1.9164635", "fmo_omega": "0.018205402", "pyr_alpha": "18.63887", "qpole_amp": "4.974349", "vbur_vbur": "52.73443", "vbur_vtot": "266.92697", "vmin_vmin": "-0.060286637", "E_solv_cds": "-6.7585363", "Pint_P_int": "18.41567", "Pint_P_max": "33.116035", "Pint_P_min": "12.138714", "fmo_e_homo": "-0.21551508", "fmo_e_lumo": "0.027900664", "nbo_lp_P_e": "-0.3112938", "sphericity": "0.8138671", "sterimol_L": "7.1184106", "E_oxidation": "0.2692339", "E_reduction": "0.070671", "sterimol_B1": "3.8618748", "sterimol_B5": "6.0102086", "E_solv_total": "-10.9412565", "dipolemoment": "1.7033885", "efgtens_xx_P": "-0.8583137", "efgtens_yy_P": "-0.6741892", "efgtens_zz_P": "1.5490097", "nbo_bd_e_avg": "-0.56461644", "nbo_bd_e_max": "-0.5434944", "nbo_lp_P_occ": "1.9396017", "qpoletens_xx": "2.5212502", "qpoletens_yy": "0.7856793", "qpoletens_zz": "-4.0201626", "surface_area": "288.84326", "E_solv_elstat": "-4.0318975", "nbo_bds_e_avg": "0.24017486", "nbo_bds_e_min": "0.21340966", "nmrtens_sxx_P": "139.15787", "nmrtens_syy_P": "148.76642", "nmrtens_szz_P": "264.21234", "spindens_P_ra": "0.27825418", "spindens_P_rc": "0.31770656", "sterimol_burL": "6.827533", "vbur_far_vbur": "-0.92946607", "vbur_far_vtot": "-2.5336838", "nbo_bd_occ_avg": "1.9674715", "nbo_bd_occ_min": "1.9601266", "sterimol_burB1": "3.779699", "sterimol_burB5": "5.9629316", "vbur_near_vbur": "54.864006", "vbur_near_vtot": "266.08917", "vbur_ovbur_max": "15.844036", "vbur_ovbur_min": "-0.010774373", "vbur_ovtot_max": "84.709885", "vbur_ovtot_min": "-0.003198477", "vbur_qvbur_max": "15.15004", "vbur_qvbur_min": "10.763374", "vbur_qvtot_max": "85.49516", "vbur_qvtot_min": "44.475983", "nbo_bds_occ_avg": "0.082500845", "nbo_bds_occ_max": "0.0893557", "nbo_lp_P_percent_s": "54.592384", "vbur_max_delta_qvbur": "4.9601383", "vbur_max_delta_qvtot": "34.258095", "vbur_ratio_vbur_vtot": "0.19194072"}} C1CCN(P(N2CCCC2)N2CCCC2)C1 {"max_data": {"B1": 4.2935450548499325, "B5": 5.928951635321184, "lval": 7.140388345738284, "sasa": 449.63077407805605, "vbur": 60.22612679232404, "vtot": 264.02531616648463, "alpha": 183.121506, "p_int": 18.78982153702934, "sasa_P": 10.749969515298863, "pyr_val": 0.9459717830051972, "dip_norm": 0.7403418129485867, "far_vbur": 0.15152693019164165, "far_vtot": 0.3030301617440241, "near_vbur": 60.09791169754649, "near_vtot": 265.0203063927207, "ovbur_max": 17.169166782483707, "ovbur_min": 0.0, "ovtot_max": 82.99246800844456, "ovtot_min": 0.0, "pyr_alpha": 22.69284802767197, "qvbur_max": 17.2624141241401, "qvbur_min": 13.497552704763155, "qvtot_max": 82.99246800844456, "qvtot_min": 55.96573551947631, "cone_angle": 185.42331999890985, "p_int_area": 338.19733777756414, "p_int_atom": 29.360239976349323, "sasa_volume": 722.9873888732918, "EA_delta_SCC": 0.9007, "IP_delta_SCC": 6.0458, "HOMO_LUMO_gap": 5.593572498038, "sasa_volume_P": 10.800511211141334, "max_delta_qvbur": 4.907141354667779, "max_delta_qvtot": 45.9234174686183, "nucleophilicity": -5.5714, "p_int_atom_area": 14.997913062755213, "p_int_times_p_int_area": 6303.0220124240695, "global_electrophilicity_index": 1.1401, "p_int_atom_times_p_int_atom_area": 403.99800663224033}, "min_data": {"B1": 3.471312688634643, "B5": 5.608945426520307, "lval": 6.263585160874941, "sasa": 431.7509407465493, "vbur": 54.00186673675967, "vtot": 262.340851517561, "alpha": 182.981321, "p_int": 18.296385487709998, "sasa_P": 6.8399806032227195, "pyr_val": 0.8810979941937038, "dip_norm": 0.19700253805471646, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.00186673675968, "near_vtot": 260.2966014071063, "ovbur_max": 14.814671405659734, "ovbur_min": 0.0, "ovtot_max": 76.74743209728479, "ovtot_min": 0.0, "pyr_alpha": 15.945542354043948, "qvbur_max": 14.814671405659734, "qvbur_min": 11.411143435201323, "qvtot_max": 76.74743209728479, "qvtot_min": 33.98305640782697, "cone_angle": 164.6855543605249, "p_int_area": 323.6978161343117, "p_int_atom": 25.698121890279104, "sasa_volume": 704.0526465259403, "EA_delta_SCC": 0.706, "IP_delta_SCC": 5.5714, "HOMO_LUMO_gap": 4.798422674898, "sasa_volume_P": 6.248715724963769, "max_delta_qvbur": 1.7134199029362573, "max_delta_qvtot": 12.358072656007707, "nucleophilicity": -6.0458, "p_int_atom_area": 12.098316537289206, "p_int_times_p_int_area": 6002.630232247978, "global_electrophilicity_index": 1.0428, "p_int_atom_times_p_int_atom_area": 332.53192299699634}, "boltzmann_averaged_data": {"B1": 3.7993915381976375, "B5": 5.719732207589559, "lval": 6.676707021489712, "sasa": 436.1129764457734, "vbur": 58.21145746358038, "vtot": 262.9827486899759, "alpha": 183.01343835368647, "p_int": 18.508277324815555, "B1_std": 0.08853383522845452, "B5_std": 0.058847918975502116, "sasa_P": 7.7960280315675785, "pyr_val": 0.9299635353797233, "dip_norm": 0.5057101505153463, "far_vbur": 0.06301534054210087, "far_vtot": 0.11081986865582373, "lval_std": 0.07487044124705276, "sasa_std": 2.0069301135128104, "vbur_std": 0.7452030921216003, "vtot_std": 0.22233022936038155, "alpha_std": 0.01413260192804634, "near_vbur": 58.14844212303827, "near_vtot": 262.6430980151037, "ovbur_max": 16.476801470893797, "ovbur_min": 0.0, "ovtot_max": 79.28324028393213, "ovtot_min": 0.0, "p_int_std": 0.05439593521162275, "pyr_alpha": 17.97409979405215, "qvbur_max": 16.547581906161387, "qvbur_min": 12.102221013880284, "qvtot_max": 79.28324028393213, "qvtot_min": 45.43183366941576, "cone_angle": 179.63085503474994, "p_int_area": 329.09379160525015, "p_int_atom": 27.19591822868968, "sasa_P_std": 0.38279698669569123, "pyr_val_std": 0.008842525523817805, "sasa_volume": 708.313569872156, "EA_delta_SCC": 0.8337732062679373, "IP_delta_SCC": 5.820483866161338, "dip_norm_std": 0.0723464759892042, "far_vbur_std": 0.048232196950685355, "far_vtot_std": 0.09009820947034226, "HOMO_LUMO_gap": 5.224445328880228, "near_vbur_std": 0.7039564810967592, "near_vtot_std": 0.6824618010980318, "ovbur_max_std": 0.21921103506652656, "ovbur_min_std": 0.0, "ovtot_max_std": 1.2685183797866904, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.021757615653532, "qvbur_max_std": 0.23495965797897334, "qvbur_min_std": 0.38421596782862755, "qvtot_max_std": 1.2685183797866904, "qvtot_min_std": 1.9895066970976147, "sasa_volume_P": 7.440495629528557, "cone_angle_std": 1.7738429961970363, "p_int_area_std": 1.9534244085963757, "p_int_atom_std": 0.31067550622311696, "max_delta_qvbur": 4.31471509673194, "max_delta_qvtot": 26.056477287666603, "nucleophilicity": -5.820483866161338, "p_int_atom_area": 12.492730710454422, "sasa_volume_std": 2.081605681296338, "EA_delta_SCC_std": 0.015124399095972794, "IP_delta_SCC_std": 0.049969600923826345, "HOMO_LUMO_gap_std": 0.08946077603791931, "sasa_volume_P_std": 0.4362507842598428, "max_delta_qvbur_std": 0.6239745697800827, "max_delta_qvtot_std": 3.2254320527699605, "nucleophilicity_std": 0.049969600923826345, "p_int_atom_area_std": 0.4393620960972528, "p_int_times_p_int_area": 6090.996523652223, "p_int_times_p_int_area_std": 45.6443694320027, "global_electrophilicity_index": 1.1099678663213364, "p_int_atom_times_p_int_atom_area": 339.7588885218843, "global_electrophilicity_index_std": 0.009773450271683356, "p_int_atom_times_p_int_atom_area_std": 12.785600248486759}} \\x000000080000040000080a2000200308004001004000040080000200250020000000901820000400300a0000200000200200001801000101430000104400044002020200000502100000002400002001004000c0020001002000a0a00010000000642102200000000094200000080000830b0820128000508080000000000081 \\x10000000002000000000000000010000000000000000000000000000080000000000000021000000000000000000000000000040800000000041020000000000 pn3 (-6.058585643768311, 1.5286558866500854, 2.1816844940185547, 1.133285641670227) (1.2221899032592771, 5.582999706268311) -524 O=C=NP(N=C=O)N=C=O 157.02499389648438 {"max_data": {"pyr_P": 0.9729342209430475, "pyr_alpha": 11.183348181492354, "qpole_amp": 5.583678260342086, "vbur_vbur": 44.182150319234744, "vbur_vtot": 156.55439056677758, "sterimol_L": 5.08674373697043, "sterimol_B1": 3.454930496922307, "sterimol_B5": 5.391342241392428, "dipolemoment": 0.9407601258934595, "qpoletens_xx": 4.559036600489902, "qpoletens_yy": -2.2685449664983643, "qpoletens_zz": -2.2904916339915378, "sterimol_burL": 5.08674373697043, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.454930496922307, "sterimol_burB5": 5.391342241392428, "vbur_near_vbur": 44.18215031923474, "vbur_near_vtot": 156.20654110453944, "vbur_ovbur_max": 11.773748695490982, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 46.87580825644745, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.773748695490982, "vbur_qvbur_min": 10.313665797835707, "vbur_qvtot_max": 46.87580825644745, "vbur_qvtot_min": 31.1835388106554, "vbur_max_delta_qvbur": 1.4600828976552744, "vbur_max_delta_qvtot": 15.69226944579205}, "min_data": {"pyr_P": 0.9729342209430475, "pyr_alpha": 11.183348181492354, "qpole_amp": 5.583678260342086, "vbur_vbur": 44.182150319234744, "vbur_vtot": 156.55439056677758, "sterimol_L": 5.08674373697043, "sterimol_B1": 3.454930496922307, "sterimol_B5": 5.391342241392428, "dipolemoment": 0.9407601258934595, "qpoletens_xx": 4.559036600489902, "qpoletens_yy": -2.2685449664983643, "qpoletens_zz": -2.2904916339915378, "sterimol_burL": 5.08674373697043, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.454930496922307, "sterimol_burB5": 5.391342241392428, "vbur_near_vbur": 44.18215031923474, "vbur_near_vtot": 156.20654110453944, "vbur_ovbur_max": 11.773748695490982, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 46.87580825644745, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.773748695490982, "vbur_qvbur_min": 10.313665797835707, "vbur_qvtot_max": 46.87580825644745, "vbur_qvtot_min": 31.1835388106554, "vbur_max_delta_qvbur": 1.4600828976552744, "vbur_max_delta_qvtot": 15.69226944579205}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9729342209430475, "pyr_alpha": 11.183348181492354, "qpole_amp": 5.583678260342086, "vbur_vbur": 44.182150319234744, "vbur_vtot": 156.55439056677758, "sterimol_L": 5.08674373697043, "sterimol_B1": 3.454930496922307, "sterimol_B5": 5.391342241392428, "dipolemoment": 0.9407601258934595, "qpoletens_xx": 4.559036600489902, "qpoletens_yy": -2.2685449664983643, "qpoletens_zz": -2.2904916339915378, "sterimol_burL": 5.08674373697043, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.454930496922307, "sterimol_burB5": 5.391342241392428, "vbur_near_vbur": 44.18215031923474, "vbur_near_vtot": 156.20654110453944, "vbur_ovbur_max": 11.773748695490982, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 46.87580825644745, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.773748695490982, "vbur_qvbur_min": 10.313665797835707, "vbur_qvtot_max": 46.87580825644745, "vbur_qvtot_min": 31.1835388106554, "vbur_max_delta_qvbur": 1.4600828976552744, "vbur_max_delta_qvtot": 15.69226944579205}, "boltzmann_averaged_data": {"nbo_P": 1.35588, "nmr_P": 162.9006, "pyr_P": 0.9729342209430475, "fmo_mu": -0.170765, "vmin_r": 2.120134922623834, "volume": 153.1153, "Pint_dP": 4.59, "fmo_eta": 0.24451, "fukui_m": 0.34299000000000013, "fukui_p": 0.39432999999999996, "nuesp_P": -54.036708, "somo_ra": 0.07368, "somo_rc": -0.5176, "nbo_P_ra": 0.96155, "nbo_P_rc": 1.69887, "efg_amp_P": 1.8877973121863478, "fmo_omega": 0.05963086422845691, "pyr_alpha": 11.183348181492354, "qpole_amp": 5.583678260342086, "vbur_vbur": 44.182150319234744, "vbur_vtot": 156.55439056677758, "vmin_vmin": 0.00512605, "E_solv_cds": 4.99, "Pint_P_int": 16.13, "Pint_P_max": 26.44, "Pint_P_min": 9.58, "fmo_e_homo": -0.29302, "fmo_e_lumo": -0.04851, "nbo_lp_P_e": -0.42768, "sphericity": 0.796578, "sterimol_L": 5.08674373697043, "E_oxidation": 0.3578135000000202, "E_reduction": 0.01224760000002334, "sterimol_B1": 3.454930496922307, "sterimol_B5": 5.391342241392428, "E_solv_total": 0.6401851612756941, "dipolemoment": 0.9407601258934595, "efgtens_xx_P": -0.771033, "efgtens_yy_P": -0.770347, "efgtens_zz_P": 1.54138, "nbo_bd_e_avg": -0.5823200000000001, "nbo_bd_e_max": -0.58227, "nbo_lp_P_occ": 1.94598, "qpoletens_xx": 4.559036600489902, "qpoletens_yy": -2.2685449664983643, "qpoletens_zz": -2.2904916339915378, "surface_area": 173.75408, "E_solv_elstat": -4.349814838724306, "nbo_bds_e_avg": 0.14523666666666668, "nbo_bds_e_min": 0.14522, "nmrtens_sxx_P": 93.3873, "nmrtens_syy_P": 93.5514, "nmrtens_szz_P": 301.7631, "spindens_P_ra": 0.50546, "spindens_P_rc": 0.41322, "sterimol_burL": 5.08674373697043, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.85293, "nbo_bd_occ_min": 1.8529, "sterimol_burB1": 3.454930496922307, "sterimol_burB5": 5.391342241392428, "vbur_near_vbur": 44.18215031923474, "vbur_near_vtot": 156.20654110453944, "vbur_ovbur_max": 11.773748695490982, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 46.87580825644745, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 11.773748695490982, "vbur_qvbur_min": 10.313665797835707, "vbur_qvtot_max": 46.87580825644745, "vbur_qvtot_min": 31.1835388106554, "nbo_bds_occ_avg": 0.11945666666666666, "nbo_bds_occ_max": 0.11948, "nbo_lp_P_percent_s": 64.52, "vbur_max_delta_qvbur": 1.4600828976552744, "vbur_max_delta_qvtot": 15.69226944579205, "vbur_ratio_vbur_vtot": 0.28221597720307334}} {"max_data": {"B1": 3.4131801594939284, "B5": 5.310870657568179, "lval": 5.042341477280383, "sasa": 322.3359094552771, "vbur": 46.39055247405644, "vtot": 154.03253059136577, "alpha": 85.499301, "p_int": 17.30226453172696, "sasa_P": 29.709915748793414, "pyr_val": 0.9785133546936087, "dip_norm": 0.6200008064510885, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.39055247405644, "near_vtot": 154.03253059136574, "ovbur_max": 12.273681345522974, "ovbur_min": 0.0, "ovtot_max": 45.58170670298743, "ovtot_min": 0.0, "pyr_alpha": 9.930368361501957, "qvbur_max": 12.273681345522974, "qvbur_min": 10.89828305609115, "qvtot_max": 45.58170670298743, "qvtot_min": 31.43455859269544, "cone_angle": 138.69010578665998, "p_int_area": 173.90730973229876, "p_int_atom": 20.763873793572394, "sasa_volume": 433.294940918821, "EA_delta_SCC": null, "IP_delta_SCC": null, "HOMO_LUMO_gap": 4.364453126152, "sasa_volume_P": 36.94655313537123, "max_delta_qvbur": 1.375398289431823, "max_delta_qvtot": 14.147148110291994, "nucleophilicity": null, "p_int_atom_area": 26.596299164619246, "p_int_times_p_int_area": 3008.9902769892074, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 552.242199230249}, "min_data": {"B1": 3.4131801594939284, "B5": 5.310870657568179, "lval": 5.042341477280383, "sasa": 322.3359094552771, "vbur": 46.39055247405644, "vtot": 154.03253059136577, "alpha": 85.499301, "p_int": 17.30226453172696, "sasa_P": 29.709915748793414, "pyr_val": 0.9785133546936087, "dip_norm": 0.6200008064510885, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.39055247405644, "near_vtot": 154.03253059136574, "ovbur_max": 12.273681345522974, "ovbur_min": 0.0, "ovtot_max": 45.58170670298743, "ovtot_min": 0.0, "pyr_alpha": 9.930368361501957, "qvbur_max": 12.273681345522974, "qvbur_min": 10.89828305609115, "qvtot_max": 45.58170670298743, "qvtot_min": 31.43455859269544, "cone_angle": 138.69010578665998, "p_int_area": 173.90730973229876, "p_int_atom": 20.763873793572394, "sasa_volume": 433.294940918821, "EA_delta_SCC": null, "IP_delta_SCC": null, "HOMO_LUMO_gap": 4.364453126152, "sasa_volume_P": 36.94655313537123, "max_delta_qvbur": 1.375398289431823, "max_delta_qvtot": 14.147148110291994, "nucleophilicity": null, "p_int_atom_area": 26.596299164619246, "p_int_times_p_int_area": 3008.9902769892074, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 552.242199230249}, "boltzmann_averaged_data": {"B1": 3.4131801594939284, "B5": 5.310870657568179, "lval": 5.042341477280383, "sasa": 322.3359094552771, "vbur": 46.39055247405644, "vtot": 154.03253059136577, "alpha": 85.499301, "p_int": 17.30226453172696, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 29.709915748793414, "pyr_val": 0.9785133546936087, "dip_norm": 0.6200008064510885, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 46.39055247405644, "near_vtot": 154.03253059136574, "ovbur_max": 12.273681345522974, "ovbur_min": 0.0, "ovtot_max": 45.58170670298743, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 9.930368361501957, "qvbur_max": 12.273681345522974, "qvbur_min": 10.89828305609115, "qvtot_max": 45.58170670298743, "qvtot_min": 31.43455859269544, "cone_angle": 138.69010578665998, "p_int_area": 173.90730973229876, "p_int_atom": 20.763873793572394, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 433.294940918821, "EA_delta_SCC": null, "IP_delta_SCC": null, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 4.364453126152, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 36.94655313537123, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 1.375398289431823, "max_delta_qvtot": 14.147148110291994, "nucleophilicity": null, "p_int_atom_area": 26.596299164619246, "sasa_volume_std": 0.0, "EA_delta_SCC_std": null, "IP_delta_SCC_std": null, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": null, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 3008.9902769892074, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 552.242199230249, "global_electrophilicity_index_std": null, "p_int_atom_times_p_int_atom_area_std": 0.0}} {"max_data": {"pyr_P": "0.97855365", "pyr_alpha": "11.008273", "qpole_amp": "5.735985", "vbur_vbur": "42.290108", "sterimol_L": "4.435971", "sterimol_B1": "3.5807774", "sterimol_B5": "4.6297565", "dipolemoment": "0.62243664", "qpoletens_xx": "4.537908", "qpoletens_yy": "-0.6125574", "qpoletens_zz": "-1.5678709", "sterimol_burL": "4.7499385", "vbur_far_vbur": "-0.964466", "vbur_far_vtot": "-2.961672", "sterimol_burB1": "3.4807532", "sterimol_burB5": "4.946801", "vbur_near_vbur": "42.680264", "vbur_near_vtot": "156.76982", "vbur_ovbur_max": "10.49736", "vbur_ovbur_min": "0.24080765", "vbur_ovtot_max": "41.795837", "vbur_ovtot_min": "0.42831415", "vbur_qvbur_max": "10.070094", "vbur_qvbur_min": "9.925242", "vbur_qvtot_max": "43.83804", "vbur_qvtot_min": "34.097374", "vbur_max_delta_qvbur": "1.5532813", "vbur_max_delta_qvtot": "6.7888017"}, "min_data": {"pyr_P": "0.97789645", "pyr_alpha": "11.123711", "qpole_amp": "5.9188094", "vbur_vbur": "43.55369", "sterimol_L": "4.777537", "sterimol_B1": "3.4866407", "sterimol_B5": "5.236267", "dipolemoment": "0.9312984", "qpoletens_xx": "5.350193", "qpoletens_yy": "-1.8900034", "qpoletens_zz": "-2.4816344", "sterimol_burL": "5.040768", "vbur_far_vbur": "0.12824239", "vbur_far_vtot": "0.41136852", "sterimol_burB1": "3.4728413", "sterimol_burB5": "5.1096826", "vbur_near_vbur": "43.527607", "vbur_near_vtot": "153.78227", "vbur_ovbur_max": "11.500784", "vbur_ovbur_min": "-0.026651248", "vbur_ovtot_max": "42.784283", "vbur_ovtot_min": "-0.07683821", "vbur_qvbur_max": "12.347257", "vbur_qvbur_min": "10.300397", "vbur_qvtot_max": "38.057545", "vbur_qvtot_min": "31.223473", "vbur_max_delta_qvbur": "2.9353616", "vbur_max_delta_qvtot": "14.129225"}, "delta_data": {"pyr_P": "-0.004930737", "pyr_alpha": "-1.1820818", "qpole_amp": "-0.48263466", "vbur_vbur": "-1.1617281", "sterimol_L": "-0.30908778", "sterimol_B1": "0.0014795697", "sterimol_B5": "-0.30846012", "dipolemoment": "0.17661469", "qpoletens_xx": "1.0605639", "qpoletens_yy": "0.17041506", "qpoletens_zz": "0.3678605", "sterimol_burL": "-0.12132527", "vbur_far_vbur": "-0.7940882", "vbur_far_vtot": "-1.3187932", "sterimol_burB1": "-0.012581758", "sterimol_burB5": "-0.12758614", "vbur_near_vbur": "-1.0549989", "vbur_near_vtot": "-1.3251183", "vbur_ovbur_max": "-0.48381293", "vbur_ovbur_min": "0.07219461", "vbur_ovtot_max": "-1.4307085", "vbur_ovtot_min": "-0.8486141", "vbur_qvbur_max": "-0.64075834", "vbur_qvbur_min": "-0.2541203", "vbur_qvtot_max": "0.653061", "vbur_qvtot_min": "0.77769774", "vbur_max_delta_qvbur": "-0.025909461", "vbur_max_delta_qvtot": "0.70645297"}, "vburminconf_data": {"pyr_P": "0.960981", "pyr_alpha": "11.634341", "qpole_amp": "6.381763", "vbur_vbur": "44.370335", "sterimol_L": "4.9590583", "sterimol_B1": "3.4883237", "sterimol_B5": "5.130384", "dipolemoment": "1.1045505", "qpoletens_xx": "5.134302", "qpoletens_yy": "-2.142931", "qpoletens_zz": "-4.614674", "sterimol_burL": "4.912396", "vbur_far_vbur": "0.11903389", "vbur_far_vtot": "-1.3686867", "sterimol_burB1": "3.4882638", "sterimol_burB5": "5.175693", "vbur_near_vbur": "43.375736", "vbur_near_vtot": "155.68465", "vbur_ovbur_max": "12.151851", "vbur_ovbur_min": "-0.022510903", "vbur_ovtot_max": "45.69577", "vbur_ovtot_min": "-0.010380808", "vbur_qvbur_max": "10.716572", "vbur_qvbur_min": "10.344448", "vbur_qvtot_max": "45.413834", "vbur_qvtot_min": "20.150633", "vbur_max_delta_qvbur": "1.2212963", "vbur_max_delta_qvtot": "18.132395"}, "boltzmann_averaged_data": {"nbo_P": "1.364552", "nmr_P": "151.39561", "pyr_P": "0.9697804", "fmo_mu": "-0.17166103", "vmin_r": "2.1411452", "volume": "153.17201", "Pint_dP": "4.5806947", "fmo_eta": "0.24571754", "fukui_m": "0.35191968", "fukui_p": "0.44480574", "nuesp_P": "-54.03508", "somo_ra": "0.07574972", "somo_rc": "-0.5136564", "nbo_P_ra": "0.96703804", "nbo_P_rc": "1.6548212", "efg_amp_P": "1.9612554", "fmo_omega": "0.06057005", "pyr_alpha": "11.403201", "qpole_amp": "5.720646", "vbur_vbur": "43.13166", "vbur_vtot": "156.45844", "vmin_vmin": "0.0047900937", "E_solv_cds": "4.8838186", "Pint_P_int": "15.934829", "Pint_P_max": "26.358486", "Pint_P_min": "9.91095", "fmo_e_homo": "-0.30243054", "fmo_e_lumo": "-0.0494705", "nbo_lp_P_e": "-0.42809895", "sphericity": "0.8053181", "sterimol_L": "4.749008", "E_oxidation": "0.36245063", "E_reduction": "0.014261005", "sterimol_B1": "3.547662", "sterimol_B5": "4.935369", "E_solv_total": "0.53779596", "dipolemoment": "0.48186752", "efgtens_xx_P": "-0.75921416", "efgtens_yy_P": "-0.76580054", "efgtens_zz_P": "1.5255371", "nbo_bd_e_avg": "-0.58414596", "nbo_bd_e_max": "-0.57810515", "nbo_lp_P_occ": "1.9449762", "qpoletens_xx": "4.7117968", "qpoletens_yy": "-1.7386245", "qpoletens_zz": "-1.9162159", "surface_area": "173.04646", "E_solv_elstat": "-4.4212704", "nbo_bds_e_avg": "0.14317441", "nbo_bds_e_min": "0.1487979", "nmrtens_sxx_P": "105.74505", "nmrtens_syy_P": "89.80573", "nmrtens_szz_P": "295.63248", "spindens_P_ra": "0.582897", "spindens_P_rc": "0.42815423", "sterimol_burL": "4.7722507", "vbur_far_vbur": "-0.16156428", "vbur_far_vtot": "-1.3144346", "nbo_bd_occ_avg": "1.8527004", "nbo_bd_occ_min": "1.8532985", "sterimol_burB1": "3.4514427", "sterimol_burB5": "4.9692283", "vbur_near_vbur": "43.83611", "vbur_near_vtot": "155.01486", "vbur_ovbur_max": "11.380914", "vbur_ovbur_min": "-0.06709132", "vbur_ovtot_max": "41.005585", "vbur_ovtot_min": "-0.36953676", "vbur_qvbur_max": "11.210984", "vbur_qvbur_min": "10.078569", "vbur_qvtot_max": "40.261948", "vbur_qvtot_min": "32.686703", "nbo_bds_occ_avg": "0.12036435", "nbo_bds_occ_max": "0.11777767", "nbo_lp_P_percent_s": "65.287346", "vbur_max_delta_qvbur": "1.8733548", "vbur_max_delta_qvtot": "9.453171", "vbur_ratio_vbur_vtot": "0.29352403"}} O=C=NP(N=C=O)N=C=O {"max_data": {"B1": 3.4144873862895055, "B5": 5.308337741751451, "lval": 5.039687486896346, "sasa": 320.42580035718026, "vbur": 44.385734628443956, "vtot": 153.57421973967794, "alpha": 85.468395, "p_int": 17.304615145563975, "sasa_P": 26.53992473823552, "pyr_val": 0.9698663051463342, "dip_norm": 0.4710095540432274, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 44.385734628443956, "near_vtot": 153.57421973967797, "ovbur_max": 11.807444637241, "ovbur_min": 0.0, "ovtot_max": 45.4293488642491, "ovtot_min": 0.0, "pyr_alpha": 11.821028887385882, "qvbur_max": 11.807444637241, "qvbur_min": 10.36211084156688, "qvtot_max": 45.4293488642491, "qvtot_min": 31.337021745665552, "cone_angle": 140.91267662372502, "p_int_area": 171.60795310463223, "p_int_atom": 21.09274651042027, "sasa_volume": 431.1877213699007, "EA_delta_SCC": null, "IP_delta_SCC": null, "HOMO_LUMO_gap": 4.243876656644, "sasa_volume_P": 22.073754564964997, "max_delta_qvbur": 1.433677877967071, "max_delta_qvtot": 14.071587858659214, "nucleophilicity": null, "p_int_atom_area": 25.2964800325138, "p_int_times_p_int_area": 2969.6095843936514, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 533.5722409317215}, "min_data": {"B1": 3.4144873862895055, "B5": 5.308337741751451, "lval": 5.039687486896346, "sasa": 320.42580035718026, "vbur": 44.385734628443956, "vtot": 153.57421973967794, "alpha": 85.468395, "p_int": 17.304615145563975, "sasa_P": 26.53992473823552, "pyr_val": 0.9698663051463342, "dip_norm": 0.4710095540432274, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 44.385734628443956, "near_vtot": 153.57421973967797, "ovbur_max": 11.807444637241, "ovbur_min": 0.0, "ovtot_max": 45.4293488642491, "ovtot_min": 0.0, "pyr_alpha": 11.821028887385882, "qvbur_max": 11.807444637241, "qvbur_min": 10.36211084156688, "qvtot_max": 45.4293488642491, "qvtot_min": 31.337021745665552, "cone_angle": 140.91267662372502, "p_int_area": 171.60795310463223, "p_int_atom": 21.09274651042027, "sasa_volume": 431.1877213699007, "EA_delta_SCC": null, "IP_delta_SCC": null, "HOMO_LUMO_gap": 4.243876656644, "sasa_volume_P": 22.073754564964997, "max_delta_qvbur": 1.433677877967071, "max_delta_qvtot": 14.071587858659214, "nucleophilicity": null, "p_int_atom_area": 25.2964800325138, "p_int_times_p_int_area": 2969.6095843936514, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 533.5722409317215}, "boltzmann_averaged_data": {"B1": 3.4144873862895055, "B5": 5.308337741751451, "lval": 5.039687486896346, "sasa": 320.42580035718026, "vbur": 44.385734628443956, "vtot": 153.57421973967794, "alpha": 85.468395, "p_int": 17.304615145563975, "B1_std": 0.0, "B5_std": 0.0, "sasa_P": 26.53992473823552, "pyr_val": 0.9698663051463342, "dip_norm": 0.4710095540432274, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.0, "sasa_std": 0.0, "vbur_std": 0.0, "vtot_std": 0.0, "alpha_std": 0.0, "near_vbur": 44.385734628443956, "near_vtot": 153.57421973967797, "ovbur_max": 11.807444637241, "ovbur_min": 0.0, "ovtot_max": 45.4293488642491, "ovtot_min": 0.0, "p_int_std": 0.0, "pyr_alpha": 11.821028887385882, "qvbur_max": 11.807444637241, "qvbur_min": 10.36211084156688, "qvtot_max": 45.4293488642491, "qvtot_min": 31.337021745665552, "cone_angle": 140.91267662372502, "p_int_area": 171.60795310463223, "p_int_atom": 21.09274651042027, "sasa_P_std": 0.0, "pyr_val_std": 0.0, "sasa_volume": 431.1877213699007, "EA_delta_SCC": null, "IP_delta_SCC": null, "dip_norm_std": 0.0, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 4.243876656644, "near_vbur_std": 0.0, "near_vtot_std": 0.0, "ovbur_max_std": 0.0, "ovbur_min_std": 0.0, "ovtot_max_std": 0.0, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.0, "qvbur_max_std": 0.0, "qvbur_min_std": 0.0, "qvtot_max_std": 0.0, "qvtot_min_std": 0.0, "sasa_volume_P": 22.073754564964997, "cone_angle_std": 0.0, "p_int_area_std": 0.0, "p_int_atom_std": 0.0, "max_delta_qvbur": 1.433677877967071, "max_delta_qvtot": 14.071587858659214, "nucleophilicity": null, "p_int_atom_area": 25.2964800325138, "sasa_volume_std": 0.0, "EA_delta_SCC_std": null, "IP_delta_SCC_std": null, "HOMO_LUMO_gap_std": 0.0, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.0, "max_delta_qvtot_std": 0.0, "nucleophilicity_std": null, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 2969.6095843936514, "p_int_times_p_int_area_std": 0.0, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 533.5722409317215, "global_electrophilicity_index_std": null, "p_int_atom_times_p_int_atom_area_std": 0.0}} \\x0000000010000a04000000040000010804000000080000000000000200800000000000200000000000000000020000200001001000000000000200020100000002000000400400100000000000000000000040000000000000082001001000000000810000200000000004000000880000000000000000000200000000200000 \\x00000000802000000000000000000000000400002c00000000002000000000010000800000000000000000000000000000000000000000000000000000000009 pn3 (-14.681839942932127, 0.2565691173076629, -3.530600309371948, 5.532557964324951) (1.1623592376708984, 7.456902503967285) -577 c1ccn(P(n2cccc2)n2cccc2)c1 229.22300720214844 {"max_data": {"pyr_P": 0.9551362221471621, "pyr_alpha": 14.53599930457852, "qpole_amp": 2.8546045828435505, "vbur_vbur": 49.007954395009406, "vbur_vtot": 253.06083385419544, "sterimol_L": 6.9845081626372, "sterimol_B1": 3.8184202670286806, "sterimol_B5": 5.871871680773399, "dipolemoment": 0.32011926510388106, "qpoletens_xx": 2.3307559304953087, "qpoletens_yy": -1.1572452647810096, "qpoletens_zz": -1.173510665714299, "sterimol_burL": 6.714269584813156, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.8184202670286806, "sterimol_burB5": 5.871871680773399, "vbur_near_vbur": 49.007954395009406, "vbur_near_vtot": 253.06083385419544, "vbur_ovbur_max": 13.5099504219292, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 73.14575069235511, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.5099504219292, "vbur_qvbur_min": 11.030110486155094, "vbur_qvtot_max": 73.14575069235511, "vbur_qvtot_min": 50.825750400752746, "vbur_max_delta_qvbur": 1.309472627410031, "vbur_max_delta_qvtot": 21.01805988724805}, "min_data": {"pyr_P": 0.9551362221471621, "pyr_alpha": 14.53599930457852, "qpole_amp": 2.8546045828435505, "vbur_vbur": 49.007954395009406, "vbur_vtot": 253.06083385419544, "sterimol_L": 6.9845081626372, "sterimol_B1": 3.8184202670286806, "sterimol_B5": 5.871871680773399, "dipolemoment": 0.32011926510388106, "qpoletens_xx": 2.3307559304953087, "qpoletens_yy": -1.1572452647810096, "qpoletens_zz": -1.173510665714299, "sterimol_burL": 6.714269584813156, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.8184202670286806, "sterimol_burB5": 5.871871680773399, "vbur_near_vbur": 49.007954395009406, "vbur_near_vtot": 253.06083385419544, "vbur_ovbur_max": 13.5099504219292, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 73.14575069235511, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.5099504219292, "vbur_qvbur_min": 11.030110486155094, "vbur_qvtot_max": 73.14575069235511, "vbur_qvtot_min": 50.825750400752746, "vbur_max_delta_qvbur": 1.309472627410031, "vbur_max_delta_qvtot": 21.01805988724805}, "delta_data": {"pyr_P": 0.0, "pyr_alpha": 0.0, "qpole_amp": 0.0, "vbur_vbur": 0.0, "vbur_vtot": 0.0, "sterimol_L": 0.0, "sterimol_B1": 0.0, "sterimol_B5": 0.0, "dipolemoment": 0.0, "qpoletens_xx": 0.0, "qpoletens_yy": 0.0, "qpoletens_zz": 0.0, "sterimol_burL": 0.0, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.0, "sterimol_burB5": 0.0, "vbur_near_vbur": 0.0, "vbur_near_vtot": 0.0, "vbur_ovbur_max": 0.0, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.0, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 0.0, "vbur_qvbur_min": 0.0, "vbur_qvtot_max": 0.0, "vbur_qvtot_min": 0.0, "vbur_max_delta_qvbur": 0.0, "vbur_max_delta_qvtot": 0.0}, "vburminconf_data": {"pyr_P": 0.9551362221471621, "pyr_alpha": 14.53599930457852, "qpole_amp": 2.8546045828435505, "vbur_vbur": 49.007954395009406, "vbur_vtot": 253.06083385419544, "sterimol_L": 6.9845081626372, "sterimol_B1": 3.8184202670286806, "sterimol_B5": 5.871871680773399, "dipolemoment": 0.32011926510388106, "qpoletens_xx": 2.3307559304953087, "qpoletens_yy": -1.1572452647810096, "qpoletens_zz": -1.173510665714299, "sterimol_burL": 6.714269584813156, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.8184202670286806, "sterimol_burB5": 5.871871680773399, "vbur_near_vbur": 49.007954395009406, "vbur_near_vtot": 253.06083385419544, "vbur_ovbur_max": 13.5099504219292, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 73.14575069235511, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.5099504219292, "vbur_qvbur_min": 11.030110486155094, "vbur_qvtot_max": 73.14575069235511, "vbur_qvtot_min": 50.825750400752746, "vbur_max_delta_qvbur": 1.309472627410031, "vbur_max_delta_qvtot": 21.01805988724805}, "boltzmann_averaged_data": {"nbo_P": 1.36633, "nmr_P": 200.847, "pyr_P": 0.9551362221471621, "fmo_mu": -0.125535, "vmin_r": 1.980151347435274, "volume": 285.86401, "Pint_dP": 3.64, "fmo_eta": 0.21991, "fukui_m": 0.023029999999999884, "fukui_p": 0.3245, "nuesp_P": -54.081898, "somo_ra": 0.08307, "somo_rc": -0.39178, "nbo_P_ra": 1.04183, "nbo_P_rc": 1.38936, "efg_amp_P": 2.216021949395132, "fmo_omega": 0.03583064941339639, "pyr_alpha": 14.53599930457852, "qpole_amp": 2.8546045828435505, "vbur_vbur": 49.007954395009406, "vbur_vtot": 253.06083385419544, "vmin_vmin": -0.0120096, "E_solv_cds": -5.33, "Pint_P_int": 18.45, "Pint_P_max": 30.08, "Pint_P_min": 13.11, "fmo_e_homo": -0.23549, "fmo_e_lumo": -0.01558, "nbo_lp_P_e": -0.38681, "sphericity": 0.804703, "sterimol_L": 6.9845081626372, "E_oxidation": 0.2864746999999852, "E_reduction": 0.03333359999999175, "sterimol_B1": 3.8184202670286806, "sterimol_B5": 5.871871680773399, "E_solv_total": -12.839596767635173, "dipolemoment": 0.32011926510388106, "efgtens_xx_P": -0.904865, "efgtens_yy_P": -0.90451, "efgtens_zz_P": 1.809374, "nbo_bd_e_avg": -0.6316700000000001, "nbo_bd_e_max": -0.63165, "nbo_lp_P_occ": 1.95311, "qpoletens_xx": 2.3307559304953087, "qpoletens_yy": -1.1572452647810096, "qpoletens_zz": -1.173510665714299, "surface_area": 260.78826, "E_solv_elstat": -7.509596767635173, "nbo_bds_e_avg": 0.17110666666666666, "nbo_bds_e_min": 0.17109, "nmrtens_sxx_P": 136.5025, "nmrtens_syy_P": 136.5665, "nmrtens_szz_P": 329.4718, "spindens_P_ra": 0.44663, "spindens_P_rc": 0.00072, "sterimol_burL": 6.714269584813156, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.971936666666667, "nbo_bd_occ_min": 1.97193, "sterimol_burB1": 3.8184202670286806, "sterimol_burB5": 5.871871680773399, "vbur_near_vbur": 49.007954395009406, "vbur_near_vtot": 253.06083385419544, "vbur_ovbur_max": 13.5099504219292, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 73.14575069235511, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.5099504219292, "vbur_qvbur_min": 11.030110486155094, "vbur_qvtot_max": 73.14575069235511, "vbur_qvtot_min": 50.825750400752746, "nbo_bds_occ_avg": 0.06625, "nbo_bds_occ_max": 0.06626, "nbo_lp_P_percent_s": 58.58, "vbur_max_delta_qvbur": 1.309472627410031, "vbur_max_delta_qvtot": 21.01805988724805, "vbur_ratio_vbur_vtot": 0.19366076389065418}} {"max_data": {"B1": 3.7406756430630104, "B5": 5.87184101590652, "lval": 6.847052263539107, "sasa": 417.2637192344227, "vbur": 54.66625404606149, "vtot": 249.08435740018388, "alpha": 178.422844, "p_int": 19.313847912138804, "sasa_P": 16.609952897592013, "pyr_val": 0.960753651809822, "dip_norm": 0.2118938413451415, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.666254046061496, "near_vtot": 248.48149564366338, "ovbur_max": 15.921983587829423, "ovbur_min": 0.0, "ovtot_max": 75.588296687545, "ovtot_min": 0.0, "pyr_alpha": 13.75041817198176, "qvbur_max": 15.921983587829423, "qvbur_min": 11.679229542463457, "qvtot_max": 75.588296687545, "qvtot_min": 48.81845100593989, "cone_angle": 162.56625515450648, "p_int_area": 284.2254072080944, "p_int_atom": 24.83447687682832, "sasa_volume": 645.6850275418741, "EA_delta_SCC": 0.805, "IP_delta_SCC": 6.0221, "HOMO_LUMO_gap": 4.096312249405, "sasa_volume_P": 22.931411088601543, "max_delta_qvbur": 3.834796925619239, "max_delta_qvtot": 24.66457377523959, "nucleophilicity": -6.0106, "p_int_atom_area": 18.697398284901503, "p_int_times_p_int_area": 5489.486287582856, "global_electrophilicity_index": 1.1154, "p_int_atom_times_p_int_atom_area": 464.34010536323586}, "min_data": {"B1": 3.725228072927067, "B5": 5.84371312033173, "lval": 6.771239714049449, "sasa": 417.26369351137566, "vbur": 54.65459812835444, "vtot": 248.3089292673445, "alpha": 178.419922, "p_int": 19.21312527956053, "sasa_P": 15.739955364725969, "pyr_val": 0.959615404208671, "dip_norm": 0.1922004162326398, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.654598128354436, "near_vtot": 248.14669591887912, "ovbur_max": 15.560650138910894, "ovbur_min": 0.0, "ovtot_max": 73.78138535320394, "ovtot_min": 0.0, "pyr_alpha": 13.505417429070397, "qvbur_max": 15.560650138910894, "qvbur_min": 11.516046694564766, "qvtot_max": 73.78138535320394, "qvtot_min": 48.66752086832217, "cone_angle": 159.35072687262056, "p_int_area": 283.624893818963, "p_int_atom": 24.45739313978781, "sasa_volume": 645.2145399021758, "EA_delta_SCC": 0.7622, "IP_delta_SCC": 6.0106, "HOMO_LUMO_gap": 3.962089036136, "sasa_volume_P": 21.927849765834946, "max_delta_qvbur": 2.7624524965707007, "max_delta_qvtot": 24.454999533951096, "nucleophilicity": -6.0221, "p_int_atom_area": 18.697398284901503, "p_int_times_p_int_area": 5449.320617345789, "global_electrophilicity_index": 1.0938, "p_int_atom_times_p_int_atom_area": 457.2896205450304}, "boltzmann_averaged_data": {"B1": 3.7277634826134793, "B5": 5.86722438440583, "lval": 6.834609149791369, "sasa": 417.263715012499, "vbur": 54.66434096028823, "vtot": 248.43620028678743, "alpha": 178.42236441214, "p_int": 19.2296568852456, "B1_std": 0.005721679532816532, "B5_std": 0.010418389623427535, "sasa_P": 16.46716020252271, "pyr_val": 0.9605668312310451, "dip_norm": 0.19543269809635472, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.028080475371094562, "sasa_std": 0.000009527649360008073, "vbur_std": 0.004317276127811173, "vtot_std": 0.2872135382971208, "alpha_std": 0.0010822898001218056, "near_vbur": 54.664340960288236, "near_vtot": 248.42654496483453, "ovbur_max": 15.862677928858426, "ovbur_min": 0.0, "ovtot_max": 75.2917283302396, "ovtot_min": 0.0, "p_int_std": 0.037307008172992796, "pyr_alpha": 13.545629401004438, "qvbur_max": 15.862677928858426, "qvbur_min": 11.542829895390378, "qvtot_max": 75.2917283302396, "qvtot_min": 48.69229303180937, "cone_angle": 159.87849152952649, "p_int_area": 283.72345608152114, "p_int_atom": 24.51928389354827, "sasa_P_std": 0.32224142914348014, "pyr_val_std": 0.00042159951017988866, "sasa_volume": 645.2917610384795, "EA_delta_SCC": 0.7979752360000001, "IP_delta_SCC": 6.012487495, "dip_norm_std": 0.007294316608090612, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.9841190921298413, "near_vbur_std": 0.004317276127816436, "near_vtot_std": 0.12400764107446698, "ovbur_max_std": 0.13383555996218846, "ovbur_min_std": 0.0, "ovtot_max_std": 0.6692682090665947, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.09074668209332522, "qvbur_max_std": 0.13383555996218846, "qvbur_min_std": 0.06044186578937551, "qvtot_max_std": 0.6692682090665947, "qvtot_min_std": 0.055903541572738004, "sasa_volume_P": 22.76669656869586, "cone_angle_std": 1.1910107671141428, "p_int_area_std": 0.2224262545848916, "p_int_atom_std": 0.1396693642686535, "max_delta_qvbur": 3.658793034479502, "max_delta_qvtot": 24.630176355016907, "nucleophilicity": -6.012487495, "p_int_atom_area": 18.697398284901503, "sasa_volume_std": 0.17426556246804298, "EA_delta_SCC_std": 0.015852841699339103, "IP_delta_SCC_std": 0.004259525222953199, "HOMO_LUMO_gap_std": 0.04971540542827295, "sasa_volume_P_std": 0.37171258844388305, "max_delta_qvbur_std": 0.39718940375875295, "max_delta_qvtot_std": 0.07762493624779378, "nucleophilicity_std": 0.004259525222953199, "p_int_atom_area_std": 0.0, "p_int_times_p_int_area": 5455.913008801799, "p_int_times_p_int_area_std": 14.87710308448762, "global_electrophilicity_index": 1.111854792, "p_int_atom_times_p_int_atom_area": 458.44681661824245, "global_electrophilicity_index_std": 0.008000499549199104, "p_int_atom_times_p_int_atom_area_std": 2.6114537319300153}} {"max_data": {"pyr_P": "0.9605503", "pyr_alpha": "15.13", "qpole_amp": "6.6873674", "vbur_vbur": "49.06875", "sterimol_L": "7.417788", "sterimol_B1": "3.9276557", "sterimol_B5": "5.974786", "dipolemoment": "2.0855057", "qpoletens_xx": "2.7956915", "qpoletens_yy": "2.2185888", "qpoletens_zz": "-2.4312124", "sterimol_burL": "6.9521484", "vbur_far_vbur": "-1.2263731", "vbur_far_vtot": "-1.5412416", "sterimol_burB1": "3.8473852", "sterimol_burB5": "6.198123", "vbur_near_vbur": "49.60814", "vbur_near_vtot": "253.21611", "vbur_ovbur_max": "15.868675", "vbur_ovbur_min": "0.33791104", "vbur_ovtot_max": "81.607704", "vbur_ovtot_min": "0.59230876", "vbur_qvbur_max": "14.884643", "vbur_qvbur_min": "11.438885", "vbur_qvtot_max": "91.22009", "vbur_qvtot_min": "44.515438", "vbur_max_delta_qvbur": "4.589077", "vbur_max_delta_qvtot": "32.128086"}, "min_data": {"pyr_P": "0.96106225", "pyr_alpha": "12.641759", "qpole_amp": "4.0500665", "vbur_vbur": "46.962242", "sterimol_L": "6.59147", "sterimol_B1": "3.3704367", "sterimol_B5": "6.007268", "dipolemoment": "0.949926", "qpoletens_xx": "2.8376775", "qpoletens_yy": "0.46954733", "qpoletens_zz": "-6.0276017", "sterimol_burL": "6.735169", "vbur_far_vbur": "1.1854483", "vbur_far_vtot": "3.0785527", "sterimol_burB1": "3.335168", "sterimol_burB5": "6.303911", "vbur_near_vbur": "47.378075", "vbur_near_vtot": "249.27458", "vbur_ovbur_max": "14.082213", "vbur_ovbur_min": "-0.03418729", "vbur_ovtot_max": "75.92233", "vbur_ovtot_min": "-0.024719771", "vbur_qvbur_max": "13.773135", "vbur_qvbur_min": "9.782929", "vbur_qvtot_max": "65.32825", "vbur_qvtot_min": "47.720158", "vbur_max_delta_qvbur": "2.918353", "vbur_max_delta_qvtot": "24.462782"}, "delta_data": {"pyr_P": "1.4962156e-05", "pyr_alpha": "1.1362273", "qpole_amp": "2.60796", "vbur_vbur": "3.3117495", "sterimol_L": "0.91616195", "sterimol_B1": "0.53617483", "sterimol_B5": "0.095496625", "dipolemoment": "0.38661754", "qpoletens_xx": "1.1072243", "qpoletens_yy": "1.8562264", "qpoletens_zz": "2.6924791", "sterimol_burL": "0.5941457", "vbur_far_vbur": "0.58761996", "vbur_far_vtot": "4.0126834", "sterimol_burB1": "0.4378118", "sterimol_burB5": "0.030910715", "vbur_near_vbur": "3.0235226", "vbur_near_vtot": "4.621467", "vbur_ovbur_max": "3.5005302", "vbur_ovbur_min": "0.5028478", "vbur_ovtot_max": "6.1926684", "vbur_ovtot_min": "0.31324747", "vbur_qvbur_max": "3.2441218", "vbur_qvbur_min": "1.1325737", "vbur_qvtot_max": "15.715962", "vbur_qvtot_min": "7.145185", "vbur_max_delta_qvbur": "2.4460306", "vbur_max_delta_qvtot": "23.340908"}, "vburminconf_data": {"pyr_P": "0.95860773", "pyr_alpha": "11.497836", "qpole_amp": "4.7623434", "vbur_vbur": "46.08243", "sterimol_L": "7.093936", "sterimol_B1": "3.3481994", "sterimol_B5": "6.035942", "dipolemoment": "1.6474869", "qpoletens_xx": "2.977735", "qpoletens_yy": "0.39859125", "qpoletens_zz": "-3.5675473", "sterimol_burL": "6.9016914", "vbur_far_vbur": "0.20527771", "vbur_far_vtot": "0.39178044", "sterimol_burB1": "3.4615934", "sterimol_burB5": "6.254561", "vbur_near_vbur": "47.42192", "vbur_near_vtot": "250.01695", "vbur_ovbur_max": "14.39515", "vbur_ovbur_min": "0.04603815", "vbur_ovtot_max": "83.114685", "vbur_ovtot_min": "0.061216604", "vbur_qvbur_max": "13.461058", "vbur_qvbur_min": "10.382921", "vbur_qvtot_max": "71.79862", "vbur_qvtot_min": "42.76883", "vbur_max_delta_qvbur": "4.0697217", "vbur_max_delta_qvtot": "36.292576"}, "boltzmann_averaged_data": {"nbo_P": "1.3511223", "nmr_P": "181.60422", "pyr_P": "0.9547608", "fmo_mu": "-0.13174027", "vmin_r": "1.9685013", "volume": "286.0737", "Pint_dP": "3.7386236", "fmo_eta": "0.21150267", "fukui_m": "0.12056788", "fukui_p": "0.13472556", "nuesp_P": "-54.082737", "somo_ra": "0.08252236", "somo_rc": "-0.3970549", "nbo_P_ra": "1.172552", "nbo_P_rc": "1.5431699", "efg_amp_P": "2.2584274", "fmo_omega": "0.042118456", "pyr_alpha": "14.76884", "qpole_amp": "5.5093384", "vbur_vbur": "49.29107", "vbur_vtot": "253.08647", "vmin_vmin": "-0.008327344", "E_solv_cds": "-5.4446325", "Pint_P_int": "18.585285", "Pint_P_max": "31.810553", "Pint_P_min": "12.8251095", "fmo_e_homo": "-0.24248195", "fmo_e_lumo": "-0.020107422", "nbo_lp_P_e": "-0.39110336", "sphericity": "0.8026359", "sterimol_L": "7.4076385", "E_oxidation": "0.2867908", "E_reduction": "0.029136995", "sterimol_B1": "3.6399677", "sterimol_B5": "5.7454677", "E_solv_total": "-13.05119", "dipolemoment": "1.3467318", "efgtens_xx_P": "-0.9030289", "efgtens_yy_P": "-1.0637321", "efgtens_zz_P": "1.8466884", "nbo_bd_e_avg": "-0.62821203", "nbo_bd_e_max": "-0.6364732", "nbo_lp_P_occ": "1.9553314", "qpoletens_xx": "2.6248565", "qpoletens_yy": "1.287764", "qpoletens_zz": "-4.7404437", "surface_area": "260.29837", "E_solv_elstat": "-7.3677077", "nbo_bds_e_avg": "0.16481858", "nbo_bds_e_min": "0.1667289", "nmrtens_sxx_P": "127.33623", "nmrtens_syy_P": "125.72366", "nmrtens_szz_P": "332.85684", "spindens_P_ra": "0.1973456", "spindens_P_rc": "0.122591205", "sterimol_burL": "6.9420457", "vbur_far_vbur": "-0.82452154", "vbur_far_vtot": "-1.22227", "nbo_bd_occ_avg": "1.9659944", "nbo_bd_occ_min": "1.9592655", "sterimol_burB1": "3.710428", "sterimol_burB5": "6.198221", "vbur_near_vbur": "50.332706", "vbur_near_vtot": "254.2128", "vbur_ovbur_max": "15.860854", "vbur_ovbur_min": "0.10902498", "vbur_ovtot_max": "79.6237", "vbur_ovtot_min": "0.05669038", "vbur_qvbur_max": "16.077755", "vbur_qvbur_min": "10.145059", "vbur_qvtot_max": "79.80629", "vbur_qvtot_min": "47.860405", "nbo_bds_occ_avg": "0.07458347", "nbo_bds_occ_max": "0.077146724", "nbo_lp_P_percent_s": "60.110115", "vbur_max_delta_qvbur": "6.433809", "vbur_max_delta_qvtot": "43.031822", "vbur_ratio_vbur_vtot": "0.18830068"}} c1ccn(P(n2cccc2)n2cccc2)c1 {"max_data": {"B1": 3.891975966815883, "B5": 5.8649195319614815, "lval": 7.2819645220707985, "sasa": 418.0837587945452, "vbur": 51.65902727764276, "vtot": 249.24898924235185, "alpha": 178.375076, "p_int": 19.343600185272717, "sasa_P": 16.64995278416056, "pyr_val": 0.9471825073673648, "dip_norm": 0.11218288639538564, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 51.659027277642764, "near_vtot": 249.24898924235185, "ovbur_max": 14.884606911902031, "ovbur_min": 0.0, "ovtot_max": 74.8481507528542, "ovtot_min": 0.0, "pyr_alpha": 17.119629777356046, "qvbur_max": 14.884606911902031, "qvbur_min": 11.25961650500968, "qvtot_max": 74.8481507528542, "qvtot_min": 50.50369674196376, "cone_angle": 159.17685953434506, "p_int_area": 285.9235123358411, "p_int_atom": 24.964370778259998, "sasa_volume": 645.6705321983401, "EA_delta_SCC": 0.7215, "IP_delta_SCC": 6.0422, "HOMO_LUMO_gap": 4.187870840594, "sasa_volume_P": 16.478891202641496, "max_delta_qvbur": 3.3685602173372633, "max_delta_qvtot": 23.81820390482774, "nucleophilicity": -6.0199, "p_int_atom_area": 18.19746784947633, "p_int_times_p_int_area": 5530.790106193402, "global_electrophilicity_index": 1.0722, "p_int_atom_times_p_int_atom_area": 449.29615511847624}, "min_data": {"B1": 3.6712514025091716, "B5": 5.838807161927379, "lval": 6.928848826669634, "sasa": 417.1737006340506, "vbur": 49.98057512782765, "vtot": 247.90408315616475, "alpha": 178.361987, "p_int": 19.150771092070713, "sasa_P": 14.80995800200709, "pyr_val": 0.9385722980815991, "dip_norm": 0.07751773990513397, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.98057512782765, "near_vtot": 245.70355782266114, "ovbur_max": 13.322713939157417, "ovbur_min": 0.0, "ovtot_max": 73.05483141118943, "ovtot_min": 0.0, "pyr_alpha": 15.784188297651609, "qvbur_max": 13.322713939157417, "qvbur_min": 10.758412043606558, "qvtot_max": 73.05483141118943, "qvtot_min": 49.54989866929766, "cone_angle": 152.11513726404135, "p_int_area": 282.0252701207339, "p_int_atom": 24.484470850272714, "sasa_volume": 644.6651457620611, "EA_delta_SCC": 0.6194, "IP_delta_SCC": 6.0199, "HOMO_LUMO_gap": 3.992441791561, "sasa_volume_P": 14.896558943693464, "max_delta_qvbur": 2.028129681026588, "max_delta_qvtot": 22.479218822996657, "nucleophilicity": -6.0422, "p_int_atom_area": 17.997495675306258, "p_int_times_p_int_area": 5401.001390261586, "global_electrophilicity_index": 1.0229, "p_int_atom_times_p_int_atom_area": 445.5553711092781}, "boltzmann_averaged_data": {"B1": 3.6714671510376493, "B5": 5.864384440606825, "lval": 7.00047038090798, "sasa": 418.06821315276125, "vbur": 51.65348249647816, "vtot": 248.15392275943424, "alpha": 178.3693426716333, "p_int": 19.20234343620357, "B1_std": 0.0032596092853944885, "B5_std": 0.0036064839753570583, "sasa_P": 15.338674615494464, "pyr_val": 0.9392336921923854, "dip_norm": 0.0782642922895148, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.011260440160693923, "sasa_std": 0.10480790056426526, "vbur_std": 0.04223362343017431, "vtot_std": 0.1617722492254196, "alpha_std": 0.0008526636127669392, "near_vbur": 51.65348249647817, "near_vtot": 248.15350466380184, "ovbur_max": 14.879581979468673, "ovbur_min": 0.0, "ovtot_max": 74.80975557572718, "ovtot_min": 0.0, "p_int_std": 0.02087444892141814, "pyr_alpha": 16.952392270516416, "qvbur_max": 14.879581979468673, "qvbur_min": 10.998009158258228, "qvtot_max": 74.80975557572718, "qvtot_min": 49.55535977476002, "cone_angle": 157.01688724451566, "p_int_area": 284.06439407687367, "p_int_atom": 24.778080830737682, "sasa_P_std": 0.08012101563616437, "pyr_val_std": 0.00014665126915329202, "sasa_volume": 645.6617889175174, "EA_delta_SCC": 0.6838020809791903, "IP_delta_SCC": 6.034074543254568, "dip_norm_std": 0.005031667342954635, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 4.053585900441184, "near_vbur_std": 0.04223362343017523, "near_vtot_std": 0.16522417964782618, "ovbur_max_std": 0.03854044074090225, "ovbur_min_std": 0.0, "ovtot_max_std": 0.25932259804907914, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.029459616511450577, "qvbur_max_std": 0.03854044074090225, "qvbur_min_std": 0.03556474706240885, "qvtot_max_std": 0.25932259804907914, "qvtot_min_std": 0.038062577387769206, "sasa_volume_P": 15.294895342607637, "cone_angle_std": 0.3259733490298958, "p_int_area_std": 0.2759720381455283, "p_int_atom_std": 0.027803189693293234, "max_delta_qvbur": 3.3573560784827507, "max_delta_qvtot": 23.789519443365652, "nucleophilicity": -6.034074543254568, "p_int_atom_area": 17.99753366963941, "sasa_volume_std": 0.05951011866958948, "EA_delta_SCC_std": 0.009525390839161202, "IP_delta_SCC_std": 0.001215549699527285, "HOMO_LUMO_gap_std": 0.019850229535718578, "sasa_volume_P_std": 0.06102472601440878, "max_delta_qvbur_std": 0.07636354578096355, "max_delta_qvtot_std": 0.19366149940141314, "nucleophilicity_std": 0.001215549699527285, "p_int_atom_area_std": 0.002756150546793934, "p_int_times_p_int_area": 5454.707800523274, "p_int_times_p_int_area_std": 11.260303167310575, "global_electrophilicity_index": 1.0544157858421417, "p_int_atom_times_p_int_atom_area": 445.94433286473276, "global_electrophilicity_index_std": 0.004660871266993574, "p_int_atom_times_p_int_atom_area_std": 0.4950861709989661}} \\x2f4810301000000401080000041100000000002006000800082000040020080080040084400000244204a004800000401000002100c00200000000000000101043400200100500400420200022000003080000240030000010040000400c00010008040200001000488400040400008200080800000000800100880300000100 \\x00000000002000400120000000000000000000000000000000000000000000000000000000800000000002000000000001000000800001000008020000000000 pn3 (-7.615025043487549, -1.3928779363632202, -1.0613676309585571, 4.107725620269775) (1.2720376253128052, 4.069941997528076) -625 CC(C)N(C(C)C)P(N(C(C)C)C(C)C)N(C(C)C)C(C)C 331.52899169921875 {"max_data": {"pyr_P": 0.9094985494392449, "pyr_alpha": 24.566627864360346, "qpole_amp": 3.7517951176175206, "vbur_vbur": 98.92375403010819, "vbur_vtot": 404.03564130915987, "sterimol_L": 7.9451733668069515, "sterimol_B1": 5.047151667135509, "sterimol_B5": 5.9280297007918845, "dipolemoment": 1.2024594381467963, "qpoletens_xx": 2.720650808606204, "qpoletens_yy": 1.518767920603575, "qpoletens_zz": -0.7866718396017622, "sterimol_burL": 7.638342576297579, "vbur_far_vbur": 14.463815466815738, "vbur_far_vtot": 19.210913679498077, "sterimol_burB1": 4.983737133333761, "sterimol_burB5": 5.9280297007918845, "vbur_near_vbur": 84.91804480195508, "vbur_near_vtot": 398.5389763044574, "vbur_ovbur_max": 22.2945036149139, "vbur_ovbur_min": 2.3762953749805016, "vbur_ovtot_max": 114.78474504203317, "vbur_ovtot_min": 2.7182762151286863, "vbur_qvbur_max": 31.293467262067175, "vbur_qvbur_min": 23.312168843723768, "vbur_qvtot_max": 119.36744424363827, "vbur_qvtot_min": 94.16384400057287, "vbur_max_delta_qvbur": 11.545741480814153, "vbur_max_delta_qvtot": 37.21580509997649}, "min_data": {"pyr_P": 0.8776157521649702, "pyr_alpha": 21.062910240793155, "qpole_amp": 0.9634746472862995, "vbur_vbur": 69.93441472186235, "vbur_vtot": 401.3186552042657, "sterimol_L": 7.678775385353829, "sterimol_B1": 4.490722177920067, "sterimol_B5": 5.196015732356167, "dipolemoment": 0.4138341570463266, "qpoletens_xx": 0.39483943731464827, "qpoletens_yy": -0.7934754020816752, "qpoletens_zz": -3.063291793701043, "sterimol_burL": 7.2737709977207, "vbur_far_vbur": 1.8554348570490362, "vbur_far_vtot": 3.432749563505324, "sterimol_burB1": 4.490722177920067, "sterimol_burB5": 5.196015732356167, "vbur_near_vbur": 68.0789798648133, "vbur_near_vtot": 379.05942869800765, "vbur_ovbur_max": 19.491479140905206, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 100.85520440373233, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 21.091713262260917, "vbur_qvbur_min": 14.13435550065427, "vbur_qvtot_max": 107.08445900515635, "vbur_qvtot_min": 82.15163914366178, "vbur_max_delta_qvbur": 2.013366459875648, "vbur_max_delta_qvtot": 11.953992977484887}, "delta_data": {"pyr_P": 0.03188279727427468, "pyr_alpha": 3.5037176235671907, "qpole_amp": 2.788320470331221, "vbur_vbur": 28.98933930824583, "vbur_vtot": 2.716986104894147, "sterimol_L": 0.26639798145312277, "sterimol_B1": 0.556429489215442, "sterimol_B5": 0.7320139684357176, "dipolemoment": 0.7886252811004697, "qpoletens_xx": 2.3258113712915556, "qpoletens_yy": 2.31224332268525, "qpoletens_zz": 2.2766199540992806, "sterimol_burL": 0.3645715785768795, "vbur_far_vbur": 12.608380609766701, "vbur_far_vtot": 15.778164115992753, "sterimol_burB1": 0.49301495541369356, "sterimol_burB5": 0.7320139684357176, "vbur_near_vbur": 16.83906493714177, "vbur_near_vtot": 19.479547606449728, "vbur_ovbur_max": 2.8030244740086943, "vbur_ovbur_min": 2.3762953749805016, "vbur_ovtot_max": 13.929540638300836, "vbur_ovtot_min": 2.7182762151286863, "vbur_qvbur_max": 10.201753999806257, "vbur_qvbur_min": 9.177813343069499, "vbur_qvtot_max": 12.282985238481928, "vbur_qvtot_min": 12.012204856911083, "vbur_max_delta_qvbur": 9.532375020938504, "vbur_max_delta_qvtot": 25.261812122491605}, "vburminconf_data": {"pyr_P": 0.8804193570308982, "pyr_alpha": 23.96201273869584, "qpole_amp": 2.2845235289967003, "vbur_vbur": 69.93441472186235, "vbur_vtot": 401.9717258679627, "sterimol_L": 7.760417034181209, "sterimol_B1": 4.658224398525268, "sterimol_B5": 5.7312168763988165, "dipolemoment": 0.8774689020477563, "qpoletens_xx": 1.7068698201952293, "qpoletens_yy": -0.20192095019360923, "qpoletens_zz": -1.50494887000162, "sterimol_burL": 7.432671196313498, "vbur_far_vbur": 1.8554348570490362, "vbur_far_vtot": 3.432749563505324, "sterimol_burB1": 4.658224398525268, "sterimol_burB5": 5.7312168763988165, "vbur_near_vbur": 68.0789798648133, "vbur_near_vtot": 398.5389763044574, "vbur_ovbur_max": 20.54679693727639, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 112.99348895863488, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 21.091713262260917, "vbur_qvbur_min": 15.330870425380368, "vbur_qvtot_max": 114.24296107947316, "vbur_qvtot_min": 88.93277683477511, "vbur_max_delta_qvbur": 4.787105603558874, "vbur_max_delta_qvtot": 20.553867138078886}, "boltzmann_averaged_data": {"nbo_P": 1.3214565471650812, "nmr_P": 195.2953304436335, "pyr_P": 0.8848297010824246, "fmo_mu": -0.07763446015348408, "vmin_r": 1.7404374923876156, "volume": 498.57231686766517, "Pint_dP": 3.476160825467137, "fmo_eta": 0.21986497709735248, "fukui_m": 0.15490041498160875, "fukui_p": 0.005607805922155331, "nuesp_P": -54.15417151222709, "somo_ra": 0.10387542489213723, "somo_rc": -0.3665193404758921, "nbo_P_ra": 1.3158487412429263, "nbo_P_rc": 1.4763569621466899, "efg_amp_P": 2.1206330010625947, "fmo_omega": 0.013707728929110204, "pyr_alpha": 23.930878359244875, "qpole_amp": 1.2990871399159178, "vbur_vbur": 98.03795911622628, "vbur_vtot": 403.9028789373056, "vmin_vmin": -0.05546428627168511, "E_solv_cds": -4.9231675180216365, "Pint_P_int": 19.108698250976506, "Pint_P_max": 30.708670442312172, "Pint_P_min": 13.562759385327123, "fmo_e_homo": -0.1875669487021603, "fmo_e_lumo": 0.03229802839519218, "nbo_lp_P_e": -0.30293495333958725, "sphericity": 0.8343619648174622, "sterimol_L": 7.6816908115514275, "E_oxidation": 0.2329174273068869, "E_reduction": 0.0684747126069621, "sterimol_B1": 4.596205027647243, "sterimol_B5": 5.271850559076436, "E_solv_total": -9.395624228242228, "dipolemoment": 1.1782120872607373, "efgtens_xx_P": -0.8669717319605211, "efgtens_yy_P": -0.8645141478380817, "efgtens_zz_P": 1.731485879553617, "nbo_bd_e_avg": -0.5662634338689541, "nbo_bd_e_max": -0.5627183463902394, "nbo_lp_P_occ": 1.929510823984762, "qpoletens_xx": 0.7098827187324778, "qpoletens_yy": 0.23613049112516862, "qpoletens_zz": -0.9460132098576464, "surface_area": 364.4390646028899, "E_solv_elstat": -4.472456710220592, "nbo_bds_e_avg": 0.24749958807073147, "nbo_bds_e_min": 0.24510577062269023, "nmrtens_sxx_P": 179.01113064415526, "nmrtens_syy_P": 187.48715669029022, "nmrtens_szz_P": 219.3876047243546, "spindens_P_ra": 0.0070924452606946605, "spindens_P_rc": 0.09952997781562326, "sterimol_burL": 7.301841977749396, "vbur_far_vbur": 13.762360851697718, "vbur_far_vtot": 18.83599952742853, "nbo_bd_occ_avg": 1.967787444832577, "nbo_bd_occ_min": 1.9667950497109072, "sterimol_burB1": 4.596200269604444, "sterimol_burB5": 5.271850559076436, "vbur_near_vbur": 84.27559826452861, "vbur_near_vtot": 381.1159918924597, "vbur_ovbur_max": 21.586790419543018, "vbur_ovbur_min": 2.211850764576968, "vbur_ovtot_max": 101.95461220738964, "vbur_ovtot_min": 2.590166336168385, "vbur_qvbur_max": 25.865767785665053, "vbur_qvbur_min": 22.687656530243636, "vbur_qvtot_max": 107.32523322159916, "vbur_qvtot_min": 94.11691517573833, "nbo_bds_occ_avg": 0.09143162038697979, "nbo_bds_occ_max": 0.09213503734634665, "nbo_lp_P_percent_s": 52.994269057668184, "vbur_max_delta_qvbur": 2.8793547488196416, "vbur_max_delta_qvtot": 12.303711375456718, "vbur_ratio_vbur_vtot": 0.24272202950085103}} {"max_data": {"B1": 5.06055176573676, "B5": 5.806594939138156, "lval": 7.58763428821994, "sasa": 538.3021384801516, "vbur": 106.30196948829014, "vtot": 399.52379573500184, "alpha": 268.217555, "p_int": 19.733439210242338, "sasa_P": 0.7599978448025244, "pyr_val": 0.9256704757227929, "dip_norm": 0.49746256140537853, "far_vbur": 20.15308171548834, "far_vtot": 28.259878628486202, "near_vbur": 87.29116770809264, "near_vtot": 382.8863458775423, "ovbur_max": 22.36770607982772, "ovbur_min": 3.426839805872511, "ovtot_max": 107.7276497660058, "ovtot_min": 4.854602575101503, "pyr_alpha": 24.827630874028706, "qvbur_max": 30.666719487246866, "qvbur_min": 25.095190823277267, "qvtot_max": 114.67466714044083, "qvtot_min": 94.5849213163402, "cone_angle": 245.85002243719768, "p_int_area": 436.4067477925797, "p_int_atom": 44.209344556347226, "sasa_volume": 980.8686877320766, "EA_delta_SCC": 1.6341, "IP_delta_SCC": 6.2699, "HOMO_LUMO_gap": 5.287941891542, "sasa_volume_P": 1.020959347043692, "max_delta_qvbur": 10.53694960717262, "max_delta_qvtot": 27.95417976359181, "nucleophilicity": -5.9148, "p_int_atom_area": 6.0991513121871215, "p_int_times_p_int_area": 8566.406123248753, "global_electrophilicity_index": 1.6845, "p_int_atom_times_p_int_atom_area": 212.38419865524318}, "min_data": {"B1": 4.293673841760666, "B5": 5.1630633436047795, "lval": 7.326953935372783, "sasa": 522.6221350652824, "vbur": 84.21400543343161, "vtot": 395.68247139126095, "alpha": 267.956851, "p_int": 19.198531308155587, "sasa_P": 0.0, "pyr_val": 0.8771016858824143, "dip_norm": 0.28040328100790834, "far_vbur": 9.371357836467684, "far_vtot": 14.666163922901658, "near_vbur": 74.84264759696393, "near_vtot": 367.2812378443755, "ovbur_max": 20.619318423770316, "ovbur_min": 0.20980651872688844, "ovtot_max": 97.5086816430039, "ovtot_min": 0.2539595484485132, "pyr_alpha": 18.962207275415395, "qvbur_max": 24.72220145665169, "qvbur_min": 16.807833333565174, "qvtot_max": 105.94103745678925, "qvtot_min": 83.2532563333722, "cone_angle": 211.37004667063593, "p_int_area": 409.40685382602385, "p_int_atom": 33.93935731356577, "sasa_volume": 956.8310202849067, "EA_delta_SCC": 1.5612, "IP_delta_SCC": 5.9148, "HOMO_LUMO_gap": 4.864898941397, "sasa_volume_P": 0.0, "max_delta_qvbur": 2.1913125289252804, "max_delta_qvtot": 10.45165980460935, "nucleophilicity": -6.2699, "p_int_atom_area": 1.7997495675306288, "p_int_times_p_int_area": 7893.070819635189, "global_electrophilicity_index": 1.6141, "p_int_atom_times_p_int_atom_area": 69.2406042778077}, "boltzmann_averaged_data": {"B1": 4.501103554465898, "B5": 5.703410615743797, "lval": 7.5136172127067375, "sasa": 528.4018432822194, "vbur": 101.02503834840317, "vtot": 397.8503747306213, "alpha": 268.08795940647406, "p_int": 19.41994517954943, "B1_std": 0.028036573316627407, "B5_std": 0.06407071704190923, "sasa_P": 0.003215323035327446, "pyr_val": 0.9098824590749908, "dip_norm": 0.368158656856822, "far_vbur": 16.938025175194127, "far_vtot": 25.14211698904563, "lval_std": 0.006777454761620703, "sasa_std": 0.9491173477306521, "vbur_std": 1.2863573950240317, "vtot_std": 0.20653683130286718, "alpha_std": 0.019670816859317528, "near_vbur": 84.08701317320907, "near_vtot": 372.708155974806, "ovbur_max": 22.21261426811574, "ovbur_min": 2.1211493803337413, "ovtot_max": 103.31029911360586, "ovtot_min": 3.0596765940360737, "p_int_std": 0.026612330771437258, "pyr_alpha": 20.76763567989744, "qvbur_max": 28.14152533506824, "qvbur_min": 21.50337418927197, "qvtot_max": 108.0294471628449, "qvtot_min": 92.24899829057978, "cone_angle": 231.4984606677262, "p_int_area": 419.6399034033434, "p_int_atom": 34.49053348955125, "sasa_P_std": 0.015565532154471698, "pyr_val_std": 0.0027573960878915444, "sasa_volume": 965.9958714136377, "EA_delta_SCC": 1.6095129321293216, "IP_delta_SCC": 6.041037266372664, "dip_norm_std": 0.012877976074278598, "far_vbur_std": 0.4760569992868734, "far_vtot_std": 0.6610652892868183, "HOMO_LUMO_gap": 5.0646284607182155, "near_vbur_std": 0.8211046127895628, "near_vtot_std": 0.6255711782395916, "ovbur_max_std": 0.020578198805886627, "ovbur_min_std": 0.16680712792310623, "ovtot_max_std": 1.109851013262873, "ovtot_min_std": 0.22486713475975334, "pyr_alpha_std": 0.33383000994274314, "qvbur_max_std": 0.1263126693981272, "qvbur_min_std": 0.43972118994287906, "qvtot_max_std": 1.4401881526098745, "qvtot_min_std": 0.8491296928447131, "sasa_volume_P": 0.004258436051324943, "cone_angle_std": 1.7839750403039991, "p_int_area_std": 1.0745438598253654, "p_int_atom_std": 0.8314183180481889, "max_delta_qvbur": 6.259048305757786, "max_delta_qvtot": 14.08033710563866, "nucleophilicity": -6.041037266372664, "p_int_atom_area": 2.3497625349411457, "sasa_volume_std": 1.4222315666588397, "EA_delta_SCC_std": 0.0025754647914294315, "IP_delta_SCC_std": 0.01647922554248537, "HOMO_LUMO_gap_std": 0.017716430761403577, "sasa_volume_P_std": 0.02063905517924353, "max_delta_qvbur_std": 0.48287296043434186, "max_delta_qvtot_std": 2.6154538028713903, "nucleophilicity_std": 0.01647922554248537, "p_int_atom_area_std": 0.23396427012815432, "p_int_times_p_int_area": 8149.357392824081, "p_int_times_p_int_area_std": 11.271353556843192, "global_electrophilicity_index": 1.6509456994569944, "p_int_atom_times_p_int_atom_area": 81.02902948504327, "global_electrophilicity_index_std": 0.002657853517853818, "p_int_atom_times_p_int_atom_area_std": 8.07987564002554}} {"max_data": {"pyr_P": "0.94137335", "pyr_alpha": "23.9296", "qpole_amp": "4.252649", "vbur_vbur": "97.961266", "sterimol_L": "8.257029", "sterimol_B1": "4.9442406", "sterimol_B5": "6.281071", "dipolemoment": "1.0259866", "qpoletens_xx": "2.424168", "qpoletens_yy": "1.6642032", "qpoletens_zz": "-0.57974637", "sterimol_burL": "7.5733514", "vbur_far_vbur": "16.756693", "vbur_far_vtot": "25.085682", "sterimol_burB1": "5.04213", "sterimol_burB5": "6.317508", "vbur_near_vbur": "84.4061", "vbur_near_vtot": "397.51825", "vbur_ovbur_max": "21.725473", "vbur_ovbur_min": "1.2098235", "vbur_ovtot_max": "121.61342", "vbur_ovtot_min": "0.64782155", "vbur_qvbur_max": "31.05136", "vbur_qvbur_min": "20.418308", "vbur_qvtot_max": "127.923164", "vbur_qvtot_min": "96.08125", "vbur_max_delta_qvbur": "16.227518", "vbur_max_delta_qvtot": "48.721798"}, "min_data": {"pyr_P": "0.8694586", "pyr_alpha": "15.856849", "qpole_amp": "1.3709683", "vbur_vbur": "70.54245", "sterimol_L": "7.8234243", "sterimol_B1": "4.8825355", "sterimol_B5": "5.9614935", "dipolemoment": "0.564201", "qpoletens_xx": "1.0873133", "qpoletens_yy": "-0.8573906", "qpoletens_zz": "-4.077238", "sterimol_burL": "6.895419", "vbur_far_vbur": "0.69092506", "vbur_far_vtot": "2.201776", "sterimol_burB1": "4.5599985", "sterimol_burB5": "5.669775", "vbur_near_vbur": "71.25577", "vbur_near_vtot": "375.55167", "vbur_ovbur_max": "18.910666", "vbur_ovbur_min": "0.040687356", "vbur_ovtot_max": "109.54224", "vbur_ovtot_min": "0.057577953", "vbur_qvbur_max": "18.564499", "vbur_qvbur_min": "13.025981", "vbur_qvtot_max": "118.51748", "vbur_qvtot_min": "80.0644", "vbur_max_delta_qvbur": "5.5468593", "vbur_max_delta_qvtot": "29.571245"}, "delta_data": {"pyr_P": "0.06500367", "pyr_alpha": "5.9556684", "qpole_amp": "2.4204452", "vbur_vbur": "25.653812", "sterimol_L": "0.5227402", "sterimol_B1": "0.5124137", "sterimol_B5": "0.78825593", "dipolemoment": "0.75614923", "qpoletens_xx": "1.7639062", "qpoletens_yy": "2.400977", "qpoletens_zz": "2.5582185", "sterimol_burL": "0.23987283", "vbur_far_vbur": "15.827317", "vbur_far_vtot": "15.365465", "sterimol_burB1": "0.513254", "sterimol_burB5": "0.5221573", "vbur_near_vbur": "13.6903105", "vbur_near_vtot": "20.972391", "vbur_ovbur_max": "3.4479856", "vbur_ovbur_min": "0.7825171", "vbur_ovtot_max": "10.205767", "vbur_ovtot_min": "-0.06409019", "vbur_qvbur_max": "12.3361845", "vbur_qvbur_min": "7.8361588", "vbur_qvtot_max": "10.332806", "vbur_qvtot_min": "13.200888", "vbur_max_delta_qvbur": "10.077374", "vbur_max_delta_qvtot": "15.35463"}, "vburminconf_data": {"pyr_P": "0.899474", "pyr_alpha": "20.004995", "qpole_amp": "2.9826856", "vbur_vbur": "67.94493", "sterimol_L": "7.714903", "sterimol_B1": "4.9573264", "sterimol_B5": "6.3605337", "dipolemoment": "1.1758957", "qpoletens_xx": "2.5061371", "qpoletens_yy": "0.82982343", "qpoletens_zz": "-2.0231135", "sterimol_burL": "7.078822", "vbur_far_vbur": "-0.75219643", "vbur_far_vtot": "3.2251592", "sterimol_burB1": "4.5825577", "sterimol_burB5": "6.1875253", "vbur_near_vbur": "70.81801", "vbur_near_vtot": "399.15088", "vbur_ovbur_max": "19.767893", "vbur_ovbur_min": "0.08250721", "vbur_ovtot_max": "116.640045", "vbur_ovtot_min": "0.31294477", "vbur_qvbur_max": "19.835686", "vbur_qvbur_min": "14.081962", "vbur_qvtot_max": "121.55481", "vbur_qvtot_min": "86.43155", "vbur_max_delta_qvbur": "5.6566377", "vbur_max_delta_qvtot": "43.275375"}, "boltzmann_averaged_data": {"nbo_P": "1.3206893", "nmr_P": "168.58229", "pyr_P": "0.8870536", "fmo_mu": "-0.08273646", "vmin_r": "1.7402977", "volume": "503.64075", "Pint_dP": "3.7239368", "fmo_eta": "0.23762", "fukui_m": "0.08666296", "fukui_p": "-0.024156", "nuesp_P": "-54.15932", "somo_ra": "0.10162688", "somo_rc": "-0.3757451", "nbo_P_ra": "1.361375", "nbo_P_rc": "1.4270198", "efg_amp_P": "1.9760293", "fmo_omega": "0.013815568", "pyr_alpha": "21.994389", "qpole_amp": "3.172779", "vbur_vbur": "94.81891", "vbur_vtot": "403.42563", "vmin_vmin": "-0.054592125", "E_solv_cds": "-5.2835684", "Pint_P_int": "19.064974", "Pint_P_max": "33.501404", "Pint_P_min": "13.053717", "fmo_e_homo": "-0.2026137", "fmo_e_lumo": "0.034505673", "nbo_lp_P_e": "-0.30569476", "sphericity": "0.80605286", "sterimol_L": "7.713805", "E_oxidation": "0.24528922", "E_reduction": "0.06639575", "sterimol_B1": "5.054581", "sterimol_B5": "6.5032988", "E_solv_total": "-10.586117", "dipolemoment": "1.2385134", "efgtens_xx_P": "-0.9697334", "efgtens_yy_P": "-0.7089598", "efgtens_zz_P": "1.6296544", "nbo_bd_e_avg": "-0.56759983", "nbo_bd_e_max": "-0.54504156", "nbo_lp_P_occ": "1.9359533", "qpoletens_xx": "1.4869065", "qpoletens_yy": "0.80793875", "qpoletens_zz": "-3.1101964", "surface_area": "370.00253", "E_solv_elstat": "-4.5021906", "nbo_bds_e_avg": "0.2518584", "nbo_bds_e_min": "0.21859838", "nmrtens_sxx_P": "112.655594", "nmrtens_syy_P": "181.6584", "nmrtens_szz_P": "268.39105", "spindens_P_ra": "-0.04592733", "spindens_P_rc": "0.084621854", "sterimol_burL": "7.272628", "vbur_far_vbur": "9.99344", "vbur_far_vtot": "15.144434", "nbo_bd_occ_avg": "1.9656925", "nbo_bd_occ_min": "1.9627866", "sterimol_burB1": "4.792925", "sterimol_burB5": "6.0148425", "vbur_near_vbur": "84.34263", "vbur_near_vtot": "385.89444", "vbur_ovbur_max": "22.57198", "vbur_ovbur_min": "0.32190463", "vbur_ovtot_max": "119.19378", "vbur_ovtot_min": "0.2579323", "vbur_qvbur_max": "27.181948", "vbur_qvbur_min": "16.804665", "vbur_qvtot_max": "119.6549", "vbur_qvtot_min": "85.47081", "nbo_bds_occ_avg": "0.096521996", "nbo_bds_occ_max": "0.09367162", "nbo_lp_P_percent_s": "54.25338", "vbur_max_delta_qvbur": "8.714843", "vbur_max_delta_qvtot": "46.048256", "vbur_ratio_vbur_vtot": "0.22196162"}} CC(C)N(C(C)C)P(N(C(C)C)C(C)C)N(C(C)C)C(C)C {"max_data": {"B1": 5.092091462691198, "B5": 5.755303535702723, "lval": 8.20577236065454, "sasa": 534.7020977548981, "vbur": 72.98935668154309, "vtot": 397.1382528189939, "alpha": 268.01937, "p_int": 19.66067002563481, "sasa_P": 3.8799889971497277, "pyr_val": 0.9075644240111856, "dip_norm": 0.6403670822270613, "far_vbur": 3.4501516412866104, "far_vtot": 6.587375483437272, "near_vbur": 69.8306029829327, "near_vtot": 393.9912264916566, "ovbur_max": 19.43041481765128, "ovbur_min": 0.48954854369607304, "ovtot_max": 115.92329326942252, "ovtot_min": 0.9531572242915666, "pyr_alpha": 25.84349484922851, "qvbur_max": 20.479447411285722, "qvbur_min": 15.467402797254499, "qvtot_max": 115.9232932694225, "qvtot_min": 91.27146650195128, "cone_angle": 200.7834131400161, "p_int_area": 433.1062180322595, "p_int_atom": 32.756987363172925, "sasa_volume": 973.842925262093, "EA_delta_SCC": 1.6545, "IP_delta_SCC": 6.1827, "HOMO_LUMO_gap": 5.310885528498, "sasa_volume_P": 4.078594739264481, "max_delta_qvbur": 5.758023347282382, "max_delta_qvtot": 33.88201245447979, "nucleophilicity": -5.9461, "p_int_atom_area": 9.89862262141844, "p_int_times_p_int_area": 8515.158438782899, "global_electrophilicity_index": 1.6882, "p_int_atom_times_p_int_atom_area": 324.2490561226215}, "min_data": {"B1": 4.39307515403555, "B5": 5.62345788277908, "lval": 7.715814126748963, "sasa": 530.2820470795921, "vbur": 62.7438050170467, "vtot": 395.0009867674608, "alpha": 267.909459, "p_int": 19.324225723946174, "sasa_P": 1.8699946970799017, "pyr_val": 0.866362563897345, "dip_norm": 0.4666797617210328, "far_vbur": 0.8042583217864057, "far_vtot": 1.308761580679707, "near_vbur": 61.93954669526029, "near_vtot": 385.7443971797764, "ovbur_max": 17.716994914715027, "ovbur_min": 0.0, "ovtot_max": 104.69505212984676, "ovtot_min": 0.0, "pyr_alpha": 21.23818639960577, "qvbur_max": 18.55622098962258, "qvbur_min": 13.672391470368897, "qvtot_max": 105.6480363569267, "qvtot_min": 82.04128081494271, "cone_angle": 184.23644401018922, "p_int_area": 415.40685207720867, "p_int_atom": 30.904527300838325, "sasa_volume": 963.4301863677306, "EA_delta_SCC": 1.5497, "IP_delta_SCC": 5.9461, "HOMO_LUMO_gap": 4.724011469873, "sasa_volume_P": 1.9028004244464751, "max_delta_qvbur": 3.077162274661031, "max_delta_qvtot": 15.755812254265322, "nucleophilicity": -6.1827, "p_int_atom_area": 7.198998270122501, "p_int_times_p_int_area": 8027.415776813899, "global_electrophilicity_index": 1.599, "p_int_atom_times_p_int_atom_area": 224.1721378737151}, "boltzmann_averaged_data": {"B1": 5.057949630220656, "B5": 5.713955201726478, "lval": 7.732418331656368, "sasa": 534.5943103364581, "vbur": 67.85788690473571, "vtot": 396.99713589249234, "alpha": 267.91259652674535, "p_int": 19.64112776764945, "B1_std": 0.11306764965118984, "B5_std": 0.0074799600249176946, "sasa_P": 3.679890763599131, "pyr_val": 0.8994458725123607, "dip_norm": 0.5081221360361853, "far_vbur": 3.3475827359058967, "far_vtot": 6.2714628022507215, "lval_std": 0.05702900085030248, "sasa_std": 0.44052896636469685, "vbur_std": 0.771393914129379, "vtot_std": 0.46599574600645677, "alpha_std": 0.010600563106433196, "near_vbur": 64.51030416882982, "near_vtot": 390.5008853789597, "ovbur_max": 18.38889861771417, "ovbur_min": 0.4518288008843937, "ovtot_max": 107.15850130323933, "ovtot_min": 0.8751102204918906, "p_int_std": 0.06411462943780029, "pyr_alpha": 22.28457228446094, "qvbur_max": 19.54104876626229, "qvbur_min": 14.941165953219068, "qvtot_max": 109.2819106789445, "qvtot_min": 89.85666175510784, "cone_angle": 193.08805129707937, "p_int_area": 432.26868906979286, "p_int_atom": 32.65127286651468, "sasa_P_std": 0.2338458999759751, "pyr_val_std": 0.002732454248713486, "sasa_volume": 973.4348690222675, "EA_delta_SCC": 1.5836422724227242, "IP_delta_SCC": 6.017440593405934, "dip_norm_std": 0.027559858245892296, "far_vbur_std": 0.3686016968078749, "far_vtot_std": 1.0520477098653527, "HOMO_LUMO_gap": 5.041121068869253, "near_vbur_std": 0.4658013004436383, "near_vtot_std": 0.5491694454089813, "ovbur_max_std": 0.12159842099181081, "ovbur_min_std": 0.12820443766361575, "ovtot_max_std": 0.6748078185485623, "ovtot_min_std": 0.25714337712300994, "pyr_alpha_std": 0.30645850443503025, "qvbur_max_std": 0.08624354844018828, "qvbur_min_std": 0.33516995597523735, "qvtot_max_std": 0.3922348299091804, "qvtot_min_std": 1.4346621647418853, "sasa_volume_P": 3.8615004578477445, "cone_angle_std": 1.0697034375804129, "p_int_area_std": 2.7825345647271935, "p_int_atom_std": 0.32070923466430584, "max_delta_qvbur": 4.147817278102857, "max_delta_qvtot": 19.411770809664304, "nucleophilicity": -6.017440593405934, "p_int_atom_area": 8.920174985110568, "sasa_volume_std": 1.3929450708769353, "EA_delta_SCC_std": 0.004287547491373289, "IP_delta_SCC_std": 0.014385143260160405, "HOMO_LUMO_gap_std": 0.01790052024963029, "sasa_volume_P_std": 0.2423207579083551, "max_delta_qvbur_std": 0.2416669827840551, "max_delta_qvtot_std": 1.8231012470619365, "nucleophilicity_std": 0.014385143260160405, "p_int_atom_area_std": 0.18149906775157057, "p_int_times_p_int_area": 8490.421137071802, "p_int_times_p_int_area_std": 81.64291886988201, "global_electrophilicity_index": 1.6287970279702797, "p_int_atom_times_p_int_atom_area": 291.2355068372006, "global_electrophilicity_index_std": 0.0028349564259273837, "p_int_atom_times_p_int_atom_area_std": 5.474958443296699}} \\x000000000200004080080220200003080040000040040480800002002d002000010000182000040030080000000000200200001801000101030000004400040002020280000c02100800000400003001004001c042000100200020000010140000442100240100100084000000000000010b0804128000408000000000000081 \\x02000000022000000000000000800000000000084000002000000000000000000000000800000200000000000000020000000000000000001000000000000000 pn3 (2.018121719360352, 5.723859786987305, 4.925620079040527, 4.15642786026001) (1.5759799480438232, 5.502242088317871) -643 C1CN(P(N2CCOCC2)N2CCOCC2)CCO1 289.3160095214844 {"max_data": {"pyr_P": 0.9267687176060356, "pyr_alpha": 20.105604893646902, "qpole_amp": 16.62389909755388, "vbur_vbur": 61.993906585043696, "vbur_vtot": 297.9035442233475, "sterimol_L": 7.427532814718811, "sterimol_B1": 4.030292131773456, "sterimol_B5": 5.952203408067775, "dipolemoment": 2.1636518353603766, "qpoletens_xx": 8.99309839901085, "qpoletens_yy": 6.115004107780838, "qpoletens_zz": -2.0413979837112137, "sterimol_burL": 7.021934553383592, "vbur_far_vbur": 0.28657787532775414, "vbur_far_vtot": 0.34200660441324343, "sterimol_burB1": 4.030292131773456, "sterimol_burB5": 5.952203408067775, "vbur_near_vbur": 61.707328709715945, "vbur_near_vtot": 299.20163263182894, "vbur_ovbur_max": 18.19455736934895, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 96.77611158679515, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 18.487410672603588, "vbur_qvbur_min": 13.96178123266493, "vbur_qvtot_max": 96.77611158679515, "vbur_qvtot_min": 58.020681346034664, "vbur_max_delta_qvbur": 6.754452258637359, "vbur_max_delta_qvtot": 47.06349066665353}, "min_data": {"pyr_P": 0.9017641402184452, "pyr_alpha": 17.94135236740969, "qpole_amp": 3.5711989918547786, "vbur_vbur": 54.27617613962947, "vbur_vtot": 297.4164805885992, "sterimol_L": 7.176592783452638, "sterimol_B1": 3.6904426088680724, "sterimol_B5": 5.774614026959737, "dipolemoment": 0.09091702724260867, "qpoletens_xx": 2.823821789611527, "qpoletens_yy": -1.0952583487937657, "qpoletens_zz": -13.55188408306174, "sterimol_burL": 6.732851760358968, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.6878587703484493, "sterimol_burB5": 5.774614026959737, "vbur_near_vbur": 54.27617613962947, "vbur_near_vtot": 296.80705934751086, "vbur_ovbur_max": 16.221981190998058, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.19455093938743, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.221981190998058, "vbur_qvbur_min": 10.618024052289636, "vbur_qvtot_max": 90.19455093938743, "vbur_qvtot_min": 41.81869983632857, "vbur_max_delta_qvbur": 2.9295789372008727, "vbur_max_delta_qvtot": 29.575254479307972}, "delta_data": {"pyr_P": 0.025004577387590432, "pyr_alpha": 2.164252526237213, "qpole_amp": 13.052700105699103, "vbur_vbur": 7.717730445414226, "vbur_vtot": 0.48706363474832415, "sterimol_L": 0.2509400312661727, "sterimol_B1": 0.33984952290538395, "sterimol_B5": 0.1775893811080378, "dipolemoment": 2.072734808117768, "qpoletens_xx": 6.169276609399324, "qpoletens_yy": 7.210262456574604, "qpoletens_zz": 11.510486099350526, "sterimol_burL": 0.28908279302462425, "vbur_far_vbur": 0.28657787532775414, "vbur_far_vtot": 0.34200660441324343, "sterimol_burB1": 0.342433361425007, "sterimol_burB5": 0.1775893811080378, "vbur_near_vbur": 7.431152570086475, "vbur_near_vtot": 2.394573284318085, "vbur_ovbur_max": 1.9725761783508915, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 6.581560647407727, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 2.26542948160553, "vbur_qvbur_min": 3.3437571803752935, "vbur_qvtot_max": 6.581560647407727, "vbur_qvtot_min": 16.201981509706094, "vbur_max_delta_qvbur": 3.8248733214364865, "vbur_max_delta_qvtot": 17.488236187345557}, "vburminconf_data": {"pyr_P": 0.9165870758851343, "pyr_alpha": 18.774227851367726, "qpole_amp": 9.010964847173426, "vbur_vbur": 54.27617613962947, "vbur_vtot": 297.55571526355806, "sterimol_L": 7.177600637067533, "sterimol_B1": 3.8279603951543777, "sterimol_B5": 5.934594949661455, "dipolemoment": 0.3365702105145585, "qpoletens_xx": 6.794068052814632, "qpoletens_yy": -0.9517890062119365, "qpoletens_zz": -5.8422790466026955, "sterimol_burL": 6.735489098288061, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.8279603951543777, "sterimol_burB5": 5.934594949661455, "vbur_near_vbur": 54.27617613962947, "vbur_near_vtot": 297.80011758847655, "vbur_ovbur_max": 16.278460042340022, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.3242754885693, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.278460042340022, "vbur_qvbur_min": 10.859628027474715, "vbur_qvtot_max": 91.3242754885693, "vbur_qvtot_min": 56.72572368033691, "vbur_max_delta_qvbur": 5.418832014865307, "vbur_max_delta_qvtot": 34.59822648780569}, "boltzmann_averaged_data": {"nbo_P": 1.3043472192005288, "nmr_P": 162.36246850879934, "pyr_P": 0.9139000642666937, "fmo_mu": -0.10170895049766668, "vmin_r": 1.8116668570608123, "volume": 362.2091877762587, "Pint_dP": 3.817196426614388, "fmo_eta": 0.24494972867367873, "fukui_m": 0.18651171143814482, "fukui_p": 0.27970124111714584, "nuesp_P": -54.13737217965804, "somo_ra": 0.1069176170220702, "somo_rc": -0.37711152811485155, "nbo_P_ra": 1.0246459780833828, "nbo_P_rc": 1.4908589306386733, "efg_amp_P": 1.9043067878367492, "fmo_omega": 0.021122380640418558, "pyr_alpha": 19.056025099609563, "qpole_amp": 10.034682163214418, "vbur_vbur": 55.03013029386239, "vbur_vtot": 297.6808277659775, "vmin_vmin": -0.045365203809154826, "E_solv_cds": -4.045552904724012, "Pint_P_int": 18.442455579695675, "Pint_P_max": 34.88099668545015, "Pint_P_min": 11.698507227035819, "fmo_e_homo": -0.22418381483450603, "fmo_e_lumo": 0.02076591383917267, "nbo_lp_P_e": -0.3342110658355895, "sphericity": 0.7994022611275128, "sterimol_L": 7.234171168585021, "E_oxidation": 0.27608013941392895, "E_reduction": 0.06399767545810175, "sterimol_B1": 3.927477383115612, "sterimol_B5": 5.922692531087501, "E_solv_total": -11.986768007305198, "dipolemoment": 0.3113459684969734, "efgtens_xx_P": -0.839294253435, "efgtens_yy_P": -0.7136982607436946, "efgtens_zz_P": 1.5529924784036861, "nbo_bd_e_avg": -0.5782548831298906, "nbo_bd_e_max": -0.5500499790482303, "nbo_lp_P_occ": 1.9448362301839333, "qpoletens_xx": 6.931544055475611, "qpoletens_yy": 0.2130704489105758, "qpoletens_zz": -7.144614504386189, "surface_area": 307.4201666344317, "E_solv_elstat": -7.941215102581184, "nbo_bds_e_avg": 0.21749255100201703, "nbo_bds_e_min": 0.19621130578539223, "nmrtens_sxx_P": 99.7512240002505, "nmrtens_syy_P": 120.93178997353677, "nmrtens_szz_P": 266.4043129563664, "spindens_P_ra": 0.39820876223719076, "spindens_P_rc": 0.1878392190100148, "sterimol_burL": 6.809062713245622, "vbur_far_vbur": 0.0000020310886398598713, "vbur_far_vtot": 0.000002314946208837741, "nbo_bd_occ_avg": 1.9661872292690918, "nbo_bd_occ_min": 1.9597532419729122, "sterimol_burB1": 3.8416159468681017, "sterimol_burB5": 5.922692531087501, "vbur_near_vbur": 55.03012826277375, "vbur_near_vtot": 298.2378270069264, "vbur_ovbur_max": 16.66075861179159, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 91.16164821422126, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.660760712352815, "vbur_qvbur_min": 11.045205257072219, "vbur_qvtot_max": 91.16164821422126, "vbur_qvtot_min": 53.12691309908043, "nbo_bds_occ_avg": 0.08490348424047481, "nbo_bds_occ_max": 0.09171871317249802, "nbo_lp_P_percent_s": 56.6005983691332, "vbur_max_delta_qvbur": 5.472586782592741, "vbur_max_delta_qvtot": 33.49769143713849, "vbur_ratio_vbur_vtot": 0.18486253055669172}} {"max_data": {"B1": 4.326011435971941, "B5": 5.914598819888436, "lval": 7.28802418655288, "sasa": 469.1580096694865, "vbur": 82.22084350552618, "vtot": 295.1887349953695, "alpha": 197.957506, "p_int": 19.092171009867943, "sasa_P": 11.159968352626535, "pyr_val": 0.9654370223574411, "dip_norm": 1.2855574666268326, "far_vbur": 7.133421636714207, "far_vtot": 8.629953058878414, "near_vbur": 76.05486303849706, "near_vtot": 296.6565763329753, "ovbur_max": 22.14624364339378, "ovbur_min": 0.05827958853524679, "ovtot_max": 95.86536104400918, "ovtot_min": 0.0, "pyr_alpha": 18.659388455042095, "qvbur_max": 26.633771960607785, "qvbur_min": 17.274070041847146, "qvtot_max": 95.86536104400918, "qvtot_min": 60.16848528650785, "cone_angle": 212.31315950385056, "p_int_area": 349.64501272225755, "p_int_atom": 30.446984810975454, "sasa_volume": 774.5590095808684, "EA_delta_SCC": 0.8888, "IP_delta_SCC": 5.7838, "HOMO_LUMO_gap": 5.164984662732, "sasa_volume_P": 15.673611530806241, "max_delta_qvbur": 10.315487170738683, "max_delta_qvtot": 49.05362259667427, "nucleophilicity": -5.3677, "p_int_atom_area": 16.0977600206906, "p_int_times_p_int_area": 6588.351489257963, "global_electrophilicity_index": 1.1292, "p_int_atom_times_p_int_atom_area": 442.981700429271}, "min_data": {"B1": 3.6539627487130657, "B5": 5.5821970358970106, "lval": 6.17085269226437, "sasa": 449.978644133818, "vbur": 59.57339540072927, "vtot": 292.36798012119107, "alpha": 197.744057, "p_int": 18.596542173405155, "sasa_P": 1.7199951224478198, "pyr_val": 0.915174377447567, "dip_norm": 0.06175759062657804, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 59.57339540072927, "near_vtot": 280.56946266942964, "ovbur_max": 17.472220642866986, "ovbur_min": 0.0, "ovtot_max": 87.84756016227601, "ovtot_min": 0.0, "pyr_alpha": 12.52078366714193, "qvbur_max": 17.472220642866986, "qvbur_min": 11.8307564726551, "qvtot_max": 87.84756016227601, "qvtot_min": 39.13153998102986, "cone_angle": 171.00136657337788, "p_int_area": 332.3378234268492, "p_int_atom": 26.501036633609775, "sasa_volume": 752.4955523595008, "EA_delta_SCC": 0.5988, "IP_delta_SCC": 5.3677, "HOMO_LUMO_gap": 4.540500486576, "sasa_volume_P": 2.1015953101718745, "max_delta_qvbur": 4.5341519880422005, "max_delta_qvtot": 20.77626577214248, "nucleophilicity": -5.7838, "p_int_atom_area": 7.198998270122501, "p_int_times_p_int_area": 6202.736204527376, "global_electrophilicity_index": 0.9696, "p_int_atom_times_p_int_atom_area": 207.6595586387884}, "boltzmann_averaged_data": {"B1": 4.032816186470335, "B5": 5.822698656478479, "lval": 6.997869858264331, "sasa": 459.59977068523347, "vbur": 70.54650362054082, "vtot": 294.0933020755326, "alpha": 197.78314510852002, "p_int": 18.77969380263468, "B1_std": 0.10563107048702933, "B5_std": 0.03639020061264569, "sasa_P": 3.878681000858936, "pyr_val": 0.9355289528151876, "dip_norm": 0.265870512929162, "far_vbur": 1.0856227339412348, "far_vtot": 1.3588475582391681, "lval_std": 0.1399512541096908, "sasa_std": 2.751922768009336, "vbur_std": 1.47532030818149, "vtot_std": 0.18665538670752724, "alpha_std": 0.018501233201800478, "near_vbur": 69.4608808865996, "near_vtot": 291.89162446852663, "ovbur_max": 20.076108482693705, "ovbur_min": 0.000003496775312114808, "ovtot_max": 91.11404050956187, "ovtot_min": 0.0, "p_int_std": 0.07985294298672684, "pyr_alpha": 16.637378966754074, "qvbur_max": 21.013195894281992, "qvbur_min": 15.60108533335089, "qvtot_max": 91.11799312827678, "qvtot_min": 51.10363531170835, "cone_angle": 192.73514891288835, "p_int_area": 341.42264149349893, "p_int_atom": 29.039486330600695, "sasa_P_std": 0.715102370883909, "pyr_val_std": 0.008656840378307832, "sasa_volume": 763.6814501811527, "EA_delta_SCC": 0.795464345, "IP_delta_SCC": 5.611076684, "dip_norm_std": 0.06334032747613767, "far_vbur_std": 0.573841558989148, "far_vtot_std": 1.1080925835425224, "HOMO_LUMO_gap": 4.899251176965694, "near_vbur_std": 1.0523369213356537, "near_vtot_std": 1.1140771514934587, "ovbur_max_std": 0.22873399816208678, "ovbur_min_std": 0.0004514182084859635, "ovtot_max_std": 1.296081110897056, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.05031572883207, "qvbur_max_std": 0.5228784404007479, "qvbur_min_std": 0.4442637618685663, "qvtot_max_std": 1.292819318862421, "qvtot_min_std": 1.797911924574901, "sasa_volume_P": 5.024044304999955, "cone_angle_std": 2.8170547087862334, "p_int_area_std": 1.9505919199845532, "p_int_atom_std": 0.34701984430958105, "max_delta_qvbur": 5.353441664744439, "max_delta_qvtot": 31.839087179709956, "nucleophilicity": -5.611076684, "p_int_atom_area": 10.023341267004835, "sasa_volume_std": 2.958598841474121, "EA_delta_SCC_std": 0.029642931046389043, "IP_delta_SCC_std": 0.045766956278128684, "HOMO_LUMO_gap_std": 0.09101002288118382, "sasa_volume_P_std": 1.048921201085421, "max_delta_qvbur_std": 0.3554014176069353, "max_delta_qvtot_std": 2.837588736935831, "nucleophilicity_std": 0.045766956278128684, "p_int_atom_area_std": 0.6289144988522428, "p_int_times_p_int_area": 6411.768420797338, "p_int_times_p_int_area_std": 38.93867580455104, "global_electrophilicity_index": 1.065525993, "p_int_atom_times_p_int_atom_area": 291.06269045645865, "global_electrophilicity_index_std": 0.016617750896675207, "p_int_atom_times_p_int_atom_area_std": 17.839298843551113}} {"max_data": {"pyr_P": "0.9354749", "pyr_alpha": "20.348276", "qpole_amp": "14.364046", "vbur_vbur": "63.666096", "sterimol_L": "7.1494546", "sterimol_B1": "4.1401477", "sterimol_B5": "6.32007", "dipolemoment": "3.0456197", "qpoletens_xx": "9.729071", "qpoletens_yy": "4.219096", "qpoletens_zz": "-3.2977219", "sterimol_burL": "6.906878", "vbur_far_vbur": "0.6973231", "vbur_far_vtot": "-1.6445475", "sterimol_burB1": "4.0452433", "sterimol_burB5": "6.016156", "vbur_near_vbur": "64.32526", "vbur_near_vtot": "295.74298", "vbur_ovbur_max": "19.324293", "vbur_ovbur_min": "0.350696", "vbur_ovtot_max": "89.84815", "vbur_ovtot_min": "0.3476804", "vbur_qvbur_max": "18.553635", "vbur_qvbur_min": "14.922992", "vbur_qvtot_max": "85.18614", "vbur_qvtot_min": "54.32644", "vbur_max_delta_qvbur": "7.772836", "vbur_max_delta_qvtot": "37.233707"}, "min_data": {"pyr_P": "0.9070254", "pyr_alpha": "15.906284", "qpole_amp": "4.6016088", "vbur_vbur": "53.06348", "sterimol_L": "6.8085093", "sterimol_B1": "3.6600006", "sterimol_B5": "5.3465977", "dipolemoment": "0.8542701", "qpoletens_xx": "3.8012152", "qpoletens_yy": "-2.9012134", "qpoletens_zz": "-11.036249", "sterimol_burL": "6.4267015", "vbur_far_vbur": "-0.01638568", "vbur_far_vtot": "0.8533429", "sterimol_burB1": "3.6749809", "sterimol_burB5": "5.5413785", "vbur_near_vbur": "53.571426", "vbur_near_vtot": "293.32217", "vbur_ovbur_max": "15.474917", "vbur_ovbur_min": "-0.0023008108", "vbur_ovtot_max": "80.78285", "vbur_ovtot_min": "-0.016744835", "vbur_qvbur_max": "17.055689", "vbur_qvbur_min": "10.119597", "vbur_qvtot_max": "76.10462", "vbur_qvtot_min": "39.992626", "vbur_max_delta_qvbur": "2.865992", "vbur_max_delta_qvtot": "25.083612"}, "delta_data": {"pyr_P": "0.03245387", "pyr_alpha": "3.359476", "qpole_amp": "8.956445", "vbur_vbur": "9.673172", "sterimol_L": "0.09905394", "sterimol_B1": "0.3960403", "sterimol_B5": "0.5251987", "dipolemoment": "2.7375185", "qpoletens_xx": "5.444825", "qpoletens_yy": "7.890284", "qpoletens_zz": "6.9383607", "sterimol_burL": "0.33150005", "vbur_far_vbur": "-1.1399927", "vbur_far_vtot": "-2.3525364", "sterimol_burB1": "0.37403396", "sterimol_burB5": "0.2423825", "vbur_near_vbur": "10.380751", "vbur_near_vtot": "-0.95495045", "vbur_ovbur_max": "2.8884072", "vbur_ovbur_min": "0.31317684", "vbur_ovtot_max": "3.9477835", "vbur_ovtot_min": "0.20960236", "vbur_qvbur_max": "3.2056468", "vbur_qvbur_min": "3.7546306", "vbur_qvtot_max": "3.7047453", "vbur_qvtot_min": "13.501988", "vbur_max_delta_qvbur": "4.484189", "vbur_max_delta_qvtot": "12.34241"}, "vburminconf_data": {"pyr_P": "0.9298156", "pyr_alpha": "17.675886", "qpole_amp": "9.125517", "vbur_vbur": "53.440323", "sterimol_L": "7.3333654", "sterimol_B1": "3.931697", "sterimol_B5": "5.739345", "dipolemoment": "1.3691617", "qpoletens_xx": "5.189101", "qpoletens_yy": "0.4455145", "qpoletens_zz": "-7.231508", "sterimol_burL": "6.782072", "vbur_far_vbur": "-0.08123454", "vbur_far_vtot": "-0.292874", "sterimol_burB1": "3.780151", "sterimol_burB5": "5.8534846", "vbur_near_vbur": "53.62114", "vbur_near_vtot": "295.18643", "vbur_ovbur_max": "16.02344", "vbur_ovbur_min": "-0.0027454915", "vbur_ovtot_max": "78.21324", "vbur_ovtot_min": "0.013688684", "vbur_qvbur_max": "15.836729", "vbur_qvbur_min": "10.914432", "vbur_qvtot_max": "78.49188", "vbur_qvtot_min": "53.010143", "vbur_max_delta_qvbur": "4.9604087", "vbur_max_delta_qvtot": "39.214085"}, "boltzmann_averaged_data": {"nbo_P": "1.3486261", "nmr_P": "156.09474", "pyr_P": "0.90925753", "fmo_mu": "-0.094589114", "vmin_r": "1.8104802", "volume": "362.99786", "Pint_dP": "3.6166973", "fmo_eta": "0.2542716", "fukui_m": "0.16728115", "fukui_p": "0.23517047", "nuesp_P": "-54.139404", "somo_ra": "0.113429464", "somo_rc": "-0.38983944", "nbo_P_ra": "1.126808", "nbo_P_rc": "1.352925", "efg_amp_P": "1.9474038", "fmo_omega": "0.01776525", "pyr_alpha": "19.94844", "qpole_amp": "9.462236", "vbur_vbur": "55.05433", "vbur_vtot": "297.80093", "vmin_vmin": "-0.046488628", "E_solv_cds": "-4.249861", "Pint_P_int": "18.138454", "Pint_P_max": "34.287975", "Pint_P_min": "11.732604", "fmo_e_homo": "-0.22280367", "fmo_e_lumo": "0.03449036", "nbo_lp_P_e": "-0.32841247", "sphericity": "0.8082089", "sterimol_L": "7.029999", "E_oxidation": "0.27233663", "E_reduction": "0.07079083", "sterimol_B1": "3.8566117", "sterimol_B5": "6.0583377", "E_solv_total": "-12.237306", "dipolemoment": "1.5437299", "efgtens_xx_P": "-0.84050614", "efgtens_yy_P": "-0.69965124", "efgtens_zz_P": "1.5973233", "nbo_bd_e_avg": "-0.5830246", "nbo_bd_e_max": "-0.53508526", "nbo_lp_P_occ": "1.9418111", "qpoletens_xx": "6.261907", "qpoletens_yy": "0.8092207", "qpoletens_zz": "-5.999185", "surface_area": "305.51062", "E_solv_elstat": "-7.922752", "nbo_bds_e_avg": "0.2214974", "nbo_bds_e_min": "0.20558575", "nmrtens_sxx_P": "105.53056", "nmrtens_syy_P": "117.109024", "nmrtens_szz_P": "246.87738", "spindens_P_ra": "0.3203122", "spindens_P_rc": "0.15471132", "sterimol_burL": "6.6015463", "vbur_far_vbur": "-0.6336059", "vbur_far_vtot": "-1.223046", "nbo_bd_occ_avg": "1.965849", "nbo_bd_occ_min": "1.9596236", "sterimol_burB1": "3.7131355", "sterimol_burB5": "5.952635", "vbur_near_vbur": "56.23073", "vbur_near_vtot": "294.5547", "vbur_ovbur_max": "16.575499", "vbur_ovbur_min": "-0.0019305139", "vbur_ovtot_max": "79.883896", "vbur_ovtot_min": "-0.08862039", "vbur_qvbur_max": "15.581416", "vbur_qvbur_min": "10.9769125", "vbur_qvtot_max": "77.104095", "vbur_qvtot_min": "48.0356", "nbo_bds_occ_avg": "0.088139124", "nbo_bds_occ_max": "0.090129115", "nbo_lp_P_percent_s": "55.837833", "vbur_max_delta_qvbur": "5.3392253", "vbur_max_delta_qvtot": "18.060236", "vbur_ratio_vbur_vtot": "0.19047815"}} C1CN(P(N2CCOCC2)N2CCOCC2)CCO1 {"max_data": {"B1": 4.323024312445117, "B5": 5.972956257802954, "lval": 7.598491826267457, "sasa": 470.60796321736956, "vbur": 66.29885991769675, "vtot": 294.51146893733386, "alpha": 197.886888, "p_int": 19.11442919513034, "sasa_P": 10.129971273486277, "pyr_val": 0.9538444919763326, "dip_norm": 1.144661085212562, "far_vbur": 1.3753982894318244, "far_vtot": 2.079344874340893, "near_vbur": 64.92346162826492, "near_vtot": 295.1273006161708, "ovbur_max": 20.15308171548834, "ovbur_min": 0.0, "ovtot_max": 94.72622878934807, "ovtot_min": 0.0, "pyr_alpha": 22.80251221005887, "qvbur_max": 21.28370573307213, "qvbur_min": 14.161940014064971, "qvtot_max": 94.72622878934807, "qvtot_min": 59.75543067103403, "cone_angle": 190.79698494451216, "p_int_area": 352.8447374121389, "p_int_atom": 29.268101009247765, "sasa_volume": 776.0662476769289, "EA_delta_SCC": 0.8776, "IP_delta_SCC": 5.8263, "HOMO_LUMO_gap": 5.626683920432, "sasa_volume_P": 10.771078889604828, "max_delta_qvbur": 7.168389389835355, "max_delta_qvtot": 53.34935653965994, "nucleophilicity": -5.462, "p_int_atom_area": 15.29787132401032, "p_int_times_p_int_area": 6638.177503752605, "global_electrophilicity_index": 1.1187, "p_int_atom_times_p_int_atom_area": 429.0556863208268}, "min_data": {"B1": 3.6383832229713953, "B5": 5.701320930830526, "lval": 6.458811662528947, "sasa": 450.4787680303046, "vbur": 54.6196303752333, "vtot": 292.00345272491484, "alpha": 197.734936, "p_int": 18.558993410459472, "sasa_P": 5.379984743470503, "pyr_val": 0.8806945624413716, "dip_norm": 0.05669215113223346, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.61963037523329, "near_vtot": 290.4561058125363, "ovbur_max": 14.907918747316131, "ovbur_min": 0.0, "ovtot_max": 85.40524529119217, "ovtot_min": 0.0, "pyr_alpha": 14.651455223843797, "qvbur_max": 14.907918747316131, "qvbur_min": 11.481078941443618, "qvtot_max": 85.40524529119217, "qvtot_min": 36.64125099170985, "cone_angle": 165.06082830825915, "p_int_area": 335.7368532796916, "p_int_atom": 26.430043723395475, "sasa_volume": 753.4592932210895, "EA_delta_SCC": 0.6073, "IP_delta_SCC": 5.462, "HOMO_LUMO_gap": 4.763996203522, "sasa_volume_P": 4.979860631179303, "max_delta_qvbur": 2.412774965359217, "max_delta_qvtot": 21.69930195599307, "nucleophilicity": -5.8263, "p_int_atom_area": 10.89848349226879, "p_int_times_p_int_area": 6236.514600679678, "global_electrophilicity_index": 0.9693, "p_int_atom_times_p_int_atom_area": 312.13411198823513}, "boltzmann_averaged_data": {"B1": 4.1289105190718285, "B5": 5.827951569303418, "lval": 7.132306506575454, "sasa": 461.4082882285905, "vbur": 59.45106998350669, "vtot": 294.1177297823413, "alpha": 197.76242097598978, "p_int": 18.802777054589676, "B1_std": 0.11513145631990022, "B5_std": 0.030663451430699044, "sasa_P": 6.480902030699745, "pyr_val": 0.9197694731710738, "dip_norm": 0.19963729095159335, "far_vbur": 0.13577263427583458, "far_vtot": 0.25634932453174447, "lval_std": 0.1398556656385372, "sasa_std": 1.4532978676532033, "vbur_std": 1.8211814406998597, "vtot_std": 0.1846863492360031, "alpha_std": 0.022174782807840125, "near_vbur": 59.31529734923087, "near_vtot": 293.9704419434082, "ovbur_max": 16.525678276381957, "ovbur_min": 0.0, "ovtot_max": 89.32317604357601, "ovtot_min": 0.0, "p_int_std": 0.05457232610480666, "pyr_alpha": 18.92380579532557, "qvbur_max": 16.61079017236108, "qvbur_min": 13.084860903897015, "qvtot_max": 89.32317604357601, "qvtot_min": 52.073261026682424, "cone_angle": 179.87076016953748, "p_int_area": 343.95638246434464, "p_int_atom": 28.31276032504713, "sasa_P_std": 1.1931550590487572, "pyr_val_std": 0.015551537645014112, "sasa_volume": 765.4512358237554, "EA_delta_SCC": 0.780848274482745, "IP_delta_SCC": 5.567110301103011, "dip_norm_std": 0.04988607990409676, "far_vbur_std": 0.18589674609610712, "far_vtot_std": 0.3763353547625901, "HOMO_LUMO_gap": 5.09389906768462, "near_vbur_std": 1.676717640896322, "near_vtot_std": 0.5111941980691489, "ovbur_max_std": 0.5212914563801626, "ovbur_min_std": 0.0, "ovtot_max_std": 0.6945261294169436, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.7589802585089946, "qvbur_max_std": 0.61328618561389, "qvbur_min_std": 0.5831535855162397, "qvtot_max_std": 0.6945261294169436, "qvtot_min_std": 2.293660972763937, "sasa_volume_P": 6.4001740384643995, "cone_angle_std": 5.379178051778597, "p_int_area_std": 0.8401130947138589, "p_int_atom_std": 0.4553916034301845, "max_delta_qvbur": 3.460838709425355, "max_delta_qvtot": 28.752622266517715, "nucleophilicity": -5.567110301103011, "p_int_atom_area": 12.326047126539972, "sasa_volume_std": 1.275663722238746, "EA_delta_SCC_std": 0.059279376262255996, "IP_delta_SCC_std": 0.053423964409130636, "HOMO_LUMO_gap_std": 0.14001874380558607, "sasa_volume_P_std": 1.4392140487707632, "max_delta_qvbur_std": 0.23428704578639023, "max_delta_qvtot_std": 3.2513989236244387, "nucleophilicity_std": 0.053423964409130636, "p_int_atom_area_std": 0.7503415220858566, "p_int_times_p_int_area": 6467.352072744858, "p_int_times_p_int_area_std": 28.655039718809576, "global_electrophilicity_index": 1.052972108721087, "p_int_atom_times_p_int_atom_area": 348.78581453441274, "global_electrophilicity_index_std": 0.02805324510337348, "p_int_atom_times_p_int_atom_area_std": 18.25254293439404}} \\x00800000000000200008022000000b0a004000824000040081202a0025002000400008182000920830080400000000200a00001803800103030000084400040002620200000406100000004400812021004000c002000904010060000010000002450180200104000085000000000000010b280012a100408410400000000081 \\x00080000002000000000000000010080000001000000000000000000080000000000000001000000000000000000002000000040820040000001020000000000 pn3 (-5.172618865966797, 0.1119167506694793, 0.6427823305130005, 3.0665924549102783) (1.020557880401611, 5.422804355621338) -267 CCSP(c1ccccc1)c1c(F)c(F)c(F)c(F)c1F 336.2650146484375 {"max_data": {"pyr_P": 0.9392943485439799, "pyr_alpha": 23.55971508309801, "qpole_amp": 13.412019064311881, "vbur_vbur": 65.80413724131745, "vbur_vtot": 320.643764828191, "sterimol_L": 8.479638195866288, "sterimol_B1": 4.1765338186714045, "sterimol_B5": 7.3704151016322825, "dipolemoment": 3.5926262150110264, "qpoletens_xx": 10.078368085786298, "qpoletens_yy": 2.0236995017677337, "qpoletens_zz": -4.574618877134256, "sterimol_burL": 8.055796118212953, "vbur_far_vbur": 3.973391782372767, "vbur_far_vtot": 5.863229213505093, "sterimol_burB1": 4.1765338186714045, "sterimol_burB5": 6.674604558325074, "vbur_near_vbur": 61.830745458944676, "vbur_near_vtot": 319.7546886887502, "vbur_ovbur_max": 20.277999441074808, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 126.22249029322278, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 22.013155262858547, "vbur_qvbur_min": 11.991296863622999, "vbur_qvtot_max": 129.1124267142958, "vbur_qvtot_min": 51.58265232010441, "vbur_max_delta_qvbur": 10.59919776850898, "vbur_max_delta_qvtot": 88.6649078944057}, "min_data": {"pyr_P": 0.886766375059027, "pyr_alpha": 16.649700577908376, "qpole_amp": 7.7914459150872135, "vbur_vbur": 51.32044958606657, "vbur_vtot": 318.95951848680176, "sterimol_L": 7.730357537595463, "sterimol_B1": 3.434711411932402, "sterimol_B5": 6.96913431217113, "dipolemoment": 2.0869915392233445, "qpoletens_xx": 6.000878261990924, "qpoletens_yy": -1.5412622690791853, "qpoletens_zz": -9.462344229057543, "sterimol_burL": 7.11842804041115, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.283606103034084, "sterimol_burB5": 6.57382642494734, "vbur_near_vbur": 51.32044958606657, "vbur_near_vtot": 314.2674517345103, "vbur_ovbur_max": 14.925059419441796, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 113.68051116177278, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.925059419441796, "vbur_qvbur_min": 9.919359743096425, "vbur_qvtot_max": 113.68051116177278, "vbur_qvtot_min": 39.063996183968875, "vbur_max_delta_qvbur": 3.5320200181818446, "vbur_max_delta_qvtot": 50.79196105588273}, "delta_data": {"pyr_P": 0.05252797348495286, "pyr_alpha": 6.910014505189633, "qpole_amp": 5.6205731492246676, "vbur_vbur": 14.483687655250876, "vbur_vtot": 1.6842463413892688, "sterimol_L": 0.7492806582708251, "sterimol_B1": 0.7418224067390025, "sterimol_B5": 0.4012807894611523, "dipolemoment": 1.505634675787682, "qpoletens_xx": 4.077489823795374, "qpoletens_yy": 3.564961770846919, "qpoletens_zz": 4.887725351923287, "sterimol_burL": 0.9373680778018034, "vbur_far_vbur": 3.973391782372767, "vbur_far_vtot": 5.863229213505093, "sterimol_burB1": 0.8929277156373203, "sterimol_burB5": 0.10077813337773378, "vbur_near_vbur": 10.510295872878103, "vbur_near_vtot": 5.487236954239904, "vbur_ovbur_max": 5.352940021633012, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 12.541979131449992, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 7.088095843416751, "vbur_qvbur_min": 2.0719371205265738, "vbur_qvtot_max": 15.431915552523009, "vbur_qvtot_min": 12.518656136135533, "vbur_max_delta_qvbur": 7.067177750327135, "vbur_max_delta_qvtot": 37.87294683852297}, "vburminconf_data": {"pyr_P": 0.8879220407259655, "pyr_alpha": 23.26897543119125, "qpole_amp": 8.35537888203127, "vbur_vbur": 51.32044958606657, "vbur_vtot": 318.95951848680176, "sterimol_L": 8.479638195866288, "sterimol_B1": 3.453350747070841, "sterimol_B5": 7.3704151016322825, "dipolemoment": 3.5926262150110264, "qpoletens_xx": 6.000878261990924, "qpoletens_yy": -0.19005246476501547, "qpoletens_zz": -5.810825797225909, "sterimol_burL": 8.055796118212953, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.453350747070841, "sterimol_burB5": 6.644626152004479, "vbur_near_vbur": 51.32044958606657, "vbur_near_vtot": 318.9595184868017, "vbur_ovbur_max": 16.0337183531915, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 119.9696698765521, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.0337183531915, "vbur_qvbur_min": 10.064740490069264, "vbur_qvtot_max": 119.9696698765521, "vbur_qvtot_min": 48.03694190804903, "vbur_max_delta_qvbur": 5.430336966064596, "vbur_max_delta_qvtot": 62.522847119258564}, "boltzmann_averaged_data": {"nbo_P": 0.6905790746885061, "nmr_P": 269.3899228476265, "pyr_P": 0.9303220215072261, "fmo_mu": -0.15346474747371136, "vmin_r": 1.9726589380300903, "volume": 344.26722691283567, "Pint_dP": 4.716357039394815, "fmo_eta": 0.19081886817578156, "fukui_m": 0.268387075847196, "fukui_p": 0.1242015185427314, "nuesp_P": -54.1358471535745, "somo_ra": 0.041748770046931415, "somo_rc": -0.40134553633782055, "nbo_P_ra": 0.5663775561457747, "nbo_P_rc": 0.9589661505357021, "efg_amp_P": 1.9139640877695128, "fmo_omega": 0.06171464205781273, "pyr_alpha": 18.242898951880868, "qpole_amp": 12.836104462014598, "vbur_vbur": 64.11045090593566, "vbur_vtot": 320.5847884528404, "vmin_vmin": -0.025653522015286985, "E_solv_cds": -3.5834655799513153, "Pint_P_int": 18.670041195302673, "Pint_P_max": 33.169823911947034, "Pint_P_min": 10.60622196192311, "fmo_e_homo": -0.24887418156160215, "fmo_e_lumo": -0.058055313385820574, "nbo_lp_P_e": -0.36780355999270303, "sphericity": 0.7572486555736151, "sterimol_L": 8.236290267904929, "E_oxidation": 0.2998456610096349, "E_reduction": -0.00775513676731237, "sterimol_B1": 3.8216116352204343, "sterimol_B5": 6.996307027181684, "E_solv_total": -9.375889570933062, "dipolemoment": 2.3349137950542236, "efgtens_xx_P": -0.9658611229710133, "efgtens_yy_P": -0.5810050876355005, "efgtens_zz_P": 1.5468663995233394, "nbo_bd_e_avg": -0.5011367491629943, "nbo_bd_e_max": -0.47877469177712106, "nbo_lp_P_occ": 1.9284346286329979, "qpoletens_xx": 9.587516634394627, "qpoletens_yy": -1.1407780974216473, "qpoletens_zz": -8.44673853697298, "surface_area": 313.70890997282555, "E_solv_elstat": -5.792423990981748, "nbo_bds_e_avg": 0.14867940768429255, "nbo_bds_e_min": 0.08604526039398164, "nmrtens_sxx_P": 190.58612188610363, "nmrtens_syy_P": 270.36362714319216, "nmrtens_szz_P": 347.2200809733544, "spindens_P_ra": 0.17111483760748342, "spindens_P_rc": 0.36069987089119465, "sterimol_burL": 7.183818837035882, "vbur_far_vbur": 3.377525724659788, "vbur_far_vtot": 4.669065067466872, "nbo_bd_occ_avg": 1.9564498538150046, "nbo_bd_occ_min": 1.9517552101068079, "sterimol_burB1": 3.74638529083581, "sterimol_burB5": 6.67204889873994, "vbur_near_vbur": 60.732925181275874, "vbur_near_vtot": 315.9141621503879, "vbur_ovbur_max": 19.49821067343709, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 126.03014190067135, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 21.612001051633932, "vbur_qvbur_min": 10.911168328675807, "vbur_qvtot_max": 128.75233394943956, "vbur_qvtot_min": 43.13466777810313, "nbo_bds_occ_avg": 0.05242961794096145, "nbo_bds_occ_max": 0.06196160508958197, "nbo_lp_P_percent_s": 57.036158733674746, "vbur_max_delta_qvbur": 9.630838324859857, "vbur_max_delta_qvtot": 77.91956998133202, "vbur_ratio_vbur_vtot": 0.1999794487969789}} {"max_data": {"B1": 4.214996867084714, "B5": 7.292435342216191, "lval": 8.200210898531624, "sasa": 586.4942902408045, "vbur": 149.11415522628243, "vtot": 424.62599287200425, "alpha": 270.33216, "p_int": 22.218187032682124, "sasa_P": 0.0, "pyr_val": 0.9424182695300629, "dip_norm": 3.1252727880938647, "far_vbur": 66.26389216457561, "far_vtot": 91.28095320534867, "near_vbur": 83.13000508667602, "near_vtot": 338.08862900467034, "ovbur_max": 22.216179149636076, "ovbur_min": 14.231875520307266, "ovtot_max": 126.61275437322183, "ovtot_min": 16.97114117344721, "pyr_alpha": 23.774627960303615, "qvbur_max": 42.03123925161998, "qvbur_min": 34.83953802637053, "qvtot_max": 146.47783244361722, "qvtot_min": 79.55947712235361, "cone_angle": null, "p_int_area": 427.1762680607132, "p_int_atom": 51.9603842096312, "sasa_volume": 999.6815658153746, "EA_delta_SCC": 2.4916, "IP_delta_SCC": 6.299, "HOMO_LUMO_gap": 2.410735891672, "sasa_volume_P": 0.0, "max_delta_qvbur": 10.350454923859822, "max_delta_qvtot": 79.77193482005046, "nucleophilicity": -6.2063, "p_int_atom_area": 2.79961043838097, "p_int_times_p_int_area": 9429.383281468074, "global_electrophilicity_index": 2.5409, "p_int_atom_times_p_int_atom_area": 135.5614310124131}, "min_data": {"B1": 3.2682703829222293, "B5": 6.775325905688651, "lval": 7.10974634208758, "sasa": 573.2244245456038, "vbur": 139.55630270650198, "vtot": 423.1414238350778, "alpha": 270.225298, "p_int": 21.937871532238688, "sasa_P": 0.0, "pyr_val": 0.8844998155689471, "dip_norm": 1.1844838538367672, "far_vbur": 62.84870827641014, "far_vtot": 81.71638759197873, "near_vbur": 76.4395083228297, "near_vtot": 323.2317185479717, "ovbur_max": 21.120522885173436, "ovbur_min": 12.879789066289542, "ovtot_max": 112.12973564687725, "ovtot_min": 11.443034559640314, "pyr_alpha": 16.523930038377575, "qvbur_max": 37.601990522941236, "qvbur_min": 28.90667591348241, "qvtot_max": 130.40933674835995, "qvtot_min": 58.66869773247014, "cone_angle": null, "p_int_area": 414.274956901729, "p_int_atom": 45.60364808630162, "sasa_volume": 986.8819977697906, "EA_delta_SCC": 2.2269, "IP_delta_SCC": 6.2063, "HOMO_LUMO_gap": 2.207199483208, "sasa_volume_P": 0.0, "max_delta_qvbur": 3.473463476700715, "max_delta_qvtot": 49.96734359265421, "nucleophilicity": -6.299, "p_int_atom_area": 0.9998608708503485, "p_int_times_p_int_area": 9096.557500133442, "global_electrophilicity_index": 2.2316, "p_int_atom_times_p_int_atom_area": 51.53406620074776}, "boltzmann_averaged_data": {"B1": 4.085199818650055, "B5": 7.000572055060945, "lval": 7.870112250785842, "sasa": 578.3728431422943, "vbur": 146.0872885063645, "vtot": 423.93419684150325, "alpha": 270.2716706513665, "p_int": 22.086769197861916, "B1_std": 0.09353947810557785, "B5_std": 0.1698923192082814, "sasa_P": 0.0, "pyr_val": 0.9367311158801114, "dip_norm": 1.7629480208685457, "far_vbur": 64.6825692820693, "far_vtot": 85.37468252016055, "lval_std": 0.2501284230547504, "sasa_std": 2.829961637421744, "vbur_std": 1.2047291658818502, "vtot_std": 0.3435032728409017, "alpha_std": 0.043351953810171, "near_vbur": 81.40471922429523, "near_vtot": 330.934906388408, "ovbur_max": 21.713551836129934, "ovbur_min": 13.217679899089491, "ovtot_max": 118.16073806922826, "ovtot_min": 13.958748155814526, "p_int_std": 0.06389108443559513, "pyr_alpha": 17.27306402787225, "qvbur_max": 39.989660372014306, "qvbur_min": 33.80738418627767, "qvtot_max": 137.0199813473761, "qvtot_min": 68.8072588371844, "cone_angle": null, "p_int_area": 418.8621744659459, "p_int_atom": 50.66727746892415, "sasa_P_std": 0.0, "pyr_val_std": 0.003275862376634847, "sasa_volume": 989.8959557987168, "EA_delta_SCC": 2.4330103351033507, "IP_delta_SCC": 6.253371194711947, "dip_norm_std": 0.4633250644354064, "far_vbur_std": 0.5436218497341648, "far_vtot_std": 3.6921999932530416, "HOMO_LUMO_gap": 2.2790222517253893, "near_vbur_std": 1.0489888110550756, "near_vtot_std": 3.2251142784112377, "ovbur_max_std": 0.20955417208098287, "ovbur_min_std": 0.2988479531924152, "ovtot_max_std": 5.727853508241836, "ovtot_min_std": 1.1757526630201727, "pyr_alpha_std": 0.493427635997533, "qvbur_max_std": 0.802936981840128, "qvbur_min_std": 0.9434647619897117, "qvtot_max_std": 7.196824464735488, "qvtot_min_std": 3.427774304911803, "sasa_volume_P": 0.0, "cone_angle_std": null, "p_int_area_std": 2.3294756341719207, "p_int_atom_std": 1.632945054902974, "max_delta_qvbur": 5.968618280167118, "max_delta_qvtot": 58.942121739631574, "nucleophilicity": -6.253371194711947, "p_int_atom_area": 1.4757414122500188, "sasa_volume_std": 1.8799878029357857, "EA_delta_SCC_std": 0.08034728394505367, "IP_delta_SCC_std": 0.03021184635404259, "HOMO_LUMO_gap_std": 0.055691122193615925, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 1.6853058446503635, "max_delta_qvtot_std": 6.764257326286331, "nucleophilicity_std": 0.03021184635404259, "p_int_atom_area_std": 0.6671129868264292, "p_int_times_p_int_area": 9251.447326159137, "p_int_times_p_int_area_std": 76.51931578804307, "global_electrophilicity_index": 2.47120504405044, "p_int_atom_times_p_int_atom_area": 73.7915954924027, "global_electrophilicity_index_std": 0.09368745773771002, "p_int_atom_times_p_int_atom_area_std": 30.9615657351218}} {"max_data": {"pyr_P": "0.93746275", "pyr_alpha": "21.702202", "qpole_amp": "10.806064", "vbur_vbur": "64.276184", "sterimol_L": "8.320841", "sterimol_B1": "4.1637444", "sterimol_B5": "7.1205974", "dipolemoment": "3.3414836", "qpoletens_xx": "8.829722", "qpoletens_yy": "0.32449934", "qpoletens_zz": "-5.512196", "sterimol_burL": "7.420323", "vbur_far_vbur": "3.6084034", "vbur_far_vtot": "5.9793267", "sterimol_burB1": "3.9750774", "sterimol_burB5": "6.465149", "vbur_near_vbur": "60.05705", "vbur_near_vtot": "319.81583", "vbur_ovbur_max": "18.371054", "vbur_ovbur_min": "-0.04047625", "vbur_ovtot_max": "117.28027", "vbur_ovtot_min": "0.07402125", "vbur_qvbur_max": "22.09089", "vbur_qvbur_min": "10.957088", "vbur_qvtot_max": "124.040016", "vbur_qvtot_min": "48.59759", "vbur_max_delta_qvbur": "11.937463", "vbur_max_delta_qvtot": "71.017815"}, "min_data": {"pyr_P": "0.90187734", "pyr_alpha": "18.319124", "qpole_amp": "7.3316693", "vbur_vbur": "51.904068", "sterimol_L": "7.665948", "sterimol_B1": "3.5155275", "sterimol_B5": "6.540107", "dipolemoment": "1.6946422", "qpoletens_xx": "5.290805", "qpoletens_yy": "-1.9003521", "qpoletens_zz": "-6.9206824", "sterimol_burL": "7.011215", "vbur_far_vbur": "0.76348406", "vbur_far_vtot": "-1.4632554", "sterimol_burB1": "3.4387019", "sterimol_burB5": "6.418895", "vbur_near_vbur": "51.65662", "vbur_near_vtot": "309.4884", "vbur_ovbur_max": "16.06227", "vbur_ovbur_min": "-0.03478453", "vbur_ovtot_max": "100.728905", "vbur_ovtot_min": "-0.03849101", "vbur_qvbur_max": "18.664185", "vbur_qvbur_min": "10.118362", "vbur_qvtot_max": "104.97923", "vbur_qvtot_min": "43.012478", "vbur_max_delta_qvbur": "6.334678", "vbur_max_delta_qvtot": "47.311817"}, "delta_data": {"pyr_P": "0.034284852", "pyr_alpha": "4.493869", "qpole_amp": "3.472636", "vbur_vbur": "12.323389", "sterimol_L": "0.85554403", "sterimol_B1": "0.3899071", "sterimol_B5": "0.51361376", "dipolemoment": "1.0232112", "qpoletens_xx": "2.4640033", "qpoletens_yy": "1.9451841", "qpoletens_zz": "2.0685713", "sterimol_burL": "0.82554734", "vbur_far_vbur": "3.8101838", "vbur_far_vtot": "9.483325", "sterimol_burB1": "0.53395796", "sterimol_burB5": "0.3943013", "vbur_near_vbur": "7.8451552", "vbur_near_vtot": "11.994233", "vbur_ovbur_max": "3.2706115", "vbur_ovbur_min": "-0.015301712", "vbur_ovtot_max": "17.759382", "vbur_ovtot_min": "-0.2969357", "vbur_qvbur_max": "6.2649813", "vbur_qvbur_min": "0.9350081", "vbur_qvtot_max": "16.048567", "vbur_qvtot_min": "11.863485", "vbur_max_delta_qvbur": "6.034443", "vbur_max_delta_qvtot": "12.664651"}, "vburminconf_data": {"pyr_P": "0.9134538", "pyr_alpha": "20.931875", "qpole_amp": "9.4599285", "vbur_vbur": "50.401867", "sterimol_L": "8.223326", "sterimol_B1": "3.643229", "sterimol_B5": "6.8648477", "dipolemoment": "3.3023164", "qpoletens_xx": "6.1668973", "qpoletens_yy": "-0.23812227", "qpoletens_zz": "-6.397184", "sterimol_burL": "7.230792", "vbur_far_vbur": "0.35143682", "vbur_far_vtot": "-0.6023016", "sterimol_burB1": "3.553761", "sterimol_burB5": "6.4846997", "vbur_near_vbur": "51.37614", "vbur_near_vtot": "316.08826", "vbur_ovbur_max": "15.983175", "vbur_ovbur_min": "-0.018393764", "vbur_ovtot_max": "116.28842", "vbur_ovtot_min": "-0.09153771", "vbur_qvbur_max": "17.491423", "vbur_qvbur_min": "9.775272", "vbur_qvtot_max": "110.31824", "vbur_qvtot_min": "49.89281", "vbur_max_delta_qvbur": "6.5412154", "vbur_max_delta_qvtot": "54.141838"}, "boltzmann_averaged_data": {"nbo_P": "0.71638733", "nmr_P": "263.3936", "pyr_P": "0.93073976", "fmo_mu": "-0.15288581", "vmin_r": "1.9721311", "volume": "344.47562", "Pint_dP": "4.6321445", "fmo_eta": "0.18742482", "fukui_m": "0.24603535", "fukui_p": "0.12786934", "nuesp_P": "-54.133926", "somo_ra": "0.038209986", "somo_rc": "-0.40561128", "nbo_P_ra": "0.5468572", "nbo_P_rc": "0.9783723", "efg_amp_P": "1.9126924", "fmo_omega": "0.060026105", "pyr_alpha": "17.851418", "qpole_amp": "8.426979", "vbur_vbur": "58.687744", "vbur_vtot": "320.73178", "vmin_vmin": "-0.024432922", "E_solv_cds": "-3.560714", "Pint_P_int": "18.504116", "Pint_P_max": "33.80931", "Pint_P_min": "10.240038", "fmo_e_homo": "-0.24616578", "fmo_e_lumo": "-0.055783164", "nbo_lp_P_e": "-0.3712422", "sphericity": "0.7591623", "sterimol_L": "8.100227", "E_oxidation": "0.29482204", "E_reduction": "-0.008917439", "sterimol_B1": "3.7729192", "sterimol_B5": "6.7075567", "E_solv_total": "-9.327569", "dipolemoment": "2.5698974", "efgtens_xx_P": "-1.0473974", "efgtens_yy_P": "-0.5139043", "efgtens_zz_P": "1.5312854", "nbo_bd_e_avg": "-0.5018165", "nbo_bd_e_max": "-0.4844283", "nbo_lp_P_occ": "1.9278743", "qpoletens_xx": "6.3116693", "qpoletens_yy": "-0.40524855", "qpoletens_zz": "-6.325656", "surface_area": "314.87375", "E_solv_elstat": "-5.666084", "nbo_bds_e_avg": "0.14304669", "nbo_bds_e_min": "0.101243675", "nmrtens_sxx_P": "186.38965", "nmrtens_syy_P": "271.78522", "nmrtens_szz_P": "318.05344", "spindens_P_ra": "0.17072138", "spindens_P_rc": "0.30343705", "sterimol_burL": "7.04548", "vbur_far_vbur": "0.3265117", "vbur_far_vtot": "3.2960563", "nbo_bd_occ_avg": "1.9575388", "nbo_bd_occ_min": "1.9522114", "sterimol_burB1": "3.820755", "sterimol_burB5": "6.470638", "vbur_near_vbur": "58.42527", "vbur_near_vtot": "315.59515", "vbur_ovbur_max": "18.428402", "vbur_ovbur_min": "-0.025939152", "vbur_ovtot_max": "110.05905", "vbur_ovtot_min": "-0.11592862", "vbur_qvbur_max": "18.486847", "vbur_qvbur_min": "10.698167", "vbur_qvtot_max": "118.98866", "vbur_qvtot_min": "43.886204", "nbo_bds_occ_avg": "0.05277978", "nbo_bds_occ_max": "0.06303057", "nbo_lp_P_percent_s": "57.705925", "vbur_max_delta_qvbur": "6.8091154", "vbur_max_delta_qvtot": "70.04319", "vbur_ratio_vbur_vtot": "0.17944126"}} CCSP(c1ccccc1)c1c(F)c(F)c(F)c(F)c1F \N \\x469560000b8000008018012090103000804004114f195100670a20181231290ca18005d9443a040a8dd694108404202c108100ea4a0b130940a085160835c544894241308b2c9020009204c202028205801100490322d08034e398a112364c134100010987003ea40025506542928883738710b0019801840100010b2410bd60 \\x00400004022008800100010000001000000000002080000820004000000000000004000044000000080002001000000020010000201001000000000000000000 other (-2.492025375366211, -0.3333921432495117, -2.305824041366577, 1.9355485439300537) (4.586603164672852, 8.97031021118164) -452 CSP(SC)SC 172.27999877929688 {"max_data": {"pyr_P": 0.9486129309065918, "pyr_alpha": 24.812506050734623, "qpole_amp": 9.261309050008105, "vbur_vbur": 57.08024651829264, "vbur_vtot": 177.8902584772779, "sterimol_L": 7.055466376167379, "sterimol_B1": 3.5174062248616913, "sterimol_B5": 5.1198975956055754, "dipolemoment": 2.9301683035908304, "qpoletens_xx": 6.651911077537745, "qpoletens_yy": 2.23873196384706, "qpoletens_zz": -4.163830293801623, "sterimol_burL": 7.055466376167379, "vbur_far_vbur": 0.8921566702721689, "vbur_far_vtot": 0.9088897088780054, "sterimol_burB1": 3.5174062248616913, "sterimol_burB5": 5.1198975956055754, "vbur_near_vbur": 56.56252371432462, "vbur_near_vtot": 177.89025847727794, "vbur_ovbur_max": 18.924598818176584, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 53.29312480457706, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.819893202412196, "vbur_qvbur_min": 12.646033177328015, "vbur_qvtot_max": 54.19203149090426, "vbur_qvtot_min": 36.28564381071359, "vbur_max_delta_qvbur": 6.75549816329184, "vbur_max_delta_qvtot": 23.27651978117794}, "min_data": {"pyr_P": 0.8735527627380033, "pyr_alpha": 15.606086492120381, "qpole_amp": 5.487328955237421, "vbur_vbur": 46.33043847953842, "vbur_vtot": 177.33211893363978, "sterimol_L": 5.485808991210609, "sterimol_B1": 2.7395178944717173, "sterimol_B5": 5.044903592895543, "dipolemoment": 0.7653426068897867, "qpoletens_xx": 2.241653049119082, "qpoletens_yy": -1.3756846009695387, "qpoletens_zz": -6.641671653159965, "sterimol_burL": 5.485808991210609, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.7395178944717173, "sterimol_burB5": 5.044903592895543, "vbur_near_vbur": 46.330438479538415, "vbur_near_vtot": 175.73546464136615, "vbur_ovbur_max": 13.348881105139148, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 51.46146082800571, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.348881105139148, "vbur_qvbur_min": 9.87438584295375, "vbur_qvtot_max": 51.46146082800571, "vbur_qvtot_min": 27.87045875049268, "vbur_max_delta_qvbur": 2.2622917676420897, "vbur_max_delta_qvtot": 8.954693140743075}, "delta_data": {"pyr_P": 0.07506016816858851, "pyr_alpha": 9.206419558614241, "qpole_amp": 3.7739800947706836, "vbur_vbur": 10.749808038754217, "vbur_vtot": 0.5581395436381342, "sterimol_L": 1.5696573849567699, "sterimol_B1": 0.777888330389974, "sterimol_B5": 0.07499400271003243, "dipolemoment": 2.1648256967010435, "qpoletens_xx": 4.410258028418664, "qpoletens_yy": 3.6144165648165987, "qpoletens_zz": 2.477841359358342, "sterimol_burL": 1.5696573849567699, "vbur_far_vbur": 0.8921566702721689, "vbur_far_vtot": 0.9088897088780054, "sterimol_burB1": 0.777888330389974, "sterimol_burB5": 0.07499400271003243, "vbur_near_vbur": 10.232085234786204, "vbur_near_vtot": 2.1547938359117893, "vbur_ovbur_max": 5.575717713037436, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 1.831663976571349, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 6.471012097273048, "vbur_qvbur_min": 2.771647334374265, "vbur_qvtot_max": 2.7305706628985504, "vbur_qvtot_min": 8.415185060220907, "vbur_max_delta_qvbur": 4.49320639564975, "vbur_max_delta_qvtot": 14.321826640434864}, "vburminconf_data": {"pyr_P": 0.8735527627380033, "pyr_alpha": 24.812506050734623, "qpole_amp": 6.582001644690007, "vbur_vbur": 46.33043847953842, "vbur_vtot": 177.33211893363978, "sterimol_L": 7.055466376167379, "sterimol_B1": 2.7395178944717173, "sterimol_B5": 5.044903592895543, "dipolemoment": 2.9301683035908304, "qpoletens_xx": 5.024407407316832, "qpoletens_yy": -0.8605771135152089, "qpoletens_zz": -4.163830293801623, "sterimol_burL": 7.055466376167379, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.7395178944717173, "sterimol_burB5": 5.044903592895543, "vbur_near_vbur": 46.330438479538415, "vbur_near_vtot": 175.73546464136615, "vbur_ovbur_max": 13.348881105139148, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 51.85175854201453, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.348881105139148, "vbur_qvbur_min": 9.98838945029216, "vbur_qvtot_max": 51.85175854201453, "vbur_qvtot_min": 31.381484995571473, "vbur_max_delta_qvbur": 3.039398925921363, "vbur_max_delta_qvtot": 19.523867615149417}, "boltzmann_averaged_data": {"nbo_P": 0.36890710244760344, "nmr_P": 115.74394507970798, "pyr_P": 0.9181537085492433, "fmo_mu": -0.13214619194160973, "vmin_r": 1.9816990920780813, "volume": 207.57558995484945, "Pint_dP": 3.5003812447937936, "fmo_eta": 0.2128598665795247, "fukui_m": 0.15091224450315527, "fukui_p": 0.3451132163292164, "nuesp_P": -54.1233676712101, "somo_ra": 0.08411555568841982, "somo_rc": -0.43081834434220284, "nbo_P_ra": 0.023793886118387026, "nbo_P_rc": 0.5198193469507586, "efg_amp_P": 1.53535195598861, "fmo_omega": 0.041021438826401295, "pyr_alpha": 19.475378783144244, "qpole_amp": 9.052531627007783, "vbur_vbur": 50.68806956838079, "vbur_vtot": 177.54006463187034, "vmin_vmin": -0.02254111753795428, "E_solv_cds": -2.299450743685258, "Pint_P_int": 18.196233408762925, "Pint_P_max": 30.297311660408198, "Pint_P_min": 12.731687391219596, "fmo_e_homo": -0.2385761252313721, "fmo_e_lumo": -0.025716258651847346, "nbo_lp_P_e": -0.42199117991340085, "sphericity": 0.8555347710208024, "sterimol_L": 6.924897495144065, "E_oxidation": 0.2992288137266406, "E_reduction": 0.029032791388176663, "sterimol_B1": 2.8268367135255272, "sterimol_B5": 5.0575043344086446, "E_solv_total": -6.208665749063459, "dipolemoment": 0.8472879640512193, "efgtens_xx_P": -0.6704744598161548, "efgtens_yy_P": -0.5820631333386307, "efgtens_zz_P": 1.2525375722103802, "nbo_bd_e_avg": -0.48091817484433647, "nbo_bd_e_max": -0.48004988349161504, "nbo_lp_P_occ": 1.9749203633362078, "qpoletens_xx": 6.226074397314106, "qpoletens_yy": 0.3027038827173944, "qpoletens_zz": -6.528778280031499, "surface_area": 198.17142526970414, "E_solv_elstat": -3.9092150053782007, "nbo_bds_e_avg": 0.06029716559883122, "nbo_bds_e_min": 0.05829947933926088, "nmrtens_sxx_P": -4.34977978521417, "nmrtens_syy_P": 125.02314392254401, "nmrtens_szz_P": 226.55845811459588, "spindens_P_ra": 0.5487336282034034, "spindens_P_rc": 0.23888088171421518, "sterimol_burL": 6.924897495144065, "vbur_far_vbur": 0.0021188068733550636, "vbur_far_vtot": 0.0021585466168233783, "nbo_bd_occ_avg": 1.9739522790217208, "nbo_bd_occ_min": 1.9727095215146686, "sterimol_burB1": 2.8268367135255272, "sterimol_burB5": 5.0575043344086446, "vbur_near_vbur": 50.68595076150744, "vbur_near_vtot": 177.53597586185214, "vbur_ovbur_max": 14.695074487925671, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 51.58076988756161, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.697200746640315, "vbur_qvbur_min": 9.993698614541419, "vbur_qvtot_max": 51.58292339491389, "vbur_qvtot_min": 28.850760633422443, "nbo_bds_occ_avg": 0.0933791345684649, "nbo_bds_occ_max": 0.13045864314750094, "nbo_lp_P_percent_s": 69.109449997346, "vbur_max_delta_qvbur": 4.5999378976414445, "vbur_max_delta_qvtot": 22.246946373713005, "vbur_ratio_vbur_vtot": 0.28550058387590194}} {"max_data": {"B1": 3.4885201261413354, "B5": 5.0577936028642485, "lval": 6.946842105396873, "sasa": 335.13062124366803, "vbur": 64.66703143870984, "vtot": 176.58000906347434, "alpha": 124.388315, "p_int": 18.706535640958485, "sasa_P": 20.459941979815326, "pyr_val": 0.9417157163628139, "dip_norm": 1.842153630943956, "far_vbur": 2.3195276237028226, "far_vtot": 3.1730079898326995, "near_vbur": 63.51309558571195, "near_vtot": 176.34927910368006, "ovbur_max": 19.570285830135873, "ovbur_min": 0.0, "ovtot_max": 54.94630790635429, "ovtot_min": 0.0, "pyr_alpha": 22.5532569493353, "qvbur_max": 21.854845700717547, "qvbur_min": 14.126972260943822, "qvtot_max": 54.94630790635429, "qvtot_min": 37.42944663931508, "cone_angle": 186.26613761780604, "p_int_area": 221.6644478243586, "p_int_atom": 25.880284730600863, "sasa_volume": 487.83096859739084, "EA_delta_SCC": 1.6402, "IP_delta_SCC": 6.5435, "HOMO_LUMO_gap": 3.546785746329, "sasa_volume_P": 27.82448587565501, "max_delta_qvbur": 8.870153375064564, "max_delta_qvtot": 26.413976774251385, "nucleophilicity": -6.3692, "p_int_atom_area": 17.697537414051155, "p_int_times_p_int_area": 4146.5738935597465, "global_electrophilicity_index": 1.7019, "p_int_atom_times_p_int_atom_area": 411.7726487488249}, "min_data": {"B1": 2.6998140541796007, "B5": 4.986399248885859, "lval": 5.272693154373512, "sasa": 317.24047950076186, "vbur": 53.60556553472, "vtot": 175.23220625462903, "alpha": 124.331194, "p_int": 18.46916731784363, "sasa_P": 10.059971471991314, "pyr_val": 0.8961560191648417, "dip_norm": 0.37870965131615014, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 53.60556553472001, "near_vtot": 173.17831901698935, "ovbur_max": 16.71458599190878, "ovbur_min": 0.0, "ovtot_max": 50.61500830195298, "ovtot_min": 0.0, "pyr_alpha": 16.673718864685444, "qvbur_max": 16.71458599190878, "qvbur_min": 10.805035714434755, "qvtot_max": 51.23836870042161, "qvtot_min": 25.92488684544772, "cone_angle": 152.6223619712573, "p_int_area": 207.05900939874024, "p_int_atom": 23.267228604466375, "sasa_volume": 469.8739804344054, "EA_delta_SCC": 1.2983, "IP_delta_SCC": 6.3692, "HOMO_LUMO_gap": 3.361822435926, "sasa_volume_P": 12.056494297887639, "max_delta_qvbur": 2.3544953768239694, "max_delta_qvtot": 9.209408923459769, "nucleophilicity": -6.5435, "p_int_atom_area": 13.69809393064976, "p_int_times_p_int_area": 3872.7480280943414, "global_electrophilicity_index": 1.4581, "p_int_atom_times_p_int_atom_area": 353.07038701867197}, "boltzmann_averaged_data": {"B1": 2.8049200704076918, "B5": 5.0377201156079305, "lval": 6.694002172139801, "sasa": 327.2137966997767, "vbur": 57.70090163509426, "vtot": 175.53777952927038, "alpha": 124.37860161639615, "p_int": 18.57325447354315, "B1_std": 0.2269115477975646, "B5_std": 0.025565951031746612, "sasa_P": 15.801456105331672, "pyr_val": 0.9340333796383962, "dip_norm": 0.75860128418311, "far_vbur": 0.09007853218046169, "far_vtot": 0.12274177561823926, "lval_std": 0.5551994790614906, "sasa_std": 2.8154044028165726, "vbur_std": 1.8963033018554998, "vtot_std": 0.39149951915627, "alpha_std": 0.012293925072211729, "near_vbur": 57.6108231029138, "near_vtot": 175.41427016558663, "ovbur_max": 17.408113153758386, "ovbur_min": 0.0, "ovtot_max": 52.44689705987168, "ovtot_min": 0.0, "p_int_std": 0.03967899202729547, "pyr_alpha": 17.694126910151862, "qvbur_max": 17.50023941803894, "qvbur_min": 11.4045680331504, "qvtot_max": 52.526307523011994, "qvtot_min": 30.8003209279641, "cone_angle": 169.2467547805715, "p_int_area": 214.86227867663948, "p_int_atom": 24.26389332174789, "sasa_P_std": 2.09817385161536, "pyr_val_std": 0.002899114650555224, "sasa_volume": 479.45630876503236, "EA_delta_SCC": 1.5286188381883818, "IP_delta_SCC": 6.490143163431634, "dip_norm_std": 0.36269991471890584, "far_vbur_std": 0.4467075190840636, "far_vtot_std": 0.6103835419797438, "HOMO_LUMO_gap": 3.501284372672823, "near_vbur_std": 1.595548973239584, "near_vtot_std": 0.5722372184604959, "ovbur_max_std": 0.6487012248870344, "ovbur_min_std": 0.0, "ovtot_max_std": 0.7808454044502433, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.358697718687298, "qvbur_max_std": 1.0053773008855253, "qvbur_min_std": 0.9017408285685699, "qvtot_max_std": 0.690947532104949, "qvtot_min_std": 2.6970626997470166, "sasa_volume_P": 20.294503542429634, "cone_angle_std": 6.767340517785426, "p_int_area_std": 2.376327775778088, "p_int_atom_std": 0.5030048567047105, "max_delta_qvbur": 5.180504498323793, "max_delta_qvtot": 18.363500770615968, "nucleophilicity": -6.490143163431634, "p_int_atom_area": 16.153468826058948, "sasa_volume_std": 3.128126273142531, "EA_delta_SCC_std": 0.031018268579275386, "IP_delta_SCC_std": 0.04826675828597096, "HOMO_LUMO_gap_std": 0.03608777860039368, "sasa_volume_P_std": 3.0151535546432333, "max_delta_qvbur_std": 0.9359748197600247, "max_delta_qvtot_std": 4.457777261954835, "nucleophilicity_std": 0.04826675828597096, "p_int_atom_area_std": 0.8641043645778104, "p_int_times_p_int_area": 3990.636093717758, "p_int_times_p_int_area_std": 39.5905151583148, "global_electrophilicity_index": 1.6201182091820918, "p_int_atom_times_p_int_atom_area": 391.51399771606, "global_electrophilicity_index_std": 0.023184559822587582, "p_int_atom_times_p_int_atom_area_std": 13.844608908695246}} {"max_data": {"pyr_P": "0.9335725", "pyr_alpha": "20.82458", "qpole_amp": "8.4465065", "vbur_vbur": "56.727486", "sterimol_L": "7.212821", "sterimol_B1": "3.562807", "sterimol_B5": "4.9360485", "dipolemoment": "2.4854696", "qpoletens_xx": "6.3702254", "qpoletens_yy": "2.0375648", "qpoletens_zz": "-2.2936792", "sterimol_burL": "7.4061985", "vbur_far_vbur": "0.7841411", "vbur_far_vtot": "-0.19972245", "sterimol_burB1": "3.5611877", "sterimol_burB5": "4.9947796", "vbur_near_vbur": "56.12862", "vbur_near_vtot": "170.96254", "vbur_ovbur_max": "17.6124", "vbur_ovbur_min": "0.18422133", "vbur_ovtot_max": "51.21027", "vbur_ovtot_min": "-0.017287068", "vbur_qvbur_max": "16.119242", "vbur_qvbur_min": "12.010082", "vbur_qvtot_max": "52.255596", "vbur_qvtot_min": "42.702797", "vbur_max_delta_qvbur": "6.952931", "vbur_max_delta_qvtot": "12.857832"}, "min_data": {"pyr_P": "0.91382366", "pyr_alpha": "17.661346", "qpole_amp": "4.2179747", "vbur_vbur": "44.360813", "sterimol_L": "5.3111486", "sterimol_B1": "2.855607", "sterimol_B5": "5.1042194", "dipolemoment": "0.8166568", "qpoletens_xx": "4.3031187", "qpoletens_yy": "-0.75926083", "qpoletens_zz": "-6.8846335", "sterimol_burL": "5.627945", "vbur_far_vbur": "0.23865514", "vbur_far_vtot": "-1.0937778", "sterimol_burB1": "2.894131", "sterimol_burB5": "4.883368", "vbur_near_vbur": "44.64341", "vbur_near_vtot": "168.7463", "vbur_ovbur_max": "14.32861", "vbur_ovbur_min": "-0.006987836", "vbur_ovtot_max": "48.349503", "vbur_ovtot_min": "-0.0005067416", "vbur_qvbur_max": "17.249968", "vbur_qvbur_min": "9.432966", "vbur_qvtot_max": "51.190186", "vbur_qvtot_min": "26.92753", "vbur_max_delta_qvbur": "2.979543", "vbur_max_delta_qvtot": "11.255295"}, "delta_data": {"pyr_P": "0.015505699", "pyr_alpha": "2.8823202", "qpole_amp": "5.3472257", "vbur_vbur": "12.693834", "sterimol_L": "1.46082", "sterimol_B1": "0.56253946", "sterimol_B5": "-0.09609935", "dipolemoment": "1.3876041", "qpoletens_xx": "3.2634993", "qpoletens_yy": "2.948226", "qpoletens_zz": "4.408168", "sterimol_burL": "1.6449797", "vbur_far_vbur": "1.4255309", "vbur_far_vtot": "-1.4082317", "sterimol_burB1": "0.44688827", "sterimol_burB5": "0.26864916", "vbur_near_vbur": "10.654914", "vbur_near_vtot": "0.17024602", "vbur_ovbur_max": "3.579229", "vbur_ovbur_min": "0.20941025", "vbur_ovtot_max": "4.858147", "vbur_ovtot_min": "2.4336107", "vbur_qvbur_max": "4.41521", "vbur_qvbur_min": "2.4463294", "vbur_qvtot_max": "1.0802408", "vbur_qvtot_min": "9.521766", "vbur_max_delta_qvbur": "3.3610349", "vbur_max_delta_qvtot": "11.211119"}, "vburminconf_data": {"pyr_P": "0.9179935", "pyr_alpha": "20.641857", "qpole_amp": "6.2350383", "vbur_vbur": "44.012703", "sterimol_L": "7.3903475", "sterimol_B1": "2.9008946", "sterimol_B5": "4.6880074", "dipolemoment": "1.795135", "qpoletens_xx": "4.2196255", "qpoletens_yy": "0.3607753", "qpoletens_zz": "-3.0469708", "sterimol_burL": "7.314246", "vbur_far_vbur": "0.24505237", "vbur_far_vtot": "-3.5420732", "sterimol_burB1": "3.0187685", "sterimol_burB5": "5.0306997", "vbur_near_vbur": "44.909004", "vbur_near_vtot": "167.5399", "vbur_ovbur_max": "13.731922", "vbur_ovbur_min": "0.006195528", "vbur_ovtot_max": "55.11727", "vbur_ovtot_min": "0.026562972", "vbur_qvbur_max": "16.142715", "vbur_qvbur_min": "9.726511", "vbur_qvtot_max": "56.14909", "vbur_qvtot_min": "32.411583", "vbur_max_delta_qvbur": "5.203234", "vbur_max_delta_qvtot": "21.929691"}, "boltzmann_averaged_data": {"nbo_P": "0.4226743", "nmr_P": "118.79055", "pyr_P": "0.91897434", "fmo_mu": "-0.13231732", "vmin_r": "1.9601165", "volume": "207.83258", "Pint_dP": "3.499536", "fmo_eta": "0.21594216", "fukui_m": "0.17036611", "fukui_p": "0.4028162", "nuesp_P": "-54.12182", "somo_ra": "0.083804876", "somo_rc": "-0.43744588", "nbo_P_ra": "-0.00878032", "nbo_P_rc": "0.45850387", "efg_amp_P": "1.6873708", "fmo_omega": "0.038783964", "pyr_alpha": "20.715538", "qpole_amp": "6.3975306", "vbur_vbur": "50.336205", "vbur_vtot": "176.85611", "vmin_vmin": "-0.016842477", "E_solv_cds": "-2.1661048", "Pint_P_int": "18.242655", "Pint_P_max": "30.845732", "Pint_P_min": "12.332592", "fmo_e_homo": "-0.24161865", "fmo_e_lumo": "-0.02322706", "nbo_lp_P_e": "-0.42100894", "sphericity": "0.8628111", "sterimol_L": "6.482504", "E_oxidation": "0.30659005", "E_reduction": "0.029979493", "sterimol_B1": "3.3311527", "sterimol_B5": "4.897991", "E_solv_total": "-5.7195425", "dipolemoment": "1.3411009", "efgtens_xx_P": "-0.69067794", "efgtens_yy_P": "-0.58252496", "efgtens_zz_P": "1.3061731", "nbo_bd_e_avg": "-0.48532268", "nbo_bd_e_max": "-0.48216364", "nbo_lp_P_occ": "1.9806563", "qpoletens_xx": "3.8505828", "qpoletens_yy": "-0.05372895", "qpoletens_zz": "-5.067821", "surface_area": "188.2975", "E_solv_elstat": "-3.7723672", "nbo_bds_e_avg": "0.05439168", "nbo_bds_e_min": "0.018751081", "nmrtens_sxx_P": "24.699253", "nmrtens_syy_P": "151.97954", "nmrtens_szz_P": "235.9153", "spindens_P_ra": "0.61417574", "spindens_P_rc": "0.14635712", "sterimol_burL": "6.4759583", "vbur_far_vbur": "-0.10721278", "vbur_far_vtot": "0.2995354", "nbo_bd_occ_avg": "1.9724815", "nbo_bd_occ_min": "1.9745634", "sterimol_burB1": "3.356729", "sterimol_burB5": "5.284898", "vbur_near_vbur": "50.67873", "vbur_near_vtot": "171.0974", "vbur_ovbur_max": "15.853268", "vbur_ovbur_min": "0.0081461165", "vbur_ovtot_max": "45.403152", "vbur_ovtot_min": "-0.36518115", "vbur_qvbur_max": "15.724817", "vbur_qvbur_min": "11.410522", "vbur_qvtot_max": "46.498447", "vbur_qvtot_min": "31.95749", "nbo_bds_occ_avg": "0.08643815", "nbo_bds_occ_max": "0.10491636", "nbo_lp_P_percent_s": "67.46", "vbur_max_delta_qvbur": "3.7147448", "vbur_max_delta_qvtot": "16.048128", "vbur_ratio_vbur_vtot": "0.30260557"}} CSP(SC)SC {"max_data": {"B1": 3.5226938586702325, "B5": 5.066347785745254, "lval": 7.01871076372388, "sasa": 335.91062073292613, "vbur": 56.23980293651315, "vtot": 175.7310570470811, "alpha": 124.385195, "p_int": 18.673287011574537, "sasa_P": 16.52995312445491, "pyr_val": 0.9347571262257197, "dip_norm": 1.7851932668481585, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 56.23980293651316, "near_vtot": 175.84018964378444, "ovbur_max": 16.03854276489992, "ovbur_min": 0.0, "ovtot_max": 52.766831695910646, "ovtot_min": 0.0, "pyr_alpha": 19.41318186787394, "qvbur_max": 16.03854276489992, "qvbur_min": 12.646670712148554, "qvtot_max": 52.766831695910646, "qvtot_min": 35.72861124794108, "cone_angle": 177.10235798707336, "p_int_area": 223.16304486326095, "p_int_atom": 26.45766569824777, "sasa_volume": 488.9350135476399, "EA_delta_SCC": 1.6109, "IP_delta_SCC": 6.5441, "HOMO_LUMO_gap": 3.636063596624, "sasa_volume_P": 14.451809511577682, "max_delta_qvbur": 5.886238442059925, "max_delta_qvtot": 25.23097688181217, "nucleophilicity": -6.3282, "p_int_atom_area": 15.797801759435494, "p_int_times_p_int_area": 4166.327591107342, "global_electrophilicity_index": 1.6776, "p_int_atom_times_p_int_atom_area": 388.8735745860455}, "min_data": {"B1": 2.7539144689555726, "B5": 4.986596051316477, "lval": 5.455537953179218, "sasa": 321.3205746308997, "vbur": 49.234596394576485, "vtot": 174.61198561958471, "alpha": 124.360722, "p_int": 18.48770220721282, "sasa_P": 9.209973882409543, "pyr_val": 0.9217950966892613, "dip_norm": 0.3492291511314598, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 49.234596394576485, "near_vtot": 170.0670201147568, "ovbur_max": 14.161940014064971, "ovbur_min": 0.0, "ovtot_max": 51.20448334787554, "ovtot_min": 0.0, "pyr_alpha": 17.335399699777327, "qvbur_max": 14.161940014064971, "qvbur_min": 9.895874133284906, "qvtot_max": 51.20448334787554, "qvtot_min": 26.038768792378264, "cone_angle": 158.64318381162477, "p_int_area": 210.75892091971335, "p_int_atom": 23.661629057377265, "sasa_volume": 473.5529254017175, "EA_delta_SCC": 1.4233, "IP_delta_SCC": 6.3282, "HOMO_LUMO_gap": 3.420053526213, "sasa_volume_P": 7.343963664577965, "max_delta_qvbur": 2.1330329403900343, "max_delta_qvtot": 10.578501681257542, "nucleophilicity": -6.5441, "p_int_atom_area": 13.098177408139554, "p_int_times_p_int_area": 3935.561820583548, "global_electrophilicity_index": 1.542, "p_int_atom_times_p_int_atom_area": 335.88337902881597}, "boltzmann_averaged_data": {"B1": 3.1025456141718633, "B5": 5.04337469589264, "lval": 6.285619345448717, "sasa": 331.05319145732193, "vbur": 53.62686963830906, "vtot": 175.22590734069493, "alpha": 124.37637278708002, "p_int": 18.55178049296663, "B1_std": 0.38106758512189753, "B5_std": 0.006874489944315597, "sasa_P": 12.10251497975829, "pyr_val": 0.9278722735853531, "dip_norm": 1.0942066350997839, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.7750317343453722, "sasa_std": 4.535708851833952, "vbur_std": 1.8511526742351205, "vtot_std": 0.384282478588423, "alpha_std": 0.008601480565827277, "near_vbur": 53.62686963830907, "near_vtot": 173.22871079590357, "ovbur_max": 15.55600152581097, "ovbur_min": 0.0, "ovtot_max": 52.6383521795843, "ovtot_min": 0.0, "p_int_std": 0.05895205270169234, "pyr_alpha": 18.589865465501532, "qvbur_max": 15.55600152581097, "qvbur_min": 11.272125402774533, "qvtot_max": 52.6383521795843, "qvtot_min": 32.47951476257602, "cone_angle": 167.0118439066236, "p_int_area": 216.78377462727795, "p_int_atom": 24.908450290046286, "sasa_P_std": 2.697836763845728, "pyr_val_std": 0.0064512001250394465, "sasa_volume": 483.132275768959, "EA_delta_SCC": 1.4699999340000003, "IP_delta_SCC": 6.402174967, "dip_norm_std": 0.36971457625255877, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.539608656880384, "near_vbur_std": 1.8511526742351176, "near_vtot_std": 2.444996227946292, "ovbur_max_std": 0.27265543593663905, "ovbur_min_std": 0.0, "ovtot_max_std": 0.25674122085355877, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.8530972027268822, "qvbur_max_std": 0.27265543593663905, "qvbur_min_std": 1.2465896443640532, "qvtot_max_std": 0.25674122085355877, "qvtot_min_std": 3.044558559396462, "sasa_volume_P": 10.246227273701047, "cone_angle_std": 8.301225005333762, "p_int_area_std": 3.929154386671865, "p_int_atom_std": 0.7234948675801579, "max_delta_qvbur": 3.7283462266210075, "max_delta_qvtot": 14.609411687732278, "nucleophilicity": -6.402174967, "p_int_atom_area": 14.22397675483873, "sasa_volume_std": 4.83937968604526, "EA_delta_SCC_std": 0.046845924889958625, "IP_delta_SCC_std": 0.06975044431004664, "HOMO_LUMO_gap_std": 0.04189463992906451, "sasa_volume_P_std": 2.7053788345929295, "max_delta_qvbur_std": 1.4518130522199908, "max_delta_qvtot_std": 4.095192135839164, "nucleophilicity_std": 0.06975044431004664, "p_int_atom_area_std": 1.0332350954743177, "p_int_times_p_int_area": 4021.5227988340935, "p_int_times_p_int_area_std": 62.051422421359426, "global_electrophilicity_index": 1.571199767, "p_int_atom_times_p_int_atom_area": 353.60388675929016, "global_electrophilicity_index_std": 0.030298868788219004, "p_int_atom_times_p_int_atom_area_std": 16.770409307102415}} \\x0000000000000000000040000000000000000400000100000000000000000000000000000000000000000000000000010000000000000000000000000000000002000000044002000000400000000001000000000000000004000000000040000000000000000000000000800400040010000000004080000001000000008000 \\x00000000022000000000000000001000000000000000000000000000000000200000000000000000001000000000100000040000000800000000000000000000 other (-10.970491409301758, -0.8183613419532776, 1.883808135986328, 2.8566644191741943) (0.7480628490447998, 6.592264652252197) -505 COP(c1ccccc1)N(C(C)C)C(C)C 239.2989959716797 {"max_data": {"pyr_P": 0.9694371628228765, "pyr_alpha": 23.55709052526715, "qpole_amp": 7.736295921471625, "vbur_vbur": 70.43644895601315, "vbur_vtot": 279.7721172651233, "sterimol_L": 7.859815897466042, "sterimol_B1": 3.9186778747488553, "sterimol_B5": 6.1790801251608025, "dipolemoment": 2.6632657158368316, "qpoletens_xx": 4.775715606358808, "qpoletens_yy": 2.2061830151950943, "qpoletens_zz": -2.752021129761629, "sterimol_burL": 7.431970131660486, "vbur_far_vbur": 7.9039014739118185, "vbur_far_vtot": 11.219724033446695, "sterimol_burB1": 3.9186778747488553, "sterimol_burB5": 6.063952726974976, "vbur_near_vbur": 62.73440708041615, "vbur_near_vtot": 278.99641882870645, "vbur_ovbur_max": 22.10414896779838, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 112.06729699124304, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 28.957962168611424, "vbur_qvbur_min": 13.529822610364334, "vbur_qvtot_max": 112.8229185408437, "vbur_qvtot_min": 43.26627750161875, "vbur_max_delta_qvbur": 18.092058713209823, "vbur_max_delta_qvtot": 71.49701244892576}, "min_data": {"pyr_P": 0.8840196298326425, "pyr_alpha": 11.829771723598109, "qpole_amp": 4.001085077417304, "vbur_vbur": 55.28756594051246, "vbur_vtot": 277.957760260196, "sterimol_L": 7.407362560856955, "sterimol_B1": 3.5019808292704777, "sterimol_B5": 5.942516971690071, "dipolemoment": 0.5025775704586432, "qpoletens_xx": 2.900518908322934, "qpoletens_yy": -0.14849777856130508, "qpoletens_zz": -5.9682966907565875, "sterimol_burL": 6.93586321079677, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.396989227822104, "sterimol_burB5": 5.618312657054361, "vbur_near_vbur": 54.78343989705269, "vbur_near_vtot": 265.1114430113216, "vbur_ovbur_max": 16.54307391992368, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 90.78329466411068, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.54307391992368, "vbur_qvbur_min": 9.158987059288844, "vbur_qvtot_max": 95.86238981293523, "vbur_qvtot_min": 36.76174908090727, "vbur_max_delta_qvbur": 2.7109848644143746, "vbur_max_delta_qvtot": 52.503649131306794}, "delta_data": {"pyr_P": 0.08541753299023402, "pyr_alpha": 11.72731880166904, "qpole_amp": 3.735210844054321, "vbur_vbur": 15.148883015500694, "vbur_vtot": 1.8143570049273308, "sterimol_L": 0.4524533366090875, "sterimol_B1": 0.4166970454783776, "sterimol_B5": 0.23656315347073154, "dipolemoment": 2.1606881453781885, "qpoletens_xx": 1.8751966980358743, "qpoletens_yy": 2.3546807937563994, "qpoletens_zz": 3.2162755609949585, "sterimol_burL": 0.4961069208637161, "vbur_far_vbur": 7.9039014739118185, "vbur_far_vtot": 11.219724033446695, "sterimol_burB1": 0.5216886469267514, "sterimol_burB5": 0.4456400699206151, "vbur_near_vbur": 7.95096718336346, "vbur_near_vtot": 13.884975817384827, "vbur_ovbur_max": 5.561075047874702, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 21.284002327132356, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 12.414888248687745, "vbur_qvbur_min": 4.370835551075491, "vbur_qvtot_max": 16.960528727908468, "vbur_qvtot_min": 6.50452842071148, "vbur_max_delta_qvbur": 15.381073848795449, "vbur_max_delta_qvtot": 18.993363317618964}, "vburminconf_data": {"pyr_P": 0.9288467583244362, "pyr_alpha": 17.935716400501637, "qpole_amp": 7.305894836218425, "vbur_vbur": 55.28756594051246, "vbur_vtot": 279.3526971593076, "sterimol_L": 7.562238590712116, "sterimol_B1": 3.6076119881679363, "sterimol_B5": 5.982857925253246, "dipolemoment": 1.3786606330690157, "qpoletens_xx": 4.405114316413766, "qpoletens_yy": 1.2808715511879836, "qpoletens_zz": -5.685985867601749, "sterimol_burL": 7.071639035815501, "vbur_far_vbur": 0.504126043459772, "vbur_far_vtot": 1.1922678137835523, "sterimol_burB1": 3.4599530877766416, "sterimol_burB5": 5.650296084229766, "vbur_near_vbur": 54.78343989705269, "vbur_near_vtot": 278.16042934552405, "vbur_ovbur_max": 19.02814337897019, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 109.73111151285272, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.53122351777548, "vbur_qvbur_min": 9.205006864086002, "vbur_qvtot_max": 110.88596294910448, "vbur_qvtot_min": 37.22727313724675, "vbur_max_delta_qvbur": 8.839986139672185, "vbur_max_delta_qvtot": 66.24721330022102}, "boltzmann_averaged_data": {"nbo_P": 1.2160064540966313, "nmr_P": 142.8756452110739, "pyr_P": 0.9345620177756357, "fmo_mu": -0.12675974000189263, "vmin_r": 1.8135983161747258, "volume": 336.64406635283115, "Pint_dP": 3.570353561452491, "fmo_eta": 0.21320395680158932, "fukui_m": 0.386486498743361, "fukui_p": 0.09188188612677395, "nuesp_P": -54.146767888127094, "somo_ra": 0.08605633171843458, "somo_rc": -0.39337594776456103, "nbo_P_ra": 1.1241245679698575, "nbo_P_rc": 1.6024929528399923, "efg_amp_P": 2.224051176780879, "fmo_omega": 0.0376825380321391, "pyr_alpha": 17.09016016179166, "qpole_amp": 6.590362499838206, "vbur_vbur": 66.08448850458547, "vbur_vtot": 279.7659287322984, "vmin_vmin": -0.047371953887517804, "E_solv_cds": -4.050121269287552, "Pint_P_int": 18.280659836015644, "Pint_P_max": 32.162912471322294, "Pint_P_min": 12.54027694380041, "fmo_e_homo": -0.23336171840268727, "fmo_e_lumo": -0.020157761601097935, "nbo_lp_P_e": -0.3325594451337799, "sphericity": 0.8111068077111365, "sterimol_L": 7.409533377662641, "E_oxidation": 0.28747920475639704, "E_reduction": 0.03320528179337817, "sterimol_B1": 3.6720610041929165, "sterimol_B5": 5.9436229240037, "E_solv_total": -8.98807048195493, "dipolemoment": 1.4387488495862784, "efgtens_xx_P": -1.2703323772549158, "efgtens_yy_P": -0.48861771173091095, "efgtens_zz_P": 1.7589500919369658, "nbo_bd_e_avg": -0.5667866315476205, "nbo_bd_e_max": -0.476047670436313, "nbo_lp_P_occ": 1.9369138777411068, "qpoletens_xx": 3.6993113044528174, "qpoletens_yy": 1.534426784962008, "qpoletens_zz": -5.2337380894148255, "surface_area": 288.5274417453874, "E_solv_elstat": -4.937949212667379, "nbo_bds_e_avg": 0.224025505414054, "nbo_bds_e_min": 0.18936495625319272, "nmrtens_sxx_P": -8.641454598437775, "nmrtens_syy_P": 198.51929562110416, "nmrtens_szz_P": 238.74919358834813, "spindens_P_ra": 0.08482058994125603, "spindens_P_rc": 0.4697839699751469, "sterimol_burL": 6.93855757838874, "vbur_far_vbur": 5.194633714880557, "vbur_far_vtot": 7.928555189696281, "nbo_bd_occ_avg": 1.9660840468044887, "nbo_bd_occ_min": 1.9553487800895724, "sterimol_burB1": 3.527355271225088, "sterimol_burB5": 5.619744551550983, "vbur_near_vbur": 60.88985478970489, "vbur_near_vtot": 271.82747401721036, "vbur_ovbur_max": 21.825802370419726, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 101.19005276974573, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 26.260444121342037, "vbur_qvbur_min": 9.165256442559542, "vbur_qvtot_max": 108.13727734229354, "vbur_qvtot_min": 38.568386311865915, "nbo_bds_occ_avg": 0.0748340472898299, "nbo_bds_occ_max": 0.09726169909803921, "nbo_lp_P_percent_s": 56.39437242888929, "vbur_max_delta_qvbur": 14.873875144076651, "vbur_max_delta_qvtot": 63.8058285552331, "vbur_ratio_vbur_vtot": 0.23621330632133508}} {"max_data": {"B1": 4.232575829039437, "B5": 6.526854075870633, "lval": 7.762236759975673, "sasa": 538.2077343418425, "vbur": 149.31230582730228, "vtot": 385.7571401311323, "alpha": 256.556313, "p_int": 21.497134047587295, "sasa_P": 0.0, "pyr_val": 0.9543590131277582, "dip_norm": 3.193827014727003, "far_vbur": 65.59950485527378, "far_vtot": 87.50255424154243, "near_vbur": 83.92260749075538, "near_vtot": 301.82142075738665, "ovbur_max": 22.414329750655916, "ovbur_min": 14.196907767186117, "ovtot_max": 109.13677462385154, "ovtot_min": 17.28154982623539, "pyr_alpha": 22.735569998924035, "qvbur_max": 39.85158264040176, "qvbur_min": 35.13093596904677, "qvtot_max": 124.3931659072373, "qvtot_min": 67.42907895597341, "cone_angle": null, "p_int_area": 413.7272101018021, "p_int_atom": 53.245322448986116, "sasa_volume": 934.4132778897736, "EA_delta_SCC": null, "IP_delta_SCC": null, "HOMO_LUMO_gap": 2.691991787432, "sasa_volume_P": 0.0, "max_delta_qvbur": 5.83961477123173, "max_delta_qvtot": 61.26097751766803, "nucleophilicity": null, "p_int_atom_area": 2.3996660900408338, "p_int_times_p_int_area": 8833.67895574918, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 107.90964227159853}, "min_data": {"B1": 3.963733198791955, "B5": 6.1351625287416205, "lval": 7.197201125140409, "sasa": 524.0074971613484, "vbur": 142.70340048740528, "vtot": 382.7925003651262, "alpha": 256.347368, "p_int": 21.004588291154512, "sasa_P": 0.0, "pyr_val": 0.8932789387219948, "dip_norm": 2.0575009112999196, "far_vbur": 62.55731033373391, "far_vtot": 77.37331042412931, "near_vbur": 79.87800404640926, "near_vtot": 286.1552684173427, "ovbur_max": 20.968995954981796, "ovbur_min": 11.865724225776246, "ovtot_max": 96.69244710946371, "ovtot_min": 10.992764596936807, "pyr_alpha": 14.552994219151783, "qvbur_max": 38.23141007912189, "qvbur_min": 33.324268724454114, "qvtot_max": 113.2375372419569, "qvtot_min": 56.07169451549717, "cone_angle": null, "p_int_area": 394.631304260742, "p_int_atom": 44.230719021674815, "sasa_volume": 914.6565026956322, "EA_delta_SCC": null, "IP_delta_SCC": null, "HOMO_LUMO_gap": 2.282930252399, "sasa_volume_P": 0.0, "max_delta_qvbur": 3.0421945215398907, "max_delta_qvtot": 47.80492382352111, "nucleophilicity": null, "p_int_atom_area": 0.39994434834013665, "p_int_times_p_int_area": 8292.959709632918, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 20.50889040191675}, "boltzmann_averaged_data": {"B1": 4.069266722417527, "B5": 6.383742351334494, "lval": 7.642529885687192, "sasa": 531.3445017712467, "vbur": 147.57088528571904, "vtot": 385.01058746625097, "alpha": 256.50125975181504, "p_int": 21.154394849495308, "B1_std": 0.019150826683370512, "B5_std": 0.02851440884711376, "sasa_P": 0.0, "pyr_val": 0.933136013136797, "dip_norm": 2.150462015869926, "far_vbur": 64.29148482915363, "far_vtot": 84.50945236468209, "lval_std": 0.09170753004349394, "sasa_std": 0.9899072903841191, "vbur_std": 0.4697603997756503, "vtot_std": 0.42863619145405657, "alpha_std": 0.026033483548109925, "near_vbur": 83.27940045656538, "near_vtot": 298.559209574238, "ovbur_max": 22.324082818784692, "ovbur_min": 12.770567436166573, "ovtot_max": 97.56525289265919, "ovtot_min": 14.075009376021823, "p_int_std": 0.04647655075884675, "pyr_alpha": 17.66011642421405, "qvbur_max": 39.180596084746, "qvbur_min": 34.84409359979945, "qvtot_max": 116.30908390394322, "qvtot_min": 64.50675555855393, "cone_angle": null, "p_int_area": 402.69132178651716, "p_int_atom": 52.75533915928669, "sasa_P_std": 0.0, "pyr_val_std": 0.004508187805022623, "sasa_volume": 923.6416555027146, "EA_delta_SCC": null, "IP_delta_SCC": null, "dip_norm_std": 0.048421601494775146, "far_vbur_std": 0.24546603522318125, "far_vtot_std": 1.8992567186450109, "HOMO_LUMO_gap": 2.4057915950258666, "near_vbur_std": 0.3134294150792149, "near_vtot_std": 2.9728143343902516, "ovbur_max_std": 0.23382738280623566, "ovbur_min_std": 0.40444373384755977, "ovtot_max_std": 0.5465668375308291, "ovtot_min_std": 1.072330998074815, "pyr_alpha_std": 0.5968495603666951, "qvbur_max_std": 0.24327996472518243, "qvbur_min_std": 0.255033251698152, "qvtot_max_std": 0.7318531282954313, "qvtot_min_std": 1.7794514805560417, "sasa_volume_P": 0.0, "cone_angle_std": null, "p_int_area_std": 1.3375044320148026, "p_int_atom_std": 1.2727036860122267, "max_delta_qvbur": 3.7625942980405003, "max_delta_qvtot": 48.98811747998095, "nucleophilicity": null, "p_int_atom_area": 0.5414224918239793, "sasa_volume_std": 1.2321121567236277, "EA_delta_SCC_std": null, "IP_delta_SCC_std": null, "HOMO_LUMO_gap_std": 0.041763778931185686, "sasa_volume_P_std": 0.0, "max_delta_qvbur_std": 0.6533285616168348, "max_delta_qvtot_std": 2.6534749153152988, "nucleophilicity_std": null, "p_int_atom_area_std": 0.20221795587484132, "p_int_times_p_int_area": 8518.733370967015, "p_int_times_p_int_area_std": 43.429117293297594, "global_electrophilicity_index": null, "p_int_atom_times_p_int_atom_area": 28.363991635723977, "global_electrophilicity_index_std": null, "p_int_atom_times_p_int_atom_area_std": 9.171656439783733}} {"max_data": {"pyr_P": "0.9498677", "pyr_alpha": "23.02835", "qpole_amp": "6.9356093", "vbur_vbur": "68.8387", "sterimol_L": "8.153828", "sterimol_B1": "4.145708", "sterimol_B5": "6.695524", "dipolemoment": "2.2361035", "qpoletens_xx": "4.3278947", "qpoletens_yy": "1.0496036", "qpoletens_zz": "-2.4037976", "sterimol_burL": "7.5656977", "vbur_far_vbur": "5.6049666", "vbur_far_vtot": "8.720582", "sterimol_burB1": "4.1350603", "sterimol_burB5": "6.5428877", "vbur_near_vbur": "63.43834", "vbur_near_vtot": "277.0916", "vbur_ovbur_max": "20.686138", "vbur_ovbur_min": "0.33838066", "vbur_ovtot_max": "104.4271", "vbur_ovtot_min": "1.1490681", "vbur_qvbur_max": "24.666763", "vbur_qvbur_min": "13.791882", "vbur_qvtot_max": "110.93982", "vbur_qvtot_min": "53.62562", "vbur_max_delta_qvbur": "12.835645", "vbur_max_delta_qvtot": "57.21487"}, "min_data": {"pyr_P": "0.8868637", "pyr_alpha": "14.95255", "qpole_amp": "3.8198614", "vbur_vbur": "51.89732", "sterimol_L": "7.1809125", "sterimol_B1": "3.6994324", "sterimol_B5": "5.9745603", "dipolemoment": "0.9882619", "qpoletens_xx": "2.5221124", "qpoletens_yy": "-0.86770624", "qpoletens_zz": "-5.4482274", "sterimol_burL": "7.127479", "vbur_far_vbur": "0.25508082", "vbur_far_vtot": "4.3195715", "sterimol_burB1": "3.661046", "sterimol_burB5": "5.7903194", "vbur_near_vbur": "52.904747", "vbur_near_vtot": "268.905", "vbur_ovbur_max": "16.51954", "vbur_ovbur_min": "0.00016073119", "vbur_ovtot_max": "92.192474", "vbur_ovtot_min": "-0.009471169", "vbur_qvbur_max": "16.200317", "vbur_qvbur_min": "10.293279", "vbur_qvtot_max": "96.15654", "vbur_qvtot_min": "39.162838", "vbur_max_delta_qvbur": "5.0178437", "vbur_max_delta_qvtot": "42.51605"}, "delta_data": {"pyr_P": "0.06043684", "pyr_alpha": "7.591078", "qpole_amp": "2.7360718", "vbur_vbur": "13.896327", "sterimol_L": "0.78354377", "sterimol_B1": "0.41475126", "sterimol_B5": "0.5828781", "dipolemoment": "1.0765833", "qpoletens_xx": "1.8895582", "qpoletens_yy": "2.773733", "qpoletens_zz": "2.189579", "sterimol_burL": "0.44035155", "vbur_far_vbur": "6.379206", "vbur_far_vtot": "6.3127933", "sterimol_burB1": "0.5660752", "sterimol_burB5": "0.49982664", "vbur_near_vbur": "9.985153", "vbur_near_vtot": "11.348576", "vbur_ovbur_max": "3.5737185", "vbur_ovbur_min": "0.28563514", "vbur_ovtot_max": "9.861508", "vbur_ovtot_min": "0.6396684", "vbur_qvbur_max": "8.524142", "vbur_qvbur_min": "2.8605418", "vbur_qvtot_max": "9.997453", "vbur_qvtot_min": "11.81599", "vbur_max_delta_qvbur": "8.022608", "vbur_max_delta_qvtot": "17.279255"}, "vburminconf_data": {"pyr_P": "0.9031735", "pyr_alpha": "22.211592", "qpole_amp": "5.8975263", "vbur_vbur": "52.61988", "sterimol_L": "7.6865206", "sterimol_B1": "3.947645", "sterimol_B5": "6.3530955", "dipolemoment": "1.8392068", "qpoletens_xx": "4.4500275", "qpoletens_yy": "0.2848982", "qpoletens_zz": "-3.908925", "sterimol_burL": "7.141352", "vbur_far_vbur": "-0.030592762", "vbur_far_vtot": "2.9582868", "sterimol_burB1": "3.7618468", "sterimol_burB5": "6.008037", "vbur_near_vbur": "52.71196", "vbur_near_vtot": "279.01477", "vbur_ovbur_max": "17.06014", "vbur_ovbur_min": "0.0024243253", "vbur_ovtot_max": "97.278854", "vbur_ovtot_min": "-0.015558416", "vbur_qvbur_max": "16.659847", "vbur_qvbur_min": "11.504957", "vbur_qvtot_max": "98.391014", "vbur_qvtot_min": "45.773", "vbur_max_delta_qvbur": "5.3899927", "vbur_max_delta_qvtot": "51.323532"}, "boltzmann_averaged_data": {"nbo_P": "1.2153747", "nmr_P": "158.39386", "pyr_P": "0.9280675", "fmo_mu": "-0.11808814", "vmin_r": "1.8166624", "volume": "334.83572", "Pint_dP": "3.5721993", "fmo_eta": "0.20603935", "fukui_m": "0.14642894", "fukui_p": "0.11127669", "nuesp_P": "-54.14352", "somo_ra": "0.08420587", "somo_rc": "-0.40053234", "nbo_P_ra": "1.1019182", "nbo_P_rc": "1.3687456", "efg_amp_P": "2.1653042", "fmo_omega": "0.03488296", "pyr_alpha": "18.088163", "qpole_amp": "5.6487794", "vbur_vbur": "64.85959", "vbur_vtot": "279.51187", "vmin_vmin": "-0.044930037", "E_solv_cds": "-3.7704544", "Pint_P_int": "18.319801", "Pint_P_max": "31.557064", "Pint_P_min": "12.323979", "fmo_e_homo": "-0.22312778", "fmo_e_lumo": "-0.017953748", "nbo_lp_P_e": "-0.33321738", "sphericity": "0.80890894", "sterimol_L": "7.401546", "E_oxidation": "0.27701157", "E_reduction": "0.032828365", "sterimol_B1": "3.87208", "sterimol_B5": "6.5091376", "E_solv_total": "-8.962333", "dipolemoment": "1.6432546", "efgtens_xx_P": "-1.1336116", "efgtens_yy_P": "-0.52400416", "efgtens_zz_P": "1.7595861", "nbo_bd_e_avg": "-0.5701299", "nbo_bd_e_max": "-0.48359358", "nbo_lp_P_occ": "1.9355568", "qpoletens_xx": "4.0814905", "qpoletens_yy": "0.24828047", "qpoletens_zz": "-4.203251", "surface_area": "280.55164", "E_solv_elstat": "-5.0905304", "nbo_bds_e_avg": "0.22675242", "nbo_bds_e_min": "0.2002006", "nmrtens_sxx_P": "-13.985432", "nmrtens_syy_P": "168.17775", "nmrtens_szz_P": "256.05234", "spindens_P_ra": "0.11731106", "spindens_P_rc": "0.13342972", "sterimol_burL": "7.223667", "vbur_far_vbur": "5.1778455", "vbur_far_vtot": "5.861566", "nbo_bd_occ_avg": "1.9658253", "nbo_bd_occ_min": "1.9506191", "sterimol_burB1": "3.8351934", "sterimol_burB5": "6.0693765", "vbur_near_vbur": "61.091446", "vbur_near_vtot": "273.74985", "vbur_ovbur_max": "20.954145", "vbur_ovbur_min": "-0.002425934", "vbur_ovtot_max": "100.510956", "vbur_ovtot_min": "0.04263468", "vbur_qvbur_max": "24.386171", "vbur_qvbur_min": "10.955647", "vbur_qvtot_max": "103.41488", "vbur_qvtot_min": "46.043037", "nbo_bds_occ_avg": "0.072641574", "nbo_bds_occ_max": "0.08009861", "nbo_lp_P_percent_s": "55.90222", "vbur_max_delta_qvbur": "14.066385", "vbur_max_delta_qvtot": "56.39819", "vbur_ratio_vbur_vtot": "0.23329133"}} COP(c1ccccc1)N(C(C)C)C(C)C \N \\x240408290000000040181200a41285110a4000c942154288a405030001002120d081081044120408080fc0200380060072d100193004604924140000404280204a9000a60001ae92085108660840b00088004100c12680823a610c5a80981c014800204306014010900401230300080420204801104010e10011013030081090 \\x02008400022008000100000000000000008000084080800000004000000000000000080800000000080202101000020020000000000000001000000000000000 other (-3.412828207015991, 1.31223464012146, 2.1020736694335938, 3.062705516815185) (2.155478239059448, 5.14211893081665) -533 CCSP(SCC)N(CC)CC 225.36300659179688 {"max_data": {"pyr_P": 0.939542348406949, "pyr_alpha": 25.804141803472284, "qpole_amp": 8.987822490813667, "vbur_vbur": 83.14942003122795, "vbur_vtot": 254.59399778031923, "sterimol_L": 8.513350128457189, "sterimol_B1": 4.240012568997364, "sterimol_B5": 6.303276773992272, "dipolemoment": 3.1048539006111167, "qpoletens_xx": 6.455532115543901, "qpoletens_yy": 2.231997191524451, "qpoletens_zz": -3.21676618581278, "sterimol_burL": 8.17111524093621, "vbur_far_vbur": 12.32494044840239, "vbur_far_vtot": 16.992608435117152, "sterimol_burB1": 4.240012568997364, "sterimol_burB5": 6.303276773992272, "vbur_near_vbur": 71.01274242063211, "vbur_near_vtot": 255.95700719948857, "vbur_ovbur_max": 21.69520024789637, "vbur_ovbur_min": 0.14224303300939622, "vbur_ovtot_max": 88.210034467034, "vbur_ovtot_min": 0.20946837396603404, "vbur_qvbur_max": 32.34669324912939, "vbur_qvbur_min": 14.609196213788577, "vbur_qvtot_max": 92.51296297762103, "vbur_qvtot_min": 53.57832134465406, "vbur_max_delta_qvbur": 19.424541243018428, "vbur_max_delta_qvtot": 51.30957945439591}, "min_data": {"pyr_P": 0.8625907236534647, "pyr_alpha": 16.801643960787096, "qpole_amp": 4.615362211703611, "vbur_vbur": 51.04956028055604, "vbur_vtot": 252.57701135216362, "sterimol_L": 6.853915664258936, "sterimol_B1": 2.6641081051799564, "sterimol_B5": 5.30667314972117, "dipolemoment": 1.0061871242606983, "qpoletens_xx": 3.201951485959843, "qpoletens_yy": -1.7907138321669644, "qpoletens_zz": -6.850066606631487, "sterimol_burL": 6.404466490544091, "vbur_far_vbur": 0.04601980479715761, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.6538448097707996, "sterimol_burB5": 5.30667314972117, "vbur_near_vbur": 51.003540475758875, "vbur_near_vtot": 233.1239568540921, "vbur_ovbur_max": 18.27404612308949, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 68.3510824723418, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 18.509374670347686, "vbur_qvbur_min": 9.162124773252286, "vbur_qvtot_max": 71.74684327968092, "vbur_qvtot_min": 26.111520077433454, "vbur_max_delta_qvbur": 5.588268568891207, "vbur_max_delta_qvtot": 15.695770895838443}, "delta_data": {"pyr_P": 0.07695162475348427, "pyr_alpha": 9.002497842685187, "qpole_amp": 4.372460279110055, "vbur_vbur": 32.09985975067191, "vbur_vtot": 2.0169864281556045, "sterimol_L": 1.6594344641982532, "sterimol_B1": 1.5759044638174076, "sterimol_B5": 0.9966036242711027, "dipolemoment": 2.0986667763504183, "qpoletens_xx": 3.2535806295840586, "qpoletens_yy": 4.022711023691416, "qpoletens_zz": 3.633300420818707, "sterimol_burL": 1.766648750392119, "vbur_far_vbur": 12.278920643605232, "vbur_far_vtot": 16.992608435117152, "sterimol_burB1": 1.5861677592265644, "sterimol_burB5": 0.9966036242711027, "vbur_near_vbur": 20.009201944873233, "vbur_near_vtot": 22.833050345396458, "vbur_ovbur_max": 3.421154124806879, "vbur_ovbur_min": 0.14224303300939622, "vbur_ovtot_max": 19.858951994692205, "vbur_ovtot_min": 0.20946837396603404, "vbur_qvbur_max": 13.837318578781701, "vbur_qvbur_min": 5.447071440536291, "vbur_qvtot_max": 20.766119697940113, "vbur_qvtot_min": 27.466801267220603, "vbur_max_delta_qvbur": 13.83627267412722, "vbur_max_delta_qvtot": 35.613808558557466}, "vburminconf_data": {"pyr_P": 0.8816751041353583, "pyr_alpha": 23.909154907507805, "qpole_amp": 8.130543707387018, "vbur_vbur": 51.04956028055604, "vbur_vtot": 254.26760485236377, "sterimol_L": 8.440676489487238, "sterimol_B1": 3.6601259501230192, "sterimol_B5": 6.069440675498254, "dipolemoment": 1.7620027674959597, "qpoletens_xx": 5.872625300420665, "qpoletens_yy": -0.25544067461924946, "qpoletens_zz": -5.617184625801416, "sterimol_burL": 8.035633443860794, "vbur_far_vbur": 0.04601980479715761, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.4561134206637893, "sterimol_burB5": 5.832478955476205, "vbur_near_vbur": 51.003540475758875, "vbur_near_vtot": 252.89190428710822, "vbur_ovbur_max": 18.463354865550528, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 75.39018622735611, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 18.509374670347686, "vbur_qvbur_min": 10.020812494581069, "vbur_qvtot_max": 75.39018622735611, "vbur_qvtot_min": 48.33398393055647, "vbur_max_delta_qvbur": 8.488562175766617, "vbur_max_delta_qvtot": 27.05620229679964}, "boltzmann_averaged_data": {"nbo_P": 0.7308133982416625, "nmr_P": 130.61236674645522, "pyr_P": 0.9289188012410774, "fmo_mu": -0.11543700296207061, "vmin_r": 1.8813839971173236, "volume": 310.9710901620113, "Pint_dP": 3.8512470686035964, "fmo_eta": 0.2168418028034981, "fukui_m": 0.10797990478583498, "fukui_p": 0.31561764731783304, "nuesp_P": -54.1347194670899, "somo_ra": 0.09120803811612552, "somo_rc": -0.4096263529222408, "nbo_P_ra": 0.4151957509238295, "nbo_P_rc": 0.8387933030274975, "efg_amp_P": 1.681787920028247, "fmo_omega": 0.03073037239318001, "pyr_alpha": 18.056174708636128, "qpole_amp": 5.755749882045039, "vbur_vbur": 67.17833434332172, "vbur_vtot": 254.18390147858892, "vmin_vmin": -0.030455935604463608, "E_solv_cds": -4.891184022577589, "Pint_P_int": 18.261081344872693, "Pint_P_max": 32.70247391112076, "Pint_P_min": 11.927404019004353, "fmo_e_homo": -0.22385790436381972, "fmo_e_lumo": -0.007016101560321571, "nbo_lp_P_e": -0.3855662863268623, "sphericity": 0.7966599136587087, "sterimol_L": 6.987278410287313, "E_oxidation": 0.2790612620211576, "E_reduction": 0.04218305742860637, "sterimol_B1": 3.6487621372817234, "sterimol_B5": 5.743371883598684, "E_solv_total": -9.414170666351952, "dipolemoment": 2.1173282813232532, "efgtens_xx_P": -0.7270792930323997, "efgtens_yy_P": -0.6451987588829473, "efgtens_zz_P": 1.3722782736942842, "nbo_bd_e_avg": -0.5077250397604067, "nbo_bd_e_max": -0.4527540931067569, "nbo_lp_P_occ": 1.9684365210293984, "qpoletens_xx": 4.289990884265207, "qpoletens_yy": -0.55964692745742, "qpoletens_zz": -3.730343956807787, "surface_area": 278.71535406429007, "E_solv_elstat": -4.52298664377436, "nbo_bds_e_avg": 0.12262522432653389, "nbo_bds_e_min": 0.07751694006400077, "nmrtens_sxx_P": 67.08315460686113, "nmrtens_syy_P": 103.38072443716501, "nmrtens_szz_P": 221.37322935131846, "spindens_P_ra": 0.4631981523498878, "spindens_P_rc": 0.11532210174666094, "sterimol_burL": 6.559585344085496, "vbur_far_vbur": 3.5531478545568738, "vbur_far_vtot": 5.871769707117128, "nbo_bd_occ_avg": 1.9694537519922668, "nbo_bd_occ_min": 1.9652188249576377, "sterimol_burB1": 3.6476271178617417, "sterimol_burB5": 5.742695277329373, "vbur_near_vbur": 63.62518648876485, "vbur_near_vtot": 247.63510841081794, "vbur_ovbur_max": 20.458601291591016, "vbur_ovbur_min": 0.0178280378436956, "vbur_ovtot_max": 82.87689035850435, "vbur_ovtot_min": 0.013654021688776519, "vbur_qvbur_max": 22.464758210923012, "vbur_qvbur_min": 11.80156546282971, "vbur_qvtot_max": 85.65913148797154, "vbur_qvtot_min": 39.28075232861601, "nbo_bds_occ_avg": 0.09248929825251807, "nbo_bds_occ_max": 0.10461761510780328, "nbo_lp_P_percent_s": 64.85772127196022, "vbur_max_delta_qvbur": 8.684717633899236, "vbur_max_delta_qvtot": 34.63699264316703, "vbur_ratio_vbur_vtot": 0.26430487859938295}} {"max_data": {"B1": 4.286013930384272, "B5": 6.230041060453377, "lval": 8.085507993833977, "sasa": 441.30098040497677, "vbur": 89.6456630849166, "vtot": 251.9536267228152, "alpha": 172.23566, "p_int": 18.954807847708533, "sasa_P": 14.569958682595757, "pyr_val": 0.955730636140482, "dip_norm": 2.03171700785321, "far_vbur": 15.805424410758928, "far_vtot": 25.049787254771665, "near_vbur": 75.58862633021508, "near_vtot": 252.24107202591944, "ovbur_max": 22.274458738171326, "ovbur_min": 1.0490325936344422, "ovtot_max": 89.18088519565897, "ovtot_min": 1.17321706871677, "pyr_alpha": 21.57907906688793, "qvbur_max": 32.25192429540557, "qvbur_min": 16.994328016877965, "qvtot_max": 89.31656120590398, "qvtot_min": 55.599043174075995, "cone_angle": 231.67764603050793, "p_int_area": 318.7383249568487, "p_int_atom": 32.43497273674054, "sasa_volume": 689.0956460333554, "EA_delta_SCC": 1.3568, "IP_delta_SCC": 6.4889, "HOMO_LUMO_gap": 3.756762208865, "sasa_volume_P": 20.741856957057195, "max_delta_qvbur": 17.530500231402236, "max_delta_qvtot": 56.455422637285636, "nucleophilicity": -6.0965, "p_int_atom_area": 14.797940888585146, "p_int_times_p_int_area": 5945.342037660347, "global_electrophilicity_index": 1.4776, "p_int_atom_times_p_int_atom_area": 389.9346509310895}, "min_data": {"B1": 2.749301935380113, "B5": 4.9634270981777195, "lval": 5.714526465400927, "sasa": 411.94089201899857, "vbur": 58.39614771231729, "vtot": 248.65286300857406, "alpha": 172.10955, "p_int": 18.364085097193264, "sasa_P": 0.009999971642143553, "pyr_val": 0.9037910174900056, "dip_norm": 0.4917753552182134, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 58.39614771231728, "near_vtot": 218.22716693370685, "ovbur_max": 17.239102288726002, "ovbur_min": 0.0, "ovtot_max": 64.16024655586266, "ovtot_min": 0.0, "pyr_alpha": 14.380433580559515, "qvbur_max": 17.239102288726002, "qvbur_min": 10.548605524879669, "qvtot_max": 68.47547204731674, "qvtot_min": 28.07500748688829, "cone_angle": 159.72994454055063, "p_int_area": 297.7308312352544, "p_int_atom": 25.133971844687554, "sasa_volume": 658.6175376612691, "EA_delta_SCC": 1.087, "IP_delta_SCC": 6.0965, "HOMO_LUMO_gap": 3.324542621426, "sasa_volume_P": 0.011824306739780938, "max_delta_qvbur": 2.832388002812994, "max_delta_qvtot": 12.016284926896894, "nucleophilicity": -6.4889, "p_int_atom_area": 6.399109573442228, "p_int_times_p_int_area": 5527.182480100803, "global_electrophilicity_index": 1.3111, "p_int_atom_times_p_int_atom_area": 201.20218012633825}, "boltzmann_averaged_data": {"B1": 3.6319954280772166, "B5": 5.459106998048964, "lval": 7.694164453460607, "sasa": 426.4260486259055, "vbur": 76.94769917805199, "vtot": 250.82401094551423, "alpha": 172.16642577894777, "p_int": 18.723274330021933, "B1_std": 0.23510954430986059, "B5_std": 0.16772103988992496, "sasa_P": 3.6411760862381115, "pyr_val": 0.9378481948490724, "dip_norm": 1.2431982434660165, "far_vbur": 7.566653234924977, "far_vtot": 11.86556934885273, "lval_std": 0.09716987680492058, "sasa_std": 2.7621434912204905, "vbur_std": 5.095493453935458, "vtot_std": 0.40312253948369436, "alpha_std": 0.015334951418669699, "near_vbur": 69.38104594312702, "near_vtot": 235.81828154666658, "ovbur_max": 20.500829590226854, "ovbur_min": 0.03041082652431116, "ovtot_max": 75.95433136230776, "ovtot_min": 0.03587769303658748, "p_int_std": 0.060644688294106755, "pyr_alpha": 17.115527914203973, "qvbur_max": 25.27614469414071, "qvbur_min": 14.560289531006458, "qvtot_max": 76.39491439642653, "qvtot_min": 45.21808677075894, "cone_angle": 203.72827514564614, "p_int_area": 312.4322866479875, "p_int_atom": 28.81843906821187, "sasa_P_std": 1.7692050109853052, "pyr_val_std": 0.004153015150794798, "sasa_volume": 676.5610078932883, "EA_delta_SCC": 1.1983209392093923, "IP_delta_SCC": 6.421553884538846, "dip_norm_std": 0.19440127013544667, "far_vbur_std": 3.3879059929859827, "far_vtot_std": 5.090289165439993, "HOMO_LUMO_gap": 3.705241842548182, "near_vbur_std": 2.327176743781849, "near_vtot_std": 7.668131906509391, "ovbur_max_std": 0.6133154269721599, "ovbur_min_std": 0.14441238072306703, "ovtot_max_std": 2.515186789980775, "ovtot_min_std": 0.17183960713025123, "pyr_alpha_std": 0.5812368528902305, "qvbur_max_std": 2.1104662055129695, "qvbur_min_std": 1.173891434187217, "qvtot_max_std": 2.3125982918753185, "qvtot_min_std": 4.521184847094587, "sasa_volume_P": 4.502495331214538, "cone_angle_std": 9.012201883444694, "p_int_area_std": 3.2271388945378727, "p_int_atom_std": 0.9829176363783095, "max_delta_qvbur": 10.21175441033637, "max_delta_qvtot": 28.491043468340578, "nucleophilicity": -6.421553884538846, "p_int_atom_area": 9.279124627798788, "sasa_volume_std": 3.453939973883381, "EA_delta_SCC_std": 0.03716207378028263, "IP_delta_SCC_std": 0.04803561260030187, "HOMO_LUMO_gap_std": 0.04440948061928593, "sasa_volume_P_std": 2.3164345631115477, "max_delta_qvbur_std": 2.061834419343764, "max_delta_qvtot_std": 5.215768986797662, "nucleophilicity_std": 0.04803561260030187, "p_int_atom_area_std": 1.1625174628975803, "p_int_times_p_int_area": 5849.8243531509115, "p_int_times_p_int_area_std": 69.30790367100064, "global_electrophilicity_index": 1.3897046740467405, "p_int_atom_times_p_int_atom_area": 266.54575341629203, "global_electrophilicity_index_std": 0.025211115674579742, "p_int_atom_times_p_int_atom_area_std": 26.937324106256106}} {"max_data": {"pyr_P": "0.9401971", "pyr_alpha": "24.974722", "qpole_amp": "8.338941", "vbur_vbur": "81.491486", "sterimol_L": "8.268506", "sterimol_B1": "4.177292", "sterimol_B5": "6.0278683", "dipolemoment": "2.996815", "qpoletens_xx": "5.8386946", "qpoletens_yy": "2.2286196", "qpoletens_zz": "-2.7790668", "sterimol_burL": "8.159805", "vbur_far_vbur": "10.924499", "vbur_far_vtot": "16.473736", "sterimol_burB1": "4.0287013", "sterimol_burB5": "6.104516", "vbur_near_vbur": "70.920555", "vbur_near_vtot": "253.823", "vbur_ovbur_max": "21.216124", "vbur_ovbur_min": "0.26217", "vbur_ovtot_max": "82.46121", "vbur_ovtot_min": "-0.07150635", "vbur_qvbur_max": "32.2195", "vbur_qvbur_min": "13.637293", "vbur_qvtot_max": "86.044304", "vbur_qvtot_min": "48.557877", "vbur_max_delta_qvbur": "19.149944", "vbur_max_delta_qvtot": "46.314327"}, "min_data": {"pyr_P": "0.86972564", "pyr_alpha": "17.009165", "qpole_amp": "4.1218057", "vbur_vbur": "50.00658", "sterimol_L": "6.6939306", "sterimol_B1": "2.7644286", "sterimol_B5": "5.181375", "dipolemoment": "0.9740462", "qpoletens_xx": "2.8329184", "qpoletens_yy": "-1.1538037", "qpoletens_zz": "-6.0155015", "sterimol_burL": "6.263408", "vbur_far_vbur": "0.027307656", "vbur_far_vtot": "-2.1176522", "sterimol_burB1": "2.7293856", "sterimol_burB5": "5.268358", "vbur_near_vbur": "50.618507", "vbur_near_vtot": "231.24031", "vbur_ovbur_max": "17.589205", "vbur_ovbur_min": "0.012668454", "vbur_ovtot_max": "65.330154", "vbur_ovtot_min": "0.037111048", "vbur_qvbur_max": "17.230076", "vbur_qvbur_min": "9.223973", "vbur_qvtot_max": "67.010124", "vbur_qvtot_min": "25.829563", "vbur_max_delta_qvbur": "4.5559144", "vbur_max_delta_qvtot": "16.485817"}, "delta_data": {"pyr_P": "0.07640928", "pyr_alpha": "8.973625", "qpole_amp": "4.677113", "vbur_vbur": "30.579876", "sterimol_L": "1.5536832", "sterimol_B1": "1.2876865", "sterimol_B5": "0.7691273", "dipolemoment": "2.0537007", "qpoletens_xx": "3.2713308", "qpoletens_yy": "3.438866", "qpoletens_zz": "3.73251", "sterimol_burL": "1.8420817", "vbur_far_vbur": "11.669874", "vbur_far_vtot": "14.48028", "sterimol_burB1": "1.4184089", "sterimol_burB5": "0.81347394", "vbur_near_vbur": "19.601446", "vbur_near_vtot": "21.807945", "vbur_ovbur_max": "3.6181636", "vbur_ovbur_min": "0.18123133", "vbur_ovtot_max": "17.511576", "vbur_ovtot_min": "0.087778494", "vbur_qvbur_max": "13.084471", "vbur_qvbur_min": "4.7356133", "vbur_qvtot_max": "21.555323", "vbur_qvtot_min": "24.080072", "vbur_max_delta_qvbur": "13.688062", "vbur_max_delta_qvtot": "30.915142"}, "vburminconf_data": {"pyr_P": "0.883135", "pyr_alpha": "23.501867", "qpole_amp": "6.6230392", "vbur_vbur": "50.43077", "sterimol_L": "8.266697", "sterimol_B1": "3.6811993", "sterimol_B5": "5.816196", "dipolemoment": "1.3457658", "qpoletens_xx": "4.37856", "qpoletens_yy": "0.21021754", "qpoletens_zz": "-4.2349896", "sterimol_burL": "7.846497", "vbur_far_vbur": "-0.20747061", "vbur_far_vtot": "-1.8842844", "sterimol_burB1": "3.3776011", "sterimol_burB5": "5.7442093", "vbur_near_vbur": "50.64104", "vbur_near_vtot": "249.076", "vbur_ovbur_max": "18.077463", "vbur_ovbur_min": "0.019814735", "vbur_ovtot_max": "73.34467", "vbur_ovtot_min": "0.015896102", "vbur_qvbur_max": "18.257242", "vbur_qvbur_min": "9.972733", "vbur_qvtot_max": "73.53399", "vbur_qvtot_min": "36.431778", "vbur_max_delta_qvbur": "7.0714283", "vbur_max_delta_qvtot": "27.912779"}, "boltzmann_averaged_data": {"nbo_P": "0.7260906", "nmr_P": "131.10448", "pyr_P": "0.92591584", "fmo_mu": "-0.11258817", "vmin_r": "1.884643", "volume": "310.39774", "Pint_dP": "3.8225336", "fmo_eta": "0.2210734", "fukui_m": "0.05768947", "fukui_p": "0.33323467", "nuesp_P": "-54.134926", "somo_ra": "0.09309124", "somo_rc": "-0.41162577", "nbo_P_ra": "0.41565198", "nbo_P_rc": "0.8148041", "efg_amp_P": "1.7191947", "fmo_omega": "0.028654836", "pyr_alpha": "18.510677", "qpole_amp": "5.1699452", "vbur_vbur": "65.246", "vbur_vtot": "254.11058", "vmin_vmin": "-0.030746737", "E_solv_cds": "-4.783813", "Pint_P_int": "18.267998", "Pint_P_max": "32.599445", "Pint_P_min": "11.94037", "fmo_e_homo": "-0.22302888", "fmo_e_lumo": "-0.0030449608", "nbo_lp_P_e": "-0.38596046", "sphericity": "0.8054095", "sterimol_L": "6.850126", "E_oxidation": "0.27801454", "E_reduction": "0.045652308", "sterimol_B1": "3.640676", "sterimol_B5": "5.671855", "E_solv_total": "-9.288604", "dipolemoment": "2.0191612", "efgtens_xx_P": "-0.7271289", "efgtens_yy_P": "-0.6337537", "efgtens_zz_P": "1.3612664", "nbo_bd_e_avg": "-0.508795", "nbo_bd_e_max": "-0.45342425", "nbo_lp_P_occ": "1.9685313", "qpoletens_xx": "3.960603", "qpoletens_yy": "-0.36747065", "qpoletens_zz": "-3.436451", "surface_area": "276.5366", "E_solv_elstat": "-4.219446", "nbo_bds_e_avg": "0.11964474", "nbo_bds_e_min": "0.07738535", "nmrtens_sxx_P": "70.87747", "nmrtens_syy_P": "105.82043", "nmrtens_szz_P": "212.88799", "spindens_P_ra": "0.5118883", "spindens_P_rc": "0.06282138", "sterimol_burL": "6.566806", "vbur_far_vbur": "2.6729763", "vbur_far_vtot": "4.6827126", "nbo_bd_occ_avg": "1.9696038", "nbo_bd_occ_min": "1.9668196", "sterimol_burB1": "3.6175575", "sterimol_burB5": "5.81676", "vbur_near_vbur": "63.619926", "vbur_near_vtot": "246.58026", "vbur_ovbur_max": "20.02013", "vbur_ovbur_min": "0.022656199", "vbur_ovtot_max": "76.08262", "vbur_ovtot_min": "-0.030897379", "vbur_qvbur_max": "21.006773", "vbur_qvbur_min": "11.408252", "vbur_qvtot_max": "77.43529", "vbur_qvtot_min": "35.40205", "nbo_bds_occ_avg": "0.094293684", "nbo_bds_occ_max": "0.1067461", "nbo_lp_P_percent_s": "65.12647", "vbur_max_delta_qvbur": "7.423135", "vbur_max_delta_qvtot": "33.517296", "vbur_ratio_vbur_vtot": "0.26056853"}} CCSP(SCC)N(CC)CC {"max_data": {"B1": 4.438083100878434, "B5": 6.240038699709398, "lval": 8.423319837879808, "sasa": 447.6909458361892, "vbur": 63.361568655520315, "vtot": 251.45000838408947, "alpha": 172.225587, "p_int": 18.956082461256607, "sasa_P": 15.589955790093887, "pyr_val": 0.9570330519930791, "dip_norm": 1.863991416289249, "far_vbur": 1.6901080675221571, "far_vtot": 5.041027642399072, "near_vbur": 62.464062992077515, "near_vtot": 256.64923755292045, "ovbur_max": 18.043360610512405, "ovbur_min": 0.0, "ovtot_max": 89.21193248743609, "ovtot_min": 0.040911558332282265, "pyr_alpha": 23.716543535937515, "qvbur_max": 18.835963014591762, "qvbur_min": 13.59080004641955, "qvtot_max": 89.21193248743609, "qvtot_min": 53.98109054473523, "cone_angle": 191.8347965952895, "p_int_area": 326.7379288038567, "p_int_atom": 28.723214363383658, "sasa_volume": 694.6986086014933, "EA_delta_SCC": 1.3002, "IP_delta_SCC": 6.4651, "HOMO_LUMO_gap": 3.849940786597, "sasa_volume_P": 15.832685969096637, "max_delta_qvbur": 7.588002427289135, "max_delta_qvtot": 55.926748521005194, "nucleophilicity": -6.0513, "p_int_atom_area": 15.39785741109535, "p_int_times_p_int_area": 6072.0571990165645, "global_electrophilicity_index": 1.4459, "p_int_atom_times_p_int_atom_area": 403.33117061658146}, "min_data": {"B1": 2.8861663316662254, "B5": 5.425447800242994, "lval": 5.850706172387799, "sasa": 409.00095428766093, "vbur": 50.97132813292685, "vtot": 247.849827632121, "alpha": 172.06151, "p_int": 18.316387121909717, "sasa_P": 5.90998324050384, "pyr_val": 0.8863162114895373, "dip_norm": 0.49845661797191537, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 50.97132813292684, "near_vtot": 237.53005001902636, "ovbur_max": 14.72142406400334, "ovbur_min": 0.0, "ovtot_max": 68.77505545591687, "ovtot_min": 0.0, "pyr_alpha": 14.1522341135954, "qvbur_max": 14.72142406400334, "qvbur_min": 9.81428270933556, "qvtot_max": 68.90926986953288, "qvtot_min": 27.359157495554523, "cone_angle": 155.6328611301341, "p_int_area": 296.0317798343788, "p_int_atom": 25.038858513427385, "sasa_volume": 655.1255957383149, "EA_delta_SCC": 1.0078, "IP_delta_SCC": 6.0513, "HOMO_LUMO_gap": 3.350958112165, "sasa_volume_P": 4.9315635052053715, "max_delta_qvbur": 2.2495921174605247, "max_delta_qvtot": 12.83024177255178, "nucleophilicity": -6.4651, "p_int_atom_area": 10.998469579353827, "p_int_times_p_int_area": 5498.333050622789, "global_electrophilicity_index": 1.255, "p_int_atom_times_p_int_atom_area": 301.13633080164874}, "boltzmann_averaged_data": {"B1": 3.846958235931521, "B5": 5.656519179218252, "lval": 7.714366616861437, "sasa": 426.9260069083292, "vbur": 58.52264986721138, "vtot": 250.41130256852176, "alpha": 172.16283840103407, "p_int": 18.645328768406472, "B1_std": 0.15801768395430532, "B5_std": 0.10186635296166349, "sasa_P": 7.243854390415725, "pyr_val": 0.9276227944615077, "dip_norm": 1.1160978024341182, "far_vbur": 0.10009618703589448, "far_vtot": 0.27744373344671625, "lval_std": 0.09432706519229708, "sasa_std": 2.887724562938983, "vbur_std": 0.7284237972288472, "vtot_std": 0.20710129114252315, "alpha_std": 0.010887163806561153, "near_vbur": 58.422553680175504, "near_vtot": 247.96914521591108, "ovbur_max": 16.39793258948252, "ovbur_min": 0.0, "ovtot_max": 80.63808014709554, "ovtot_min": 0.0, "p_int_std": 0.051208604557671504, "pyr_alpha": 18.62686110496996, "qvbur_max": 16.484294483981706, "qvbur_min": 12.428745359608673, "qvtot_max": 80.6387167952068, "qvtot_min": 45.138297427289395, "cone_angle": 177.6668772442123, "p_int_area": 310.2428991793908, "p_int_atom": 27.2278239047812, "sasa_P_std": 0.3629982418331553, "pyr_val_std": 0.003546377435273312, "sasa_volume": 674.9265584890979, "EA_delta_SCC": 1.1777370702242134, "IP_delta_SCC": 6.431636169170148, "dip_norm_std": 0.057281597925472744, "far_vbur_std": 0.25295157204462154, "far_vtot_std": 0.7167951509663085, "HOMO_LUMO_gap": 3.7855536666355203, "near_vbur_std": 0.5494083848255006, "near_vtot_std": 1.264661024754438, "ovbur_max_std": 0.22309388624921314, "ovbur_min_std": 0.0, "ovtot_max_std": 1.745579572817853, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.47036913010391923, "qvbur_max_std": 0.4293143478279194, "qvbur_min_std": 0.44105091094437027, "qvtot_max_std": 1.7435624910250092, "qvtot_min_std": 2.00331449794707, "sasa_volume_P": 6.590861813701258, "cone_angle_std": 2.8162066470486113, "p_int_area_std": 1.9910390563525113, "p_int_atom_std": 0.20060166445659094, "max_delta_qvbur": 3.0320011595808816, "max_delta_qvtot": 34.552002126158605, "nucleophilicity": -6.431636169170148, "p_int_atom_area": 11.863736102022468, "sasa_volume_std": 2.8528151610878494, "EA_delta_SCC_std": 0.015520855939640517, "IP_delta_SCC_std": 0.04041041002073464, "HOMO_LUMO_gap_std": 0.026233170613746, "sasa_volume_P_std": 0.3813738643493696, "max_delta_qvbur_std": 0.5611152117948447, "max_delta_qvtot_std": 3.7712820441840718, "nucleophilicity_std": 0.04041041002073464, "p_int_atom_area_std": 0.43895562915905467, "p_int_times_p_int_area": 5784.546572574843, "p_int_times_p_int_area_std": 34.976897641355116, "global_electrophilicity_index": 1.3776095285717143, "p_int_atom_times_p_int_atom_area": 323.08537182018296, "global_electrophilicity_index_std": 0.01159262479116535, "p_int_atom_times_p_int_atom_area_std": 13.87263185247713}} \\x00000000200800022000422000800b0008401410400100008020120811002006000100300000002005080020000000012600113040000801210600004a0000004200010000000210000400060000200180000040004000000c002400091040400000808000010000000400060000000410200080305084440001000040428080 \\x00000000022008802000010000001000000020002000000000000000000000000000000044000000000000010000020000008000100000000000000080000000 other (-5.188434600830078, -1.113085389137268, 5.432867527008057, 2.936253070831299) (1.1800029277801514, 6.674678802490234) -565 CSP(C)SC 140.21299743652344 {"max_data": {"pyr_P": 0.9281517218430889, "pyr_alpha": 18.64846591348591, "qpole_amp": 6.508478088624853, "vbur_vbur": 51.84863143657941, "vbur_vtot": 151.31128700577693, "sterimol_L": 7.076058507052145, "sterimol_B1": 2.939875961207762, "sterimol_B5": 5.111188165672887, "dipolemoment": 1.524280357883818, "qpoletens_xx": 4.2810581681465925, "qpoletens_yy": 0.5861078986884207, "qpoletens_zz": -3.5066202992626536, "sterimol_burL": 7.076058507052145, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.939875961207762, "sterimol_burB5": 5.111188165672887, "vbur_near_vbur": 51.84863143657941, "vbur_near_vtot": 150.89327568696433, "vbur_ovbur_max": 16.172823672237456, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 52.006283942637744, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.172823672237456, "vbur_qvbur_min": 9.967471357202545, "vbur_qvtot_max": 52.006283942637744, "vbur_qvtot_min": 24.43131427752371, "vbur_max_delta_qvbur": 6.414533245931082, "vbur_max_delta_qvtot": 28.111741923794213}, "min_data": {"pyr_P": 0.9251696653549174, "pyr_alpha": 17.502147277792034, "qpole_amp": 5.544795930262999, "vbur_vbur": 45.125556317576475, "vbur_vtot": 150.9929475430263, "sterimol_L": 5.795215620404319, "sterimol_B1": 2.907584117769077, "sterimol_B5": 5.0702728358122675, "dipolemoment": 1.1480947772473284, "qpoletens_xx": 4.233247938985549, "qpoletens_yy": -0.7266276397228957, "qpoletens_zz": -4.867166066835013, "sterimol_burL": 5.795215620404319, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.907584117769077, "sterimol_burB5": 5.0702728358122675, "vbur_near_vbur": 45.125556317576475, "vbur_near_vtot": 149.3174485071935, "vbur_ovbur_max": 13.971194374555257, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 51.293217068234355, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.971194374555257, "vbur_qvbur_min": 9.758290426306374, "vbur_qvtot_max": 51.293217068234355, "vbur_qvtot_min": 23.89454201884353, "vbur_max_delta_qvbur": 3.9723458777182863, "vbur_max_delta_qvtot": 26.861902790710644}, "delta_data": {"pyr_P": 0.002982056488171514, "pyr_alpha": 1.146318635693877, "qpole_amp": 0.9636821583618547, "vbur_vbur": 6.723075119002935, "vbur_vtot": 0.31833946275062885, "sterimol_L": 1.280842886647826, "sterimol_B1": 0.032291843438684964, "sterimol_B5": 0.04091532986061974, "dipolemoment": 0.37618558063648955, "qpoletens_xx": 0.04781022916104316, "qpoletens_yy": 1.3127355384113164, "qpoletens_zz": 1.3605457675723596, "sterimol_burL": 1.280842886647826, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.032291843438684964, "sterimol_burB5": 0.04091532986061974, "vbur_near_vbur": 6.723075119002935, "vbur_near_vtot": 1.5758271797708403, "vbur_ovbur_max": 2.2016292976821994, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 0.7130668744033883, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 2.2016292976821994, "vbur_qvbur_min": 0.20918093089617074, "vbur_qvtot_max": 0.7130668744033883, "vbur_qvtot_min": 0.5367722586801804, "vbur_max_delta_qvbur": 2.442187368212796, "vbur_max_delta_qvtot": 1.2498391330835688}, "vburminconf_data": {"pyr_P": 0.9251696653549174, "pyr_alpha": 18.64846591348591, "qpole_amp": 6.508478088624853, "vbur_vbur": 45.125556317576475, "vbur_vtot": 150.9929475430263, "sterimol_L": 7.076058507052145, "sterimol_B1": 2.907584117769077, "sterimol_B5": 5.0702728358122675, "dipolemoment": 1.1480947772473284, "qpoletens_xx": 4.2810581681465925, "qpoletens_yy": 0.5861078986884207, "qpoletens_zz": -4.867166066835013, "sterimol_burL": 7.076058507052145, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.907584117769077, "sterimol_burB5": 5.0702728358122675, "vbur_near_vbur": 45.125556317576475, "vbur_near_vtot": 149.3174485071935, "vbur_ovbur_max": 13.971194374555257, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 51.293217068234355, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.971194374555257, "vbur_qvbur_min": 9.967471357202545, "vbur_qvtot_max": 51.293217068234355, "vbur_qvtot_min": 24.43131427752371, "vbur_max_delta_qvbur": 3.9723458777182863, "vbur_max_delta_qvtot": 26.861902790710644}, "boltzmann_averaged_data": {"nbo_P": 0.521280558118129, "nmr_P": 183.45415322848567, "pyr_P": 0.9259602801394129, "fmo_mu": -0.12646748108778583, "vmin_r": 1.9114525663609783, "volume": 180.06830914263656, "Pint_dP": 3.2603735625565657, "fmo_eta": 0.22190706747509512, "fukui_m": 0.17704046865440715, "fukui_p": 0.32231795372040367, "nuesp_P": -54.14293396959976, "somo_ra": 0.09890482609975572, "somo_rc": -0.4437448064264467, "nbo_P_ra": 0.19896260439772534, "nbo_P_rc": 0.6983210267725362, "efg_amp_P": 1.8445051001008566, "fmo_omega": 0.03605192395458432, "pyr_alpha": 18.344549316091793, "qpole_amp": 6.252982807104395, "vbur_vbur": 46.90800497589008, "vbur_vtot": 151.07734697903206, "vmin_vmin": -0.032142142227514235, "E_solv_cds": -1.6165124013455612, "Pint_P_int": 17.453256200672783, "Pint_P_max": 29.71448275067879, "Pint_P_min": 12.505533878250771, "fmo_e_homo": -0.2374210148253334, "fmo_e_lumo": -0.01551394735023828, "nbo_lp_P_e": -0.3878705293116816, "sphericity": 0.8687838896632205, "sterimol_L": 6.736476300338006, "E_oxidation": 0.30222313867944467, "E_reduction": 0.04183943504906105, "sterimol_B1": 2.9161454609034214, "sterimol_B5": 5.081120472276775, "E_solv_total": -5.410795725650002, "dipolemoment": 1.2478306081898032, "efgtens_xx_P": -0.9610788162811044, "efgtens_yy_P": -0.5234245816109423, "efgtens_zz_P": 1.484503397892047, "nbo_bd_e_avg": -0.47848934968085644, "nbo_bd_e_max": -0.4673044857950583, "nbo_lp_P_occ": 1.965713534441064, "qpoletens_xx": 4.268382528307185, "qpoletens_yy": 0.23807018413900286, "qpoletens_zz": -4.506452712446188, "surface_area": 177.5209427566881, "E_solv_elstat": -3.794283324304441, "nbo_bds_e_avg": 0.1073095669485056, "nbo_bds_e_min": 0.07742702812847703, "nmrtens_sxx_P": 16.243886309123425, "nmrtens_syy_P": 251.18799905883736, "nmrtens_szz_P": 282.93064780509485, "spindens_P_ra": 0.47803849357225586, "spindens_P_rc": 0.23339583296866767, "sterimol_burL": 6.736476300338006, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.9747467846297493, "nbo_bd_occ_min": 1.9715301587935046, "sterimol_burB1": 2.9161454609034214, "sterimol_burB5": 5.081120472276775, "vbur_near_vbur": 46.90800497589008, "vbur_near_vtot": 149.73523813360677, "vbur_ovbur_max": 14.554899170098215, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 51.48226821983843, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 14.554899170098215, "vbur_qvbur_min": 9.912012469264972, "vbur_qvtot_max": 51.48226821983843, "vbur_qvtot_min": 24.28900306199079, "nbo_bds_occ_avg": 0.06787907089468317, "nbo_bds_occ_max": 0.08808799306702175, "nbo_lp_P_percent_s": 63.23434058610388, "vbur_max_delta_qvbur": 4.619828394389454, "vbur_max_delta_qvtot": 27.19326515784764, "vbur_ratio_vbur_vtot": 0.3104720138084681}} {"max_data": {"B1": 2.8104844845406234, "B5": 5.060282172798708, "lval": 6.740401979903046, "sasa": 301.33057676839803, "vbur": 61.811331600482745, "vtot": 149.82275722875573, "alpha": 104.502996, "p_int": 17.848505917497214, "sasa_P": 22.239936932115977, "pyr_val": 0.95080270100137, "dip_norm": 0.9885954683286788, "far_vbur": 2.506022307015612, "far_vtot": 2.0791144667121735, "near_vbur": 59.480148059072874, "near_vtot": 144.4181486320134, "ovbur_max": 20.15308171548834, "ovbur_min": 0.0, "ovtot_max": 53.25426973005331, "ovtot_min": 0.0, "pyr_alpha": 16.29668049528479, "qvbur_max": 22.472609339191163, "qvbur_min": 10.035745145769498, "qvtot_max": 53.45926905750005, "qvtot_min": 21.251596945312123, "cone_angle": 172.18241188471714, "p_int_area": 197.24325491871133, "p_int_atom": 22.959221362627506, "sasa_volume": 430.43410887400097, "EA_delta_SCC": 1.3533, "IP_delta_SCC": 6.648, "HOMO_LUMO_gap": 3.764202433841, "sasa_volume_P": 29.59043904308851, "max_delta_qvbur": 12.203745839280678, "max_delta_qvtot": 32.2575934836004, "nucleophilicity": -6.5926, "p_int_atom_area": 18.497426110731432, "p_int_times_p_int_area": 3520.4974026030304, "global_electrophilicity_index": 1.5114, "p_int_atom_times_p_int_atom_area": 397.12668016175104}, "min_data": {"B1": 2.7907713380582537, "B5": 4.983583094809667, "lval": 5.8413953318356775, "sasa": 295.37056012170734, "vbur": 53.337479427457865, "vtot": 149.51822306574454, "alpha": 104.491287, "p_int": 17.591332989568244, "sasa_P": 16.809952330434786, "pyr_val": 0.9429520301718768, "dip_norm": 0.6061369482220994, "far_vbur": 0.4196130374537769, "far_vtot": 0.159460505040985, "near_vbur": 52.917866390004086, "near_vtot": 143.55159472949958, "ovbur_max": 19.115705039560947, "ovbur_min": 0.0, "ovtot_max": 52.33431386606044, "ovtot_min": 0.0, "pyr_alpha": 14.882657616588698, "qvbur_max": 19.523662159307673, "qvbur_min": 9.965809639527201, "qvtot_max": 53.14759910304974, "qvtot_min": 21.029015674028848, "cone_angle": 156.6526049835788, "p_int_area": 189.8409939354438, "p_int_atom": 21.4692940403938, "sasa_volume": 422.78985632232394, "EA_delta_SCC": 1.1658, "IP_delta_SCC": 6.5926, "HOMO_LUMO_gap": 3.626491403434, "sasa_volume_P": 21.239239781855687, "max_delta_qvbur": 9.348046001053582, "max_delta_qvtot": 32.118583429020894, "nucleophilicity": -6.648, "p_int_atom_area": 16.3977182819457, "p_int_times_p_int_area": 3339.5561393889975, "global_electrophilicity_index": 1.3916, "p_int_atom_times_p_int_atom_area": 372.81861030016717}, "boltzmann_averaged_data": {"B1": 2.803462430491878, "B5": 5.023784355882145, "lval": 6.135453689346364, "sasa": 298.71156548887535, "vbur": 59.04086177764968, "vtot": 149.71213308418996, "alpha": 104.49620287909119, "p_int": 17.71843356022599, "B1_std": 0.008813118066880654, "B5_std": 0.03829543640602422, "sasa_P": 18.59507381693215, "pyr_val": 0.946444110558372, "dip_norm": 0.8624084585931213, "far_vbur": 1.754157860416235, "far_vtot": 1.3712952861720062, "lval_std": 0.41549157727727976, "sasa_std": 2.36253696110551, "vbur_std": 3.9182635636145937, "vtot_std": 0.13534283937086872, "alpha_std": 0.004150323668004206, "near_vbur": 57.28670391723345, "near_vtot": 144.11900457105878, "ovbur_max": 19.79288016141939, "ovbur_min": 0.0, "ovtot_max": 52.787933288615456, "ovtot_min": 0.0, "p_int_std": 0.12417935025209141, "pyr_alpha": 15.530723558378305, "qvbur_max": 21.01178405132588, "qvbur_min": 10.010404268491374, "qvtot_max": 53.34085558166486, "qvtot_min": 21.127587533169468, "cone_angle": 166.93889162362075, "p_int_area": 194.78928782992682, "p_int_atom": 22.38040245086396, "sasa_P_std": 2.504588977954011, "pyr_val_std": 0.0028092000185324572, "sasa_volume": 427.5149780857586, "EA_delta_SCC": 1.2850561324386756, "IP_delta_SCC": 6.634948522514773, "dip_norm_std": 0.17602485945465307, "far_vbur_std": 0.9189114084082398, "far_vtot_std": 0.8355001718273183, "HOMO_LUMO_gap": 3.6746861673843787, "near_vbur_std": 3.005079911035916, "near_vtot_std": 0.30838898537882886, "ovbur_max_std": 0.4655893297785297, "ovbur_min_std": 0.0, "ovtot_max_std": 0.4349608568078674, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.5483235246583436, "qvbur_max_std": 1.1009715214223377, "qvbur_min_std": 0.0247588026771122, "qvtot_max_std": 0.11003887573848764, "qvtot_min_std": 0.08786901139213396, "sasa_volume_P": 23.949328716565187, "cone_angle_std": 7.081610965078136, "p_int_area_std": 3.4017387288743466, "p_int_atom_std": 0.653296136908715, "max_delta_qvbur": 10.667448539627303, "max_delta_qvtot": 32.21326804849539, "nucleophilicity": -6.634948522514773, "p_int_atom_area": 17.11141583402664, "sasa_volume_std": 3.266416462521477, "EA_delta_SCC_std": 0.08328426460220752, "IP_delta_SCC_std": 0.021558071405800298, "HOMO_LUMO_gap_std": 0.06193640285303022, "sasa_volume_P_std": 3.874687219577187, "max_delta_qvbur_std": 1.0316068143647676, "max_delta_qvtot_std": 0.05264551394067432, "nucleophilicity_std": 0.021558071405800298, "p_int_atom_area_std": 0.9548726933527731, "p_int_times_p_int_area": 3451.6710521613063, "p_int_times_p_int_area_std": 79.57433342211823, "global_electrophilicity_index": 1.4665857931420687, "p_int_atom_times_p_int_atom_area": 382.3505708931342, "global_electrophilicity_index_std": 0.05285507020597655, "p_int_atom_times_p_int_atom_area_std": 10.241639048463725}} {"max_data": {"pyr_P": "0.9352071", "pyr_alpha": "19.524832", "qpole_amp": "5.6237803", "vbur_vbur": "50.801758", "sterimol_L": "6.890272", "sterimol_B1": "3.1525898", "sterimol_B5": "4.7641487", "dipolemoment": "1.8319627", "qpoletens_xx": "4.2529964", "qpoletens_yy": "1.7698588", "qpoletens_zz": "-2.872353", "sterimol_burL": "6.9479046", "vbur_far_vbur": "-0.45302683", "vbur_far_vtot": "-0.7657877", "sterimol_burB1": "3.053681", "sterimol_burB5": "4.6293526", "vbur_near_vbur": "50.6706", "vbur_near_vtot": "151.31213", "vbur_ovbur_max": "15.906253", "vbur_ovbur_min": "0.14649415", "vbur_ovtot_max": "46.4585", "vbur_ovtot_min": "0.047329217", "vbur_qvbur_max": "14.625134", "vbur_qvbur_min": "10.47141", "vbur_qvtot_max": "44.59356", "vbur_qvtot_min": "28.587702", "vbur_max_delta_qvbur": "4.267256", "vbur_max_delta_qvtot": "18.095827"}, "min_data": {"pyr_P": "0.9220047", "pyr_alpha": "17.272709", "qpole_amp": "4.6735725", "vbur_vbur": "43.02485", "sterimol_L": "5.629267", "sterimol_B1": "2.9417696", "sterimol_B5": "4.721647", "dipolemoment": "1.0219277", "qpoletens_xx": "3.3700614", "qpoletens_yy": "-0.4897703", "qpoletens_zz": "-4.428893", "sterimol_burL": "5.737882", "vbur_far_vbur": "0.10833606", "vbur_far_vtot": "-0.34097898", "sterimol_burB1": "2.901837", "sterimol_burB5": "4.8139553", "vbur_near_vbur": "43.895737", "vbur_near_vtot": "146.91457", "vbur_ovbur_max": "12.863499", "vbur_ovbur_min": "-0.015694363", "vbur_ovtot_max": "48.13292", "vbur_ovtot_min": "-0.01108034", "vbur_qvbur_max": "13.396791", "vbur_qvbur_min": "9.460414", "vbur_qvtot_max": "47.715828", "vbur_qvtot_min": "25.225227", "vbur_max_delta_qvbur": "3.4142635", "vbur_max_delta_qvtot": "22.777252"}, "delta_data": {"pyr_P": "0.0071767746", "pyr_alpha": "1.640518", "qpole_amp": "2.196229", "vbur_vbur": "6.439207", "sterimol_L": "1.1809068", "sterimol_B1": "0.18900594", "sterimol_B5": "0.40965202", "dipolemoment": "0.9232352", "qpoletens_xx": "0.76792383", "qpoletens_yy": "1.4435002", "qpoletens_zz": "1.9418364", "sterimol_burL": "1.3298684", "vbur_far_vbur": "-0.6344083", "vbur_far_vtot": "-0.83141464", "sterimol_burB1": "0.1153011", "sterimol_burB5": "0.13545378", "vbur_near_vbur": "6.196875", "vbur_near_vtot": "0.3627334", "vbur_ovbur_max": "2.8559034", "vbur_ovbur_min": "-0.08782629", "vbur_ovtot_max": "0.15127133", "vbur_ovtot_min": "-0.09317834", "vbur_qvbur_max": "3.7632372", "vbur_qvbur_min": "0.5684633", "vbur_qvtot_max": "1.9964036", "vbur_qvtot_min": "1.8688186", "vbur_max_delta_qvbur": "2.430084", "vbur_max_delta_qvtot": "2.879224"}, "vburminconf_data": {"pyr_P": "0.9180926", "pyr_alpha": "19.807188", "qpole_amp": "5.6080694", "vbur_vbur": "43.65878", "sterimol_L": "7.1933737", "sterimol_B1": "2.9196854", "sterimol_B5": "4.652733", "dipolemoment": "1.3006531", "qpoletens_xx": "3.7946415", "qpoletens_yy": "0.4137943", "qpoletens_zz": "-3.3251338", "sterimol_burL": "7.0788264", "vbur_far_vbur": "0.16524313", "vbur_far_vtot": "-2.1947517", "sterimol_burB1": "2.908162", "sterimol_burB5": "4.694997", "vbur_near_vbur": "43.876225", "vbur_near_vtot": "148.5781", "vbur_ovbur_max": "13.242422", "vbur_ovbur_min": "0.00020106364", "vbur_ovtot_max": "46.530365", "vbur_ovtot_min": "-0.007883161", "vbur_qvbur_max": "13.646639", "vbur_qvbur_min": "9.813173", "vbur_qvtot_max": "47.310066", "vbur_qvtot_min": "5.830976", "vbur_max_delta_qvbur": "2.7519848", "vbur_max_delta_qvtot": "11.820151"}, "boltzmann_averaged_data": {"nbo_P": "0.5203", "nmr_P": "178.53162", "pyr_P": "0.93126094", "fmo_mu": "-0.12709677", "vmin_r": "1.915325", "volume": "180.52618", "Pint_dP": "3.2605023", "fmo_eta": "0.22507738", "fukui_m": "0.18707058", "fukui_p": "0.35864303", "nuesp_P": "-54.143196", "somo_ra": "0.101250336", "somo_rc": "-0.4475336", "nbo_P_ra": "0.17368491", "nbo_P_rc": "0.69304943", "efg_amp_P": "1.9010621", "fmo_omega": "0.036032613", "pyr_alpha": "18.51165", "qpole_amp": "5.614797", "vbur_vbur": "46.49842", "vbur_vtot": "150.98964", "vmin_vmin": "-0.031301968", "E_solv_cds": "-1.5049746", "Pint_P_int": "17.536983", "Pint_P_max": "29.415295", "Pint_P_min": "12.33193", "fmo_e_homo": "-0.24045433", "fmo_e_lumo": "-0.013951949", "nbo_lp_P_e": "-0.38861337", "sphericity": "0.8766573", "sterimol_L": "6.3945065", "E_oxidation": "0.30667645", "E_reduction": "0.04483827", "sterimol_B1": "3.0517626", "sterimol_B5": "4.7607365", "E_solv_total": "-5.39864", "dipolemoment": "0.95139676", "efgtens_xx_P": "-0.93974704", "efgtens_yy_P": "-0.5183117", "efgtens_zz_P": "1.4599011", "nbo_bd_e_avg": "-0.47876704", "nbo_bd_e_max": "-0.4652136", "nbo_lp_P_occ": "1.967593", "qpoletens_xx": "4.049364", "qpoletens_yy": "-0.0068407953", "qpoletens_zz": "-3.8980286", "surface_area": "176.06903", "E_solv_elstat": "-3.697535", "nbo_bds_e_avg": "0.10258195", "nbo_bds_e_min": "0.07891173", "nmrtens_sxx_P": "12.352381", "nmrtens_syy_P": "226.58853", "nmrtens_szz_P": "285.23514", "spindens_P_ra": "0.55142903", "spindens_P_rc": "0.21552688", "sterimol_burL": "6.5666366", "vbur_far_vbur": "-0.2470022", "vbur_far_vtot": "-0.5156966", "nbo_bd_occ_avg": "1.9749075", "nbo_bd_occ_min": "1.9721959", "sterimol_burB1": "2.9917884", "sterimol_burB5": "4.6891055", "vbur_near_vbur": "47.129215", "vbur_near_vtot": "147.8672", "vbur_ovbur_max": "14.309788", "vbur_ovbur_min": "0.020834347", "vbur_ovtot_max": "46.069195", "vbur_ovtot_min": "-0.07415822", "vbur_qvbur_max": "13.897324", "vbur_qvbur_min": "9.781888", "vbur_qvtot_max": "47.145557", "vbur_qvtot_min": "25.290981", "nbo_bds_occ_avg": "0.06625645", "nbo_bds_occ_max": "0.08445283", "nbo_lp_P_percent_s": "63.3013", "vbur_max_delta_qvbur": "4.165315", "vbur_max_delta_qvtot": "27.274261", "vbur_ratio_vbur_vtot": "0.32886234"}} CSP(C)SC {"max_data": {"B1": 2.941465830025423, "B5": 5.058212776658555, "lval": 7.011082716309083, "sasa": 306.6506091114276, "vbur": 50.76152161419996, "vtot": 149.4220735084903, "alpha": 104.497663, "p_int": 17.812399361701324, "sasa_P": 22.189937073905288, "pyr_val": 0.9466437895298632, "dip_norm": 1.7373468277807975, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 50.76152161419995, "near_vtot": 149.40299863661264, "ovbur_max": 16.213381530505657, "ovbur_min": 0.0, "ovtot_max": 53.883149467826826, "ovtot_min": 0.0, "pyr_alpha": 19.115150929615805, "qvbur_max": 16.213381530505657, "qvbur_min": 9.907530050991953, "qvtot_max": 53.883149467826826, "qvtot_min": 26.004790059017022, "cone_angle": 164.17071577267527, "p_int_area": 200.04349171399312, "p_int_atom": 23.39824075727728, "sasa_volume": 434.2919593685547, "EA_delta_SCC": 1.5217, "IP_delta_SCC": 6.6276, "HOMO_LUMO_gap": 3.88446308301, "sasa_volume_P": 18.955280304584583, "max_delta_qvbur": 5.956173948302222, "max_delta_qvtot": 29.653092749065888, "nucleophilicity": -6.3338, "p_int_atom_area": 18.09748176239129, "p_int_times_p_int_area": 3563.2545641188353, "global_electrophilicity_index": 1.603, "p_int_atom_times_p_int_atom_area": 389.72485247085797}, "min_data": {"B1": 2.739358625844919, "B5": 4.937621988864608, "lval": 5.681490676571129, "sasa": 295.0205577627894, "vbur": 45.13171336169512, "vtot": 149.1035303427659, "alpha": 104.476983, "p_int": 17.612569491117572, "sasa_P": 14.389959193037274, "pyr_val": 0.9230867893463509, "dip_norm": 0.6178681089035103, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 45.13171336169512, "near_vtot": 144.61286176275036, "ovbur_max": 13.847230235974637, "ovbur_min": 0.0, "ovtot_max": 51.2338685610366, "ovtot_min": 0.0, "pyr_alpha": 15.822843318652563, "qvbur_max": 13.847230235974637, "qvbur_min": 9.651099861436869, "qvtot_max": 51.2338685610366, "qvtot_min": 22.3128252638372, "cone_angle": 137.2565798354093, "p_int_area": 189.83956895144132, "p_int_atom": 21.534755917298526, "sasa_volume": 421.6714596852856, "EA_delta_SCC": 1.076, "IP_delta_SCC": 6.3338, "HOMO_LUMO_gap": 3.538866480021, "sasa_volume_P": 11.600505906667166, "max_delta_qvbur": 4.137850786002522, "max_delta_qvtot": 25.708342013630837, "nucleophilicity": -6.6276, "p_int_atom_area": 15.697815672350456, "p_int_times_p_int_area": 3343.562600321066, "global_electrophilicity_index": 1.3312, "p_int_atom_times_p_int_atom_area": 352.7167427966229}, "boltzmann_averaged_data": {"B1": 2.9098162792740885, "B5": 5.046437597801344, "lval": 5.792229122582363, "sasa": 303.5857420884678, "vbur": 50.33691604744002, "vtot": 149.36674981687503, "alpha": 104.49456453966462, "p_int": 17.72525029347356, "B1_std": 0.01200421612225449, "B5_std": 0.012040241588519308, "sasa_P": 15.291717218231275, "pyr_val": 0.9386925338717248, "dip_norm": 1.0047615310898292, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.3065920176064955, "sasa_std": 2.6126367135147013, "vbur_std": 0.9357789260634951, "vtot_std": 0.07695730189188787, "alpha_std": 0.0037642440451575894, "near_vbur": 50.33691604744002, "near_vtot": 147.89218048661218, "ovbur_max": 15.762723849481478, "ovbur_min": 0.0, "ovtot_max": 53.01984166323303, "ovtot_min": 0.0, "p_int_std": 0.08799301924192274, "pyr_alpha": 16.778241429792356, "qvbur_max": 15.762723849481478, "qvbur_min": 9.769215087960763, "qvtot_max": 53.01984166323303, "qvtot_min": 22.93711242943205, "cone_angle": 154.02072179814732, "p_int_area": 198.96143712266826, "p_int_atom": 23.20918675547052, "sasa_P_std": 1.3377994732561969, "pyr_val_std": 0.00473861178359754, "sasa_volume": 431.9412287402694, "EA_delta_SCC": 1.272136511634884, "IP_delta_SCC": 6.545221768782313, "dip_norm_std": 0.09854102009494585, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.7908273294044434, "near_vbur_std": 0.935778926063492, "near_vtot_std": 0.4735093285252543, "ovbur_max_std": 0.22112693847284878, "ovbur_min_std": 0.0, "ovtot_max_std": 0.7774240266238833, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.6097881957030492, "qvbur_max_std": 0.22112693847284878, "qvbur_min_std": 0.02553813943175701, "qvtot_max_std": 0.7774240266238833, "qvtot_min_std": 0.1302524303325825, "sasa_volume_P": 12.439795620294477, "cone_angle_std": 3.489588342827567, "p_int_area_std": 1.9244613420292556, "p_int_atom_std": 0.34682803334718487, "max_delta_qvbur": 5.798844643740578, "max_delta_qvtot": 29.07109822175632, "nucleophilicity": -6.545221768782313, "p_int_atom_area": 16.283981245813354, "sasa_volume_std": 2.4989624692242263, "EA_delta_SCC_std": 0.05330029553831896, "IP_delta_SCC_std": 0.08946064116667272, "HOMO_LUMO_gap_std": 0.054566410525785286, "sasa_volume_P_std": 1.3428395669658204, "max_delta_qvbur_std": 0.02871531075729944, "max_delta_qvtot_std": 0.41833278751590586, "nucleophilicity_std": 0.08946064116667272, "p_int_atom_area_std": 0.42722983431812467, "p_int_times_p_int_area": 3526.6981813643483, "p_int_times_p_int_area_std": 43.29104758117304, "global_electrophilicity_index": 1.4492554754452456, "p_int_atom_times_p_int_atom_area": 377.829929891238, "global_electrophilicity_index_std": 0.02896071431119172, "p_int_atom_times_p_int_atom_area_std": 6.755005799994459}} \\x0000000000000000000040000200000000000400010100400000040000000000000000000000000000080000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000004000000000041000002001000000000000000000000004010000010004480000001000000008000 \\x10000000222000000000000000001000000000000000000080000000000400200000000000000000000000000000000000040000000000000000000000000000 other (-12.89738941192627, 0.5110043287277222, 1.2645362615585327, 1.2241554260253906) (0.559112548828125, 6.675871849060059) -586 c1ccc(SP(Sc2ccccc2)Sc2ccccc2)cc1 358.4930114746094 {"max_data": {"pyr_P": 0.9507759805710744, "pyr_alpha": 24.674819104140052, "qpole_amp": 20.08657408134136, "vbur_vbur": 86.60195129566924, "vbur_vtot": 383.7571454947406, "sterimol_L": 10.310017446892944, "sterimol_B1": 4.979202866720991, "sterimol_B5": 7.618286824261127, "dipolemoment": 3.736682712580872, "qpoletens_xx": 12.488142735563319, "qpoletens_yy": 3.2948627916063167, "qpoletens_zz": -4.286853987098273, "sterimol_burL": 8.022533141241592, "vbur_far_vbur": 14.714832583891145, "vbur_far_vtot": 70.7516810126819, "sterimol_burB1": 4.979202866720991, "sterimol_burB5": 7.223381697214213, "vbur_near_vbur": 71.8871187117781, "vbur_near_vtot": 367.8138328813993, "vbur_ovbur_max": 21.509029219398776, "vbur_ovbur_min": 1.1034294104773017, "vbur_ovtot_max": 175.96280377168276, "vbur_ovtot_min": 9.666421698555169, "vbur_qvbur_max": 28.79270923320345, "vbur_qvbur_min": 16.743887613584, "vbur_qvtot_max": 181.77854384622026, "vbur_qvtot_min": 79.68216898568332, "vbur_max_delta_qvbur": 16.803504178889412, "vbur_max_delta_qvtot": 130.21096838378043}, "min_data": {"pyr_P": 0.8756947114963386, "pyr_alpha": 15.258355709487972, "qpole_amp": 7.63388982413737, "vbur_vbur": 52.6958142067089, "vbur_vtot": 377.80215559600936, "sterimol_L": 5.499501888424853, "sterimol_B1": 2.8071284140789574, "sterimol_B5": 6.8484162236866934, "dipolemoment": 0.4843494447945971, "qpoletens_xx": 3.198626040524358, "qpoletens_yy": -2.820938924910437, "qpoletens_zz": -15.56120654421129, "sterimol_burL": 5.499501888424853, "vbur_far_vbur": 0.7907039187875261, "vbur_far_vtot": 5.815740074537498, "sterimol_burB1": 2.8071284140789574, "sterimol_burB5": 6.8484162236866934, "vbur_near_vbur": 51.25560349748876, "vbur_near_vtot": 312.2335549463211, "vbur_ovbur_max": 18.169455657641407, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 94.3756605289484, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 18.571083044962055, "vbur_qvbur_min": 9.806402040412493, "vbur_qvtot_max": 116.35620967946286, "vbur_qvtot_min": 27.896891822035805, "vbur_max_delta_qvbur": 3.586407060214853, "vbur_max_delta_qvtot": 36.547522191497336}, "delta_data": {"pyr_P": 0.07508126907473578, "pyr_alpha": 9.41646339465208, "qpole_amp": 12.452684257203991, "vbur_vbur": 33.906137088960335, "vbur_vtot": 5.954989898731242, "sterimol_L": 4.810515558468091, "sterimol_B1": 2.1720744526420335, "sterimol_B5": 0.7698706005744338, "dipolemoment": 3.252333267786275, "qpoletens_xx": 9.28951669503896, "qpoletens_yy": 6.115801716516754, "qpoletens_zz": 11.274352557113016, "sterimol_burL": 2.5230312528167387, "vbur_far_vbur": 13.924128665103618, "vbur_far_vtot": 64.9359409381444, "sterimol_burB1": 2.1720744526420335, "sterimol_burB5": 0.37496547352751985, "vbur_near_vbur": 20.631515214289344, "vbur_near_vtot": 55.58027793507824, "vbur_ovbur_max": 3.339573561757369, "vbur_ovbur_min": 1.1034294104773017, "vbur_ovtot_max": 81.58714324273436, "vbur_ovtot_min": 9.666421698555169, "vbur_qvbur_max": 10.221626188241395, "vbur_qvbur_min": 6.937485573171507, "vbur_qvtot_max": 65.4223341667574, "vbur_qvtot_min": 51.785277163647514, "vbur_max_delta_qvbur": 13.217097118674559, "vbur_max_delta_qvtot": 93.66344619228309}, "vburminconf_data": {"pyr_P": 0.8988448013501394, "pyr_alpha": 22.111130088784538, "qpole_amp": 10.979150690230847, "vbur_vbur": 52.6958142067089, "vbur_vtot": 377.80215559600936, "sterimol_L": 10.310017446892944, "sterimol_B1": 3.3117086999896888, "sterimol_B5": 7.618286824261127, "dipolemoment": 3.46625547599021, "qpoletens_xx": 7.783789354361423, "qpoletens_yy": -0.04087631722925611, "qpoletens_zz": -7.742913037132167, "sterimol_burL": 7.929625897587317, "vbur_far_vbur": 1.4402107092201368, "vbur_far_vtot": 5.815740074537498, "sterimol_burB1": 3.3117086999896888, "sterimol_burB5": 7.223381697214213, "vbur_near_vbur": 51.25560349748876, "vbur_near_vtot": 367.8138328813993, "vbur_ovbur_max": 18.782355785167187, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 175.96280377168276, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 20.222566494387323, "vbur_qvbur_min": 9.975838594438391, "vbur_qvtot_max": 181.77854384622026, "vbur_qvtot_min": 51.56757546243982, "vbur_max_delta_qvbur": 10.153642385700135, "vbur_max_delta_qvtot": 130.21096838378043}, "boltzmann_averaged_data": {"nbo_P": 0.43072868789713026, "nmr_P": 88.94121732287407, "pyr_P": 0.9415137189848345, "fmo_mu": -0.14103775700302834, "vmin_r": 2.08830650919416, "volume": 431.13508755667243, "Pint_dP": 4.339779577976545, "fmo_eta": 0.1825248899033088, "fukui_m": 0.10033001869396659, "fukui_p": 0.09160392963184677, "nuesp_P": -54.120545382995324, "somo_ra": 0.03221648950473499, "somo_rc": -0.3819192999910675, "nbo_P_ra": 0.3391247582652836, "nbo_P_rc": 0.531058706591097, "efg_amp_P": 1.4731278926637854, "fmo_omega": 0.054499483131545456, "pyr_alpha": 16.49303355777174, "qpole_amp": 9.156784495060437, "vbur_vbur": 76.02458113722825, "vbur_vtot": 383.1659896394418, "vmin_vmin": -0.026308892180927638, "E_solv_cds": -10.131361032715944, "Pint_P_int": 20.52805199854888, "Pint_P_max": 36.12881458525815, "Pint_P_min": 13.476488845503269, "fmo_e_homo": -0.23230020195468276, "fmo_e_lumo": -0.04977531205137395, "nbo_lp_P_e": -0.43278302757922227, "sphericity": 0.7309860160289592, "sterimol_L": 6.527537401541385, "E_oxidation": 0.2794784926281073, "E_reduction": -0.008740896825149183, "sterimol_B1": 4.354588767010785, "sterimol_B5": 6.9865451348892105, "E_solv_total": -17.901544303314825, "dipolemoment": 3.1118497799740887, "efgtens_xx_P": -0.6106087349303119, "efgtens_yy_P": -0.5920535587298321, "efgtens_zz_P": 1.2026622268480482, "nbo_bd_e_avg": -0.47038547616177495, "nbo_bd_e_max": -0.4686533395032611, "nbo_lp_P_occ": 1.9830046725820252, "qpoletens_xx": 5.035673170382931, "qpoletens_yy": 1.9468892536062161, "qpoletens_zz": -6.9825624239891475, "surface_area": 377.7601422720929, "E_solv_elstat": -7.7701832705988805, "nbo_bds_e_avg": 0.05536550133497085, "nbo_bds_e_min": 0.05396919759118062, "nmrtens_sxx_P": 29.34517248061967, "nmrtens_syy_P": 72.56319866273002, "nmrtens_szz_P": 164.9151634157892, "spindens_P_ra": 0.20216892888883958, "spindens_P_rc": 0.16844706846031748, "sterimol_burL": 6.001846207632202, "vbur_far_vbur": 9.047377198464822, "vbur_far_vtot": 60.43051730953155, "nbo_bd_occ_avg": 1.9560437352495335, "nbo_bd_occ_min": 1.9548048877265465, "sterimol_burB1": 4.354322922497267, "sterimol_burB5": 6.921285389208071, "vbur_near_vbur": 66.97720393876345, "vbur_near_vtot": 322.33018661054564, "vbur_ovbur_max": 19.712532074723576, "vbur_ovbur_min": 0.7217771129888683, "vbur_ovtot_max": 100.79985826110722, "vbur_ovtot_min": 6.223936670001566, "vbur_qvbur_max": 23.514995740150102, "vbur_qvbur_min": 14.573097554221683, "vbur_qvtot_max": 123.12912156769467, "vbur_qvtot_min": 66.06390390160685, "nbo_bds_occ_avg": 0.08898395386494146, "nbo_bds_occ_max": 0.09811665807141996, "nbo_lp_P_percent_s": 72.67327067465254, "vbur_max_delta_qvbur": 7.074244133488442, "vbur_max_delta_qvtot": 53.26388396606628, "vbur_ratio_vbur_vtot": 0.19838630383562722}} {"max_data": {"B1": 4.798392108923568, "B5": 7.531683136126036, "lval": 10.033894970421747, "sasa": 581.7844537002866, "vbur": 96.46437494354049, "vtot": 376.7864257583201, "alpha": 277.371953, "p_int": 22.710256311808084, "sasa_P": 16.379953549822826, "pyr_val": 0.9529054732765844, "dip_norm": 2.2799004364226083, "far_vbur": 21.202114309122784, "far_vtot": 84.14363446746047, "near_vbur": 76.84746544257642, "near_vtot": 363.4836163094265, "ovbur_max": 22.37936199753477, "ovbur_min": 2.377807212238069, "ovtot_max": 171.22598273645667, "ovtot_min": 9.506028372050665, "pyr_alpha": 24.879786808763324, "qvbur_max": 34.57145191910839, "qvbur_min": 19.348823393701934, "qvtot_max": 186.7933525000015, "qvtot_min": 62.742525429813426, "cone_angle": 245.8986939952797, "p_int_area": 416.3765666953533, "p_int_atom": 37.66963279348549, "sasa_volume": 937.4633339185102, "EA_delta_SCC": 1.6838, "IP_delta_SCC": 6.4642, "HOMO_LUMO_gap": 3.314322208975, "sasa_volume_P": 26.202507864733466, "max_delta_qvbur": 21.959748960080994, "max_delta_qvtot": 135.63535337628625, "nucleophilicity": -6.2269, "p_int_atom_area": 15.29787132401032, "p_int_times_p_int_area": 9113.753160912602, "global_electrophilicity_index": 1.7277, "p_int_atom_times_p_int_atom_area": 413.4929805096888}, "min_data": {"B1": 2.7389779404896375, "B5": 6.982183455571693, "lval": 5.307369126754063, "sasa": 497.0723845517147, "vbur": 59.77154600174911, "vtot": 367.8981501769982, "alpha": 277.252429, "p_int": 21.682743154192465, "sasa_P": 0.039999886568559934, "pyr_val": 0.8756747109792596, "dip_norm": 0.11300442469213319, "far_vbur": 2.3894631299451183, "far_vtot": 7.357039139216204, "near_vbur": 56.88087841040087, "near_vtot": 287.10498534806, "ovbur_max": 19.79174826656981, "ovbur_min": 0.0, "ovtot_max": 91.99029942258694, "ovtot_min": 0.0, "pyr_alpha": 14.908489515415027, "qvbur_max": 21.575103675748363, "qvbur_min": 10.9099389737982, "qvtot_max": 113.56454368017768, "qvtot_min": 25.463812897270635, "cone_angle": 170.14005281401265, "p_int_area": 369.991326956728, "p_int_atom": 26.025701157486193, "sasa_volume": 854.9098649703743, "EA_delta_SCC": 1.4353, "IP_delta_SCC": 6.2269, "HOMO_LUMO_gap": 2.974186828355, "sasa_volume_P": 0.03805444127171357, "max_delta_qvbur": 4.977076860910074, "max_delta_qvtot": 38.77965965805255, "nucleophilicity": -6.4642, "p_int_atom_area": 6.999026095952432, "p_int_times_p_int_area": 8299.752942363159, "global_electrophilicity_index": 1.5416, "p_int_atom_times_p_int_atom_area": 226.97365600390276}, "boltzmann_averaged_data": {"B1": 2.914883353269371, "B5": 7.247320969968639, "lval": 6.426822348042297, "sasa": 527.1455055268523, "vbur": 89.57296880089584, "vtot": 371.38991281568644, "alpha": 277.28146720666405, "p_int": 22.359116402183037, "B1_std": 0.19613137816432855, "B5_std": 0.10324946392071753, "sasa_P": 4.040842058073896, "pyr_val": 0.9418936703121459, "dip_norm": 1.979515190144313, "far_vbur": 17.561490789298656, "far_vtot": 60.813376051400844, "lval_std": 1.4818875142117804, "sasa_std": 5.656691250126713, "vbur_std": 5.939721896978242, "vtot_std": 0.9248729225376365, "alpha_std": 0.01647618991361276, "near_vbur": 72.0114780115972, "near_vtot": 308.43524067366116, "ovbur_max": 22.28559082846007, "ovbur_min": 0.004003771248619357, "ovtot_max": 125.95608590911763, "ovtot_min": 0.015063854272460361, "p_int_std": 0.147505641730322, "pyr_alpha": 16.4561720238459, "qvbur_max": 32.77625071352577, "qvbur_min": 11.339098165658783, "qvtot_max": 165.74505140895468, "qvtot_min": 31.358005301514034, "cone_angle": 225.89115037393387, "p_int_area": 392.46955618260796, "p_int_atom": 31.563954447297142, "sasa_P_std": 2.6552801392533154, "pyr_val_std": 0.006213862060669236, "sasa_volume": 886.2129997057175, "EA_delta_SCC": 1.564598501970039, "IP_delta_SCC": 6.313147508950179, "dip_norm_std": 0.2862181682955866, "far_vbur_std": 3.1737113068984613, "far_vtot_std": 9.655167324846367, "HOMO_LUMO_gap": 3.1533761591146496, "near_vbur_std": 3.401635195469276, "near_vtot_std": 8.3582276174389, "ovbur_max_std": 0.3234839952843485, "ovbur_min_std": 0.030959537874124577, "ovtot_max_std": 7.049068580350754, "ovtot_min_std": 0.08990311337443098, "pyr_alpha_std": 0.9179902131412977, "qvbur_max_std": 1.747574008236472, "qvbur_min_std": 0.33008783893634935, "qvtot_max_std": 4.540368941552599, "qvtot_min_std": 7.5335476936107355, "sasa_volume_P": 5.194520469076317, "cone_angle_std": 13.75762168765433, "p_int_area_std": 4.116416702532149, "p_int_atom_std": 1.4471407815116215, "max_delta_qvbur": 19.385404824344, "max_delta_qvtot": 122.12308725299488, "nucleophilicity": -6.313147508950179, "p_int_atom_area": 8.412971630384789, "sasa_volume_std": 5.22852758738244, "EA_delta_SCC_std": 0.049669128430065435, "IP_delta_SCC_std": 0.02265667576772752, "HOMO_LUMO_gap_std": 0.05190824419646884, "sasa_volume_P_std": 3.9538737842703275, "max_delta_qvbur_std": 1.71367756355135, "max_delta_qvtot_std": 8.81382403783977, "nucleophilicity_std": 0.02265667576772752, "p_int_atom_area_std": 1.5780620816678868, "p_int_times_p_int_area": 8775.583283313163, "p_int_times_p_int_area_std": 131.70379694425466, "global_electrophilicity_index": 1.6340806426128522, "p_int_atom_times_p_int_atom_area": 263.41817864014195, "global_electrophilicity_index_std": 0.037907607325349854, "p_int_atom_times_p_int_atom_area_std": 35.223058833325105}} {"max_data": {"pyr_P": "0.9548257", "pyr_alpha": "20.116512", "qpole_amp": "20.502464", "vbur_vbur": "78.38454", "sterimol_L": "10.175365", "sterimol_B1": "4.6233096", "sterimol_B5": "7.559294", "dipolemoment": "3.0504863", "qpoletens_xx": "13.19229", "qpoletens_yy": "4.8424044", "qpoletens_zz": "-5.571738", "sterimol_burL": "8.124496", "vbur_far_vbur": "9.529976", "vbur_far_vtot": "57.325005", "sterimol_burB1": "4.4408016", "sterimol_burB5": "7.250919", "vbur_near_vbur": "68.514175", "vbur_near_vtot": "362.6352", "vbur_ovbur_max": "20.301802", "vbur_ovbur_min": "-0.018868685", "vbur_ovtot_max": "137.02594", "vbur_ovtot_min": "0.71421003", "vbur_qvbur_max": "22.43799", "vbur_qvbur_min": "13.4863615", "vbur_qvtot_max": "161.85799", "vbur_qvtot_min": "61.290077", "vbur_max_delta_qvbur": "13.914501", "vbur_max_delta_qvtot": "123.86736"}, "min_data": {"pyr_P": "0.9104485", "pyr_alpha": "13.782735", "qpole_amp": "9.145254", "vbur_vbur": "50.52017", "sterimol_L": "6.10549", "sterimol_B1": "2.8579178", "sterimol_B5": "6.813385", "dipolemoment": "1.113348", "qpoletens_xx": "5.874504", "qpoletens_yy": "-2.3032854", "qpoletens_zz": "-14.859814", "sterimol_burL": "6.237437", "vbur_far_vbur": "0.9660527", "vbur_far_vtot": "0.48617345", "sterimol_burB1": "2.7467844", "sterimol_burB5": "6.4819837", "vbur_near_vbur": "51.78093", "vbur_near_vtot": "317.56232", "vbur_ovbur_max": "15.831994", "vbur_ovbur_min": "-0.0070104427", "vbur_ovtot_max": "101.59536", "vbur_ovtot_min": "-0.034699935", "vbur_qvbur_max": "15.99524", "vbur_qvbur_min": "9.839611", "vbur_qvtot_max": "116.21628", "vbur_qvtot_min": "32.863743", "vbur_max_delta_qvbur": "4.8535686", "vbur_max_delta_qvtot": "55.708256"}, "delta_data": {"pyr_P": "0.039437786", "pyr_alpha": "5.72402", "qpole_amp": "9.938105", "vbur_vbur": "25.370876", "sterimol_L": "4.4595857", "sterimol_B1": "1.6550789", "sterimol_B5": "0.12834333", "dipolemoment": "2.6455376", "qpoletens_xx": "7.7712483", "qpoletens_yy": "6.824608", "qpoletens_zz": "10.130792", "sterimol_burL": "1.9616205", "vbur_far_vbur": "8.837172", "vbur_far_vtot": "41.679394", "sterimol_burB1": "1.5873655", "sterimol_burB5": "0.39488193", "vbur_near_vbur": "13.951804", "vbur_near_vtot": "40.957554", "vbur_ovbur_max": "4.095889", "vbur_ovbur_min": "0.4132172", "vbur_ovtot_max": "37.262005", "vbur_ovtot_min": "2.3457482", "vbur_qvbur_max": "7.1397934", "vbur_qvbur_min": "4.6394076", "vbur_qvtot_max": "37.536526", "vbur_qvtot_min": "25.501293", "vbur_max_delta_qvbur": "6.344051", "vbur_max_delta_qvtot": "79.82517"}, "vburminconf_data": {"pyr_P": "0.9156447", "pyr_alpha": "19.20038", "qpole_amp": "9.412266", "vbur_vbur": "50.06603", "sterimol_L": "10.6680975", "sterimol_B1": "3.6458638", "sterimol_B5": "7.044849", "dipolemoment": "1.9165604", "qpoletens_xx": "6.450333", "qpoletens_yy": "-0.39512873", "qpoletens_zz": "-5.3616815", "sterimol_burL": "7.815608", "vbur_far_vbur": "0.23881467", "vbur_far_vtot": "1.5282983", "sterimol_burB1": "3.55961", "sterimol_burB5": "6.5279756", "vbur_near_vbur": "51.770645", "vbur_near_vtot": "357.18222", "vbur_ovbur_max": "15.920607", "vbur_ovbur_min": "-0.015190318", "vbur_ovtot_max": "127.89568", "vbur_ovtot_min": "-0.02734842", "vbur_qvbur_max": "16.075302", "vbur_qvbur_min": "10.5368185", "vbur_qvtot_max": "127.66304", "vbur_qvtot_min": "47.440514", "vbur_max_delta_qvbur": "6.2368374", "vbur_max_delta_qvtot": "76.1994"}, "boltzmann_averaged_data": {"nbo_P": "0.4662996", "nmr_P": "165.18321", "pyr_P": "0.9302381", "fmo_mu": "-0.13858858", "vmin_r": "2.0093052", "volume": "427.8861", "Pint_dP": "4.1284895", "fmo_eta": "0.18436693", "fukui_m": "0.06884316", "fukui_p": "0.13113916", "nuesp_P": "-54.118713", "somo_ra": "0.039360184", "somo_rc": "-0.37854737", "nbo_P_ra": "0.322487", "nbo_P_rc": "0.6588029", "efg_amp_P": "1.7281226", "fmo_omega": "0.05030135", "pyr_alpha": "17.615381", "qpole_amp": "13.200316", "vbur_vbur": "65.908325", "vbur_vtot": "380.8285", "vmin_vmin": "-0.021438073", "E_solv_cds": "-9.329615", "Pint_P_int": "20.333185", "Pint_P_max": "35.04902", "Pint_P_min": "13.36795", "fmo_e_homo": "-0.23290722", "fmo_e_lumo": "-0.04656558", "nbo_lp_P_e": "-0.41954616", "sphericity": "0.7624003", "sterimol_L": "8.065319", "E_oxidation": "0.27784255", "E_reduction": "-0.0020891717", "sterimol_B1": "3.7018967", "sterimol_B5": "7.422807", "E_solv_total": "-17.538774", "dipolemoment": "1.7436719", "efgtens_xx_P": "-0.7377505", "efgtens_yy_P": "-0.6421621", "efgtens_zz_P": "1.3768239", "nbo_bd_e_avg": "-0.4767919", "nbo_bd_e_max": "-0.46442702", "nbo_lp_P_occ": "1.9698026", "qpoletens_xx": "9.214018", "qpoletens_yy": "0.02163878", "qpoletens_zz": "-9.796137", "surface_area": "356.95828", "E_solv_elstat": "-7.849528", "nbo_bds_e_avg": "0.06568776", "nbo_bds_e_min": "0.05198486", "nmrtens_sxx_P": "121.61577", "nmrtens_syy_P": "165.54913", "nmrtens_szz_P": "280.70694", "spindens_P_ra": "0.18841772", "spindens_P_rc": "0.10925223", "sterimol_burL": "7.0003123", "vbur_far_vbur": "3.5329268", "vbur_far_vtot": "26.38078", "nbo_bd_occ_avg": "1.9557931", "nbo_bd_occ_min": "1.9472259", "sterimol_burB1": "3.6566699", "sterimol_burB5": "7.083135", "vbur_near_vbur": "62.437855", "vbur_near_vtot": "342.83484", "vbur_ovbur_max": "18.895987", "vbur_ovbur_min": "0.28247294", "vbur_ovtot_max": "119.40929", "vbur_ovtot_min": "0.89503765", "vbur_qvbur_max": "20.771803", "vbur_qvbur_min": "11.635837", "vbur_qvtot_max": "128.75484", "vbur_qvtot_min": "46.602306", "nbo_bds_occ_avg": "0.08459066", "nbo_bds_occ_max": "0.09424753", "nbo_lp_P_percent_s": "68.69133", "vbur_max_delta_qvbur": "8.316677", "vbur_max_delta_qvtot": "82.11251", "vbur_ratio_vbur_vtot": "0.1780205"}} c1ccc(SP(Sc2ccccc2)Sc2ccccc2)cc1 {"max_data": {"B1": 5.131897297476179, "B5": 7.663200409968738, "lval": 10.098053002945207, "sasa": 569.494182140292, "vbur": 83.44471486476635, "vtot": 377.0061299374853, "alpha": 277.339007, "p_int": 22.348067362965885, "sasa_P": 13.119962794485685, "pyr_val": 0.9391939197594598, "dip_norm": 2.5232821879448997, "far_vbur": 11.143057327939188, "far_vtot": 72.44526296840442, "near_vbur": 74.63284107823704, "near_vtot": 352.31403562636746, "ovbur_max": 20.86409269561835, "ovbur_min": 1.3404305363106763, "ovtot_max": 158.45791261094905, "ovtot_min": 10.689460249164561, "pyr_alpha": 21.6259141712886, "qvbur_max": 25.677986708629735, "qvbur_min": 19.02245769790455, "qvtot_max": 158.45791261094905, "qvtot_min": 77.20365090438031, "cone_angle": 226.63144796152926, "p_int_area": 414.671401932857, "p_int_atom": 35.08077617840013, "sasa_volume": 932.4780566903892, "EA_delta_SCC": 1.5476, "IP_delta_SCC": 6.5486, "HOMO_LUMO_gap": 3.326993892588, "sasa_volume_P": 14.155112241880463, "max_delta_qvbur": 13.089595585016431, "max_delta_qvtot": 126.66187935148176, "nucleophilicity": -6.2651, "p_int_atom_area": 15.897787846520524, "p_int_times_p_int_area": 9267.10442389099, "global_electrophilicity_index": 1.6333, "p_int_atom_times_p_int_atom_area": 512.1909824694674}, "min_data": {"B1": 2.998544030505064, "B5": 6.601895754330439, "lval": 5.430784297683115, "sasa": 530.4732721259074, "vbur": 60.08625577983944, "vtot": 371.02540323897557, "alpha": 277.219321, "p_int": 21.79451917761736, "sasa_P": 4.859986218079296, "pyr_val": 0.9045596120449569, "dip_norm": 0.20825225088819568, "far_vbur": 2.0747533518547856, "far_vtot": 20.552333747649136, "near_vbur": 57.941566921742364, "near_vtot": 295.90583152979536, "ovbur_max": 19.127360957268, "ovbur_min": 0.0, "ovtot_max": 87.82127294172437, "ovtot_min": 0.0, "pyr_alpha": 16.89760199018613, "qvbur_max": 20.817469024790157, "qvbur_min": 9.97746555723425, "qvtot_max": 109.45420897081104, "qvtot_min": 30.793969573437593, "cone_angle": 188.6160742223141, "p_int_area": 390.1761161850348, "p_int_atom": 28.225107378389055, "sasa_volume": 884.5705884835088, "EA_delta_SCC": 1.4554, "IP_delta_SCC": 6.2651, "HOMO_LUMO_gap": 3.117252252903, "sasa_volume_P": 3.405775835933215, "max_delta_qvbur": 3.053850439246933, "max_delta_qvtot": 26.74532517240175, "nucleophilicity": -6.5486, "p_int_atom_area": 11.098455666438857, "p_int_times_p_int_area": 8684.369482113992, "global_electrophilicity_index": 1.5491, "p_int_atom_times_p_int_atom_area": 378.1638179388888}, "boltzmann_averaged_data": {"B1": 4.614823594963795, "B5": 6.734593314738025, "lval": 5.46458731005161, "sasa": 563.0134581066781, "vbur": 80.3522227638761, "vtot": 376.6278359806412, "alpha": 277.2341445490445, "p_int": 21.914568999679634, "B1_std": 0.6287979985393822, "B5_std": 0.05977533357171266, "sasa_P": 6.01179343368627, "pyr_val": 0.9337064043426012, "dip_norm": 2.23749140614351, "far_vbur": 9.088936842162406, "far_vtot": 65.33070804795274, "lval_std": 0.28041326180215076, "sasa_std": 7.212702873214492, "vbur_std": 1.5893909388167062, "vtot_std": 0.29158969656093153, "alpha_std": 0.02419492456955054, "near_vbur": 71.2632859217137, "near_vtot": 308.5278120003262, "ovbur_max": 19.957558448605507, "ovbur_min": 1.0228429409166462, "ovtot_max": 89.91884518096214, "ovtot_min": 8.557032743369863, "p_int_std": 0.16212626778675882, "pyr_alpha": 17.797718552376224, "qvbur_max": 23.29288331454641, "qvbur_min": 16.828737080461885, "qvtot_max": 112.48142513728975, "qvtot_min": 67.04801824763352, "cone_angle": 222.58477454393622, "p_int_area": 411.0677617868952, "p_int_atom": 34.648031917795, "sasa_P_std": 0.6062258536524505, "pyr_val_std": 0.002107143618104404, "sasa_volume": 928.3104640849552, "EA_delta_SCC": 1.464238713612864, "IP_delta_SCC": 6.3374728072719275, "dip_norm_std": 0.15311651625262024, "far_vbur_std": 0.3451400933727501, "far_vtot_std": 4.2964997456571945, "HOMO_LUMO_gap": 3.1996094138982802, "near_vbur_std": 1.5417321441756957, "near_vtot_std": 6.593308171531299, "ovbur_max_std": 0.5989727306226142, "ovbur_min_std": 0.34930133621049964, "ovtot_max_std": 3.3166546608463165, "ovtot_min_std": 3.658540277836788, "pyr_alpha_std": 0.29303325983146994, "qvbur_max_std": 1.1559481952010142, "qvbur_min_std": 2.174052736384429, "qvtot_max_std": 3.3927516733666727, "qvtot_min_std": 16.075825663457493, "sasa_volume_P": 4.371520186888652, "cone_angle_std": 1.8067166926153284, "p_int_area_std": 3.5913549972833834, "p_int_atom_std": 0.3170857533113243, "max_delta_qvbur": 4.485449038847026, "max_delta_qvtot": 42.678565487959496, "nucleophilicity": -6.3374728072719275, "p_int_atom_area": 13.921015681892689, "sasa_volume_std": 7.073144433026459, "EA_delta_SCC_std": 0.010852375329884643, "IP_delta_SCC_std": 0.06703123447009014, "HOMO_LUMO_gap_std": 0.02634224945930706, "sasa_volume_P_std": 0.7363241021489231, "max_delta_qvbur_std": 2.3510072748226887, "max_delta_qvtot_std": 18.044686364753336, "nucleophilicity_std": 0.06703123447009014, "p_int_atom_area_std": 1.0437528272565126, "p_int_times_p_int_area": 9007.901981721496, "p_int_times_p_int_area_std": 46.55095851487007, "global_electrophilicity_index": 1.5612651013489864, "p_int_atom_times_p_int_atom_area": 482.3305171534042, "global_electrophilicity_index_std": 0.013042282942818548, "p_int_atom_times_p_int_atom_area_std": 36.13634302810182}} \\x140010004000000006044200a04004080000000002012240cc80900000300000800800004020800100040000180a48000000000209100004400000401000000010000800056008400800480180020800000000000800000102020008000000012000200500140000000402000200080000010112010080001000039000008000 \\x00000008002000000100000000001000000000000080004000004000000100000000000000080000000002001000900020000000010000000000000000000000 other (0.8920443058013916, -5.231318950653076, 0.6752277612686157, 2.1749913692474365) (5.183590412139893, 7.388850688934326) -587 c1ccc(SP(Sc2ccccc2)c2ccccc2)cc1 326.4259948730469 {"max_data": {"pyr_P": 0.9538729054915293, "pyr_alpha": 19.956494709567817, "qpole_amp": 20.87087775378372, "vbur_vbur": 69.0851401424239, "vbur_vtot": 356.3017976689698, "sterimol_L": 10.197392617743034, "sterimol_B1": 4.543474818843096, "sterimol_B5": 7.508867989610643, "dipolemoment": 3.1350153993575485, "qpoletens_xx": 13.328526657314146, "qpoletens_yy": 3.533719882692104, "qpoletens_zz": -6.332426109803388, "sterimol_burL": 8.098032611588582, "vbur_far_vbur": 6.53481228119638, "vbur_far_vtot": 44.8229314350053, "sterimol_burB1": 4.5296694098902615, "sterimol_burB5": 7.125799238461292, "vbur_near_vbur": 62.833768022591826, "vbur_near_vtot": 341.85470345101237, "vbur_ovbur_max": 21.055106599354087, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 136.1379434536877, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 25.207348077643076, "vbur_qvbur_min": 12.292517404113484, "vbur_qvtot_max": 154.5098930328921, "vbur_qvtot_min": 47.102531325968584, "vbur_max_delta_qvbur": 13.303907204996474, "vbur_max_delta_qvtot": 118.26203260306451}, "min_data": {"pyr_P": 0.9156069050797426, "pyr_alpha": 14.432496949176192, "qpole_amp": 11.86704021273254, "vbur_vbur": 52.717778204453, "vbur_vtot": 353.90932364527555, "sterimol_L": 6.081113546459745, "sterimol_B1": 2.959254627006407, "sterimol_B5": 7.042377577675238, "dipolemoment": 0.9336965809502513, "qpoletens_xx": 8.064864818458974, "qpoletens_yy": -3.4440015282013032, "qpoletens_zz": -15.859890113473957, "sterimol_burL": 6.081113546459745, "vbur_far_vbur": 0.017780379126174528, "vbur_far_vtot": 6.899981263058413, "sterimol_burB1": 2.959254627006407, "sterimol_burB5": 6.912093161937943, "vbur_near_vbur": 52.69999782532682, "vbur_near_vtot": 310.9457641940188, "vbur_ovbur_max": 16.30042404008412, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 106.9995948569511, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.318204419210296, "vbur_qvbur_min": 9.150619822052997, "vbur_qvtot_max": 115.49327159435617, "vbur_qvtot_min": 26.793268583561122, "vbur_max_delta_qvbur": 5.382225351958477, "vbur_max_delta_qvtot": 57.82181142471943}, "delta_data": {"pyr_P": 0.03826600041178663, "pyr_alpha": 5.523997760391625, "qpole_amp": 9.00383754105118, "vbur_vbur": 16.367361937970898, "vbur_vtot": 2.3924740236942625, "sterimol_L": 4.116279071283289, "sterimol_B1": 1.5842201918366894, "sterimol_B5": 0.4664904119354043, "dipolemoment": 2.201318818407297, "qpoletens_xx": 5.263661838855173, "qpoletens_yy": 6.977721410893407, "qpoletens_zz": 9.52746400367057, "sterimol_burL": 2.016919065128837, "vbur_far_vbur": 6.517031902070205, "vbur_far_vtot": 37.92295017194689, "sterimol_burB1": 1.5704147828838546, "sterimol_burB5": 0.2137060765233496, "vbur_near_vbur": 10.133770197265008, "vbur_near_vtot": 30.908939256993563, "vbur_ovbur_max": 4.754682559269966, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 29.138348596736606, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 8.88914365843278, "vbur_qvbur_min": 3.141897582060487, "vbur_qvtot_max": 39.016621438535935, "vbur_qvtot_min": 20.309262742407462, "vbur_max_delta_qvbur": 7.921681853037997, "vbur_max_delta_qvtot": 60.440221178345084}, "vburminconf_data": {"pyr_P": 0.9201642673420928, "pyr_alpha": 19.2919224587479, "qpole_amp": 14.624202373592103, "vbur_vbur": 52.717778204453, "vbur_vtot": 353.90932364527555, "sterimol_L": 10.197392617743034, "sterimol_B1": 3.713705248165721, "sterimol_B5": 7.363093291629958, "dipolemoment": 1.6312945741949547, "qpoletens_xx": 11.321934304605684, "qpoletens_yy": -2.3755447694830565, "qpoletens_zz": -8.946389535122627, "sterimol_burL": 7.921672626404229, "vbur_far_vbur": 0.017780379126174528, "vbur_far_vtot": 6.899981263058413, "sterimol_burB1": 3.713705248165721, "sterimol_burB5": 7.043580907723955, "vbur_near_vbur": 52.69999782532682, "vbur_near_vtot": 341.3640163840172, "vbur_ovbur_max": 16.30042404008412, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 117.09283873314585, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 16.318204419210296, "vbur_qvbur_min": 10.51343358684155, "vbur_qvtot_max": 123.98655203442101, "vbur_qvtot_min": 40.34709273080692, "vbur_max_delta_qvbur": 5.382225351958477, "vbur_max_delta_qvtot": 83.63945930361409}, "boltzmann_averaged_data": {"nbo_P": 0.5728725377513498, "nmr_P": 162.14877340737053, "pyr_P": 0.9334330623257647, "fmo_mu": -0.1397339196098823, "vmin_r": 1.9863346755906395, "volume": 400.1981217284258, "Pint_dP": 4.083892820357741, "fmo_eta": 0.1831827578445142, "fukui_m": 0.10554420096921062, "fukui_p": 0.13229250594843373, "nuesp_P": -54.136512571023964, "somo_ra": 0.03850578387477804, "somo_rc": -0.3808887035041271, "nbo_P_ra": 0.44058003180291616, "nbo_P_rc": 0.6784167387205605, "efg_amp_P": 1.8332354512425604, "fmo_omega": 0.05331953403296946, "pyr_alpha": 17.44039823605714, "qpole_amp": 15.315733059265288, "vbur_vbur": 60.674559328963724, "vbur_vtot": 354.8458760445547, "vmin_vmin": -0.02974470503145117, "E_solv_cds": -8.870368140902434, "Pint_P_int": 20.237208519761523, "Pint_P_max": 34.98117934469831, "Pint_P_min": 13.37360768374068, "fmo_e_homo": -0.2313252985321394, "fmo_e_lumo": -0.04814254068762518, "nbo_lp_P_e": -0.39149328149463447, "sphericity": 0.7607813347536322, "sterimol_L": 8.57780923824118, "E_oxidation": 0.2784350394725327, "E_reduction": -0.004606013310426891, "sterimol_B1": 3.5141273901204158, "sterimol_B5": 7.369938249993473, "E_solv_total": -16.294525269263755, "dipolemoment": 1.5940447194198297, "efgtens_xx_P": -0.9488242316205286, "efgtens_yy_P": -0.5280484607142997, "efgtens_zz_P": 1.4768723772298302, "nbo_bd_e_avg": -0.4756247793406821, "nbo_bd_e_max": -0.45826619722986806, "nbo_lp_P_occ": 1.9580362680743053, "qpoletens_xx": 10.767749722668881, "qpoletens_yy": -0.4628713345654292, "qpoletens_zz": -10.304878388103452, "surface_area": 345.3652004566812, "E_solv_elstat": -7.424157128361324, "nbo_bds_e_avg": 0.10875615557290783, "nbo_bds_e_min": 0.06507309119119208, "nmrtens_sxx_P": 36.02354907668665, "nmrtens_syy_P": 172.05780339893153, "nmrtens_szz_P": 278.365021459531, "spindens_P_ra": 0.2213347082504508, "spindens_P_rc": 0.1385627993956207, "sterimol_burL": 7.353030654161477, "vbur_far_vbur": 2.433893420509234, "vbur_far_vtot": 20.128984021229428, "nbo_bd_occ_avg": 1.9544617965996391, "nbo_bd_occ_min": 1.9436042611510138, "sterimol_burB1": 3.5133801132178593, "sterimol_burB5": 7.054632882220398, "vbur_near_vbur": 58.2406659084545, "vbur_near_vtot": 331.3183845805678, "vbur_ovbur_max": 18.616842239335394, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 117.96604338371515, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 20.510011479920227, "vbur_qvbur_min": 10.866136028482895, "vbur_qvtot_max": 128.72608865326947, "vbur_qvtot_min": 38.434427013741754, "nbo_bds_occ_avg": 0.0765385474745075, "nbo_bds_occ_max": 0.09771655603524856, "nbo_lp_P_percent_s": 64.46663007210068, "vbur_max_delta_qvbur": 8.73760182573022, "vbur_max_delta_qvtot": 85.93308279010225, "vbur_ratio_vbur_vtot": 0.17095721089611607}} {"max_data": {"B1": 4.500594188746879, "B5": 7.569521361293763, "lval": 9.886971919689072, "sasa": 558.8144010651899, "vbur": 86.81327508210362, "vtot": 350.3959082194052, "alpha": 257.558683, "p_int": 22.181761614447204, "sasa_P": 18.239948275260584, "pyr_val": 0.9642691220677125, "dip_norm": 2.2991846380836836, "far_vbur": 20.234673139437685, "far_vtot": 72.53444144431234, "near_vbur": 69.58582871108467, "near_vtot": 344.80168237669903, "ovbur_max": 22.402673832948867, "ovbur_min": 0.0, "ovtot_max": 165.73392147021252, "ovtot_min": 0.04082818235527443, "pyr_alpha": 19.729570815691265, "qvbur_max": 35.22418331070316, "qvbur_min": 13.77729472973234, "qvtot_max": 171.34511818426685, "qvtot_min": 54.42741490724469, "cone_angle": 243.19296059189898, "p_int_area": 390.1496461981523, "p_int_atom": 34.240917767567886, "sasa_volume": 888.9930731210256, "EA_delta_SCC": 1.7792, "IP_delta_SCC": 6.5078, "HOMO_LUMO_gap": 3.138801781068, "sasa_volume_P": 28.384528460130465, "max_delta_qvbur": 23.60323335677495, "max_delta_qvtot": 133.3843163052241, "nucleophilicity": -6.2941, "p_int_atom_area": 15.597829585265426, "p_int_times_p_int_area": 8488.51908562349, "global_electrophilicity_index": 1.8086, "p_int_atom_times_p_int_atom_area": 421.7239942221977}, "min_data": {"B1": 2.8517511893480276, "B5": 6.903274440384978, "lval": 6.6525665112247605, "sasa": 495.5032139691742, "vbur": 58.15137344046924, "vtot": 344.6614101174621, "alpha": 257.444872, "p_int": 21.122784777221433, "sasa_P": 0.5999982985283132, "pyr_val": 0.9197839259332916, "dip_norm": 0.8476945204494365, "far_vbur": 0.7576346509582083, "far_vtot": 2.342503090480374, "near_vbur": 56.2980825250484, "near_vtot": 264.81920850788634, "ovbur_max": 18.894242603127008, "ovbur_min": 0.0, "ovtot_max": 81.40641963622888, "ovtot_min": 0.0, "pyr_alpha": 12.894847614113358, "qvbur_max": 19.313855640580783, "qvbur_min": 10.15230432283999, "qvtot_max": 113.62332745781924, "qvtot_min": 27.033982663027377, "cone_angle": 162.66188365833116, "p_int_area": 366.06709744551836, "p_int_atom": 25.232215824858066, "sasa_volume": 828.7482329734765, "EA_delta_SCC": 1.4761, "IP_delta_SCC": 6.2941, "HOMO_LUMO_gap": 2.808885725275, "sasa_volume_P": 0.6394644804681338, "max_delta_qvbur": 7.6812497689455235, "max_delta_qvtot": 52.34394913462606, "nucleophilicity": -6.5078, "p_int_atom_area": 10.69851131809872, "p_int_times_p_int_area": 8028.396100383283, "global_electrophilicity_index": 1.5676, "p_int_atom_times_p_int_atom_area": 305.2091298396692}, "boltzmann_averaged_data": {"B1": 3.198174943601454, "B5": 7.129958816411599, "lval": 7.416668738029031, "sasa": 500.67877834508215, "vbur": 83.17280965390434, "vtot": 345.24647911934073, "alpha": 257.4550457392631, "p_int": 21.891523307928885, "B1_std": 0.1722655717484165, "B5_std": 0.06365550795781863, "sasa_P": 8.049054120691748, "pyr_val": 0.9520461770282823, "dip_norm": 0.9203767868859277, "far_vbur": 18.39780936963505, "far_vtot": 57.30455756092316, "lval_std": 0.8160386303752176, "sasa_std": 6.007132333797853, "vbur_std": 4.39481956429585, "vtot_std": 0.8981307061764082, "alpha_std": 0.008891819047719247, "near_vbur": 64.77500028426927, "near_vtot": 282.24132108088276, "ovbur_max": 22.30768227041866, "ovbur_min": 0.0, "ovtot_max": 114.09470661109324, "ovtot_min": 0.0000012247842314466608, "p_int_std": 0.08003469010658615, "pyr_alpha": 14.884894560955214, "qvbur_max": 34.65394558253547, "qvbur_min": 10.685573309983983, "qvtot_max": 161.49287262628187, "qvtot_min": 35.93149251231226, "cone_angle": 204.50356424640682, "p_int_area": 367.70679411413977, "p_int_atom": 28.79639801264385, "sasa_P_std": 2.232368450289173, "pyr_val_std": 0.0049379448046665, "sasa_volume": 833.3097243773274, "EA_delta_SCC": 1.6405664496775165, "IP_delta_SCC": 6.347742543872806, "dip_norm_std": 0.07290951988690753, "far_vbur_std": 3.0866190286575264, "far_vtot_std": 8.031844177425373, "HOMO_LUMO_gap": 2.9957779918638154, "near_vbur_std": 1.4891310012805987, "near_vtot_std": 9.77625226438168, "ovbur_max_std": 0.3652069423193465, "ovbur_min_std": 0.0, "ovtot_max_std": 5.707063412412654, "ovtot_min_std": 0.00022361622000864633, "pyr_alpha_std": 0.8508119202312989, "qvbur_max_std": 2.0130567695727715, "qvbur_min_std": 0.5871449571218398, "qvtot_max_std": 9.888446857779833, "qvtot_min_std": 2.9769682780630684, "sasa_volume_P": 10.520669343384325, "cone_angle_std": 8.027979097996573, "p_int_area_std": 3.0004255562792097, "p_int_atom_std": 0.5678034311981941, "max_delta_qvbur": 22.082622298302045, "max_delta_qvtot": 118.26921545299432, "nucleophilicity": -6.347742543872806, "p_int_atom_area": 11.995149051983038, "sasa_volume_std": 5.975829848704823, "EA_delta_SCC_std": 0.04885943809424171, "IP_delta_SCC_std": 0.03026573970314294, "HOMO_LUMO_gap_std": 0.06530483410852501, "sasa_volume_P_std": 3.3464733424283057, "max_delta_qvbur_std": 1.858111995737782, "max_delta_qvtot_std": 11.41685211197976, "nucleophilicity_std": 0.03026573970314294, "p_int_atom_area_std": 0.7737487371662504, "p_int_times_p_int_area": 8049.478903496949, "p_int_times_p_int_area_std": 46.7710953281249, "global_electrophilicity_index": 1.695041566921654, "p_int_atom_times_p_int_atom_area": 345.02851089885706, "global_electrophilicity_index_std": 0.038355394762526744, "p_int_atom_times_p_int_atom_area_std": 15.402092717816458}} {"max_data": {"pyr_P": "0.95250076", "pyr_alpha": "20.355785", "qpole_amp": "19.224344", "vbur_vbur": "68.70747", "sterimol_L": "9.820317", "sterimol_B1": "4.478104", "sterimol_B5": "7.3627377", "dipolemoment": "2.9855065", "qpoletens_xx": "12.4874525", "qpoletens_yy": "2.6274314", "qpoletens_zz": "-6.2806587", "sterimol_burL": "8.201842", "vbur_far_vbur": "5.6574426", "vbur_far_vtot": "39.942482", "sterimol_burB1": "4.396411", "sterimol_burB5": "7.1019454", "vbur_near_vbur": "62.65807", "vbur_near_vtot": "344.48877", "vbur_ovbur_max": "20.752428", "vbur_ovbur_min": "-0.17048438", "vbur_ovtot_max": "126.50462", "vbur_ovtot_min": "-0.59172225", "vbur_qvbur_max": "22.567602", "vbur_qvbur_min": "12.396609", "vbur_qvtot_max": "144.36986", "vbur_qvtot_min": "50.664776", "vbur_max_delta_qvbur": "12.4764", "vbur_max_delta_qvtot": "111.818184"}, "min_data": {"pyr_P": "0.9113887", "pyr_alpha": "14.922797", "qpole_amp": "11.596474", "vbur_vbur": "51.032074", "sterimol_L": "6.0507975", "sterimol_B1": "3.048876", "sterimol_B5": "6.8749228", "dipolemoment": "1.0952036", "qpoletens_xx": "8.279935", "qpoletens_yy": "-2.6265404", "qpoletens_zz": "-13.787879", "sterimol_burL": "6.2354865", "vbur_far_vbur": "0.5011117", "vbur_far_vtot": "2.258464", "sterimol_burB1": "2.9529884", "sterimol_burB5": "6.694313", "vbur_near_vbur": "51.712914", "vbur_near_vtot": "313.7817", "vbur_ovbur_max": "15.965815", "vbur_ovbur_min": "-0.005501841", "vbur_ovtot_max": "100.70784", "vbur_ovtot_min": "-0.013594573", "vbur_qvbur_max": "15.768516", "vbur_qvbur_min": "9.339718", "vbur_qvtot_max": "112.07811", "vbur_qvtot_min": "29.913193", "vbur_max_delta_qvbur": "5.2993793", "vbur_max_delta_qvtot": "57.750378"}, "delta_data": {"pyr_P": "0.038609248", "pyr_alpha": "5.655287", "qpole_amp": "7.6385946", "vbur_vbur": "17.076206", "sterimol_L": "4.000932", "sterimol_B1": "1.42928", "sterimol_B5": "0.49855796", "dipolemoment": "2.0813298", "qpoletens_xx": "4.743469", "qpoletens_yy": "5.7322598", "qpoletens_zz": "7.896864", "sterimol_burL": "2.0592449", "vbur_far_vbur": "6.380646", "vbur_far_vtot": "30.484577", "sterimol_burB1": "1.4390775", "sterimol_burB5": "0.29590964", "vbur_near_vbur": "9.9648905", "vbur_near_vtot": "28.442213", "vbur_ovbur_max": "4.6145544", "vbur_ovbur_min": "-0.05530053", "vbur_ovtot_max": "25.168217", "vbur_ovtot_min": "-0.23673774", "vbur_qvbur_max": "8.001047", "vbur_qvbur_min": "3.1429558", "vbur_qvtot_max": "34.20805", "vbur_qvtot_min": "20.153246", "vbur_max_delta_qvbur": "6.2852263", "vbur_max_delta_qvtot": "60.901737"}, "vburminconf_data": {"pyr_P": "0.9171032", "pyr_alpha": "19.844181", "qpole_amp": "11.602548", "vbur_vbur": "51.59599", "sterimol_L": "10.280976", "sterimol_B1": "3.720698", "sterimol_B5": "6.9755197", "dipolemoment": "1.5416737", "qpoletens_xx": "9.414204", "qpoletens_yy": "-1.3034253", "qpoletens_zz": "-6.616044", "sterimol_burL": "7.8498316", "vbur_far_vbur": "0.00015921467", "vbur_far_vtot": "1.9653519", "sterimol_burB1": "3.676728", "sterimol_burB5": "6.558634", "vbur_near_vbur": "51.69752", "vbur_near_vtot": "341.94934", "vbur_ovbur_max": "16.514847", "vbur_ovbur_min": "-0.008104416", "vbur_ovtot_max": "116.83656", "vbur_ovtot_min": "0.01028213", "vbur_qvbur_max": "15.880915", "vbur_qvbur_min": "10.265896", "vbur_qvtot_max": "117.66239", "vbur_qvtot_min": "34.625443", "vbur_max_delta_qvbur": "5.658649", "vbur_max_delta_qvtot": "71.63746"}, "boltzmann_averaged_data": {"nbo_P": "0.5721974", "nmr_P": "162.06541", "pyr_P": "0.9308399", "fmo_mu": "-0.13981335", "vmin_r": "1.9921647", "volume": "400.05417", "Pint_dP": "4.065822", "fmo_eta": "0.18379864", "fukui_m": "0.088411614", "fukui_p": "0.13763008", "nuesp_P": "-54.13658", "somo_ra": "0.039288912", "somo_rc": "-0.37955776", "nbo_P_ra": "0.4223213", "nbo_P_rc": "0.69869614", "efg_amp_P": "1.8326563", "fmo_omega": "0.052142546", "pyr_alpha": "17.68333", "qpole_amp": "14.497177", "vbur_vbur": "60.979984", "vbur_vtot": "354.7806", "vmin_vmin": "-0.029503891", "E_solv_cds": "-8.732395", "Pint_P_int": "20.125568", "Pint_P_max": "34.713055", "Pint_P_min": "13.344496", "fmo_e_homo": "-0.23047656", "fmo_e_lumo": "-0.047669616", "nbo_lp_P_e": "-0.39065793", "sphericity": "0.766997", "sterimol_L": "8.249262", "E_oxidation": "0.27777898", "E_reduction": "-0.0027584033", "sterimol_B1": "3.657084", "sterimol_B5": "7.1668773", "E_solv_total": "-16.089659", "dipolemoment": "1.5363777", "efgtens_xx_P": "-0.90249956", "efgtens_yy_P": "-0.5307645", "efgtens_zz_P": "1.4500289", "nbo_bd_e_avg": "-0.47694632", "nbo_bd_e_max": "-0.4575919", "nbo_lp_P_occ": "1.9556044", "qpoletens_xx": "10.237059", "qpoletens_yy": "-0.44314295", "qpoletens_zz": "-9.800922", "surface_area": "344.2948", "E_solv_elstat": "-7.3164606", "nbo_bds_e_avg": "0.10345101", "nbo_bds_e_min": "0.068812154", "nmrtens_sxx_P": "57.89458", "nmrtens_syy_P": "165.18654", "nmrtens_szz_P": "270.67535", "spindens_P_ra": "0.23574026", "spindens_P_rc": "0.13627599", "sterimol_burL": "7.294217", "vbur_far_vbur": "2.4722862", "vbur_far_vtot": "18.752382", "nbo_bd_occ_avg": "1.9548047", "nbo_bd_occ_min": "1.945592", "sterimol_burB1": "3.6532528", "sterimol_burB5": "6.8983855", "vbur_near_vbur": "58.596767", "vbur_near_vtot": "332.13043", "vbur_ovbur_max": "18.677818", "vbur_ovbur_min": "-0.007862926", "vbur_ovtot_max": "113.599205", "vbur_ovtot_min": "-0.08281123", "vbur_qvbur_max": "20.072514", "vbur_qvbur_min": "10.824442", "vbur_qvtot_max": "123.79634", "vbur_qvtot_min": "42.48964", "nbo_bds_occ_avg": "0.07471634", "nbo_bds_occ_max": "0.09149258", "nbo_lp_P_percent_s": "64.240974", "vbur_max_delta_qvbur": "8.336785", "vbur_max_delta_qvtot": "81.65908", "vbur_ratio_vbur_vtot": "0.17528501"}} c1ccc(SP(Sc2ccccc2)c2ccccc2)cc1 {"max_data": {"B1": 4.060719503205267, "B5": 7.60733640486189, "lval": 10.008348919832333, "sasa": 548.6637898046877, "vbur": 72.27834570141307, "vtot": 350.5751878682263, "alpha": 257.505636, "p_int": 21.991353058164133, "sasa_P": 16.609952897592013, "pyr_val": 0.9474560942586966, "dip_norm": 1.9154391141458922, "far_vbur": 7.26163673149175, "far_vtot": 45.71729677534371, "near_vbur": 66.43873093018135, "near_vtot": 336.91777136220264, "ovbur_max": 20.8524367779113, "ovbur_min": 0.0, "ovtot_max": 147.79708272057138, "ovtot_min": 0.0, "pyr_alpha": 21.849187640636963, "qvbur_max": 25.001943481620874, "qvbur_min": 13.27609026832922, "qvtot_max": 147.79708272057138, "qvtot_min": 47.89419104731707, "cone_angle": 213.02660978675303, "p_int_area": 391.4483037777933, "p_int_atom": 31.955477705057284, "sasa_volume": 882.97247734644, "EA_delta_SCC": 1.7284, "IP_delta_SCC": 6.5532, "HOMO_LUMO_gap": 3.168978260315, "sasa_volume_P": 19.96221013229077, "max_delta_qvbur": 13.031315996481181, "max_delta_qvtot": 99.82516543138729, "nucleophilicity": -6.2495, "p_int_atom_area": 16.99763480445591, "p_int_times_p_int_area": 8391.166888849499, "global_electrophilicity_index": 1.7619, "p_int_atom_times_p_int_atom_area": 489.95003988011945}, "min_data": {"B1": 3.0793555174979996, "B5": 6.623329520434849, "lval": 5.943723620881589, "sasa": 500.5533747321774, "vbur": 51.33266158184537, "vtot": 345.6472943269748, "alpha": 257.42707, "p_int": 21.24770102765674, "sasa_P": 6.639981170379948, "pyr_val": 0.9025709381944073, "dip_norm": 0.54739930580884, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 51.33266158184537, "near_vtot": 294.67994247769, "ovbur_max": 16.248349283626805, "ovbur_min": 0.0, "ovtot_max": 90.70114904916159, "ovtot_min": 0.0, "pyr_alpha": 15.570156116225494, "qvbur_max": 16.248349283626805, "qvbur_min": 9.779314956214412, "qvtot_max": 108.3065196029977, "qvtot_min": 25.970205719027156, "cone_angle": 161.91262222377046, "p_int_area": 367.6576695591662, "p_int_atom": 26.120712398384974, "sasa_volume": 833.8440454625264, "EA_delta_SCC": 1.4737, "IP_delta_SCC": 6.2495, "HOMO_LUMO_gap": 2.778450903215, "sasa_volume_P": 5.482371489299672, "max_delta_qvbur": 5.874582524352876, "max_delta_qvtot": 55.30813869523368, "nucleophilicity": -6.5532, "p_int_atom_area": 12.198302624374243, "p_int_times_p_int_area": 8011.141657729741, "global_electrophilicity_index": 1.5612, "p_int_atom_times_p_int_atom_area": 362.1440053114737}, "boltzmann_averaged_data": {"B1": 3.591217013554913, "B5": 6.7654740220888945, "lval": 7.741559325634493, "sasa": 540.5095002961691, "vbur": 70.59793057849693, "vtot": 350.0073609530931, "alpha": 257.45111539485004, "p_int": 21.401206323217565, "B1_std": 0.22740042127519278, "B5_std": 0.05299058068611332, "sasa_P": 8.095018844192566, "pyr_val": 0.9399532852879803, "dip_norm": 1.2579435254095035, "far_vbur": 5.600801452258254, "far_vtot": 40.41758429658402, "lval_std": 0.19548570022932138, "sasa_std": 4.444551773093796, "vbur_std": 1.6744912289812248, "vtot_std": 0.31919458043464477, "alpha_std": 0.01971993560168119, "near_vbur": 64.99712912623866, "near_vtot": 301.3886552158949, "ovbur_max": 19.869002057303657, "ovbur_min": 0.0, "ovtot_max": 94.95385707644255, "ovtot_min": 0.0, "p_int_std": 0.08901934308853807, "pyr_alpha": 16.83556879580988, "qvbur_max": 22.895801792413597, "qvbur_min": 12.052910454686597, "qvtot_max": 111.25473149542277, "qvtot_min": 35.72146319495001, "cone_angle": 204.45966211084564, "p_int_area": 388.25268052247014, "p_int_atom": 31.451167618954894, "sasa_P_std": 0.7247100672018881, "pyr_val_std": 0.001502640123671605, "sasa_volume": 875.2140415894341, "EA_delta_SCC": 1.649179275, "IP_delta_SCC": 6.434944944000001, "dip_norm_std": 0.07675765369205687, "far_vbur_std": 0.8564669497819355, "far_vtot_std": 5.009748666247445, "HOMO_LUMO_gap": 2.980780682909245, "near_vbur_std": 1.2027144520525033, "near_vtot_std": 6.100569143395782, "ovbur_max_std": 0.7353283354722178, "ovbur_min_std": 0.0, "ovtot_max_std": 4.2009036095668355, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.2258588357440478, "qvbur_max_std": 1.4608945751144273, "qvbur_min_std": 0.24853466747178427, "qvtot_max_std": 3.1237370200279346, "qvtot_min_std": 2.9804266133756414, "sasa_volume_P": 6.9404935888677795, "cone_angle_std": 2.2298771917106905, "p_int_area_std": 2.318752707600774, "p_int_atom_std": 0.4148467849728411, "max_delta_qvbur": 10.126844884588367, "max_delta_qvtot": 68.54997283462365, "nucleophilicity": -6.434944944000001, "p_int_atom_area": 14.76779508332901, "sasa_volume_std": 3.6377329235328326, "EA_delta_SCC_std": 0.012893763026144683, "IP_delta_SCC_std": 0.040316862375895296, "HOMO_LUMO_gap_std": 0.040975368139396666, "sasa_volume_P_std": 0.9301008077214328, "max_delta_qvbur_std": 0.7098886327875055, "max_delta_qvtot_std": 6.470398556463725, "nucleophilicity_std": 0.040316862375895296, "p_int_atom_area_std": 0.780245822204501, "p_int_times_p_int_area": 8309.01932532643, "p_int_times_p_int_area_std": 52.20722222628115, "global_electrophilicity_index": 1.7070440990000002, "p_int_atom_times_p_int_atom_area": 464.5008296279163, "global_electrophilicity_index_std": 0.008734105837359615, "p_int_atom_times_p_int_atom_area_std": 25.82637157285695}} \\x1420100003040400001c4260b1342c080000000102016240ec8a800000302040c08810004720800508460048188a68200081080e01000024440000401000000018500800406818640000080b80a20804420000280a2080011202280b12000801282022050045300001044220020008002242031001808080900003d800009001 \\x00000008002008000100000010001000000001000088004000004000000000000000000000080000080002001000800020000000000000000000000000002000 other (0.0270153433084487, -4.27346658706665, -0.4671562910079956, 2.0338447093963623) (3.797420978546143, 5.820850849151611) -591 c1ccc(SP(c2ccccc2)c2ccccc2)cc1 294.3590087890625 {"max_data": {"pyr_P": 0.9437744240399726, "pyr_alpha": 20.923859831652848, "qpole_amp": 14.675366961215818, "vbur_vbur": 60.23678676551586, "vbur_vtot": 329.46730138232795, "sterimol_L": 10.260253740193326, "sterimol_B1": 4.124331316193875, "sterimol_B5": 7.479157252787472, "dipolemoment": 3.133781574777999, "qpoletens_xx": 10.66669621703646, "qpoletens_yy": 2.4268869255461722, "qpoletens_zz": -5.7811699187193035, "sterimol_burL": 8.063401740147405, "vbur_far_vbur": 2.7015717225240476, "vbur_far_vtot": 13.696060139033882, "sterimol_burB1": 4.124331316193875, "sterimol_burB5": 7.109840822017285, "vbur_near_vbur": 57.53521504299181, "vbur_near_vtot": 326.90340737183766, "vbur_ovbur_max": 19.023959760352266, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 120.66427622048857, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 21.725531482876313, "vbur_qvbur_min": 12.406521011451899, "vbur_qvtot_max": 123.27788383602504, "vbur_qvtot_min": 57.23487963113238, "vbur_max_delta_qvbur": 10.310528083872267, "vbur_max_delta_qvtot": 86.58009465415518}, "min_data": {"pyr_P": 0.9105084999160855, "pyr_alpha": 16.139385993627496, "qpole_amp": 7.706868169207462, "vbur_vbur": 48.29464742065347, "vbur_vtot": 326.9034073718376, "sterimol_L": 7.179160318519747, "sterimol_B1": 2.977855560445469, "sterimol_B5": 6.606650105267391, "dipolemoment": 1.169161076967288, "qpoletens_xx": 3.8145355921486215, "qpoletens_yy": -2.412695371440991, "qpoletens_zz": -10.060862421904016, "sterimol_burL": 6.833841377634887, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.977855560445469, "sterimol_burB5": 6.160481761211797, "vbur_near_vbur": 48.29464742065347, "vbur_near_vtot": 315.56270499338933, "vbur_ovbur_max": 15.412450988429873, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 106.27357289395052, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.412450988429873, "vbur_qvbur_min": 9.659975388785174, "vbur_qvtot_max": 113.97380918254586, "vbur_qvtot_min": 31.15587842867607, "vbur_max_delta_qvbur": 5.171998516407825, "vbur_max_delta_qvtot": 48.220197689301415}, "delta_data": {"pyr_P": 0.03326592412388707, "pyr_alpha": 4.784473838025352, "qpole_amp": 6.968498792008356, "vbur_vbur": 11.94213934486239, "vbur_vtot": 2.563894010490344, "sterimol_L": 3.081093421673579, "sterimol_B1": 1.1464757557484062, "sterimol_B5": 0.8725071475200803, "dipolemoment": 1.964620497810711, "qpoletens_xx": 6.852160624887839, "qpoletens_yy": 4.839582296987164, "qpoletens_zz": 4.279692503184712, "sterimol_burL": 1.229560362512518, "vbur_far_vbur": 2.7015717225240476, "vbur_far_vtot": 13.696060139033882, "sterimol_burB1": 1.1464757557484062, "sterimol_burB5": 0.949359060805488, "vbur_near_vbur": 9.24056762233834, "vbur_near_vtot": 11.340702378448327, "vbur_ovbur_max": 3.6115087719223933, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 14.390703326538059, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 6.3130804944464405, "vbur_qvbur_min": 2.7465456226667246, "vbur_qvtot_max": 9.304074653479177, "vbur_qvtot_min": 26.07900120245631, "vbur_max_delta_qvbur": 5.138529567464442, "vbur_max_delta_qvtot": 38.35989696485376}, "vburminconf_data": {"pyr_P": 0.9105084999160855, "pyr_alpha": 20.923859831652848, "qpole_amp": 10.314186952699293, "vbur_vbur": 48.29464742065347, "vbur_vtot": 326.9034073718376, "sterimol_L": 10.260253740193326, "sterimol_B1": 3.333326437564452, "sterimol_B5": 6.606650105267391, "dipolemoment": 3.133781574777999, "qpoletens_xx": 8.193865290160295, "qpoletens_yy": -2.412695371440991, "qpoletens_zz": -5.7811699187193035, "sterimol_burL": 8.063401740147405, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.3076227435338996, "sterimol_burB5": 6.160481761211797, "vbur_near_vbur": 48.29464742065347, "vbur_near_vtot": 326.90340737183766, "vbur_ovbur_max": 15.412450988429873, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 113.97380918254586, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.412450988429873, "vbur_qvbur_min": 10.175606383444235, "vbur_qvtot_max": 113.97380918254586, "vbur_qvtot_min": 57.23487963113238, "vbur_max_delta_qvbur": 5.171998516407825, "vbur_max_delta_qvtot": 48.220197689301415}, "boltzmann_averaged_data": {"nbo_P": 0.6990862081794481, "nmr_P": 230.89121836156517, "pyr_P": 0.9348974656998549, "fmo_mu": -0.13733445398177088, "vmin_r": 1.900268395599367, "volume": 372.2065671639592, "Pint_dP": 4.100376600828636, "fmo_eta": 0.18333909131570547, "fukui_m": 0.20731606658878926, "fukui_p": 0.13246684232914233, "nuesp_P": -54.15534565215841, "somo_ra": 0.04192496582163574, "somo_rc": -0.38795053852620315, "nbo_P_ra": 0.5666193658503058, "nbo_P_rc": 0.9064022747682374, "efg_amp_P": 1.920942956550188, "fmo_omega": 0.05144945681650906, "pyr_alpha": 17.4590351444488, "qpole_amp": 8.745691410265904, "vbur_vbur": 57.32597331454794, "vbur_vtot": 328.8693811435162, "vmin_vmin": -0.036606100702059906, "E_solv_cds": -8.114636816691027, "Pint_P_int": 19.798752644108657, "Pint_P_max": 35.83985316253303, "Pint_P_min": 13.303125475388693, "fmo_e_homo": -0.2290039996396236, "fmo_e_lumo": -0.04566490832391815, "nbo_lp_P_e": -0.3502147182201558, "sphericity": 0.7572935125208121, "sterimol_L": 7.8002902474124385, "E_oxidation": 0.27658980609525613, "E_reduction": -0.001763589630187003, "sterimol_B1": 3.6930100537279693, "sterimol_B5": 7.230739400918713, "E_solv_total": -15.255616122851816, "dipolemoment": 1.6218688293300647, "efgtens_xx_P": -1.12684336348333, "efgtens_yy_P": -0.3813530882564181, "efgtens_zz_P": 1.508196464399072, "nbo_bd_e_avg": -0.4777924832421184, "nbo_bd_e_max": -0.4533794242273863, "nbo_lp_P_occ": 1.9295703406676277, "qpoletens_xx": 5.1072058066382775, "qpoletens_yy": 1.4525625550249215, "qpoletens_zz": -6.5597683616632, "surface_area": 330.58313160253715, "E_solv_elstat": -7.140979306160785, "nbo_bds_e_avg": 0.16594994929654214, "nbo_bds_e_min": 0.08764029098710957, "nmrtens_sxx_P": 158.39618091916918, "nmrtens_syy_P": 247.0560756590318, "nmrtens_szz_P": 287.2214497937107, "spindens_P_ra": 0.19562007216751504, "spindens_P_rc": 0.2686485066175519, "sterimol_burL": 7.120024207827973, "vbur_far_vbur": 1.8327276696194714, "vbur_far_vtot": 10.188214568847469, "nbo_bd_occ_avg": 1.9535145613323437, "nbo_bd_occ_min": 1.9434159570066518, "sterimol_burB1": 3.6883916981155753, "sterimol_burB5": 6.889596837416601, "vbur_near_vbur": 55.49324564492847, "vbur_near_vtot": 318.3458263218986, "vbur_ovbur_max": 18.097060678124834, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 108.17129415557616, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 19.93179005859478, "vbur_qvbur_min": 11.338225900219816, "vbur_qvtot_max": 118.34108996605966, "vbur_qvtot_min": 43.30192407973129, "nbo_bds_occ_avg": 0.05195770770540019, "nbo_bds_occ_max": 0.06258534044524992, "nbo_lp_P_percent_s": 56.75418873966246, "vbur_max_delta_qvbur": 8.559997218566767, "vbur_max_delta_qvtot": 66.49309013845841, "vbur_ratio_vbur_vtot": 0.1742758965523045}} {"max_data": {"B1": 4.21968247585946, "B5": 7.525627147281877, "lval": 9.594018848033837, "sasa": 516.2241361826107, "vbur": 74.51628190116655, "vtot": 324.63074933138984, "alpha": 237.831597, "p_int": 21.57017282947121, "sasa_P": 21.089940193270056, "pyr_val": 0.9668604781692427, "dip_norm": 1.6853631656114951, "far_vbur": 14.255187355721365, "far_vtot": 44.59826216074081, "near_vbur": 61.96285853067438, "near_vtot": 320.40455167229834, "ovbur_max": 21.843189783010498, "ovbur_min": 0.0, "ovtot_max": 130.0070108034277, "ovtot_min": 0.0, "pyr_alpha": 17.173039491279678, "qvbur_max": 34.24508622331102, "qvbur_min": 11.59763811851411, "qvtot_max": 138.5433201920301, "qvtot_min": 58.58937823757414, "cone_angle": 209.90999484059282, "p_int_area": 364.8307394626573, "p_int_atom": 28.708632262904032, "sasa_volume": 822.0869828591016, "EA_delta_SCC": 1.6722, "IP_delta_SCC": 6.5791, "HOMO_LUMO_gap": 3.176932305815, "sasa_volume_P": 33.845860741398596, "max_delta_qvbur": 22.95050196518019, "max_delta_qvtot": 100.00455430606642, "nucleophilicity": -6.3372, "p_int_atom_area": 18.597412197816464, "p_int_times_p_int_area": 7735.016990628426, "global_electrophilicity_index": 1.7344, "p_int_atom_times_p_int_atom_area": 479.9862146393107}, "min_data": {"B1": 3.22261639785386, "B5": 6.216251012875427, "lval": 7.144770636512394, "sasa": 467.2027919732863, "vbur": 51.43756484120882, "vtot": 320.2211497719686, "alpha": 237.785354, "p_int": 20.729511911437967, "sasa_P": 7.899977597289393, "pyr_val": 0.937769971147827, "dip_norm": 0.5078956585756567, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 51.43756484120881, "near_vtot": 272.6600048051679, "ovbur_max": 14.581553051518748, "ovbur_min": 0.0, "ovtot_max": 87.19411057613576, "ovtot_min": 0.0, "pyr_alpha": 12.400069153319645, "qvbur_max": 14.581553051518748, "qvbur_min": 10.874971220677052, "qvtot_max": 109.37781695221113, "qvtot_min": 35.87916478008708, "cone_angle": 142.45149737926585, "p_int_area": 342.64754078460265, "p_int_atom": 24.61017906173558, "sasa_volume": 774.4232123026585, "EA_delta_SCC": 1.4997, "IP_delta_SCC": 6.3372, "HOMO_LUMO_gap": 2.887429825588, "sasa_volume_P": 10.358603656436793, "max_delta_qvbur": 2.937291262176439, "max_delta_qvtot": 47.263529586735714, "nucleophilicity": -6.5791, "p_int_atom_area": 13.69809393064976, "p_int_times_p_int_area": 7376.275450070396, "global_electrophilicity_index": 1.5924, "p_int_atom_times_p_int_atom_area": 378.16414778245485}, "boltzmann_averaged_data": {"B1": 3.7543552024583695, "B5": 7.057762826419488, "lval": 8.042316921372434, "sasa": 502.776597481788, "vbur": 64.82883539154378, "vtot": 322.6582147698036, "alpha": 237.81355611940003, "p_int": 20.996413869877436, "B1_std": 0.31051938486530534, "B5_std": 0.3560814328738497, "sasa_P": 14.090125543303794, "pyr_val": 0.958824501114198, "dip_norm": 0.8410736141049294, "far_vbur": 6.055012517123511, "far_vtot": 24.17335837685103, "lval_std": 0.5970256322892967, "sasa_std": 16.9365866475622, "vbur_std": 6.271171523950717, "vtot_std": 1.0674357726504282, "alpha_std": 0.016951723885606465, "near_vbur": 58.773822874420276, "near_vtot": 294.02582573058623, "ovbur_max": 20.326831818380246, "ovbur_min": 0.0, "ovtot_max": 101.74398679240831, "ovtot_min": 0.0, "p_int_std": 0.30081463784487955, "pyr_alpha": 13.7520315061994, "qvbur_max": 26.188384775124295, "qvbur_min": 11.180814109049278, "qvtot_max": 119.12650140621788, "qvtot_min": 46.44655152460664, "cone_angle": 178.91078544603616, "p_int_area": 357.2109233772213, "p_int_atom": 26.603085997126247, "sasa_P_std": 3.403446063475057, "pyr_val_std": 0.008657884498681772, "sasa_volume": 808.7147928214234, "EA_delta_SCC": 1.577873159, "IP_delta_SCC": 6.479138999999999, "dip_norm_std": 0.3925973559468688, "far_vbur_std": 3.8777311869394633, "far_vtot_std": 14.822106869149929, "HOMO_LUMO_gap": 3.0759355180905312, "near_vbur_std": 3.0417908824409228, "near_vtot_std": 16.60211649697431, "ovbur_max_std": 2.339405857690092, "ovbur_min_std": 0.0, "ovtot_max_std": 15.198809931337543, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.4099178236515666, "qvbur_max_std": 5.5357482733047725, "qvbur_min_std": 0.24031270010400357, "qvtot_max_std": 8.978944801204198, "qvtot_min_std": 6.602617925666997, "sasa_volume_P": 19.408149841325702, "cone_angle_std": 18.521869437935404, "p_int_area_std": 5.933417835843026, "p_int_atom_std": 1.0789558410469187, "max_delta_qvbur": 13.69936722695503, "max_delta_qvtot": 67.53120542694676, "nucleophilicity": -6.479138999999999, "p_int_atom_area": 15.384564260817397, "sasa_volume_std": 15.320268724642784, "EA_delta_SCC_std": 0.051651901950080376, "IP_delta_SCC_std": 0.06560584401255741, "HOMO_LUMO_gap_std": 0.10314109239608882, "sasa_volume_P_std": 6.602460443365122, "max_delta_qvbur_std": 5.039395608406648, "max_delta_qvtot_std": 15.989808502512663, "nucleophilicity_std": 0.06560584401255741, "p_int_atom_area_std": 1.3121732119797684, "p_int_times_p_int_area": 7498.852112654578, "p_int_times_p_int_area_std": 88.83367645546485, "global_electrophilicity_index": 1.6560742389999998, "p_int_atom_times_p_int_atom_area": 408.1751001166017, "global_electrophilicity_index_std": 0.03942069542601804, "p_int_atom_times_p_int_atom_area_std": 22.64030801857504}} {"max_data": {"pyr_P": "0.94462216", "pyr_alpha": "20.895245", "qpole_amp": "13.75853", "vbur_vbur": "59.001545", "sterimol_L": "9.379038", "sterimol_B1": "4.210649", "sterimol_B5": "7.2601914", "dipolemoment": "2.754353", "qpoletens_xx": "9.64902", "qpoletens_yy": "2.2798097", "qpoletens_zz": "-5.6925273", "sterimol_burL": "8.069022", "vbur_far_vbur": "2.2104344", "vbur_far_vtot": "16.47314", "sterimol_burB1": "4.2105665", "sterimol_burB5": "6.941921", "vbur_near_vbur": "56.757824", "vbur_near_vtot": "323.4342", "vbur_ovbur_max": "19.277649", "vbur_ovbur_min": "-0.19922584", "vbur_ovtot_max": "114.06395", "vbur_ovtot_min": "-0.46414644", "vbur_qvbur_max": "19.9952", "vbur_qvbur_min": "11.554254", "vbur_qvtot_max": "122.16495", "vbur_qvtot_min": "56.903526", "vbur_max_delta_qvbur": "8.905947", "vbur_max_delta_qvtot": "82.54498"}, "min_data": {"pyr_P": "0.91139275", "pyr_alpha": "16.098988", "qpole_amp": "7.467605", "vbur_vbur": "48.776646", "sterimol_L": "7.0840297", "sterimol_B1": "3.279056", "sterimol_B5": "6.6155157", "dipolemoment": "1.2544415", "qpoletens_xx": "4.5528255", "qpoletens_yy": "-1.9092982", "qpoletens_zz": "-9.451439", "sterimol_burL": "6.891819", "vbur_far_vbur": "0.2812777", "vbur_far_vtot": "1.364981", "sterimol_burB1": "3.318194", "sterimol_burB5": "6.2718077", "vbur_near_vbur": "49.134277", "vbur_near_vtot": "309.86737", "vbur_ovbur_max": "14.991583", "vbur_ovbur_min": "-0.012607018", "vbur_ovtot_max": "99.981926", "vbur_ovtot_min": "-0.028046621", "vbur_qvbur_max": "15.089661", "vbur_qvbur_min": "9.863362", "vbur_qvtot_max": "106.76418", "vbur_qvtot_min": "34.688072", "vbur_max_delta_qvbur": "5.0767703", "vbur_max_delta_qvtot": "47.550797"}, "delta_data": {"pyr_P": "0.032860596", "pyr_alpha": "4.8470488", "qpole_amp": "5.036328", "vbur_vbur": "10.650442", "sterimol_L": "2.577078", "sterimol_B1": "0.8633279", "sterimol_B5": "0.69789445", "dipolemoment": "1.5220577", "qpoletens_xx": "4.1055536", "qpoletens_yy": "3.7126656", "qpoletens_zz": "4.066627", "sterimol_burL": "1.1471876", "vbur_far_vbur": "3.160651", "vbur_far_vtot": "12.114901", "sterimol_burB1": "0.9516477", "sterimol_burB5": "0.60523087", "vbur_near_vbur": "7.5106297", "vbur_near_vtot": "12.2845125", "vbur_ovbur_max": "3.700427", "vbur_ovbur_min": "-0.12580629", "vbur_ovtot_max": "14.315438", "vbur_ovtot_min": "-0.12233987", "vbur_qvbur_max": "5.7427883", "vbur_qvbur_min": "1.5569516", "vbur_qvtot_max": "11.142427", "vbur_qvtot_min": "20.436356", "vbur_max_delta_qvbur": "4.1347604", "vbur_max_delta_qvtot": "30.957777"}, "vburminconf_data": {"pyr_P": "0.9130667", "pyr_alpha": "20.683405", "qpole_amp": "10.079601", "vbur_vbur": "48.647034", "sterimol_L": "9.778776", "sterimol_B1": "3.5981977", "sterimol_B5": "6.5318823", "dipolemoment": "2.862465", "qpoletens_xx": "7.0532513", "qpoletens_yy": "-1.0444703", "qpoletens_zz": "-6.7706337", "sterimol_burL": "7.8133583", "vbur_far_vbur": "-0.048750285", "vbur_far_vtot": "0.3605533", "sterimol_burB1": "3.5447347", "sterimol_burB5": "6.197077", "vbur_near_vbur": "49.137157", "vbur_near_vtot": "322.91348", "vbur_ovbur_max": "15.394751", "vbur_ovbur_min": "-0.015569135", "vbur_ovtot_max": "111.95107", "vbur_ovtot_min": "0.00018660037", "vbur_qvbur_max": "14.960744", "vbur_qvbur_min": "10.204657", "vbur_qvtot_max": "110.891815", "vbur_qvtot_min": "50.891277", "vbur_max_delta_qvbur": "5.260039", "vbur_max_delta_qvtot": "53.518826"}, "boltzmann_averaged_data": {"nbo_P": "0.68992186", "nmr_P": "225.05966", "pyr_P": "0.9332184", "fmo_mu": "-0.13739347", "vmin_r": "1.9112875", "volume": "372.0143", "Pint_dP": "4.0051327", "fmo_eta": "0.1853495", "fukui_m": "0.19162358", "fukui_p": "0.121469036", "nuesp_P": "-54.15644", "somo_ra": "0.04417397", "somo_rc": "-0.38214472", "nbo_P_ra": "0.578386", "nbo_P_rc": "0.9083416", "efg_amp_P": "1.8785337", "fmo_omega": "0.051020436", "pyr_alpha": "17.910387", "qpole_amp": "8.692408", "vbur_vbur": "55.303207", "vbur_vtot": "328.55032", "vmin_vmin": "-0.03810311", "E_solv_cds": "-7.986535", "Pint_P_int": "19.752625", "Pint_P_max": "34.61424", "Pint_P_min": "13.2333975", "fmo_e_homo": "-0.2289595", "fmo_e_lumo": "-0.044716876", "nbo_lp_P_e": "-0.34957433", "sphericity": "0.7673699", "sterimol_L": "7.8031187", "E_oxidation": "0.27736285", "E_reduction": "0.0010357766", "sterimol_B1": "3.7702298", "sterimol_B5": "7.0092254", "E_solv_total": "-15.180645", "dipolemoment": "1.4845479", "efgtens_xx_P": "-1.1036942", "efgtens_yy_P": "-0.37094325", "efgtens_zz_P": "1.4943348", "nbo_bd_e_avg": "-0.47681645", "nbo_bd_e_max": "-0.45187348", "nbo_lp_P_occ": "1.9278748", "qpoletens_xx": "5.3604903", "qpoletens_yy": "0.9839069", "qpoletens_zz": "-6.636565", "surface_area": "326.0085", "E_solv_elstat": "-7.1841984", "nbo_bds_e_avg": "0.16292518", "nbo_bds_e_min": "0.10234091", "nmrtens_sxx_P": "155.01509", "nmrtens_syy_P": "243.11285", "nmrtens_szz_P": "287.66748", "spindens_P_ra": "0.18757643", "spindens_P_rc": "0.25488585", "sterimol_burL": "7.095475", "vbur_far_vbur": "0.6936225", "vbur_far_vtot": "7.154464", "nbo_bd_occ_avg": "1.9537215", "nbo_bd_occ_min": "1.9456396", "sterimol_burB1": "3.7753701", "sterimol_burB5": "6.763621", "vbur_near_vbur": "54.82094", "vbur_near_vtot": "321.52972", "vbur_ovbur_max": "17.387346", "vbur_ovbur_min": "-0.031571362", "vbur_ovtot_max": "107.188354", "vbur_ovtot_min": "-0.014526137", "vbur_qvbur_max": "18.400593", "vbur_qvbur_min": "11.129772", "vbur_qvtot_max": "115.31671", "vbur_qvtot_min": "46.32275", "nbo_bds_occ_avg": "0.054105446", "nbo_bds_occ_max": "0.06412138", "nbo_lp_P_percent_s": "56.83256", "vbur_max_delta_qvbur": "7.190241", "vbur_max_delta_qvtot": "64.81257", "vbur_ratio_vbur_vtot": "0.17014544"}} c1ccc(SP(c2ccccc2)c2ccccc2)cc1 {"max_data": {"B1": 4.489093906636962, "B5": 7.590625158637687, "lval": 9.885826948504311, "sasa": 513.3640732683122, "vbur": 61.53158957551356, "vtot": 324.7991442966386, "alpha": 237.796687, "p_int": 21.547613349379425, "sasa_P": 19.8799436245713, "pyr_val": 0.9457172524051702, "dip_norm": 1.7037435252995095, "far_vbur": 2.9023235090552904, "far_vtot": 22.923892791547544, "near_vbur": 58.62926606645828, "near_vtot": 323.36747679464946, "ovbur_max": 19.83837193739801, "ovbur_min": 0.0, "ovtot_max": 130.05563951167895, "ovtot_min": 0.0, "pyr_alpha": 21.567398262746273, "qvbur_max": 22.787319117281495, "qvbur_min": 11.201336916474434, "qvtot_max": 130.05563951167895, "qvtot_min": 53.77948975067223, "cone_angle": 188.78925512250535, "p_int_area": 363.33232073166243, "p_int_atom": 28.835690733659803, "sasa_volume": 819.9410980393275, "EA_delta_SCC": 1.6245, "IP_delta_SCC": 6.6125, "HOMO_LUMO_gap": 3.189926526859, "sasa_volume_P": 24.169604785572034, "max_delta_qvbur": 11.97062748513969, "max_delta_qvtot": 87.26225491656234, "nucleophilicity": -6.2637, "p_int_atom_area": 17.697537414051155, "p_int_times_p_int_area": 7618.883962564403, "global_electrophilicity_index": 1.7003, "p_int_atom_times_p_int_atom_area": 467.07319734615993}, "min_data": {"B1": 3.3824559256072764, "B5": 6.425748091919752, "lval": 7.444621455820929, "sasa": 467.5428255349834, "vbur": 46.938380606287765, "vtot": 319.6975407859038, "alpha": 237.738459, "p_int": 20.823063587562732, "sasa_P": 10.409970479466153, "pyr_val": 0.905007533700861, "dip_norm": 0.6458985988527921, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.938380606287765, "near_vtot": 299.27673854159843, "ovbur_max": 12.961380490238888, "ovbur_min": 0.0, "ovtot_max": 91.89752024811004, "ovtot_min": 0.0, "pyr_alpha": 16.032557656750754, "qvbur_max": 12.961380490238888, "qvbur_min": 10.595229195707867, "qvtot_max": 106.37387750316591, "qvtot_min": 38.53395827043147, "cone_angle": 139.96422769752053, "p_int_area": 344.0464249419121, "p_int_atom": 24.984499009495675, "sasa_volume": 774.4587351160983, "EA_delta_SCC": 1.36, "IP_delta_SCC": 6.2637, "HOMO_LUMO_gap": 2.829179809059, "sasa_volume_P": 10.001338676131635, "max_delta_qvbur": 1.993161927905442, "max_delta_qvtot": 47.480892093686734, "nucleophilicity": -6.6125, "p_int_atom_area": 14.797940888585146, "p_int_times_p_int_area": 7398.817130402381, "global_electrophilicity_index": 1.502, "p_int_atom_times_p_int_atom_area": 387.99037960872363}, "boltzmann_averaged_data": {"B1": 4.284623303892597, "B5": 6.745528953928263, "lval": 7.744444626173183, "sasa": 510.85812102445715, "vbur": 59.052491739046175, "vtot": 323.3890076227962, "alpha": 237.78847195755, "p_int": 20.888658167219155, "B1_std": 0.2382685383228977, "B5_std": 0.03773474008866633, "sasa_P": 13.397991906052349, "pyr_val": 0.9327651884008239, "dip_norm": 0.7301426680770253, "far_vbur": 2.0690851956330247, "far_vtot": 18.725469704885594, "lval_std": 0.05077659626826683, "sasa_std": 2.995687737960464, "vbur_std": 0.5362632112917347, "vtot_std": 0.16269325121806613, "alpha_std": 0.009671758376093442, "near_vbur": 56.98340654341315, "near_vtot": 301.26936122471557, "ovbur_max": 19.41199683584566, "ovbur_min": 0.0, "ovtot_max": 94.68814720566048, "ovtot_min": 0.0, "p_int_std": 0.0767870285442484, "pyr_alpha": 17.949977064916567, "qvbur_max": 21.49103128971507, "qvbur_min": 10.826407422346515, "qvtot_max": 109.86608781692694, "qvtot_min": 45.38550062852989, "cone_angle": 173.08764160162116, "p_int_area": 361.89251610356195, "p_int_atom": 27.944250133892893, "sasa_P_std": 0.6038217119632164, "pyr_val_std": 0.001124628481445359, "sasa_volume": 817.5581291415205, "EA_delta_SCC": 1.572334085, "IP_delta_SCC": 6.409932868, "dip_norm_std": 0.09334645083431323, "far_vbur_std": 0.12805502906769625, "far_vtot_std": 1.6613671475237033, "HOMO_LUMO_gap": 2.995712749979826, "near_vbur_std": 0.625202819849613, "near_vtot_std": 2.32561420805908, "ovbur_max_std": 0.35857044486175044, "ovbur_min_std": 0.0, "ovtot_max_std": 3.2575144330413073, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.14080428059614902, "qvbur_max_std": 0.2639729826119889, "qvbur_min_std": 0.17845159929231277, "qvtot_max_std": 2.6375131553983655, "qvtot_min_std": 3.5108986532404094, "sasa_volume_P": 13.107206594713496, "cone_angle_std": 0.8756441844155209, "p_int_area_std": 0.9480235716593275, "p_int_atom_std": 0.0655991407680631, "max_delta_qvbur": 10.316378382206564, "max_delta_qvtot": 59.733503674608045, "nucleophilicity": -6.409932868, "p_int_atom_area": 15.765790213794347, "sasa_volume_std": 1.97448071579107, "EA_delta_SCC_std": 0.022780721031450523, "IP_delta_SCC_std": 0.012071941339095987, "HOMO_LUMO_gap_std": 0.03624254650403427, "sasa_volume_P_std": 0.828453695256205, "max_delta_qvbur_std": 0.3011098544606656, "max_delta_qvtot_std": 4.9664326265895955, "nucleophilicity_std": 0.012071941339095987, "p_int_atom_area_std": 0.5441922028995074, "p_int_times_p_int_area": 7559.513096162366, "p_int_times_p_int_area_std": 46.211494599856636, "global_electrophilicity_index": 1.6464985849999998, "p_int_atom_times_p_int_atom_area": 440.5570750863632, "global_electrophilicity_index_std": 0.01653139278759589, "p_int_atom_times_p_int_atom_area_std": 15.063710483055779}} \\x14a0000403000600001c0220a0303c0000000001030161406e0a800000302000e0800800442080050c9680481c0860a81085004e03001024408004401004040098520900006818240000088080200004421000280a20900112e3280b10100813280000010000b884010440200254080033c05010019000829000018600009101 \\x00000008002048000100000000001000000000000080004000004000000000000000000000080000080002001000800020000080000001000000000000000000 other (-1.4917398691177368, -1.1923412084579468, -1.411961793899536, 0.1977234482765197) (4.684864521026611, 8.463791847229004) -1005 CC(C)P(B1Nc2ccccc2-c2ccccc21)C(C)C 295.17498779296875 {"max_data": {"pyr_P": 0.9343035153100406, "pyr_alpha": 26.981943762047887, "qpole_amp": 13.172272933622507, "vbur_vbur": 61.431209880933, "vbur_vtot": 345.7797667792995, "sterimol_L": 9.992508949192185, "sterimol_B1": 4.005645927940163, "sterimol_B5": 9.086928207983297, "dipolemoment": 1.8594554605754394, "qpoletens_xx": 7.703456308675537, "qpoletens_yy": 4.024006027228127, "qpoletens_zz": -7.123827128153299, "sterimol_burL": 7.812270796904301, "vbur_far_vbur": 3.270543854561633, "vbur_far_vtot": 13.936768634319147, "sterimol_burB1": 4.004080197114159, "sterimol_burB5": 7.404312466697893, "vbur_near_vbur": 60.8632836535499, "vbur_near_vtot": 345.7528189633491, "vbur_ovbur_max": 20.014431468145634, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 186.70915855900867, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 23.296480273906557, "vbur_qvbur_min": 12.97130952487156, "vbur_qvtot_max": 196.81047152964254, "vbur_qvtot_min": 53.554206141309905, "vbur_max_delta_qvbur": 12.525754142062716, "vbur_max_delta_qvtot": 153.99405801858634}, "min_data": {"pyr_P": 0.8554155449497575, "pyr_alpha": 17.76040987386548, "qpole_amp": 9.92893763908058, "vbur_vbur": 55.076293200307326, "vbur_vtot": 344.45973384807206, "sterimol_L": 6.725008070050886, "sterimol_B1": 2.987552040907973, "sterimol_B5": 7.762987059256465, "dipolemoment": 1.021169025176181, "qpoletens_xx": 6.4096979200821735, "qpoletens_yy": 0.17905785441309163, "qpoletens_zz": -10.649706362360561, "sterimol_burL": 6.68326470953531, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 2.987552040907973, "sterimol_burB5": 6.814292039079082, "vbur_near_vbur": 55.076293200307326, "vbur_near_vtot": 327.6308745480677, "vbur_ovbur_max": 15.653009058960471, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 160.88763312234045, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.653009058960471, "vbur_qvbur_min": 10.249865613912375, "vbur_qvtot_max": 160.88763312234045, "vbur_qvtot_min": 33.45103313844405, "vbur_max_delta_qvbur": 2.9421297930546437, "vbur_max_delta_qvtot": 103.44362031782211}, "delta_data": {"pyr_P": 0.07888797036028317, "pyr_alpha": 9.221533888182407, "qpole_amp": 3.243335294541927, "vbur_vbur": 6.354916680625671, "vbur_vtot": 1.3200329312274448, "sterimol_L": 3.2675008791412994, "sterimol_B1": 1.0180938870321903, "sterimol_B5": 1.3239411487268313, "dipolemoment": 0.8382864353992585, "qpoletens_xx": 1.2937583885933632, "qpoletens_yy": 3.8449481728150356, "qpoletens_zz": 3.5258792342072622, "sterimol_burL": 1.1290060873689907, "vbur_far_vbur": 3.270543854561633, "vbur_far_vtot": 13.936768634319147, "sterimol_burB1": 1.0165281562061859, "sterimol_burB5": 0.5900204276188106, "vbur_near_vbur": 5.7869904532425736, "vbur_near_vtot": 18.121944415281405, "vbur_ovbur_max": 4.361422409185163, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 25.821525436668225, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 7.643471214946086, "vbur_qvbur_min": 2.7214439109591844, "vbur_qvtot_max": 35.922838407302095, "vbur_qvtot_min": 20.10317300286585, "vbur_max_delta_qvbur": 9.583624349008073, "vbur_max_delta_qvtot": 50.550437700764235}, "vburminconf_data": {"pyr_P": 0.8554155449497575, "pyr_alpha": 26.981943762047887, "qpole_amp": 13.172272933622507, "vbur_vbur": 55.076293200307326, "vbur_vtot": 345.7528189633491, "sterimol_L": 6.725008070050886, "sterimol_B1": 3.6701189274045154, "sterimol_B5": 8.86751941924205, "dipolemoment": 1.1746198931912493, "qpoletens_xx": 6.625700335132434, "qpoletens_yy": 4.024006027228127, "qpoletens_zz": -10.649706362360561, "sterimol_burL": 6.725008070050886, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 3.6701189274045154, "sterimol_burB5": 6.822024636517803, "vbur_near_vbur": 55.076293200307326, "vbur_near_vtot": 345.7528189633491, "vbur_ovbur_max": 15.653009058960471, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 160.88763312234045, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 15.653009058960471, "vbur_qvbur_min": 11.171307614510008, "vbur_qvtot_max": 160.88763312234045, "vbur_qvtot_min": 43.55170350726543, "vbur_max_delta_qvbur": 3.2559011893989016, "vbur_max_delta_qvtot": 103.44362031782211}, "boltzmann_averaged_data": {"nbo_P": 0.46759219286578324, "nmr_P": 347.4902921547247, "pyr_P": 0.9229255775786749, "fmo_mu": -0.1351683689635117, "vmin_r": 1.8046445462754033, "volume": 403.9253626578132, "Pint_dP": 4.170438090537822, "fmo_eta": 0.17197616858107764, "fukui_m": 0.3329001968438866, "fukui_p": 0.016755707776412172, "nuesp_P": -54.21223130645141, "somo_ra": 0.041740661447331254, "somo_rc": -0.3694308509726167, "nbo_P_ra": 0.450836485089371, "nbo_P_rc": 0.8004923897096697, "efg_amp_P": 1.6415220010200555, "fmo_omega": 0.05312216374919435, "pyr_alpha": 19.23089755962087, "qpole_amp": 11.024863445613502, "vbur_vbur": 58.78921534052126, "vbur_vtot": 344.87311206303957, "vmin_vmin": -0.06089517039733449, "E_solv_cds": -6.88696041088521, "Pint_P_int": 19.371107541643454, "Pint_P_max": 35.3798697266319, "Pint_P_min": 12.873015354310157, "fmo_e_homo": -0.2211564532540505, "fmo_e_lumo": -0.049180284672972856, "nbo_lp_P_e": -0.294859090498264, "sphericity": 0.7701916642882553, "sterimol_L": 9.36255893392382, "E_oxidation": 0.26853192606929455, "E_reduction": -0.0035263715318918924, "sterimol_B1": 3.5843661365321045, "sterimol_B5": 7.959098791522539, "E_solv_total": -14.645433455036777, "dipolemoment": 1.673629754964957, "efgtens_xx_P": -0.9043454221204783, "efgtens_yy_P": -0.40450496672355385, "efgtens_zz_P": 1.308850453452621, "nbo_bd_e_avg": -0.4239003586064141, "nbo_bd_e_max": -0.3916668335909431, "nbo_lp_P_occ": 1.9144384426653516, "qpoletens_xx": 7.218009533270031, "qpoletens_yy": 1.042640250061826, "qpoletens_zz": -8.260649783331857, "surface_area": 343.1008833029446, "E_solv_elstat": -7.7584730441515655, "nbo_bds_e_avg": 0.2182893898686081, "nbo_bds_e_min": 0.18908139737392657, "nmrtens_sxx_P": 270.8913033925974, "nmrtens_syy_P": 337.7874418612115, "nmrtens_szz_P": 433.7920522564784, "spindens_P_ra": 0.008674869524895986, "spindens_P_rc": 0.4458539801430334, "sterimol_burL": 7.246858774277853, "vbur_far_vbur": 0.5149968807735349, "vbur_far_vtot": 3.065346722200753, "nbo_bd_occ_avg": 1.951679337458422, "nbo_bd_occ_min": 1.944660522972211, "sterimol_burB1": 3.580924939488935, "sterimol_burB5": 7.307310411904909, "vbur_near_vbur": 58.27421845974772, "vbur_near_vtot": 338.8550537620375, "vbur_ovbur_max": 17.809569203119988, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 177.83022471972566, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 18.330668557796525, "vbur_qvbur_min": 11.958031367423818, "vbur_qvtot_max": 181.0485655612311, "vbur_qvtot_min": 43.21484439972627, "nbo_bds_occ_avg": 0.029106096711955288, "nbo_bds_occ_max": 0.03706752875918363, "nbo_lp_P_percent_s": 48.63024907878532, "vbur_max_delta_qvbur": 5.896005292524173, "vbur_max_delta_qvtot": 125.5640353753617, "vbur_ratio_vbur_vtot": 0.1704668135831554}} {"max_data": {"B1": 3.9932654531129805, "B5": 8.983992450772341, "lval": 10.157808766698702, "sasa": 524.4535736628151, "vbur": 72.33662528994832, "vtot": 342.0086375482991, "alpha": 239.927226, "p_int": 20.355830826870022, "sasa_P": 12.74996384372656, "pyr_val": 0.9610840756568971, "dip_norm": 1.1477098936578007, "far_vbur": 4.219442209951868, "far_vtot": 17.456937232207103, "near_vbur": 68.11718307999645, "near_vtot": 341.2715561723091, "ovbur_max": 20.257984974851784, "ovbur_min": 0.0, "ovtot_max": 184.4415594123092, "ovtot_min": 0.0, "pyr_alpha": 23.329065473283336, "qvbur_max": 24.13940557129922, "qvbur_min": 14.115316343236772, "qvtot_max": 197.0777227640733, "qvtot_min": 52.81377067502225, "cone_angle": 206.91562589558302, "p_int_area": 385.24041964365387, "p_int_atom": 28.11999896032526, "sasa_volume": 865.2448825211911, "EA_delta_SCC": 1.953, "IP_delta_SCC": 6.6358, "HOMO_LUMO_gap": 2.42945899707, "sasa_volume_P": 17.096809141295026, "max_delta_qvbur": 12.01725115596789, "max_delta_qvtot": 155.0390513642693, "nucleophilicity": -6.4187, "p_int_atom_area": 14.697954801500108, "p_int_times_p_int_area": 7841.888809938633, "global_electrophilicity_index": 1.968, "p_int_atom_times_p_int_atom_area": 373.5706953376595}, "min_data": {"B1": 3.0500011146548274, "B5": 7.486064870093168, "lval": 6.697802511487561, "sasa": 511.27351052064705, "vbur": 60.494212899586174, "vtot": 340.1985514042027, "alpha": 239.866473, "p_int": 20.113519351336187, "sasa_P": 3.019991435925825, "pyr_val": 0.8889261496653142, "dip_norm": 0.5041388697571335, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 60.494212899586174, "near_vtot": 320.9735498802839, "ovbur_max": 17.157510864776658, "ovbur_min": 0.0, "ovtot_max": 162.5421335072426, "ovtot_min": 0.0, "pyr_alpha": 13.445269087226265, "qvbur_max": 17.157510864776658, "qvbur_min": 11.539358529978864, "qvtot_max": 162.5421335072426, "qvtot_min": 32.20195942597528, "cone_angle": 165.29446330941647, "p_int_area": 372.9400579262935, "p_int_atom": 25.041679147702784, "sasa_volume": 850.679761944093, "EA_delta_SCC": 1.7497, "IP_delta_SCC": 6.4187, "HOMO_LUMO_gap": 2.234530368411, "sasa_volume_P": 4.513876566207189, "max_delta_qvbur": 3.252001040266773, "max_delta_qvtot": 102.13259250934371, "nucleophilicity": -6.6358, "p_int_atom_area": 10.298566969758577, "p_int_times_p_int_area": 7534.24076358237, "global_electrophilicity_index": 1.7907, "p_int_atom_times_p_int_atom_area": 280.2869582923175}, "boltzmann_averaged_data": {"B1": 3.557389025488864, "B5": 7.724080519335738, "lval": 9.425272229276613, "sasa": 517.4460218497485, "vbur": 65.32944913103752, "vtot": 340.4547841638079, "alpha": 239.89449647364, "p_int": 20.169472359187342, "B1_std": 0.2049608840921438, "B5_std": 0.11669910460106973, "sasa_P": 9.359551158239173, "pyr_val": 0.941530951151865, "dip_norm": 1.007972115139065, "far_vbur": 0.9315379126087808, "far_vtot": 5.160158350717465, "lval_std": 0.3345091208270963, "sasa_std": 1.6444336650645035, "vbur_std": 0.4163100098520048, "vtot_std": 0.26386714907274883, "alpha_std": 0.0042943782552304355, "near_vbur": 64.39791121842875, "near_vtot": 335.00812819367235, "ovbur_max": 19.31649698809238, "ovbur_min": 0.0, "ovtot_max": 176.29910688070484, "ovtot_min": 0.0, "p_int_std": 0.020370255010413806, "pyr_alpha": 16.598240979718504, "qvbur_max": 20.247829873108692, "qvbur_min": 13.528860499724292, "qvtot_max": 181.43422734054957, "qvtot_min": 43.15581752425788, "cone_angle": 185.82392051719896, "p_int_area": 378.2845370979445, "p_int_atom": 25.595543921176528, "sasa_P_std": 0.43310007712903076, "pyr_val_std": 0.006564781388020753, "sasa_volume": 856.7308726719043, "EA_delta_SCC": 1.8253281160000006, "IP_delta_SCC": 6.579435697000001, "dip_norm_std": 0.044846888766991506, "far_vbur_std": 0.3092883165262664, "far_vtot_std": 1.379799472888809, "HOMO_LUMO_gap": 2.4001488688183255, "near_vbur_std": 0.35317570460807113, "near_vtot_std": 2.0279904612463957, "ovbur_max_std": 0.6170553221061659, "ovbur_min_std": 0.0, "ovtot_max_std": 1.7248220001875534, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.8885890691582019, "qvbur_max_std": 0.8996712996716001, "qvbur_min_std": 0.2889719461949462, "qvtot_max_std": 2.841099454055741, "qvtot_min_std": 3.10666344155515, "sasa_volume_P": 14.06251297108422, "cone_angle_std": 2.587151640947108, "p_int_area_std": 1.4879458041982696, "p_int_atom_std": 0.27567798764566387, "max_delta_qvbur": 6.388699411391865, "max_delta_qvtot": 125.15082106825963, "nucleophilicity": -6.579435697000001, "p_int_atom_area": 12.235120501221566, "sasa_volume_std": 1.5835591861176008, "EA_delta_SCC_std": 0.027257857169824366, "IP_delta_SCC_std": 0.018982652433845785, "HOMO_LUMO_gap_std": 0.01618489451920243, "sasa_volume_P_std": 0.644588261103214, "max_delta_qvbur_std": 0.7775540323149708, "max_delta_qvtot_std": 2.8845527152083754, "nucleophilicity_std": 0.018982652433845785, "p_int_atom_area_std": 0.29141402068315453, "p_int_times_p_int_area": 7629.8110893812545, "p_int_times_p_int_area_std": 33.77836803536845, "global_electrophilicity_index": 1.8575212179999998, "p_int_atom_times_p_int_atom_area": 313.2086467502371, "global_electrophilicity_index_std": 0.023059678562297348, "p_int_atom_times_p_int_atom_area_std": 9.789207820229013}} {"max_data": {"pyr_P": "0.9359214", "pyr_alpha": "27.247505", "qpole_amp": "11.809618", "vbur_vbur": "60.76839", "sterimol_L": "9.7925825", "sterimol_B1": "3.9710608", "sterimol_B5": "8.864578", "dipolemoment": "1.7008064", "qpoletens_xx": "6.7952375", "qpoletens_yy": "2.6383617", "qpoletens_zz": "-6.814295", "sterimol_burL": "7.827127", "vbur_far_vbur": "3.272805", "vbur_far_vtot": "13.845597", "sterimol_burB1": "4.024862", "sterimol_burB5": "7.411513", "vbur_near_vbur": "60.74083", "vbur_near_vtot": "345.61795", "vbur_ovbur_max": "20.166517", "vbur_ovbur_min": "-0.11920985", "vbur_ovtot_max": "184.65196", "vbur_ovtot_min": "-0.5611749", "vbur_qvbur_max": "22.262735", "vbur_qvbur_min": "13.466767", "vbur_qvtot_max": "197.34998", "vbur_qvtot_min": "55.635902", "vbur_max_delta_qvbur": "11.604786", "vbur_max_delta_qvtot": "152.19102"}, "min_data": {"pyr_P": "0.85583186", "pyr_alpha": "17.465294", "qpole_amp": "8.292156", "vbur_vbur": "55.49349", "sterimol_L": "6.613588", "sterimol_B1": "3.06912", "sterimol_B5": "7.670099", "dipolemoment": "0.9258404", "qpoletens_xx": "5.759868", "qpoletens_yy": "0.16605043", "qpoletens_zz": "-9.14959", "sterimol_burL": "6.7053695", "vbur_far_vbur": "-0.11797697", "vbur_far_vtot": "3.64039", "sterimol_burB1": "3.0190403", "sterimol_burB5": "6.786719", "vbur_near_vbur": "55.57832", "vbur_near_vtot": "325.33936", "vbur_ovbur_max": "15.854363", "vbur_ovbur_min": "0.059041172", "vbur_ovtot_max": "160.36153", "vbur_ovtot_min": "0.04941458", "vbur_qvbur_max": "14.732937", "vbur_qvbur_min": "10.363699", "vbur_qvtot_max": "154.75746", "vbur_qvtot_min": "35.688774", "vbur_max_delta_qvbur": "3.293703", "vbur_max_delta_qvtot": "106.785934"}, "delta_data": {"pyr_P": "0.08072459", "pyr_alpha": "9.449487", "qpole_amp": "2.7313929", "vbur_vbur": "6.379136", "sterimol_L": "2.8916724", "sterimol_B1": "0.97472143", "sterimol_B5": "1.0031945", "dipolemoment": "0.6721276", "qpoletens_xx": "1.4036535", "qpoletens_yy": "2.8789039", "qpoletens_zz": "2.667785", "sterimol_burL": "1.0982544", "vbur_far_vbur": "4.3649325", "vbur_far_vtot": "12.711139", "sterimol_burB1": "0.9723953", "sterimol_burB5": "0.53495204", "vbur_near_vbur": "5.2553997", "vbur_near_vtot": "18.582375", "vbur_ovbur_max": "4.313262", "vbur_ovbur_min": "-0.18006054", "vbur_ovtot_max": "23.474487", "vbur_ovtot_min": "-0.14255202", "vbur_qvbur_max": "7.728269", "vbur_qvbur_min": "3.0223017", "vbur_qvtot_max": "35.548386", "vbur_qvtot_min": "18.053654", "vbur_max_delta_qvbur": "10.5061455", "vbur_max_delta_qvtot": "51.121784"}, "vburminconf_data": {"pyr_P": "0.85972255", "pyr_alpha": "26.220951", "qpole_amp": "8.974309", "vbur_vbur": "55.5005", "sterimol_L": "7.19958", "sterimol_B1": "3.6369436", "sterimol_B5": "8.737125", "dipolemoment": "1.0009567", "qpoletens_xx": "4.9880085", "qpoletens_yy": "2.0029316", "qpoletens_zz": "-7.430211", "sterimol_burL": "6.9155416", "vbur_far_vbur": "-0.62237906", "vbur_far_vtot": "6.3863063", "sterimol_burB1": "3.6218393", "sterimol_burB5": "6.918523", "vbur_near_vbur": "55.5066", "vbur_near_vtot": "345.223", "vbur_ovbur_max": "15.457995", "vbur_ovbur_min": "0.021912977", "vbur_ovtot_max": "155.39923", "vbur_ovtot_min": "0.011936175", "vbur_qvbur_max": "16.107569", "vbur_qvbur_min": "11.452475", "vbur_qvtot_max": "155.58983", "vbur_qvtot_min": "39.630806", "vbur_max_delta_qvbur": "4.1843224", "vbur_max_delta_qvtot": "104.67153"}, "boltzmann_averaged_data": {"nbo_P": "0.46601394", "nmr_P": "350.237", "pyr_P": "0.92185014", "fmo_mu": "-0.13470943", "vmin_r": "1.8045249", "volume": "404.22968", "Pint_dP": "4.1616554", "fmo_eta": "0.17490485", "fukui_m": "0.29541537", "fukui_p": "0.015971519", "nuesp_P": "-54.21218", "somo_ra": "0.042805", "somo_rc": "-0.36770836", "nbo_P_ra": "0.44390485", "nbo_P_rc": "0.8071062", "efg_amp_P": "1.6616116", "fmo_omega": "0.052761447", "pyr_alpha": "19.75726", "qpole_amp": "9.965456", "vbur_vbur": "59.557816", "vbur_vtot": "344.85245", "vmin_vmin": "-0.06035114", "E_solv_cds": "-6.8835907", "Pint_P_int": "19.624414", "Pint_P_max": "35.091263", "Pint_P_min": "13.009643", "fmo_e_homo": "-0.21986388", "fmo_e_lumo": "-0.047031585", "nbo_lp_P_e": "-0.29520288", "sphericity": "0.7727528", "sterimol_L": "9.314916", "E_oxidation": "0.26684406", "E_reduction": "-0.001280452", "sterimol_B1": "3.6104662", "sterimol_B5": "7.824036", "E_solv_total": "-14.70397", "dipolemoment": "1.59282", "efgtens_xx_P": "-0.90523547", "efgtens_yy_P": "-0.41431093", "efgtens_zz_P": "1.3223956", "nbo_bd_e_avg": "-0.42373633", "nbo_bd_e_max": "-0.39521676", "nbo_lp_P_occ": "1.9122398", "qpoletens_xx": "6.7735014", "qpoletens_yy": "0.93603975", "qpoletens_zz": "-6.8225317", "surface_area": "345.90494", "E_solv_elstat": "-7.8037252", "nbo_bds_e_avg": "0.21882674", "nbo_bds_e_min": "0.19038689", "nmrtens_sxx_P": "284.68323", "nmrtens_syy_P": "339.3689", "nmrtens_szz_P": "420.99292", "spindens_P_ra": "-0.0014106268", "spindens_P_rc": "0.40153748", "sterimol_burL": "7.2429385", "vbur_far_vbur": "0.28666243", "vbur_far_vtot": "1.6591972", "nbo_bd_occ_avg": "1.9517615", "nbo_bd_occ_min": "1.944443", "sterimol_burB1": "3.592511", "sterimol_burB5": "7.2041273", "vbur_near_vbur": "58.2131", "vbur_near_vtot": "335.6777", "vbur_ovbur_max": "17.7536", "vbur_ovbur_min": "-0.03196315", "vbur_ovtot_max": "177.39812", "vbur_ovtot_min": "-0.07810839", "vbur_qvbur_max": "17.825947", "vbur_qvbur_min": "11.91548", "vbur_qvtot_max": "185.27466", "vbur_qvtot_min": "43.482327", "nbo_bds_occ_avg": "0.028821949", "nbo_bds_occ_max": "0.037218604", "nbo_lp_P_percent_s": "48.404793", "vbur_max_delta_qvbur": "5.5851", "vbur_max_delta_qvtot": "133.05602", "vbur_ratio_vbur_vtot": "0.17022756"}} CC(C)P(B1Nc2ccccc2-c2ccccc21)C(C)C {"max_data": {"B1": 4.033405062664897, "B5": 9.013779581704783, "lval": 10.704009342344277, "sasa": 525.7235977573229, "vbur": 58.559330560215976, "vtot": 341.21290437928036, "alpha": 239.906309, "p_int": 20.316950317289066, "sasa_P": 12.949963276569331, "pyr_val": 0.9442054593023628, "dip_norm": 1.0893787220246225, "far_vbur": 0.23311835414098717, "far_vtot": 3.73195880280684, "near_vbur": 58.32621220607499, "near_vtot": 340.98659176516827, "ovbur_max": 17.145854947069605, "ovbur_min": 0.0, "ovtot_max": 187.1388221790882, "ovtot_min": 0.0, "pyr_alpha": 26.69885858267372, "qvbur_max": 17.378973301210593, "qvbur_min": 12.681638465269703, "qvtot_max": 188.44846115722444, "qvtot_min": 52.63013621316191, "cone_angle": 183.16823557885445, "p_int_area": 384.4400911737352, "p_int_atom": 27.10551029126158, "sasa_volume": 866.2915165385688, "EA_delta_SCC": 1.8604, "IP_delta_SCC": 6.5677, "HOMO_LUMO_gap": 2.259381241129, "sasa_volume_P": 13.743328726076257, "max_delta_qvbur": 6.958582871108469, "max_delta_qvtot": 137.15071106776895, "nucleophilicity": -6.3233, "p_int_atom_area": 14.298010453159971, "p_int_times_p_int_area": 7756.5028839487495, "global_electrophilicity_index": 1.8862, "p_int_atom_times_p_int_atom_area": 364.084680025968}, "min_data": {"B1": 3.099163130936556, "B5": 7.748528002501313, "lval": 7.037985718484771, "sasa": 511.4834993988755, "vbur": 52.5681888587926, "vtot": 339.9107172635059, "alpha": 239.842872, "p_int": 20.10725577913785, "sasa_P": 7.059979979349763, "pyr_val": 0.8572633088205486, "dip_norm": 0.5160465095318444, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 52.5681888587926, "near_vtot": 327.7662132652203, "ovbur_max": 15.012822006679574, "ovbur_min": 0.0, "ovtot_max": 161.3877798202971, "ovtot_min": 0.0, "pyr_alpha": 16.09596575955599, "qvbur_max": 15.012822006679574, "qvbur_min": 10.222239829082287, "qvtot_max": 161.3877798202971, "qvtot_min": 31.24923914186965, "cone_angle": 161.1485086506519, "p_int_area": 370.6410910247797, "p_int_atom": 24.9979400679278, "sasa_volume": 849.4860672975796, "EA_delta_SCC": 1.7323, "IP_delta_SCC": 6.3233, "HOMO_LUMO_gap": 2.066412534835, "sasa_volume_P": 8.221661326881824, "max_delta_qvbur": 2.622581484086105, "max_delta_qvtot": 101.81277402830337, "nucleophilicity": -6.5677, "p_int_atom_area": 11.7983582760341, "p_int_times_p_int_area": 7487.546363878791, "global_electrophilicity_index": 1.7706, "p_int_atom_times_p_int_atom_area": 305.8375490876758}, "boltzmann_averaged_data": {"B1": 3.9190542405244946, "B5": 8.993317333081194, "lval": 9.740834366575896, "sasa": 522.407497822292, "vbur": 55.245209578051366, "vtot": 339.94009844157705, "alpha": 239.8784419186508, "p_int": 20.216925556856932, "B1_std": 0.08453742275937344, "B5_std": 0.15500477104237262, "sasa_P": 8.130207942093543, "pyr_val": 0.8978889553712728, "dip_norm": 0.5742364315148184, "far_vbur": 0.0017266903822184697, "far_vtot": 2.8097537652924487, "lval_std": 0.08810189464961309, "sasa_std": 0.7062705456276501, "vbur_std": 0.2447114984238735, "vtot_std": 0.14619898705691436, "alpha_std": 0.0024285998226928926, "near_vbur": 55.243482887669145, "near_vtot": 336.7943949119165, "ovbur_max": 15.207710032399783, "ovbur_min": 0.0, "ovtot_max": 183.24751212268833, "ovtot_min": 0.0, "p_int_std": 0.007115463682139828, "pyr_alpha": 22.41473718345897, "qvbur_max": 15.209486143378875, "qvbur_min": 11.845660279352327, "qvtot_max": 186.05753942973632, "qvtot_min": 44.65393610562088, "cone_angle": 179.2626614935867, "p_int_area": 382.17829987494406, "p_int_atom": 26.2927496765856, "sasa_P_std": 0.20229663688234822, "pyr_val_std": 0.005652807911674021, "sasa_volume": 861.2900248645361, "EA_delta_SCC": 1.820419331806682, "IP_delta_SCC": 6.444363937360626, "dip_norm_std": 0.05643615752277753, "far_vbur_std": 0.01770215690847434, "far_vtot_std": 0.34754092431686856, "HOMO_LUMO_gap": 2.0908805257538994, "near_vbur_std": 0.23382748725762006, "near_vtot_std": 1.4092567352086312, "ovbur_max_std": 0.20104050573875365, "ovbur_min_std": 0.0, "ovtot_max_std": 1.307645509817581, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.65334951406549, "qvbur_max_std": 0.21691320345579826, "qvbur_min_std": 0.0789661937993398, "qvtot_max_std": 1.4613710127656965, "qvtot_min_std": 1.0682877305303202, "sasa_volume_P": 8.921716951060077, "cone_angle_std": 0.5948699257734118, "p_int_area_std": 0.8317385369633028, "p_int_atom_std": 0.09770819492577881, "max_delta_qvbur": 3.1386256452801353, "max_delta_qvtot": 133.19896773319462, "nucleophilicity": -6.444363937360626, "p_int_atom_area": 12.478823784671022, "sasa_volume_std": 0.7260433454973175, "EA_delta_SCC_std": 0.006403240903056257, "IP_delta_SCC_std": 0.008111329843886097, "HOMO_LUMO_gap_std": 0.0195888732924654, "sasa_volume_P_std": 0.25836149279560094, "max_delta_qvbur_std": 0.25390949313117456, "max_delta_qvtot_std": 1.332906909396057, "nucleophilicity_std": 0.008111329843886097, "p_int_atom_area_std": 0.11471310369567378, "p_int_times_p_int_area": 7726.472870947781, "p_int_times_p_int_area_std": 18.17183037957779, "global_electrophilicity_index": 1.846529577704223, "p_int_atom_times_p_int_atom_area": 328.10988336819935, "global_electrophilicity_index_std": 0.005360712898322087, "p_int_atom_times_p_int_atom_area_std": 3.8779836801460514}} \\xc78010489986462bc3775d29a01c8ec98fa86c99225c8699bf0f7116d1015b98941b12794ee4450b00a4002c599d892a391261753ac61420568d7503287c3cfd2533266236be6bac46c66264179707cec0dac797113c1588f03981696b5ac28b918b64dfbbd167946ade383b02f4e9c2992ef85b8a38b0809383ef8129907042 \\x02000040022000020100010400000080800000000080040000004000900000000000000800000000000002101100480020000000000100408000000100000000 other (2.387653350830078, 1.5320760011672974, -1.2039892673492432, -4.220148086547852) (5.2986931800842285, 7.127920150756836) -1015 B1NBNB(P(B2NBNBN2)B2NBNBN2)N1 269.4649963378906 {"max_data": {"pyr_P": 0.9733174910064629, "pyr_alpha": 22.38784036355734, "qpole_amp": 5.963434419431113, "vbur_vbur": 50.05908857276266, "vbur_vtot": 364.635179845647, "sterimol_L": 7.841911228780909, "sterimol_B1": 5.016451169216505, "sterimol_B5": 6.561954522204761, "dipolemoment": 0.9849259386659105, "qpoletens_xx": 4.218321156016541, "qpoletens_yy": 2.4328751044882924, "qpoletens_zz": -1.9662503756423806, "sterimol_burL": 7.675101519866836, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.865037636024429, "sterimol_burB5": 6.329291710578008, "vbur_near_vbur": 50.05908857276266, "vbur_near_vtot": 365.13373537670725, "vbur_ovbur_max": 13.751554397114276, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 108.76308503517876, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.751554397114276, "vbur_qvbur_min": 11.990250958968518, "vbur_qvtot_max": 108.76308503517876, "vbur_qvtot_min": 78.19545580716705, "vbur_max_delta_qvbur": 2.1681603487388124, "vbur_max_delta_qvtot": 35.3455505212367}, "min_data": {"pyr_P": 0.8986249006127607, "pyr_alpha": 11.101380307279074, "qpole_amp": 2.4081689796204366, "vbur_vbur": 47.861642893698395, "vbur_vtot": 363.21003433414313, "sterimol_L": 6.867361430366179, "sterimol_B1": 4.32833204523725, "sterimol_B5": 6.303586981649805, "dipolemoment": 0.6876898646008386, "qpoletens_xx": 0.9889141789004403, "qpoletens_yy": -0.08266710030285385, "qpoletens_zz": -4.869123424571339, "sterimol_burL": 6.867361430366179, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.319752443557796, "sterimol_burB5": 6.141120107650777, "vbur_near_vbur": 47.86164289369839, "vbur_near_vtot": 363.2100343341432, "vbur_ovbur_max": 12.58014118409572, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 102.89894313096505, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 12.58014118409572, "vbur_qvbur_min": 11.218373323961647, "vbur_qvtot_max": 102.89894313096505, "vbur_qvtot_min": 72.17421479662563, "vbur_max_delta_qvbur": 1.0208029427733134, "vbur_max_delta_qvtot": 24.703373197322335}, "delta_data": {"pyr_P": 0.07469259039370224, "pyr_alpha": 11.286460056278267, "qpole_amp": 3.5552654398106767, "vbur_vbur": 2.1974456790642662, "vbur_vtot": 1.4251455115038425, "sterimol_L": 0.9745497984147304, "sterimol_B1": 0.6881191239792548, "sterimol_B5": 0.25836754055495614, "dipolemoment": 0.2972360740650719, "qpoletens_xx": 3.2294069771161, "qpoletens_yy": 2.515542204791146, "qpoletens_zz": 2.9028730489289583, "sterimol_burL": 0.8077400895006575, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 0.5452851924666327, "sterimol_burB5": 0.18817160292723134, "vbur_near_vbur": 2.1974456790642733, "vbur_near_vtot": 1.923701042564062, "vbur_ovbur_max": 1.1714132130185568, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 5.86414190421371, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 1.1714132130185568, "vbur_qvbur_min": 0.7718776350068719, "vbur_qvtot_max": 5.86414190421371, "vbur_qvtot_min": 6.0212410105414165, "vbur_max_delta_qvbur": 1.147357405965499, "vbur_max_delta_qvtot": 10.642177323914368}, "vburminconf_data": {"pyr_P": 0.9733174910064629, "pyr_alpha": 11.101380307279074, "qpole_amp": 2.4081689796204366, "vbur_vbur": 47.861642893698395, "vbur_vtot": 363.21003433414313, "sterimol_L": 7.841911228780909, "sterimol_B1": 4.32833204523725, "sterimol_B5": 6.303586981649805, "dipolemoment": 0.8054565319100693, "qpoletens_xx": 0.9889141789004403, "qpoletens_yy": 0.9773361967419403, "qpoletens_zz": -1.9662503756423806, "sterimol_burL": 7.675101519866836, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "sterimol_burB1": 4.32833204523725, "sterimol_burB5": 6.303586981649805, "vbur_near_vbur": 47.86164289369839, "vbur_near_vtot": 363.2100343341432, "vbur_ovbur_max": 12.58014118409572, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 106.39828942839084, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 12.58014118409572, "vbur_qvbur_min": 11.218373323961647, "vbur_qvtot_max": 106.39828942839084, "vbur_qvtot_min": 72.17421479662563, "vbur_max_delta_qvbur": 1.1755968316364829, "vbur_max_delta_qvtot": 34.224074631765205}, "boltzmann_averaged_data": {"nbo_P": -0.06276919680431889, "nmr_P": 509.69719499987895, "pyr_P": 0.9002359191620969, "fmo_mu": -0.11997704856823639, "vmin_r": 1.9379470964262007, "volume": 353.55433868057094, "Pint_dP": 4.519566420869141, "fmo_eta": 0.23065500039131667, "fukui_m": 0.5518585713208721, "fukui_p": 0.03104119341296193, "nuesp_P": -54.22494715559235, "somo_ra": 0.08153918403287759, "somo_rc": -0.42252728305552145, "nbo_P_ra": -0.09381039021728083, "nbo_P_rc": 0.48908937451655327, "efg_amp_P": 0.8249110000538993, "fmo_omega": 0.031217283076609592, "pyr_alpha": 22.16253545226099, "qpole_amp": 5.942376146647508, "vbur_vbur": 50.018816901070714, "vbur_vtot": 364.62483684728784, "vmin_vmin": -0.040039201760873576, "E_solv_cds": 5.105122896700469, "Pint_P_int": 18.68238599614455, "Pint_P_max": 31.830226408813072, "Pint_P_min": 10.815543744754752, "fmo_e_homo": -0.23530454876389476, "fmo_e_lumo": -0.0046495483725780655, "nbo_lp_P_e": -0.27913252749453543, "sphericity": 0.7573837929501294, "sterimol_L": 6.927698193440319, "E_oxidation": 0.2877862254406027, "E_reduction": 0.03871499613174834, "sterimol_B1": 4.97618720963846, "sterimol_B5": 6.440713308778651, "E_solv_total": -4.094426441264594, "dipolemoment": 0.7056378174931931, "efgtens_xx_P": -0.33773157527105546, "efgtens_yy_P": -0.3357923683202649, "efgtens_zz_P": 0.6735239435913203, "nbo_bd_e_avg": -0.40685651782848986, "nbo_bd_e_max": -0.40655337400591635, "nbo_lp_P_occ": 1.7843059726384436, "qpoletens_xx": 2.533060075268523, "qpoletens_yy": 2.2786793071578253, "qpoletens_zz": -4.811739382426348, "surface_area": 319.2563944305331, "E_solv_elstat": -9.199549337965063, "nbo_bds_e_avg": 0.26840156626154826, "nbo_bds_e_min": 0.2680370650334916, "nmrtens_sxx_P": 467.02593935069297, "nmrtens_syy_P": 530.0776011539307, "nmrtens_szz_P": 531.9880566756399, "spindens_P_ra": -0.004699067518174347, "spindens_P_rc": 0.7420812808425755, "sterimol_burL": 6.913787823965479, "vbur_far_vbur": 0.0, "vbur_far_vtot": 0.0, "nbo_bd_occ_avg": 1.945542830407193, "nbo_bd_occ_min": 1.9446771504244718, "sterimol_burB1": 4.830504332358349, "sterimol_burB5": 6.152923136791048, "vbur_near_vbur": 50.018816901070714, "vbur_near_vtot": 365.0499085076256, "vbur_ovbur_max": 13.146176625864708, "vbur_ovbur_min": 0.0, "vbur_ovtot_max": 103.25893145514164, "vbur_ovtot_min": 0.0, "vbur_qvbur_max": 13.146176625864708, "vbur_qvbur_min": 11.962500353104803, "vbur_qvtot_max": 103.25893145514164, "vbur_qvtot_min": 77.88625709658392, "nbo_bds_occ_avg": 0.016599306714501643, "nbo_bds_occ_max": 0.0166711495805239, "nbo_lp_P_percent_s": 42.04780272632611, "vbur_max_delta_qvbur": 1.088580768087705, "vbur_max_delta_qvtot": 25.3725674687955, "vbur_ratio_vbur_vtot": 0.13717873618519028}} {"max_data": {"B1": 4.92846916985145, "B5": 6.5532776776613115, "lval": 7.903932002100115, "sasa": 496.93220359764683, "vbur": 56.30973844275545, "vtot": 359.77847360038993, "alpha": 198.242596, "p_int": 19.253898106700092, "sasa_P": 18.419947764819085, "pyr_val": 0.921527835662995, "dip_norm": 0.6206536876552011, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 56.309738442755446, "near_vtot": 360.2089260683652, "ovbur_max": 15.58396197432499, "ovbur_min": 0.0, "ovtot_max": 106.74247670156798, "ovtot_min": 0.0, "pyr_alpha": 23.20618545458111, "qvbur_max": 15.58396197432499, "qvbur_min": 13.299402103743319, "qvtot_max": 106.74247670156798, "qvtot_min": 76.64417051507206, "cone_angle": 152.39629599761392, "p_int_area": 344.5106063829644, "p_int_atom": 24.40404821056689, "sasa_volume": 807.8766130115766, "EA_delta_SCC": 1.8954, "IP_delta_SCC": 7.9692, "HOMO_LUMO_gap": 3.784654410433, "sasa_volume_P": 26.690647268481776, "max_delta_qvbur": 3.5084312298218556, "max_delta_qvtot": 37.340527546567515, "nucleophilicity": -7.939, "p_int_atom_area": 18.09748176239129, "p_int_times_p_int_area": 6633.172111975059, "global_electrophilicity_index": 2.0027, "p_int_atom_times_p_int_atom_area": 441.6518174192521}, "min_data": {"B1": 3.990869300251534, "B5": 6.302563148357956, "lval": 6.648747076443145, "sasa": 495.97213214120234, "vbur": 54.92268423561658, "vtot": 358.99485052401934, "alpha": 198.218545, "p_int": 19.10973396986792, "sasa_P": 17.259951054331015, "pyr_val": 0.88868281218405, "dip_norm": 0.529, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 54.92268423561657, "near_vtot": 359.0523795190241, "ovbur_max": 14.546585298397599, "ovbur_min": 0.0, "ovtot_max": 101.94738115000072, "ovtot_min": 0.0, "pyr_alpha": 19.10906820388757, "qvbur_max": 14.546585298397599, "qvbur_min": 11.889036061190344, "qvtot_max": 101.94738115000072, "qvtot_min": 69.30786607887529, "cone_angle": 144.43453284262867, "p_int_area": 339.7127656866224, "p_int_atom": 23.58642970629719, "sasa_volume": 805.6617494357126, "EA_delta_SCC": 1.8225, "IP_delta_SCC": 7.939, "HOMO_LUMO_gap": 3.513518711038, "sasa_volume_P": 24.583891237337117, "max_delta_qvbur": 1.0840003467555892, "max_delta_qvtot": 25.292247372088582, "nucleophilicity": -7.9692, "p_int_atom_area": 17.397579152796048, "p_int_times_p_int_area": 6491.8205784394295, "global_electrophilicity_index": 1.9497, "p_int_atom_times_p_int_atom_area": 413.3885870782843}, "boltzmann_averaged_data": {"B1": 4.8673099493886625, "B5": 6.310551069361371, "lval": 6.730674297597287, "sasa": 496.1875120416977, "vbur": 55.500599953585954, "vtot": 358.99886068493004, "alpha": 198.23630824661754, "p_int": 19.111548995926427, "B1_std": 0.23142783445963058, "B5_std": 0.030319721134516135, "sasa_P": 17.653081208182122, "pyr_val": 0.9089245809428129, "dip_norm": 0.5349658052954136, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.30999097497405903, "sasa_std": 0.058378916526278184, "vbur_std": 0.15297778451489813, "vtot_std": 0.020341130063700315, "alpha_std": 0.004682146871756803, "near_vbur": 55.500599953585954, "near_vtot": 360.13367002964753, "ovbur_max": 14.590093257020646, "ovbur_min": 0.0, "ovtot_max": 102.25991749614239, "ovtot_min": 0.0, "p_int_std": 0.0072060836561106375, "pyr_alpha": 21.104428864173716, "qvbur_max": 14.590093257020646, "qvbur_min": 13.20738549813025, "qvtot_max": 102.25991749614239, "qvtot_min": 76.16597121283853, "cone_angle": 144.94225487077748, "p_int_area": 339.93519700708896, "p_int_atom": 23.750141571896023, "sasa_P_std": 0.202194251554685, "pyr_val_std": 0.003341076790531572, "sasa_volume": 805.8061737644533, "EA_delta_SCC": 1.8272411835881637, "IP_delta_SCC": 7.9683481905180935, "dip_norm_std": 0.022593706773022807, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.7669899772448563, "near_vbur_std": 0.15297778451489985, "near_vtot_std": 0.2850688504206035, "ovbur_max_std": 0.16476837502764557, "ovbur_min_std": 0.0, "ovtot_max_std": 1.1828862100157327, "ovtot_min_std": 0.0, "pyr_alpha_std": 0.5271238002059812, "qvbur_max_std": 0.16476837502764557, "qvbur_min_std": 0.34818121010820785, "qvtot_max_std": 1.1828862100157327, "qvtot_min_std": 1.8098474579661012, "sasa_volume_P": 25.45923402338924, "cone_angle_std": 1.921074247710446, "p_int_area_std": 0.842019203907129, "p_int_atom_std": 0.04478731207183374, "max_delta_qvbur": 1.230179012589995, "max_delta_qvtot": 26.077345077524118, "nucleophilicity": -7.9683481905180935, "p_int_atom_area": 17.430289274084707, "sasa_volume_std": 0.5465460187810112, "EA_delta_SCC_std": 0.017966071982981693, "IP_delta_SCC_std": 0.0005922390085700422, "HOMO_LUMO_gap_std": 0.06686746278617073, "sasa_volume_P_std": 0.32485368530446596, "max_delta_qvbur_std": 0.5531081035288522, "max_delta_qvtot_std": 2.971693848872642, "nucleophilicity_std": 0.0005922390085700422, "p_int_atom_area_std": 0.123821722732171, "p_int_times_p_int_area": 6496.694009808541, "p_int_times_p_int_area_std": 18.482043960084187, "global_electrophilicity_index": 1.9531460905390945, "p_int_atom_times_p_int_atom_area": 413.96668315029325, "global_electrophilicity_index_std": 0.013061089036542626, "p_int_atom_times_p_int_atom_area_std": 2.2174393746360894}} {"max_data": {"pyr_P": "0.9701625", "pyr_alpha": "22.016752", "qpole_amp": "4.9920177", "vbur_vbur": "48.475285", "sterimol_L": "6.6857233", "sterimol_B1": "5.076966", "sterimol_B5": "5.689784", "dipolemoment": "0.73334473", "qpoletens_xx": "3.6893167", "qpoletens_yy": "2.236785", "qpoletens_zz": "-1.8519119", "sterimol_burL": "7.5338454", "vbur_far_vbur": "-0.94326615", "vbur_far_vtot": "-2.634772", "sterimol_burB1": "4.748717", "sterimol_burB5": "6.179826", "vbur_near_vbur": "49.126736", "vbur_near_vtot": "364.50168", "vbur_ovbur_max": "13.181435", "vbur_ovbur_min": "1.5040727", "vbur_ovtot_max": "105.80964", "vbur_ovtot_min": "0.21344775", "vbur_qvbur_max": "12.289644", "vbur_qvbur_min": "12.521249", "vbur_qvtot_max": "73.915886", "vbur_qvtot_min": "71.06102", "vbur_max_delta_qvbur": "0.8645717", "vbur_max_delta_qvtot": "24.157778"}, "min_data": {"pyr_P": "0.89848554", "pyr_alpha": "11.305588", "qpole_amp": "2.2128327", "vbur_vbur": "47.889053", "sterimol_L": "6.682056", "sterimol_B1": "4.333454", "sterimol_B5": "6.054164", "dipolemoment": "0.9118082", "qpoletens_xx": "0.86488575", "qpoletens_yy": "0.18735266", "qpoletens_zz": "-4.421503", "sterimol_burL": "6.803475", "vbur_far_vbur": "-0.93317777", "vbur_far_vtot": "-1.5465814", "sterimol_burB1": "4.2929363", "sterimol_burB5": "6.073085", "vbur_near_vbur": "47.564552", "vbur_near_vtot": "364.5623", "vbur_ovbur_max": "12.005755", "vbur_ovbur_min": "-0.023151675", "vbur_ovtot_max": "94.839165", "vbur_ovtot_min": "-0.14147176", "vbur_qvbur_max": "12.109948", "vbur_qvbur_min": "11.726086", "vbur_qvtot_max": "73.626465", "vbur_qvtot_min": "69.20007", "vbur_max_delta_qvbur": "1.3977506", "vbur_max_delta_qvtot": "15.777075"}, "delta_data": {"pyr_P": "0.07338008", "pyr_alpha": "10.778904", "qpole_amp": "3.817988", "vbur_vbur": "1.4468619", "sterimol_L": "1.0293328", "sterimol_B1": "0.64214474", "sterimol_B5": "0.024113605", "dipolemoment": "0.31014216", "qpoletens_xx": "2.5815668", "qpoletens_yy": "2.7329068", "qpoletens_zz": "2.47427", "sterimol_burL": "0.7338801", "vbur_far_vbur": "-0.52140445", "vbur_far_vtot": "-2.3880966", "sterimol_burB1": "0.5272601", "sterimol_burB5": "0.012428169", "vbur_near_vbur": "1.3948882", "vbur_near_vtot": "-0.3476103", "vbur_ovbur_max": "1.0824919", "vbur_ovbur_min": "1.5266794", "vbur_ovtot_max": "4.0144033", "vbur_ovtot_min": "-1.1342782", "vbur_qvbur_max": "-0.041057315", "vbur_qvbur_min": "0.877788", "vbur_qvtot_max": "5.102984", "vbur_qvtot_min": "6.623021", "vbur_max_delta_qvbur": "-0.22316687", "vbur_max_delta_qvtot": "7.667068"}, "vburminconf_data": {"pyr_P": "0.9769382", "pyr_alpha": "11.94717", "qpole_amp": "3.0081809", "vbur_vbur": "47.10367", "sterimol_L": "7.729229", "sterimol_B1": "4.2914257", "sterimol_B5": "6.00967", "dipolemoment": "1.192038", "qpoletens_xx": "1.6873361", "qpoletens_yy": "0.22302762", "qpoletens_zz": "-2.5283067", "sterimol_burL": "7.4513884", "vbur_far_vbur": "-0.8097184", "vbur_far_vtot": "-2.4539824", "sterimol_burB1": "4.219521", "sterimol_burB5": "6.182395", "vbur_near_vbur": "47.627434", "vbur_near_vtot": "361.25125", "vbur_ovbur_max": "12.223072", "vbur_ovbur_min": "-0.113801256", "vbur_ovtot_max": "94.88917", "vbur_ovtot_min": "-0.1342594", "vbur_qvbur_max": "10.718142", "vbur_qvbur_min": "11.201802", "vbur_qvtot_max": "90.97686", "vbur_qvtot_min": "71.56322", "vbur_max_delta_qvbur": "0.2623007", "vbur_max_delta_qvtot": "27.05988"}, "boltzmann_averaged_data": {"nbo_P": "-0.0806759", "nmr_P": "508.93457", "pyr_P": "0.8949591", "fmo_mu": "-0.11833268", "vmin_r": "1.9462322", "volume": "353.4498", "Pint_dP": "4.4312315", "fmo_eta": "0.23365653", "fukui_m": "0.52822316", "fukui_p": "0.046450302", "nuesp_P": "-54.22503", "somo_ra": "0.08460379", "somo_rc": "-0.42517146", "nbo_P_ra": "-0.1303768", "nbo_P_rc": "0.44664496", "efg_amp_P": "0.8810519", "fmo_omega": "0.029325634", "pyr_alpha": "22.677168", "qpole_amp": "5.2138987", "vbur_vbur": "48.23838", "vbur_vtot": "364.5176", "vmin_vmin": "-0.040809333", "E_solv_cds": "5.2235947", "Pint_P_int": "18.939087", "Pint_P_max": "30.838833", "Pint_P_min": "10.954181", "fmo_e_homo": "-0.23426886", "fmo_e_lumo": "-0.0008595677", "nbo_lp_P_e": "-0.27621794", "sphericity": "0.7603154", "sterimol_L": "6.669534", "E_oxidation": "0.2876952", "E_reduction": "0.044324704", "sterimol_B1": "5.030489", "sterimol_B5": "6.1455383", "E_solv_total": "-4.0312657", "dipolemoment": "0.8423198", "efgtens_xx_P": "-0.38118038", "efgtens_yy_P": "-0.3476325", "efgtens_zz_P": "0.7575747", "nbo_bd_e_avg": "-0.40735295", "nbo_bd_e_max": "-0.40865234", "nbo_lp_P_occ": "1.7767034", "qpoletens_xx": "2.0122888", "qpoletens_yy": "1.5850643", "qpoletens_zz": "-4.543852", "surface_area": "320.42694", "E_solv_elstat": "-9.279149", "nbo_bds_e_avg": "0.27297324", "nbo_bds_e_min": "0.26791838", "nmrtens_sxx_P": "441.76685", "nmrtens_syy_P": "542.8862", "nmrtens_szz_P": "538.0379", "spindens_P_ra": "0.012602068", "spindens_P_rc": "0.69795066", "sterimol_burL": "6.7148046", "vbur_far_vbur": "-0.52223897", "vbur_far_vtot": "-2.0357554", "nbo_bd_occ_avg": "1.9455854", "nbo_bd_occ_min": "1.9465748", "sterimol_burB1": "4.851452", "sterimol_burB5": "5.9158874", "vbur_near_vbur": "49.723225", "vbur_near_vtot": "365.9065", "vbur_ovbur_max": "11.665257", "vbur_ovbur_min": "-0.024051199", "vbur_ovtot_max": "91.557205", "vbur_ovtot_min": "-0.21159403", "vbur_qvbur_max": "12.314332", "vbur_qvbur_min": "11.777622", "vbur_qvtot_max": "96.32168", "vbur_qvtot_min": "68.30352", "nbo_bds_occ_avg": "0.016152287", "nbo_bds_occ_max": "0.019109748", "nbo_lp_P_percent_s": "41.314884", "vbur_max_delta_qvbur": "0.38428235", "vbur_max_delta_qvtot": "17.78804", "vbur_ratio_vbur_vtot": "0.15091507"}} B1NBNB(P(B2NBNBN2)B2NBNBN2)N1 {"max_data": {"B1": 4.7329069530562995, "B5": 6.281863449701962, "lval": 8.18514834337914, "sasa": 502.7720998459884, "vbur": 47.70767117495302, "vtot": 359.58679153268196, "alpha": 198.159855, "p_int": 19.235201087984187, "sasa_P": 18.529947452882606, "pyr_val": 0.9449089480103848, "dip_norm": 0.6292837197957691, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 47.70767117495302, "near_vtot": 359.52960113631514, "ovbur_max": 13.077939667309378, "ovbur_min": 0.0, "ovtot_max": 109.03658561798429, "ovtot_min": 0.0, "pyr_alpha": 19.824976986694395, "qvbur_max": 13.077939667309378, "qvbur_min": 11.294584258130827, "qvtot_max": 109.03658561798429, "qvtot_min": 76.62998151218, "cone_angle": 156.1224297394533, "p_int_area": 348.31182658098817, "p_int_atom": 24.062664425573022, "sasa_volume": 813.840236196462, "EA_delta_SCC": 1.9476, "IP_delta_SCC": 7.8284, "HOMO_LUMO_gap": 3.674567626401, "sasa_volume_P": 20.54099407348723, "max_delta_qvbur": 2.331183541409871, "max_delta_qvtot": 40.68436509572844, "nucleophilicity": -7.7651, "p_int_atom_area": 18.19746784947633, "p_int_times_p_int_area": 6699.848025608383, "global_electrophilicity_index": 2.0306, "p_int_atom_times_p_int_atom_area": 426.33409870983456}, "min_data": {"B1": 4.11848572720671, "B5": 6.215633904699379, "lval": 7.154621383833021, "sasa": 496.63210134732867, "vbur": 46.16909003762251, "vtot": 358.59919983727315, "alpha": 198.14456, "p_int": 18.98449258506195, "sasa_P": 15.119957122913382, "pyr_val": 0.9191910728710052, "dip_norm": 0.5301103658673352, "far_vbur": 0.0, "far_vtot": 0.0, "near_vbur": 46.16909003762251, "near_vtot": 356.8279605595016, "ovbur_max": 12.35527276947232, "ovbur_min": 0.0, "ovtot_max": 100.94832393714375, "ovtot_min": 0.0, "pyr_alpha": 16.18678560721559, "qvbur_max": 12.35527276947232, "qvbur_min": 10.467014100930323, "qvtot_max": 100.94832393714375, "qvtot_min": 68.07818414985259, "cone_angle": 140.05969756777466, "p_int_area": 344.5140601741483, "p_int_atom": 23.38236370842659, "sasa_volume": 809.0950021882986, "EA_delta_SCC": 1.7906, "IP_delta_SCC": 7.7651, "HOMO_LUMO_gap": 3.158787372301, "sasa_volume_P": 16.901533663248937, "max_delta_qvbur": 0.9324734165639477, "max_delta_qvtot": 24.297811954364363, "nucleophilicity": -7.8284, "p_int_atom_area": 17.397579152796048, "p_int_times_p_int_area": 6542.281639327343, "global_electrophilicity_index": 1.9154, "p_int_atom_times_p_int_atom_area": 410.23670870565866}, "boltzmann_averaged_data": {"B1": 4.524087171504499, "B5": 6.227355414695663, "lval": 7.413362286198287, "sasa": 499.919967907693, "vbur": 47.30614369253186, "vtot": 359.17350613434337, "alpha": 198.15041307823, "p_int": 19.128735014979323, "B1_std": 0.26415583169765267, "B5_std": 0.014942663882254044, "sasa_P": 16.463819511996224, "pyr_val": 0.9290449436308637, "dip_norm": 0.553623705367775, "far_vbur": 0.0, "far_vtot": 0.0, "lval_std": 0.3274675311943377, "sasa_std": 2.2426771524028264, "vbur_std": 0.1657987799993054, "vtot_std": 0.45177703766066835, "alpha_std": 0.0074245371074155115, "near_vbur": 47.30614369253186, "near_vtot": 358.68681299124574, "ovbur_max": 12.422763330416386, "ovbur_min": 0.0, "ovtot_max": 103.1969635248239, "ovtot_min": 0.0, "p_int_std": 0.06298442066993788, "pyr_alpha": 18.430270606249206, "qvbur_max": 12.422763330416386, "qvbur_min": 11.190016689197346, "qvtot_max": 103.1969635248239, "qvtot_min": 73.34768594989012, "cone_angle": 146.20306528656053, "p_int_area": 345.50399334037934, "p_int_atom": 23.764066400438843, "sasa_P_std": 1.0568240052260738, "pyr_val_std": 0.012485281295146925, "sasa_volume": 810.1724653816916, "EA_delta_SCC": 1.8083084849999997, "IP_delta_SCC": 7.819079806, "dip_norm_std": 0.02978119263654549, "far_vbur_std": 0.0, "far_vtot_std": 0.0, "HOMO_LUMO_gap": 3.5660418489152987, "near_vbur_std": 0.1657987799993054, "near_vtot_std": 1.069096121611323, "ovbur_max_std": 0.08701452950762037, "ovbur_min_std": 0.0, "ovtot_max_std": 2.8453795617053927, "ovtot_min_std": 0.0, "pyr_alpha_std": 1.7663911022440557, "qvbur_max_std": 0.08701452950762037, "qvbur_min_std": 0.13474003441456678, "qvtot_max_std": 2.8453795617053927, "qvtot_min_std": 4.154176130468536, "sasa_volume_P": 18.26071907246216, "cone_angle_std": 7.796683649639735, "p_int_area_std": 0.7825920668837782, "p_int_atom_std": 0.2348508959153561, "max_delta_qvbur": 1.0912127955143582, "max_delta_qvtot": 29.827432537619664, "nucleophilicity": -7.819079806, "p_int_atom_area": 17.51397695621522, "sasa_volume_std": 1.3662172261172563, "EA_delta_SCC_std": 0.014840476404239019, "IP_delta_SCC_std": 0.005944588917861288, "HOMO_LUMO_gap_std": 0.1374951082011934, "sasa_volume_P_std": 1.0693003453901149, "max_delta_qvbur_std": 0.2037802166997992, "max_delta_qvtot_std": 6.995167677862361, "nucleophilicity_std": 0.005944588917861288, "p_int_atom_area_std": 0.14851545988081924, "p_int_times_p_int_area": 6609.103480051574, "p_int_times_p_int_area_std": 36.68203854392513, "global_electrophilicity_index": 1.9275326439999998, "p_int_atom_times_p_int_atom_area": 416.2369485998999, "global_electrophilicity_index_std": 0.010263361942817028, "p_int_atom_times_p_int_atom_area_std": 7.590201435905404}} \\x020a0010000050000010080000001000000080080001000802000000300a0020080600004284000000001008000008800002420022080000090100000000019000000306008160000024000008008005000000000000800004200040212002042200804000d01000400000100400000900810070080094001004082000200010 \\x00000000002000000000000400000000000400000000040000020004000000000000000820000001000000204000040000000000000000000000008000008000 other (-3.3101089000701904, 6.450245380401611, -3.088460922241211, -9.500231742858888) (2.602943658828736, 9.179974555969238) -\. - - --- --- Data for Name: t_e; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.t_e (docs) FROM stdin; -\. - - --- --- Name: conformer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.conformer_id_seq', 1, false); - - --- --- Name: molecule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.molecule_id_seq', 1, false); - - --- --- Data for Name: BLOBS; Type: BLOBS; Schema: -; Owner: - --- - -BEGIN; - -SELECT pg_catalog.lo_open('1268888', 131072); -SELECT pg_catalog.lo_close(0); - -SELECT pg_catalog.lo_open('2601034', 131072); -SELECT pg_catalog.lo_close(0); - -SELECT pg_catalog.lo_open('5912902', 131072); -SELECT pg_catalog.lo_close(0); - -SELECT pg_catalog.lo_open('7115235', 131072); -SELECT pg_catalog.lo_close(0); - -SELECT pg_catalog.lo_open('7608663', 131072); -SELECT pg_catalog.lo_close(0); - -SELECT pg_catalog.lo_open('8146173', 131072); -SELECT pg_catalog.lo_close(0); - -SELECT pg_catalog.lo_open('8337475', 131072); -SELECT pg_catalog.lo_close(0); - -COMMIT; - --- --- Name: alembic_version alembic_version_pkc; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.alembic_version - ADD CONSTRAINT alembic_version_pkc PRIMARY KEY (version_num); - - --- --- Name: conformer conformer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.conformer - ADD CONSTRAINT conformer_pkey PRIMARY KEY (conformer_id); - - --- --- Name: molecule molecule_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.molecule - ADD CONSTRAINT molecule_pkey PRIMARY KEY (molecule_id); - - --- --- Name: molecule molecule_smiles_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.molecule - ADD CONSTRAINT molecule_smiles_key UNIQUE (smiles); - - --- --- Name: idx_molecule_molecule_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX idx_molecule_molecule_id ON public.molecule USING btree (molecule_id); - - --- --- Name: idx_molecule_pca; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX idx_molecule_pca ON public.molecule USING btree (pca); - - --- --- Name: idx_molecule_pca_knn; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX idx_molecule_pca_knn ON public.molecule USING gist (pca); - - --- --- Name: idx_molecule_smiles; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX idx_molecule_smiles ON public.molecule USING btree (smiles); - - --- --- Name: idx_molecule_umap; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX idx_molecule_umap ON public.molecule USING btree (umap); - - --- --- Name: idx_molecule_umap_knn; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX idx_molecule_umap_knn ON public.molecule USING gist (umap); - - --- --- Name: moelcule_fingerprint_idx; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX moelcule_fingerprint_idx ON public.molecule USING gist (fingerprint); - - --- --- Name: molecule_dft; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX molecule_dft ON public.molecule USING hash (dft_data) WHERE (dft_data IS NOT NULL); - - --- --- Name: molecule_ml; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX molecule_ml ON public.molecule USING hash (ml_data) WHERE (ml_data IS NOT NULL); - - --- --- Name: molecule_mol; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX molecule_mol ON public.molecule USING gist (mol); - - --- --- Name: molecule_xtb; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX molecule_xtb ON public.molecule USING hash (xtb_data) WHERE (xtb_data IS NOT NULL); - - --- --- Name: morganbv_idx; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX morganbv_idx ON public.molecule USING gist (morganbv); - - --- --- Name: mw_idx; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX mw_idx ON public.molecule USING btree (molecular_weight); - - --- --- Name: smiles_trgm_gin_idx; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX smiles_trgm_gin_idx ON public.molecule USING gin (smiles public.gin_trgm_ops); - - --- --- Name: smiles_trgm_idx; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX smiles_trgm_idx ON public.molecule USING gist (smiles public.gist_trgm_ops); - - --- --- Name: molecule rdk_add_mol_trigger; Type: TRIGGER; Schema: public; Owner: postgres --- - -CREATE TRIGGER rdk_add_mol_trigger BEFORE INSERT ON public.molecule FOR EACH ROW EXECUTE FUNCTION public.rdk_add_mol(); - - --- --- Name: conformer conformer_molecule_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.conformer - ADD CONSTRAINT conformer_molecule_id_fkey FOREIGN KEY (molecule_id) REFERENCES public.molecule(molecule_id); - - --- --- PostgreSQL database dump complete --- -