diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..40a3e0b
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,82 @@
+# .dockerignore - Excludes files from Docker build context
+# Reduces build time, image size, and prevents leaking sensitive data
+
+# Version control
+.git/
+.gitignore
+.github/
+
+# Python cache and compiled files
+__pycache__/
+*.py[cod]
+*$py.class
+*.so
+.pytest_cache/
+
+# Virtual environments
+.venv/
+venv/
+env/
+ENV/
+.poetry/
+
+# Environment variables (SECURITY: never include secrets in images)
+.env
+.env.*
+
+# Documentation
+# Keep README.md for Poetry package installation
+# *.md # Commented out to allow README.md
+docs/
+LICENSE
+
+# Development and testing
+.pre-commit-config.yaml
+.ropeproject/
+tests/
+test_*.py
+
+# IDE and editor files
+.vscode/
+.idea/
+*.swp
+*.swo
+*~
+.DS_Store
+
+# Docker files (don't need these inside the image)
+Dockerfile
+Dockerfile.*
+docker-compose.yml
+docker-compose.*.yml
+.dockerignore
+
+# Build artifacts
+dist/
+build/
+*.egg-info/
+*.egg
+.eggs/
+
+# Logs
+*.log
+logs/
+
+# OS files
+.DS_Store
+Thumbs.db
+Desktop.ini
+
+# Temporary files
+*.tmp
+*.temp
+tmp/
+temp/
+
+# Coverage reports
+htmlcov/
+.coverage
+.coverage.*
+coverage.xml
+*.cover
+.hypothesis/
diff --git a/.env.example b/.env.example
new file mode 100644
index 0000000..7b1055a
--- /dev/null
+++ b/.env.example
@@ -0,0 +1,75 @@
+# Environment Variables Template for Survey Dashboard
+# Copy this file to .env and update with your actual values
+# Command: cp .env.example .env
+
+# ============================================================================
+# Docker Compose Configuration
+# ============================================================================
+
+# Project name - used as prefix for container names
+# Example: survey-dashboard_nginx_1, survey-dashboard_dashboard_1
+COMPOSE_PROJECT_NAME=survey-dashboard
+
+# ============================================================================
+# Application Configuration
+# ============================================================================
+
+# Port the Panel application runs on inside the container
+# Default: 5006 (Panel's default port)
+APP_PORT=
+
+# ============================================================================
+# Nginx Configuration
+# ============================================================================
+
+# Port nginx exposes on the host machine
+# Default: 80 (standard HTTP port), 443 (standard HTTPS port)
+# Change to 8080/8443 if 80/443 are already in use
+NGINX_PORT=
+
+# Your domain name
+# IMPORTANT: For HTTPS to work, this MUST be a real domain that points to your server
+# In development: Use 'localhost' (HTTPS won't work, only HTTP)
+# In production: Use your actual domain (e.g., survey.example.com)
+# This domain is used by:
+# - nginx-proxy: Routes traffic from this domain to the dashboard
+# - acme-companion: Requests SSL certificate for this domain from Let's Encrypt
+HOST=
+
+# Path on the domain where the dashboard is accessible
+# If set, the dashboard will ONLY be accessible at this specific path
+# Examples:
+# - VIRTUAL_PATH=/survey-dashboard → https://your-domain.com/survey-dashboard
+# - VIRTUAL_PATH=/dashboard → https://your-domain.com/dashboard
+# - Leave empty for root path → https://your-domain.com/
+# IMPORTANT: Must start with / (forward slash)
+# All other paths on this domain will return 404
+VIRTUAL_PATH=
+
+# ============================================================================
+# SSL/HTTPS Configuration (Let's Encrypt)
+# ============================================================================
+
+# Your email address for Let's Encrypt certificate registration
+# REQUIRED for production HTTPS deployment
+# Let's Encrypt uses this email to:
+# - Send certificate expiration warnings (if auto-renewal fails)
+# - Send security notices about your certificates
+# - Contact you about your Let's Encrypt account
+# Example: admin@example.com or your-email@gmail.com
+LETSENCRYPT_EMAIL=
+
+# ============================================================================
+# Python Configuration
+# ============================================================================
+
+# Keep Python output unbuffered for better logging
+PYTHONUNBUFFERED=1
+
+# ============================================================================
+# NOTES
+# ============================================================================
+# - Never commit the .env file to version control
+# - .env is listed in .gitignore to prevent accidental commits
+# - Update .env.example when adding new environment variables
+# - In production, consider using Docker secrets or a secrets manager
diff --git a/.env.local.example b/.env.local.example
new file mode 100644
index 0000000..8cb0c2a
--- /dev/null
+++ b/.env.local.example
@@ -0,0 +1,83 @@
+# Environment Variables for LOCAL TESTING
+# Copy this file to .env.local for local Docker testing
+# Command: cp .env.local.example .env.local
+
+# IMPORTANT: This is for LOCAL TESTING ONLY
+# For production deployment, use .env.example instead
+
+# ============================================================================
+# Docker Compose Configuration
+# ============================================================================
+
+# Project name - use different name to avoid conflicts with production
+COMPOSE_PROJECT_NAME=survey-dashboard-local
+
+# ============================================================================
+# Application Configuration
+# ============================================================================
+
+# Port the Panel application runs on inside the container
+APP_PORT=5006
+
+# ============================================================================
+# Nginx Configuration
+# ============================================================================
+
+# Port nginx exposes on the host machine
+# Default: 80 for HTTP
+# If port 80 is in use, change to 8080 or another available port
+NGINX_PORT=80
+
+# Domain name - use localhost for local testing
+# IMPORTANT: HTTPS will NOT work with localhost (Let's Encrypt requires real domains)
+# You can only test HTTP locally
+HOST=localhost
+
+# Path on the domain where the dashboard is accessible
+# Test the same path you'll use in production
+# Example: VIRTUAL_PATH=/2021community
+# Leave empty to serve from root: http://localhost/
+VIRTUAL_PATH=/2021community
+
+# ============================================================================
+# SSL/HTTPS Configuration (Let's Encrypt)
+# ============================================================================
+
+# Dummy email for local testing
+# This is not used when HOST=localhost (Let's Encrypt won't run)
+# In production, use a real email address
+LETSENCRYPT_EMAIL=test@localhost
+
+# ============================================================================
+# Python Configuration
+# ============================================================================
+
+# Keep Python output unbuffered for better logging
+PYTHONUNBUFFERED=1
+
+# ============================================================================
+# LOCAL TESTING NOTES
+# ============================================================================
+
+# What works locally:
+# ✅ Docker build and container startup
+# ✅ HTTP access at http://localhost/2021community
+# ✅ Path routing and restrictions
+# ✅ WebSocket connections
+# ✅ Dashboard interactivity
+# ✅ Container restarts and rebuilds
+
+# What does NOT work locally:
+# ❌ HTTPS/SSL certificates (requires real domain)
+# ❌ Let's Encrypt certificate acquisition (localhost is not valid)
+# ❌ External access from internet (only local machine)
+
+# How to test:
+# 1. Copy this file: cp .env.local.example .env.local
+# 2. Start containers: docker-compose --env-file .env.local up -d --build
+# 3. Test in browser: http://localhost/2021community
+# 4. Follow LOCAL_TESTING.md for detailed testing scenarios
+
+# Cleanup after testing:
+# docker-compose --env-file .env.local down
+# docker-compose --env-file .env.local down -v # Remove volumes too
diff --git a/.gitignore b/.gitignore
index 9b1fbd7..ecaa234 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
# custom
-*.csv
+responses_cleaned_mapped_to_publish.csv
+#survey_dashboard/hmc_layout/static/en_files/fonts/
# Byte-compiled / optimized / DLL files
__pycache__/
@@ -106,6 +107,7 @@ celerybeat.pid
# Environments
.env
+.env.local
.venv
env/
venv/
@@ -113,6 +115,9 @@ ENV/
env.bak/
venv.bak/
+# Deployment files (may contain sensitive server info)
+DEPLOYMENT.md
+
# Spyder project settings
.spyderproject
.spyproject
@@ -130,3 +135,7 @@ dmypy.json
# Pyre type checker
.pyre/
+
+
+# Claude
+.claude/
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..3348f27
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,44 @@
+# Multi-stage build for survey dashboard
+# Stage 1: Builder - installs dependencies
+FROM python:3.12-slim as builder
+
+# Install poetry
+RUN pip install --no-cache-dir poetry==1.8.2
+
+WORKDIR /app
+
+# Copy dependency files first (for Docker layer caching)
+COPY pyproject.toml poetry.lock README.md ./
+
+# Configure poetry to not create virtual environment (we're in a container)
+RUN poetry config virtualenvs.create false
+
+# Install dependencies (excluding dev dependencies)
+# --no-root: Don't install the project itself, only dependencies
+RUN poetry install --only main --no-root --no-interaction --no-ansi
+
+# Stage 2: Final runtime image
+FROM python:3.12-slim
+
+WORKDIR /app
+
+# Copy installed packages from builder stage
+COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
+COPY --from=builder /usr/local/bin /usr/local/bin
+
+# Copy application code
+COPY survey_dashboard/ ./survey_dashboard/
+COPY pyproject.toml ./
+
+# Create a non-root user for security
+RUN useradd -m -u 1000 appuser && \
+ chown -R appuser:appuser /app
+
+USER appuser
+
+# Expose the application port
+EXPOSE 5006
+
+# Run the application in production mode
+# Use python -m to run the module directly since we installed with --no-root
+CMD ["python", "-m", "survey_dashboard.scripts", "--production", "--host", "0.0.0.0", "--port", "5006"]
diff --git a/LICENSE b/LICENSE
index d417970..42fd2d7 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2022 Materials Data Science and Informatics
+Copyright (c) 2025 Materials Data Science and Informatics
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index 224243a..1d23490 100644
--- a/README.md
+++ b/README.md
@@ -1,72 +1,229 @@
-# Survey dashboard
+# Survey Dashboard
-A dashboard to display survey data in an interactive way.
+A dashboard to display survey data in an interactive way using Panel and Bokeh.
## Overview
-This repository contains a dashboard using Panel and Bokeh, developed to display data from
-HMC surveys in an interactive exploratory way. It is designed such that the code for the interactive
-visualizations might be reused for other projects.
-Example of a deployed version can be found [here](https://dashboard.survey.helmholtz-metadaten.de/survey_dashboard)
+This repository contains an interactive dashboard developed to display data from HMC surveys in an exploratory way. The dashboard is designed to be reusable for other survey visualization projects.
+
+**Live Demo:** [https://dashboard.survey.helmholtz-metadaten.de/2021community](https://dashboard.survey.helmholtz-metadaten.de/2021community)
+
+### Screenshots
-Some impressions:



+## Features
+
+- **Interactive Visualizations**: Explore survey data through dynamic charts and plots
+- **Multiple Languages**: Support for English and German (configurable via environment variables)
+- **Dockerized Deployment**: Production-ready Docker setup with HTTPS support
+- **Responsive Design**: Works across different screen sizes
+- **Self-hosted Fonts**: Uses HIFIS DIN fonts for consistent branding
+
## Installation
-After downloading the git repository you can install the software either with pip or poetry.
-We recommend setting it up in a separate python virtual environment.
+### Prerequisites
-```shell
-pip install survey_dashboard
-```
-or
+- Python 3.12 or higher
+- Poetry (recommended for development)
+- Docker & Docker Compose (for production deployment)
+
+### Local Development Setup
+
+1. **Clone the repository:**
+ ```bash
+ git clone https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard.git
+ cd survey_dashboard
+ ```
+
+2. **Install dependencies using Poetry:**
+ ```bash
+ poetry install
+ ```
-```shell
-poetry install .
+3. **Run the development server:**
+ ```bash
+ poetry run survey-dashboard
+ ```
+
+ The dashboard will be available at `http://localhost:5006/2021community/`
+
+### Alternative: Using pip
+
+```bash
+pip install .
+python -m survey_dashboard.scripts
```
## Usage
+### Development Mode
+
+The easiest way to run the dashboard in development mode:
+
+```bash
+poetry run survey-dashboard
+```
+
+This starts the server with:
+- Auto-reload on code changes
+- Browser opens automatically
+- Development-friendly error messages
+
+### Manual Panel Serve
+
+For more control over server configuration:
+
+```bash
+panel serve survey_dashboard/app.py \
+ --port 5006 \
+ --static-dirs en_files=./survey_dashboard/hmc_layout/static/en_files \
+ --prefix /2021community \
+ --show
+```
+
+### Environment Variables
+
+- `VIRTUAL_PATH` - URL path prefix (default: `/2021community`)
+- `LANGUAGE` - Dashboard language: `EN` or `DE` (default: `EN`)
+
+## Production Deployment
+
+This project includes Docker support for production deployment with automatic HTTPS using Let's Encrypt.
+
+### Docker Deployment
+
+1. **Configure environment variables:**
+ ```bash
+ cp .env.example .env
+ # Edit .env with your domain and settings
+ ```
+
+2. **Build and start containers:**
+ ```bash
+ docker compose up -d --build
+ ```
+
+3. **Access your dashboard:**
+ ```
+ https://your-domain.com/2021community/
+ ```
+
+### Deployment Architecture
+
+The deployment uses:
+- **nginx-proxy**: Automatic reverse proxy with virtual host routing
+- **acme-companion**: Automatic Let's Encrypt SSL certificate management
+- **Dashboard container**: Panel/Bokeh application server
+
+See `docker-compose.yml` and `Dockerfile` for detailed configuration.
+
+## Project Structure
-After installation you can start the app, i.e the panel server/bokeh server.
-```shell
-panel serve --port 50006 survey_dashboard/
```
-If you have given the dashboard a specific layout like the layout specific to HMC, which is on the hmc_specific branch, you might have to link to to a specific template.
-```shell
-panel serve --port 50006 survey_dashboard/ --static-dirs en_files=./survey_dashboard/hmc_layout/static/en_files
+survey_dashboard/
+├── survey_dashboard/ # Main application code
+│ ├── app.py # Main Panel application
+│ ├── scripts.py # CLI entry point
+│ ├── data/ # Data processing modules
+│ ├── ui/ # UI components and layout
+│ ├── i18n/ # Internationalization
+│ └── hmc_layout/ # Templates and static assets
+│ ├── en_template.html # English template
+│ ├── de_template.html # German template
+│ └── static/ # CSS, JS, images
+├── docs/ # Documentation
+│ └── refactoring/ # Architectural documentation
+├── docker-compose.yml # Docker orchestration
+├── Dockerfile # Container build instructions
+├── .env.example # Environment template
+└── pyproject.toml # Python dependencies
+```
+
+## Development
+### Running Tests
+
+```bash
+poetry run pytest
```
-* Navigate to `http://localhost:50006/` in your browser.
+### Code Style
+
+This project uses:
+- Black for code formatting
+- Flake8 for linting
+- MyPy for type checking
-## Deployment
+### Making Changes
-To embed the dashboard into any website, first you have to host a bokeh server with this application somewhere and then you can embed it with bokehs `sever_document` function [see](https://docs.bokeh.org/en/latest/docs/user_guide/embed.html#app-documents)
+1. Create a feature branch
+2. Make your changes
+3. Test locally with `poetry run survey-dashboard`
+4. Test with Docker if deployment-related
+5. Submit a pull request
-Do steps under `usage` above, but for a public exposed URL, or what ever is used for deployment.
-The Language verison of the dashboard can be set with the environment variable: 'L
+## Documentation
+Detailed documentation can be found in the `docs/refactoring/` directory:
+- Architectural overview
+- Module structure
+- Development guide
+- Migration guide
-Add the code from 'script' to you website:
+## Troubleshooting
-```python
-from bokeh.embed import server_document
-script = server_document("url_to_running_server")
-script
+### Port Already in Use
+
+If port 5006 is already in use:
+```bash
+lsof -ti:5006 | xargs kill -9
```
-## Copyright and Licence
+### Docker Issues
+
+Check container logs:
+```bash
+docker compose logs -f dashboard
+```
+
+Rebuild without cache:
+```bash
+docker compose build --no-cache
+```
+
+### Font Loading Issues
+
+Clear browser cache (Ctrl+Shift+Del) or test in incognito mode.
+
+## Technology Stack
+
+### Core Framework
+- **Panel** (1.7.5) - High-level app and dashboarding solution
+- **Bokeh** (3.7.3) - Interactive visualization library
+- **Python** (3.12+) - Programming language
-See [LICENSE](./LICENSE).
+### Data Processing
+- **Pandas** (2.3.2) - Data manipulation
+- **NumPy** (2.3.2) - Numerical computing
-### Main used libraries and dependencies
+### Visualization
+- **Matplotlib** (3.10.6) - Plotting library
+- **WordCloud** (1.9.4) - Word cloud generation
-The following libraries are used directly (i.e. not only transitively) in this project:
+### Web Server
+- **Tornado** (6.5.2) - Async web framework (used by Bokeh)
+### Deployment
+- **Docker** - Containerization
+- **nginx-proxy** - Automatic reverse proxy
+- **acme-companion** - Let's Encrypt automation
+
+## License
+
+See [LICENSE](./LICENSE) for details.
## Acknowledgements
@@ -77,7 +234,41 @@ The following libraries are used directly (i.e. not only transitively) in this p
-This project was developed at the Institute for Materials Data Science and Informatics
-(IAS-9) of the Jülich Research Center and funded by the Helmholtz Metadata Collaboration
-(HMC), an incubator-platform of the Helmholtz Association within the framework of the
-Information and Data Science strategic initiative.
+This project was developed at the **Institute for Materials Data Science and Informatics (IAS-9)** of the Forschungszentrum Jülich and funded by the **Helmholtz Metadata Collaboration (HMC)**, an incubator-platform of the Helmholtz Association within the framework of the Information and Data Science strategic initiative.
+
+## Citation
+
+If you use this dashboard in your research, please cite:
+
+```bibtex
+@software{survey_dashboard,
+ title = {Survey Dashboard},
+ author = {Bröder, Jens and Gerlich, Silke Christine and Hofmann, Volker},
+ year = {2024},
+ url = {https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard},
+ organization = {Forschungszentrum Jülich GmbH}
+}
+```
+
+## Contributing
+
+Contributions are welcome! Please:
+
+1. Fork the repository
+2. Create a feature branch
+3. Make your changes
+4. Add tests if applicable
+5. Ensure all tests pass
+6. Submit a pull request
+
+For major changes, please open an issue first to discuss what you would like to change.
+
+## Support
+
+For questions or issues:
+- **GitHub Issues**: [Report a bug or request a feature](https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard/issues)
+- **Email**: Contact the maintainers (see repository contributors)
+
+---
+
+**Last Updated:** November 2024
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..f262d92
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,146 @@
+# Docker Compose configuration for Survey Dashboard
+# Orchestrates nginx reverse proxy and Panel application containers
+
+version: '3.8'
+
+services:
+ # Panel application container
+ dashboard:
+ build: .
+ # Builds from Dockerfile in current directory
+ # Uses multi-stage build to create optimized production image
+
+ expose:
+ - "5006"
+ # Exposes port 5006 to other containers (not to host machine)
+ # Only accessible within Docker network - nginx can reach it
+
+ restart: unless-stopped
+ # Automatically restart if container crashes
+ # Persists across system reboots unless manually stopped
+
+ environment:
+ - PYTHONUNBUFFERED=1
+ # Ensures Python output is sent directly to logs (not buffered)
+ # Makes 'docker-compose logs' show real-time output
+ - VIRTUAL_HOST=${HOST}
+ # Tells nginx-proxy which domain should route to this container
+ # nginx-proxy watches Docker and auto-configures when it sees this variable
+ - VIRTUAL_PATH=${VIRTUAL_PATH}
+ # Restricts access to only this specific path on the domain
+ # Example: VIRTUAL_PATH=/survey-dashboard means only /survey-dashboard/* is accessible
+ # All other paths on this domain return 404
+ - VIRTUAL_PROTO=http
+ # Protocol nginx-proxy uses to communicate with this container
+ # Uses HTTP inside Docker network (fast, safe), HTTPS for external traffic
+ - LETSENCRYPT_HOST=${HOST}
+ # Tells acme-companion to get SSL certificate for this domain
+ # acme-companion watches Docker and auto-requests certificates when it sees this
+ - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
+ # Email for Let's Encrypt certificate notifications
+ # Used for expiry warnings and security notices about your certificates
+
+ # Uncomment to mount local code for development
+ # volumes:
+ # - ./survey_dashboard:/app/survey_dashboard
+
+ # Nginx reverse proxy container with auto-configuration
+ nginx-proxy:
+ container_name: nginx-proxy
+ image: nginxproxy/nginx-proxy:latest
+ # Auto-configuring reverse proxy that watches Docker containers
+ # Automatically generates nginx config based on container environment variables
+
+ ports:
+ - "80:80"
+ # HTTP port - used for ACME challenges and auto-redirect to HTTPS
+ - "443:443"
+ # HTTPS port - secure encrypted connections
+
+ volumes:
+ # nginx-proxy auto-generates configuration based on container env vars
+ # Custom per-domain configs can be placed in ./nginx/vhost.d/
+ - ./nginx/certs:/etc/nginx/certs:ro
+ # SSL certificates storage (read-only for nginx-proxy)
+ # acme-companion writes certificates here, nginx-proxy reads them
+ - ./nginx/vhost.d:/etc/nginx/vhost.d
+ # Per-domain custom nginx configurations
+ # Files named after domains (e.g., survey.example.com) are included in that domain's config
+ - ./nginx/html:/usr/share/nginx/html
+ # Web root for serving ACME challenge files during Let's Encrypt verification
+ # acme-companion creates challenge files here, nginx-proxy serves them
+ - /var/run/docker.sock:/tmp/docker.sock:ro
+ # Docker socket for auto-discovery of containers
+ # nginx-proxy watches for containers with VIRTUAL_HOST env var
+ # Read-only for security (can observe but not control Docker)
+
+ depends_on:
+ - dashboard
+ # Ensures dashboard container starts before nginx-proxy
+ # nginx-proxy needs dashboard to be available for proxying
+
+ restart: unless-stopped
+ # Same restart policy as dashboard
+
+ labels:
+ - "com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy=true"
+ # Identifies this container as the nginx instance for acme-companion to manage
+ # acme-companion will reload this container when SSL certificates are updated
+
+ # Let's Encrypt certificate management container
+ letsencrypt:
+ container_name: acme-companion
+ image: nginxproxy/acme-companion
+ # ACME protocol client for automatic Let's Encrypt certificate management
+ # Watches for containers with LETSENCRYPT_HOST environment variable
+
+ environment:
+ - NGINX_PROXY_CONTAINER=nginx-proxy
+ # Tells acme-companion which nginx container to reload when certificates update
+ # Must match the container_name of nginx-proxy service
+ - DEFAULT_EMAIL=${LETSENCRYPT_EMAIL}
+ # Default email for Let's Encrypt certificate registration and notifications
+ # Individual containers can override with their own LETSENCRYPT_EMAIL
+ # Used for certificate expiry warnings and security notices
+
+ volumes:
+ - ./nginx/certs:/etc/nginx/certs:rw
+ # SSL certificates storage (read-write for acme-companion)
+ # acme-companion writes new certificates here, nginx-proxy reads them
+ # Note: :rw (not :ro like nginx-proxy) because acme-companion must write certs
+ - ./nginx/vhost.d:/etc/nginx/vhost.d
+ # Per-domain custom nginx configurations
+ # acme-companion may add temporary configs for ACME challenge handling
+ - ./nginx/html:/usr/share/nginx/html
+ # Web root for ACME challenge files
+ # acme-companion creates challenge files here, nginx-proxy serves them to Let's Encrypt
+ - /var/run/docker.sock:/var/run/docker.sock:ro
+ # Docker socket for container discovery and nginx reload
+ # Watches for containers with LETSENCRYPT_HOST environment variable
+ # Sends reload signal to nginx-proxy when certificates update
+ - acme-data:/etc/acme.sh
+ # Named volume for Let's Encrypt account data (NOT a directory)
+ # Stores account credentials, must persist across container restarts
+ # Losing this data means re-registering with Let's Encrypt
+
+ depends_on:
+ - nginx-proxy
+ # Ensures nginx-proxy starts before acme-companion
+ # acme-companion needs nginx-proxy to be running to reload it when certificates update
+
+ restart: unless-stopped
+ # Automatically restart if container crashes
+ # Persists across system reboots unless manually stopped
+ # Critical for certificate renewal - must stay running to renew certs every 90 days
+
+networks:
+ default:
+ # Docker Compose automatically creates a default network
+ # Both containers join this network and can communicate
+ # Service names (dashboard, nginx) work as DNS hostnames
+
+volumes:
+ acme-data:
+ # Named volume for Let's Encrypt account credentials
+ # Docker manages this volume's lifecycle (persists across container removals)
+ # Only destroyed if explicitly deleted with: docker volume rm survey-dashboard_acme-data
diff --git a/docs/LOCAL_TESTING.md b/docs/LOCAL_TESTING.md
new file mode 100644
index 0000000..721bf03
--- /dev/null
+++ b/docs/LOCAL_TESTING.md
@@ -0,0 +1,766 @@
+# Local Testing Guide - Survey Dashboard
+
+This guide explains how to test the Docker deployment setup locally before deploying to production. This helps catch issues early and ensures a smooth production deployment.
+
+---
+
+## Table of Contents
+
+1. [Why Test Locally?](#why-test-locally)
+2. [What You Can Test](#what-you-can-test)
+3. [What You Cannot Test](#what-you-cannot-test)
+4. [Local Testing Setup](#local-testing-setup)
+5. [Testing Scenarios](#testing-scenarios)
+6. [Verification Steps](#verification-steps)
+7. [Troubleshooting](#troubleshooting)
+8. [Cleanup](#cleanup)
+
+---
+
+## Why Test Locally?
+
+Testing locally allows you to:
+
+- ✅ Verify Docker images build successfully
+- ✅ Ensure all containers start without errors
+- ✅ Test that the dashboard is accessible at the correct path
+- ✅ Verify WebSocket connections work
+- ✅ Catch configuration errors before production
+- ✅ Understand the deployment process in a safe environment
+- ✅ Test updates and changes without affecting production
+
+---
+
+## What You Can Test
+
+### ✅ Fully Testable Locally
+
+1. **Docker Build Process**
+ - Multi-stage build completes successfully
+ - No missing dependencies
+ - Application code is copied correctly
+
+2. **Container Startup**
+ - All 3 containers start without errors
+ - Containers communicate via Docker network
+ - Port mappings work correctly
+
+3. **Application Functionality**
+ - Dashboard loads and displays correctly
+ - Interactive elements work (buttons, filters, plots)
+ - WebSocket connections establish successfully
+ - Static files (CSS, JavaScript) load properly
+
+4. **Path Routing**
+ - Dashboard accessible at specified VIRTUAL_PATH
+ - Root path returns expected response
+ - nginx-proxy routing configuration works
+
+5. **Environment Variables**
+ - Variables are read correctly by containers
+ - Panel receives correct --prefix argument
+ - Configuration is applied as expected
+
+---
+
+## What You Cannot Test
+
+### ❌ Not Testable Locally (Requires Production Domain)
+
+1. **HTTPS/SSL Certificates**
+ - Let's Encrypt requires a real domain pointing to a public IP
+ - Cannot acquire valid SSL certificates for localhost
+ - **Workaround:** Test with HTTP only locally
+
+2. **DNS Resolution**
+ - localhost is not a real domain
+ - Cannot test DNS propagation
+ - **Workaround:** Use localhost or 127.0.0.1
+
+3. **Public Internet Access**
+ - Cannot test from external networks
+ - Cannot verify public firewall rules
+ - **Workaround:** Test from local network only
+
+---
+
+## Local Testing Setup
+
+### Prerequisites
+
+Ensure you have installed:
+- Docker Engine (v20.10+)
+- Docker Compose (v2.0+)
+
+Verify installation:
+```bash
+docker --version
+docker-compose --version
+```
+
+### Step 1: Create Local Environment File
+
+Create a `.env.local` file for local testing:
+
+```bash
+cp .env.example .env.local
+```
+
+### Step 2: Configure for Local Testing
+
+Edit `.env.local`:
+
+```bash
+nano .env.local
+```
+
+**Local testing configuration:**
+
+```env
+# Project name
+COMPOSE_PROJECT_NAME=survey-dashboard-local
+
+# Application port (internal)
+APP_PORT=5006
+
+# Nginx ports (external)
+NGINX_PORT=80
+
+# Use localhost for local testing
+# IMPORTANT: HTTPS will NOT work with localhost
+HOST=localhost
+
+# Path where dashboard is accessible
+VIRTUAL_PATH=/2021community
+
+# Dummy email for local testing (not used without real domain)
+LETSENCRYPT_EMAIL=test@localhost
+
+# Python configuration
+PYTHONUNBUFFERED=1
+```
+
+**Key differences from production:**
+- `HOST=localhost` (instead of real domain)
+- `COMPOSE_PROJECT_NAME=survey-dashboard-local` (to avoid conflicts)
+- LETSENCRYPT_EMAIL is dummy (won't be used)
+
+### Step 3: Point Docker Compose to Local Environment
+
+Use the `-f` flag or rename:
+
+**Option A: Use environment file flag**
+```bash
+docker-compose --env-file .env.local up -d
+```
+
+**Option B: Temporarily rename files**
+```bash
+# Backup production .env if it exists
+mv .env .env.production 2>/dev/null || true
+
+# Use local env for testing
+cp .env.local .env
+
+# Run docker-compose
+docker-compose up -d
+
+# After testing, restore production .env
+mv .env.production .env 2>/dev/null || true
+```
+
+I'll use **Option A** in this guide (safer, no file renaming).
+
+---
+
+## Testing Scenarios
+
+### Scenario 1: Basic HTTP Deployment Test
+
+**Goal:** Verify all containers start and dashboard is accessible via HTTP.
+
+**Steps:**
+
+1. **Start containers with local environment:**
+ ```bash
+ docker-compose --env-file .env.local up -d --build
+ ```
+
+2. **Verify containers are running:**
+ ```bash
+ docker-compose ps
+ ```
+
+ Expected output:
+ ```
+ NAME STATUS
+ survey-dashboard-local_dashboard_1 Up
+ nginx-proxy Up
+ acme-companion Up
+ ```
+
+3. **Check dashboard logs:**
+ ```bash
+ docker-compose logs dashboard
+ ```
+
+ Look for:
+ ```
+ Starting HMC Survey Dashboard in PRODUCTION mode...
+ Using URL prefix: /2021community
+ Dashboard will be accessible at: http://0.0.0.0:5006/2021community
+ ```
+
+4. **Check nginx-proxy logs:**
+ ```bash
+ docker-compose logs nginx-proxy | grep localhost
+ ```
+
+ Should show nginx-proxy detected your container.
+
+5. **Test HTTP access:**
+ ```bash
+ curl -I http://localhost/2021community/
+ ```
+
+ Expected: `HTTP/1.1 200 OK` or `HTTP/1.1 302 Found` (redirect)
+
+6. **Open in browser:**
+ ```
+ http://localhost/2021community/
+ ```
+
+ Dashboard should load with full functionality.
+
+**Expected Result:** ✅ Dashboard accessible, interactive, no errors
+
+---
+
+### Scenario 2: Path Restriction Test
+
+**Goal:** Verify that only the specified path is accessible, others return 404.
+
+**Steps:**
+
+1. **Test the correct path (should work):**
+ ```bash
+ curl -I http://localhost/2021community
+ ```
+
+ Expected: `HTTP/1.1 200 OK`
+
+2. **Test root path (should fail):**
+ ```bash
+ curl -I http://localhost/
+ ```
+
+ Expected: `HTTP/1.1 404 Not Found` or `HTTP/1.1 503 Service Unavailable`
+
+ (503 is also acceptable - means nginx-proxy has no backend for root path)
+
+3. **Test wrong path (should fail):**
+ ```bash
+ curl -I http://localhost/wrong-path
+ ```
+
+ Expected: `HTTP/1.1 404 Not Found`
+
+4. **Browser test:**
+ - Visit `http://localhost/2021community/` → Should load ✅
+ - Visit `http://localhost/` → Should show 404 or 503 ✅
+ - Visit `http://localhost/other` → Should show 404 ✅
+
+**Expected Result:** ✅ Only `/2021community/` path is accessible
+
+---
+
+### Scenario 3: WebSocket Connection Test
+
+**Goal:** Verify WebSocket connections work correctly for Panel interactivity.
+
+**Steps:**
+
+1. **Open dashboard in browser:**
+ ```
+ http://localhost/2021community/
+ ```
+
+2. **Open browser DevTools (F12)**
+
+3. **Go to Network tab**
+
+4. **Filter by "WS" (WebSocket)**
+
+5. **Interact with dashboard** (click filters, buttons)
+
+**Expected Result:**
+- ✅ WebSocket connection established (Status: 101 Switching Protocols)
+- ✅ Messages flowing in both directions
+- ✅ Interactive elements respond immediately
+- ✅ No WebSocket errors in console
+
+**If WebSocket fails:**
+- Check `nginx/vhost.d/default` file exists
+- Check nginx-proxy logs for errors
+- Restart nginx-proxy: `docker-compose restart nginx-proxy`
+
+---
+
+### Scenario 4: Container Restart and Persistence Test
+
+**Goal:** Verify containers restart properly and maintain state.
+
+**Steps:**
+
+1. **Stop all containers:**
+ ```bash
+ docker-compose --env-file .env.local down
+ ```
+
+2. **Verify containers stopped:**
+ ```bash
+ docker-compose ps
+ ```
+
+ Should show no running containers.
+
+3. **Start containers again:**
+ ```bash
+ docker-compose --env-file .env.local up -d
+ ```
+
+4. **Verify dashboard accessible:**
+ ```bash
+ curl -I http://localhost/2021community
+ ```
+
+5. **Check logs for clean startup:**
+ ```bash
+ docker-compose logs dashboard | tail -20
+ ```
+
+**Expected Result:** ✅ Clean restart, dashboard immediately accessible
+
+---
+
+### Scenario 5: Build Cache and Rebuild Test
+
+**Goal:** Test that rebuilds work correctly (for code updates).
+
+**Steps:**
+
+1. **Make a small change to code** (e.g., add a comment):
+ ```bash
+ echo "# Test change" >> survey_dashboard/scripts.py
+ ```
+
+2. **Rebuild and restart:**
+ ```bash
+ docker-compose --env-file .env.local up -d --build
+ ```
+
+3. **Verify change is reflected:**
+ ```bash
+ docker-compose exec dashboard cat /app/survey_dashboard/scripts.py | tail -5
+ ```
+
+4. **Test dashboard still works:**
+ ```bash
+ curl -I http://localhost/2021community
+ ```
+
+5. **Undo test change:**
+ ```bash
+ git checkout survey_dashboard/scripts.py
+ ```
+
+**Expected Result:** ✅ Rebuild completes, changes reflected, dashboard works
+
+---
+
+### Scenario 6: Different VIRTUAL_PATH Test
+
+**Goal:** Test that changing the path works correctly.
+
+**Steps:**
+
+1. **Stop containers:**
+ ```bash
+ docker-compose --env-file .env.local down
+ ```
+
+2. **Edit .env.local to use different path:**
+ ```bash
+ # Change VIRTUAL_PATH=/2021community to VIRTUAL_PATH=/test-path
+ sed -i 's|VIRTUAL_PATH=/2021community|VIRTUAL_PATH=/test-path|' .env.local
+ ```
+
+3. **Start with new path:**
+ ```bash
+ docker-compose --env-file .env.local up -d --build
+ ```
+
+4. **Test new path:**
+ ```bash
+ curl -I http://localhost/test-path
+ ```
+
+ Expected: `HTTP/1.1 200 OK`
+
+5. **Test old path no longer works:**
+ ```bash
+ curl -I http://localhost/2021community
+ ```
+
+ Expected: `HTTP/1.1 404 Not Found`
+
+6. **Restore original path:**
+ ```bash
+ sed -i 's|VIRTUAL_PATH=/test-path|VIRTUAL_PATH=/2021community|' .env.local
+ docker-compose --env-file .env.local down
+ ```
+
+**Expected Result:** ✅ Path change works, old path inaccessible
+
+---
+
+### Scenario 7: Port Conflict Test
+
+**Goal:** Test behavior when port 80 is already in use.
+
+**Steps:**
+
+1. **Check if port 80 is available:**
+ ```bash
+ sudo lsof -i :80
+ ```
+
+2. **If port 80 is in use, use alternative port:**
+
+ Edit `.env.local`:
+ ```env
+ NGINX_PORT=8080
+ ```
+
+3. **Update docker-compose ports** (temporary test):
+ ```bash
+ # This requires editing docker-compose.yml temporarily
+ # Change: "80:80" to "8080:80"
+ ```
+
+4. **Start containers:**
+ ```bash
+ docker-compose --env-file .env.local up -d
+ ```
+
+5. **Test on new port:**
+ ```bash
+ curl -I http://localhost:8080/2021community
+ ```
+
+**Expected Result:** ✅ Works on alternative port
+
+**Note:** In production, you need port 80 for Let's Encrypt. This test just verifies flexibility.
+
+---
+
+## Verification Steps
+
+### Complete Local Testing Checklist
+
+Run through this checklist to ensure everything works:
+
+- [ ] Docker images build without errors
+- [ ] All 3 containers start successfully
+- [ ] `docker-compose ps` shows all containers "Up"
+- [ ] Dashboard logs show production mode with correct prefix
+- [ ] nginx-proxy logs show configuration for localhost
+- [ ] HTTP access works: `curl http://localhost/2021community/`
+- [ ] Browser loads dashboard at `http://localhost/2021community/`
+- [ ] Dashboard displays correctly with styling
+- [ ] Interactive elements work (buttons, filters, plots)
+- [ ] Browser console shows no errors (F12)
+- [ ] WebSocket connection established (Network tab)
+- [ ] Root path blocked: `http://localhost/` returns 404/503
+- [ ] Other paths blocked: `http://localhost/other` returns 404
+- [ ] Containers restart cleanly: `docker-compose down && up -d`
+- [ ] Rebuild works: `docker-compose up -d --build`
+
+If all items are checked ✅, your setup is ready for production!
+
+---
+
+## Troubleshooting
+
+### Issue 1: Port 80 Already in Use
+
+**Error:**
+```
+Error starting userland proxy: listen tcp4 0.0.0.0:80: bind: address already in use
+```
+
+**Cause:** Another service (Apache, nginx, etc.) is using port 80.
+
+**Solutions:**
+
+**Option A: Stop the conflicting service**
+```bash
+# Find what's using port 80
+sudo lsof -i :80
+
+# Stop Apache (example)
+sudo systemctl stop apache2
+
+# Or stop nginx
+sudo systemctl stop nginx
+```
+
+**Option B: Use a different port for testing**
+```bash
+# Edit .env.local
+NGINX_PORT=8080
+
+# Access via: http://localhost:8080/2021community
+```
+
+### Issue 2: Dashboard Container Exits Immediately
+
+**Check logs:**
+```bash
+docker-compose logs dashboard
+```
+
+**Common causes:**
+
+1. **Python error in code:**
+ - Look for Python tracebacks in logs
+ - Fix syntax or import errors
+
+2. **Missing dependencies:**
+ - Rebuild: `docker-compose up -d --build`
+
+3. **Wrong command:**
+ - Check Dockerfile CMD is correct
+ - Verify scripts.py is executable
+
+### Issue 3: 502 Bad Gateway
+
+**Cause:** nginx-proxy can't reach dashboard container.
+
+**Steps:**
+
+1. **Check dashboard is running:**
+ ```bash
+ docker-compose ps dashboard
+ ```
+
+2. **Check dashboard logs for errors:**
+ ```bash
+ docker-compose logs dashboard
+ ```
+
+3. **Verify containers are on same network:**
+ ```bash
+ docker network inspect survey-dashboard-local_default
+ ```
+
+ Should show both nginx-proxy and dashboard.
+
+4. **Restart both containers:**
+ ```bash
+ docker-compose restart nginx-proxy dashboard
+ ```
+
+### Issue 4: WebSockets Not Working
+
+**Symptoms:** Dashboard loads but buttons/filters don't work.
+
+**Steps:**
+
+1. **Check vhost.d/default exists:**
+ ```bash
+ ls -la nginx/vhost.d/default
+ ```
+
+2. **Verify WebSocket config content:**
+ ```bash
+ cat nginx/vhost.d/default
+ ```
+
+ Should contain:
+ ```
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "upgrade";
+ ```
+
+3. **Restart nginx-proxy:**
+ ```bash
+ docker-compose restart nginx-proxy
+ ```
+
+4. **Check browser console (F12):**
+ - Look for WebSocket connection errors
+ - Should see successful WS connection
+
+### Issue 5: Changes Not Reflected After Rebuild
+
+**Cause:** Docker using cached layers.
+
+**Solution:**
+
+```bash
+# Force complete rebuild without cache
+docker-compose build --no-cache
+
+# Or rebuild specific service
+docker-compose build --no-cache dashboard
+
+# Then restart
+docker-compose up -d
+```
+
+### Issue 6: acme-companion Logs Show Errors
+
+**This is NORMAL for local testing!**
+
+acme-companion will show errors like:
+```
+ERROR: localhost is not a valid domain for Let's Encrypt
+```
+
+**Why:** Let's Encrypt requires a real domain. This is expected with `HOST=localhost`.
+
+**Solution:** Ignore these errors during local testing. They won't occur in production with a real domain.
+
+---
+
+## Cleanup
+
+### Stop and Remove Containers
+
+```bash
+# Stop containers (preserves volumes)
+docker-compose --env-file .env.local down
+
+# Stop and remove volumes (complete cleanup)
+docker-compose --env-file .env.local down -v
+```
+
+### Remove Local Testing Environment File
+
+```bash
+rm .env.local
+```
+
+### Remove Docker Images (Optional)
+
+```bash
+# List images
+docker images | grep survey-dashboard
+
+# Remove specific image
+docker rmi survey-dashboard-local_dashboard
+
+# Remove all unused images
+docker image prune -a
+```
+
+### Clean Up Nginx Directories
+
+If you want to start fresh:
+
+```bash
+# Remove generated nginx files (certificates, etc.)
+rm -rf nginx/certs/*
+rm -rf nginx/html/*
+
+# Keep vhost.d/default (it's part of your config)
+```
+
+---
+
+## Key Differences: Local vs Production
+
+| Aspect | Local Testing | Production |
+|--------|---------------|------------|
+| Domain | `localhost` | Real domain (e.g., `dashboard.survey.helmholtz-metadaten.de`) |
+| HTTPS | ❌ Not available | ✅ Let's Encrypt SSL |
+| Protocol | HTTP only | HTTPS (HTTP redirects to HTTPS) |
+| Certificate | None | Valid Let's Encrypt certificate |
+| Access | Only from local machine | Accessible from internet |
+| DNS | Not needed | Must be configured |
+| Firewall | Not needed | Ports 80, 443 must be open |
+| Email | Dummy value | Real email for notifications |
+
+---
+
+## What to Test Before Production
+
+### Critical Tests ✅
+
+Run these tests locally before production deployment:
+
+1. **Docker Build:** `docker-compose build` completes without errors
+2. **Container Startup:** All 3 containers start and stay running
+3. **Dashboard Access:** Dashboard loads at correct path
+4. **Path Routing:** Only specified path accessible, others blocked
+5. **WebSockets:** Interactive elements work (check browser DevTools)
+6. **Rebuild:** Code changes reflected after rebuild
+7. **Restart:** Clean restart after `down` and `up`
+
+### Cannot Test Locally ⚠️
+
+These can only be tested in production:
+
+1. **SSL/HTTPS:** Requires real domain
+2. **Let's Encrypt:** Certificate acquisition
+3. **DNS Resolution:** Public DNS records
+4. **External Access:** Access from internet
+5. **Auto-renewal:** Certificate renewal after 60 days
+
+---
+
+## Quick Test Commands
+
+```bash
+# Start local test environment
+docker-compose --env-file .env.local up -d --build
+
+# Check status
+docker-compose ps
+
+# Test HTTP access
+curl -I http://localhost/2021community/
+
+# Test root path is blocked
+curl -I http://localhost/
+
+# View logs
+docker-compose logs -f dashboard
+
+# Stop and clean up
+docker-compose --env-file .env.local down
+
+# Complete cleanup (removes volumes too)
+docker-compose --env-file .env.local down -v
+```
+
+---
+
+## Next Steps After Successful Local Testing
+
+Once all local tests pass:
+
+1. ✅ Review DEPLOYMENT.md for production steps
+2. ✅ Ensure you have a real domain and it points to your VM
+3. ✅ Create production `.env` file with real values
+4. ✅ Follow DEPLOYMENT.md step-by-step on production VM
+5. ✅ Monitor Let's Encrypt certificate acquisition
+6. ✅ Verify HTTPS access works in production
+
+---
+
+**Last Updated:** 2024-11-03
+**Purpose:** Local testing before production deployment
+**Environment:** Docker Compose on local development machine
diff --git a/survey_dashboard/devel_plots.ipynb b/docs/notebooks/devel_plots.ipynb
similarity index 95%
rename from survey_dashboard/devel_plots.ipynb
rename to docs/notebooks/devel_plots.ipynb
index 81d1838..a3a6b3b 100644
--- a/survey_dashboard/devel_plots.ipynb
+++ b/docs/notebooks/devel_plots.ipynb
@@ -63,287 +63,8 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function now() {\n",
- " return new Date();\n",
- " }\n",
- "\n",
- " const force = true;\n",
- "\n",
- " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n",
- " root._bokeh_onload_callbacks = [];\n",
- " root._bokeh_is_loading = undefined;\n",
- " }\n",
- "\n",
- "const JS_MIME_TYPE = 'application/javascript';\n",
- " const HTML_MIME_TYPE = 'text/html';\n",
- " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n",
- " const CLASS_NAME = 'output_bokeh rendered_html';\n",
- "\n",
- " /**\n",
- " * Render data to the DOM node\n",
- " */\n",
- " function render(props, node) {\n",
- " const script = document.createElement(\"script\");\n",
- " node.appendChild(script);\n",
- " }\n",
- "\n",
- " /**\n",
- " * Handle when an output is cleared or removed\n",
- " */\n",
- " function handleClearOutput(event, handle) {\n",
- " const cell = handle.cell;\n",
- "\n",
- " const id = cell.output_area._bokeh_element_id;\n",
- " const server_id = cell.output_area._bokeh_server_id;\n",
- " // Clean up Bokeh references\n",
- " if (id != null && id in Bokeh.index) {\n",
- " Bokeh.index[id].model.document.clear();\n",
- " delete Bokeh.index[id];\n",
- " }\n",
- "\n",
- " if (server_id !== undefined) {\n",
- " // Clean up Bokeh references\n",
- " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n",
- " cell.notebook.kernel.execute(cmd_clean, {\n",
- " iopub: {\n",
- " output: function(msg) {\n",
- " const id = msg.content.text.trim();\n",
- " if (id in Bokeh.index) {\n",
- " Bokeh.index[id].model.document.clear();\n",
- " delete Bokeh.index[id];\n",
- " }\n",
- " }\n",
- " }\n",
- " });\n",
- " // Destroy server and session\n",
- " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n",
- " cell.notebook.kernel.execute(cmd_destroy);\n",
- " }\n",
- " }\n",
- "\n",
- " /**\n",
- " * Handle when a new output is added\n",
- " */\n",
- " function handleAddOutput(event, handle) {\n",
- " const output_area = handle.output_area;\n",
- " const output = handle.output;\n",
- "\n",
- " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n",
- " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n",
- " return\n",
- " }\n",
- "\n",
- " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
- "\n",
- " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n",
- " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n",
- " // store reference to embed id on output_area\n",
- " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
- " }\n",
- " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
- " const bk_div = document.createElement(\"div\");\n",
- " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
- " const script_attrs = bk_div.children[0].attributes;\n",
- " for (let i = 0; i < script_attrs.length; i++) {\n",
- " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
- " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n",
- " }\n",
- " // store reference to server id on output_area\n",
- " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
- " }\n",
- " }\n",
- "\n",
- " function register_renderer(events, OutputArea) {\n",
- "\n",
- " function append_mime(data, metadata, element) {\n",
- " // create a DOM node to render to\n",
- " const toinsert = this.create_output_subarea(\n",
- " metadata,\n",
- " CLASS_NAME,\n",
- " EXEC_MIME_TYPE\n",
- " );\n",
- " this.keyboard_manager.register_events(toinsert);\n",
- " // Render to node\n",
- " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
- " render(props, toinsert[toinsert.length - 1]);\n",
- " element.append(toinsert);\n",
- " return toinsert\n",
- " }\n",
- "\n",
- " /* Handle when an output is cleared or removed */\n",
- " events.on('clear_output.CodeCell', handleClearOutput);\n",
- " events.on('delete.Cell', handleClearOutput);\n",
- "\n",
- " /* Handle when a new output is added */\n",
- " events.on('output_added.OutputArea', handleAddOutput);\n",
- "\n",
- " /**\n",
- " * Register the mime type and append_mime function with output_area\n",
- " */\n",
- " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
- " /* Is output safe? */\n",
- " safe: true,\n",
- " /* Index of renderer in `output_area.display_order` */\n",
- " index: 0\n",
- " });\n",
- " }\n",
- "\n",
- " // register the mime type if in Jupyter Notebook environment and previously unregistered\n",
- " if (root.Jupyter !== undefined) {\n",
- " const events = require('base/js/events');\n",
- " const OutputArea = require('notebook/js/outputarea').OutputArea;\n",
- "\n",
- " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
- " register_renderer(events, OutputArea);\n",
- " }\n",
- " }\n",
- " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n",
- " root._bokeh_timeout = Date.now() + 5000;\n",
- " root._bokeh_failed_load = false;\n",
- " }\n",
- "\n",
- " const NB_LOAD_WARNING = {'data': {'text/html':\n",
- " \"
\\n\"+\n",
- " \"
\\n\"+\n",
- " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
- " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
- " \"
\\n\"+\n",
- " \"
\\n\"+\n",
- " \"re-rerun `output_notebook()` to attempt to load from CDN again, or \\n\"+\n",
- " \"use INLINE resources instead, as so: \\n\"+\n",
- " \" \\n\"+\n",
- " \"
\\n\"+\n",
- " \"from bokeh.resources import INLINE\\n\"+\n",
- " \"output_notebook(resources=INLINE)\\n\"+\n",
- " \"\\n\"+\n",
- " \"
\"}};\n",
- "\n",
- " function display_loaded() {\n",
- " const el = document.getElementById(\"33756\");\n",
- " if (el != null) {\n",
- " el.textContent = \"BokehJS is loading...\";\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " if (el != null) {\n",
- " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n",
- " }\n",
- " } else if (Date.now() < root._bokeh_timeout) {\n",
- " setTimeout(display_loaded, 100)\n",
- " }\n",
- " }\n",
- "\n",
- " function run_callbacks() {\n",
- " try {\n",
- " root._bokeh_onload_callbacks.forEach(function(callback) {\n",
- " if (callback != null)\n",
- " callback();\n",
- " });\n",
- " } finally {\n",
- " delete root._bokeh_onload_callbacks\n",
- " }\n",
- " console.debug(\"Bokeh: all callbacks have finished\");\n",
- " }\n",
- "\n",
- " function load_libs(css_urls, js_urls, callback) {\n",
- " if (css_urls == null) css_urls = [];\n",
- " if (js_urls == null) js_urls = [];\n",
- "\n",
- " root._bokeh_onload_callbacks.push(callback);\n",
- " if (root._bokeh_is_loading > 0) {\n",
- " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
- " return null;\n",
- " }\n",
- " if (js_urls == null || js_urls.length === 0) {\n",
- " run_callbacks();\n",
- " return null;\n",
- " }\n",
- " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
- " root._bokeh_is_loading = css_urls.length + js_urls.length;\n",
- "\n",
- " function on_load() {\n",
- " root._bokeh_is_loading--;\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
- " run_callbacks()\n",
- " }\n",
- " }\n",
- "\n",
- " function on_error(url) {\n",
- " console.error(\"failed to load \" + url);\n",
- " }\n",
- "\n",
- " for (let i = 0; i < css_urls.length; i++) {\n",
- " const url = css_urls[i];\n",
- " const element = document.createElement(\"link\");\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error.bind(null, url);\n",
- " element.rel = \"stylesheet\";\n",
- " element.type = \"text/css\";\n",
- " element.href = url;\n",
- " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " for (let i = 0; i < js_urls.length; i++) {\n",
- " const url = js_urls[i];\n",
- " const element = document.createElement('script');\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error.bind(null, url);\n",
- " element.async = false;\n",
- " element.src = url;\n",
- " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
- " document.head.appendChild(element);\n",
- " }\n",
- " };\n",
- "\n",
- " function inject_raw_css(css) {\n",
- " const element = document.createElement(\"style\");\n",
- " element.appendChild(document.createTextNode(css));\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n",
- " const css_urls = [];\n",
- "\n",
- " const inline_js = [ function(Bokeh) {\n",
- " Bokeh.set_log_level(\"info\");\n",
- " },\n",
- "function(Bokeh) {\n",
- " }\n",
- " ];\n",
- "\n",
- " function run_inline_js() {\n",
- " if (root.Bokeh !== undefined || force === true) {\n",
- " for (let i = 0; i < inline_js.length; i++) {\n",
- " inline_js[i].call(root, root.Bokeh);\n",
- " }\n",
- "if (force === true) {\n",
- " display_loaded();\n",
- " }} else if (Date.now() < root._bokeh_timeout) {\n",
- " setTimeout(run_inline_js, 100);\n",
- " } else if (!root._bokeh_failed_load) {\n",
- " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
- " root._bokeh_failed_load = true;\n",
- " } else if (force !== true) {\n",
- " const cell = $(document.getElementById(\"33756\")).parents('.cell').data().cell;\n",
- " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n",
- " }\n",
- " }\n",
- "\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
- " run_inline_js();\n",
- " } else {\n",
- " load_libs(css_urls, js_urls, function() {\n",
- " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
- " run_inline_js();\n",
- " });\n",
- " }\n",
- "}(window));"
- ],
- "application/vnd.bokehjs_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"\\n\"+\n \"
\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"
\\n\"+\n \"
\\n\"+\n \"re-rerun `output_notebook()` to attempt to load from CDN again, or \\n\"+\n \"use INLINE resources instead, as so: \\n\"+\n \" \\n\"+\n \"
\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n const el = document.getElementById(\"33756\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\nif (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(\"33756\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));"
+ "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\nconst JS_MIME_TYPE = 'application/javascript';\n const HTML_MIME_TYPE = 'text/html';\n const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n const CLASS_NAME = 'output_bokeh rendered_html';\n\n /**\n * Render data to the DOM node\n */\n function render(props, node) {\n const script = document.createElement(\"script\");\n node.appendChild(script);\n }\n\n /**\n * Handle when an output is cleared or removed\n */\n function handleClearOutput(event, handle) {\n const cell = handle.cell;\n\n const id = cell.output_area._bokeh_element_id;\n const server_id = cell.output_area._bokeh_server_id;\n // Clean up Bokeh references\n if (id != null && id in Bokeh.index) {\n Bokeh.index[id].model.document.clear();\n delete Bokeh.index[id];\n }\n\n if (server_id !== undefined) {\n // Clean up Bokeh references\n const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n cell.notebook.kernel.execute(cmd_clean, {\n iopub: {\n output: function(msg) {\n const id = msg.content.text.trim();\n if (id in Bokeh.index) {\n Bokeh.index[id].model.document.clear();\n delete Bokeh.index[id];\n }\n }\n }\n });\n // Destroy server and session\n const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n cell.notebook.kernel.execute(cmd_destroy);\n }\n }\n\n /**\n * Handle when a new output is added\n */\n function handleAddOutput(event, handle) {\n const output_area = handle.output_area;\n const output = handle.output;\n\n // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n return\n }\n\n const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n\n if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n // store reference to embed id on output_area\n output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n }\n if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n const bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n const script_attrs = bk_div.children[0].attributes;\n for (let i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n }\n\n function register_renderer(events, OutputArea) {\n\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n const toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[toinsert.length - 1]);\n element.append(toinsert);\n return toinsert\n }\n\n /* Handle when an output is cleared or removed */\n events.on('clear_output.CodeCell', handleClearOutput);\n events.on('delete.Cell', handleClearOutput);\n\n /* Handle when a new output is added */\n events.on('output_added.OutputArea', handleAddOutput);\n\n /**\n * Register the mime type and append_mime function with output_area\n */\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n /* Is output safe? */\n safe: true,\n /* Index of renderer in `output_area.display_order` */\n index: 0\n });\n }\n\n // register the mime type if in Jupyter Notebook environment and previously unregistered\n if (root.Jupyter !== undefined) {\n const events = require('base/js/events');\n const OutputArea = require('notebook/js/outputarea').OutputArea;\n\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n }\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"\\n\"+\n \"
\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"
\\n\"+\n \"
\\n\"+\n \"re-rerun `output_notebook()` to attempt to load from CDN again, or \\n\"+\n \"use INLINE resources instead, as so: \\n\"+\n \" \\n\"+\n \"
\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n const el = document.getElementById(\"33756\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\nif (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(\"33756\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));",
+ "application/vnd.bokehjs_load.v0+json": ""
},
"metadata": {},
"output_type": "display_data"
@@ -364,426 +85,16 @@
"outputs": [
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function now() {\n",
- " return new Date();\n",
- " }\n",
- "\n",
- " var force = true;\n",
- "\n",
- " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n",
- " root._bokeh_onload_callbacks = [];\n",
- " root._bokeh_is_loading = undefined;\n",
- " }\n",
- "\n",
- " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n",
- " root._bokeh_timeout = Date.now() + 5000;\n",
- " root._bokeh_failed_load = false;\n",
- " }\n",
- "\n",
- " function run_callbacks() {\n",
- " try {\n",
- " root._bokeh_onload_callbacks.forEach(function(callback) {\n",
- " if (callback != null)\n",
- " callback();\n",
- " });\n",
- " } finally {\n",
- " delete root._bokeh_onload_callbacks\n",
- " }\n",
- " console.debug(\"Bokeh: all callbacks have finished\");\n",
- " }\n",
- "\n",
- " function load_libs(css_urls, js_urls, js_modules, callback) {\n",
- " if (css_urls == null) css_urls = [];\n",
- " if (js_urls == null) js_urls = [];\n",
- " if (js_modules == null) js_modules = [];\n",
- "\n",
- " root._bokeh_onload_callbacks.push(callback);\n",
- " if (root._bokeh_is_loading > 0) {\n",
- " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
- " return null;\n",
- " }\n",
- " if (js_urls.length === 0 && js_modules.length === 0) {\n",
- " run_callbacks();\n",
- " return null;\n",
- " }\n",
- " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
- "\n",
- " function on_load() {\n",
- " root._bokeh_is_loading--;\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
- " run_callbacks()\n",
- " }\n",
- " }\n",
- "\n",
- " function on_error() {\n",
- " console.error(\"failed to load \" + url);\n",
- " }\n",
- "\n",
- " for (var i = 0; i < css_urls.length; i++) {\n",
- " var url = css_urls[i];\n",
- " const element = document.createElement(\"link\");\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.rel = \"stylesheet\";\n",
- " element.type = \"text/css\";\n",
- " element.href = url;\n",
- " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " var skip = [];\n",
- " if (window.requirejs) {\n",
- " window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n",
- " require([\"gridstack\"], function(GridStack) {\n",
- "\twindow.GridStack = GridStack\n",
- "\ton_load()\n",
- " })\n",
- " require([\"notyf\"], function() {\n",
- "\ton_load()\n",
- " })\n",
- " root._bokeh_is_loading = css_urls.length + 2;\n",
- " } else {\n",
- " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n",
- " } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n",
- " var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n",
- " for (var i = 0; i < urls.length; i++) {\n",
- " skip.push(urls[i])\n",
- " }\n",
- " } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n",
- " var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n",
- " for (var i = 0; i < urls.length; i++) {\n",
- " skip.push(urls[i])\n",
- " }\n",
- " } for (var i = 0; i < js_urls.length; i++) {\n",
- " var url = js_urls[i];\n",
- " if (skip.indexOf(url) >= 0) {\n",
- "\tif (!window.requirejs) {\n",
- "\t on_load();\n",
- "\t}\n",
- "\tcontinue;\n",
- " }\n",
- " var element = document.createElement('script');\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.async = false;\n",
- " element.src = url;\n",
- " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
- " document.head.appendChild(element);\n",
- " }\n",
- " for (var i = 0; i < js_modules.length; i++) {\n",
- " var url = js_modules[i];\n",
- " if (skip.indexOf(url) >= 0) {\n",
- "\tif (!window.requirejs) {\n",
- "\t on_load();\n",
- "\t}\n",
- "\tcontinue;\n",
- " }\n",
- " var element = document.createElement('script');\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.async = false;\n",
- " element.src = url;\n",
- " element.type = \"module\";\n",
- " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
- " document.head.appendChild(element);\n",
- " }\n",
- " if (!js_urls.length && !js_modules.length) {\n",
- " on_load()\n",
- " }\n",
- " };\n",
- "\n",
- " function inject_raw_css(css) {\n",
- " const element = document.createElement(\"style\");\n",
- " element.appendChild(document.createTextNode(css));\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n",
- " var js_modules = [];\n",
- " var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\"];\n",
- " var inline_js = [ function(Bokeh) {\n",
- " inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n",
- " }, function(Bokeh) {\n",
- " Bokeh.set_log_level(\"info\");\n",
- " },\n",
- "function(Bokeh) {} // ensure no trailing comma for IE\n",
- " ];\n",
- "\n",
- " function run_inline_js() {\n",
- " if ((root.Bokeh !== undefined) || (force === true)) {\n",
- " for (var i = 0; i < inline_js.length; i++) {\n",
- " inline_js[i].call(root, root.Bokeh);\n",
- " }} else if (Date.now() < root._bokeh_timeout) {\n",
- " setTimeout(run_inline_js, 100);\n",
- " } else if (!root._bokeh_failed_load) {\n",
- " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
- " root._bokeh_failed_load = true;\n",
- " }\n",
- " }\n",
- "\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
- " run_inline_js();\n",
- " } else {\n",
- " load_libs(css_urls, js_urls, js_modules, function() {\n",
- " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
- " run_inline_js();\n",
- " });\n",
- " }\n",
- "}(window));"
- ],
- "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 2;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n var js_modules = [];\n var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\"];\n var inline_js = [ function(Bokeh) {\n inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n }, function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, js_modules, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));"
+ "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 2;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n var js_modules = [];\n var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\"];\n var inline_js = [ function(Bokeh) {\n inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n }, function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, js_modules, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));",
+ "application/vnd.holoviews_load.v0+json": ""
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
- "application/javascript": [
- "\n",
- "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n",
- " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n",
- "}\n",
- "\n",
- "\n",
- " function JupyterCommManager() {\n",
- " }\n",
- "\n",
- " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n",
- " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
- " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
- " comm_manager.register_target(comm_id, function(comm) {\n",
- " comm.on_msg(msg_handler);\n",
- " });\n",
- " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
- " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n",
- " comm.onMsg = msg_handler;\n",
- " });\n",
- " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
- " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n",
- " var messages = comm.messages[Symbol.asyncIterator]();\n",
- " function processIteratorResult(result) {\n",
- " var message = result.value;\n",
- " console.log(message)\n",
- " var content = {data: message.data, comm_id};\n",
- " var buffers = []\n",
- " for (var buffer of message.buffers || []) {\n",
- " buffers.push(new DataView(buffer))\n",
- " }\n",
- " var metadata = message.metadata || {};\n",
- " var msg = {content, buffers, metadata}\n",
- " msg_handler(msg);\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " return messages.next().then(processIteratorResult);\n",
- " })\n",
- " }\n",
- " }\n",
- "\n",
- " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n",
- " if (comm_id in window.PyViz.comms) {\n",
- " return window.PyViz.comms[comm_id];\n",
- " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
- " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
- " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n",
- " if (msg_handler) {\n",
- " comm.on_msg(msg_handler);\n",
- " }\n",
- " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
- " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n",
- " comm.open();\n",
- " if (msg_handler) {\n",
- " comm.onMsg = msg_handler;\n",
- " }\n",
- " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
- " var comm_promise = google.colab.kernel.comms.open(comm_id)\n",
- " comm_promise.then((comm) => {\n",
- " window.PyViz.comms[comm_id] = comm;\n",
- " if (msg_handler) {\n",
- " var messages = comm.messages[Symbol.asyncIterator]();\n",
- " function processIteratorResult(result) {\n",
- " var message = result.value;\n",
- " var content = {data: message.data};\n",
- " var metadata = message.metadata || {comm_id};\n",
- " var msg = {content, metadata}\n",
- " msg_handler(msg);\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " }) \n",
- " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n",
- " return comm_promise.then((comm) => {\n",
- " comm.send(data, metadata, buffers, disposeOnDone);\n",
- " });\n",
- " };\n",
- " var comm = {\n",
- " send: sendClosure\n",
- " };\n",
- " }\n",
- " window.PyViz.comms[comm_id] = comm;\n",
- " return comm;\n",
- " }\n",
- " window.PyViz.comm_manager = new JupyterCommManager();\n",
- " \n",
- "\n",
- "\n",
- "var JS_MIME_TYPE = 'application/javascript';\n",
- "var HTML_MIME_TYPE = 'text/html';\n",
- "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n",
- "var CLASS_NAME = 'output';\n",
- "\n",
- "/**\n",
- " * Render data to the DOM node\n",
- " */\n",
- "function render(props, node) {\n",
- " var div = document.createElement(\"div\");\n",
- " var script = document.createElement(\"script\");\n",
- " node.appendChild(div);\n",
- " node.appendChild(script);\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle when a new output is added\n",
- " */\n",
- "function handle_add_output(event, handle) {\n",
- " var output_area = handle.output_area;\n",
- " var output = handle.output;\n",
- " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n",
- " return\n",
- " }\n",
- " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
- " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
- " if (id !== undefined) {\n",
- " var nchildren = toinsert.length;\n",
- " var html_node = toinsert[nchildren-1].children[0];\n",
- " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n",
- " var scripts = [];\n",
- " var nodelist = html_node.querySelectorAll(\"script\");\n",
- " for (var i in nodelist) {\n",
- " if (nodelist.hasOwnProperty(i)) {\n",
- " scripts.push(nodelist[i])\n",
- " }\n",
- " }\n",
- "\n",
- " scripts.forEach( function (oldScript) {\n",
- " var newScript = document.createElement(\"script\");\n",
- " var attrs = [];\n",
- " var nodemap = oldScript.attributes;\n",
- " for (var j in nodemap) {\n",
- " if (nodemap.hasOwnProperty(j)) {\n",
- " attrs.push(nodemap[j])\n",
- " }\n",
- " }\n",
- " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n",
- " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n",
- " oldScript.parentNode.replaceChild(newScript, oldScript);\n",
- " });\n",
- " if (JS_MIME_TYPE in output.data) {\n",
- " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n",
- " }\n",
- " output_area._hv_plot_id = id;\n",
- " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n",
- " window.PyViz.plot_index[id] = Bokeh.index[id];\n",
- " } else {\n",
- " window.PyViz.plot_index[id] = null;\n",
- " }\n",
- " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
- " var bk_div = document.createElement(\"div\");\n",
- " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
- " var script_attrs = bk_div.children[0].attributes;\n",
- " for (var i = 0; i < script_attrs.length; i++) {\n",
- " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
- " }\n",
- " // store reference to server id on output_area\n",
- " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
- " }\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle when an output is cleared or removed\n",
- " */\n",
- "function handle_clear_output(event, handle) {\n",
- " var id = handle.cell.output_area._hv_plot_id;\n",
- " var server_id = handle.cell.output_area._bokeh_server_id;\n",
- " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n",
- " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n",
- " if (server_id !== null) {\n",
- " comm.send({event_type: 'server_delete', 'id': server_id});\n",
- " return;\n",
- " } else if (comm !== null) {\n",
- " comm.send({event_type: 'delete', 'id': id});\n",
- " }\n",
- " delete PyViz.plot_index[id];\n",
- " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n",
- " var doc = window.Bokeh.index[id].model.document\n",
- " doc.clear();\n",
- " const i = window.Bokeh.documents.indexOf(doc);\n",
- " if (i > -1) {\n",
- " window.Bokeh.documents.splice(i, 1);\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle kernel restart event\n",
- " */\n",
- "function handle_kernel_cleanup(event, handle) {\n",
- " delete PyViz.comms[\"hv-extension-comm\"];\n",
- " window.PyViz.plot_index = {}\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle update_display_data messages\n",
- " */\n",
- "function handle_update_output(event, handle) {\n",
- " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n",
- " handle_add_output(event, handle)\n",
- "}\n",
- "\n",
- "function register_renderer(events, OutputArea) {\n",
- " function append_mime(data, metadata, element) {\n",
- " // create a DOM node to render to\n",
- " var toinsert = this.create_output_subarea(\n",
- " metadata,\n",
- " CLASS_NAME,\n",
- " EXEC_MIME_TYPE\n",
- " );\n",
- " this.keyboard_manager.register_events(toinsert);\n",
- " // Render to node\n",
- " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
- " render(props, toinsert[0]);\n",
- " element.append(toinsert);\n",
- " return toinsert\n",
- " }\n",
- "\n",
- " events.on('output_added.OutputArea', handle_add_output);\n",
- " events.on('output_updated.OutputArea', handle_update_output);\n",
- " events.on('clear_output.CodeCell', handle_clear_output);\n",
- " events.on('delete.Cell', handle_clear_output);\n",
- " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n",
- "\n",
- " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
- " safe: true,\n",
- " index: 0\n",
- " });\n",
- "}\n",
- "\n",
- "if (window.Jupyter !== undefined) {\n",
- " try {\n",
- " var events = require('base/js/events');\n",
- " var OutputArea = require('notebook/js/outputarea').OutputArea;\n",
- " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
- " register_renderer(events, OutputArea);\n",
- " }\n",
- " } catch(err) {\n",
- " }\n",
- "}\n"
- ],
- "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n"
+ "application/javascript": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n",
+ "application/vnd.holoviews_load.v0+json": ""
},
"metadata": {},
"output_type": "display_data"
@@ -1157,32 +468,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"90a16b69-8ae9-4a91-b725-4b57cd359465\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"22960\",\"attributes\":{\"toolbar_location\":\"above\",\"x_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"22972\"},\"y_range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"22970\",\"attributes\":{\"factors\":[\"No\",\"I am not sure\",\"Yes\"]}},\"left\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"22982\",\"attributes\":{\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"22985\"},\"axis_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"22983\"},\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"22984\"}}}],\"width\":900,\"x_range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"22968\",\"attributes\":{\"factors\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]}},\"below\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"22976\",\"attributes\":{\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"22979\"},\"axis_line_alpha\":0,\"major_label_orientation\":1,\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"22977\"},\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"22978\"}}}],\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"22961\",\"attributes\":{\"text\":\"title\"}},\"y_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"22974\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"23010\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"23007\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"size\":{\"type\":\"field\",\"field\":\"percentage\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"field\",\"field\":\"docStructured\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\"},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"23011\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"23012\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"23006\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"size\":{\"type\":\"field\",\"field\":\"percentage\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.6},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"field\",\"field\":\"docStructured\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\"},\"fill_alpha\":{\"type\":\"value\",\"value\":0.6}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"23008\",\"attributes\":{\"fill_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"size\":{\"type\":\"field\",\"field\":\"percentage\"},\"line_width\":{\"type\":\"value\",\"value\":5},\"y\":{\"type\":\"field\",\"field\":\"docStructured\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"23009\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"size\":{\"type\":\"field\",\"field\":\"percentage\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"field\",\"field\":\"docStructured\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\"},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"22957\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"22958\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"index\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAEAAAACAAAAAwAAAAQAAAAFAAAABgAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAAAARAAAAEgAAABMAAAAUAAAA\"},\"shape\":[21],\"dtype\":\"int32\",\"order\":\"little\"}],[\"careerLevel\",{\"type\":\"ndarray\",\"array\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\",\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\",\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"],\"shape\":[21],\"dtype\":\"object\",\"order\":\"little\"}],[\"docStructured\",{\"type\":\"ndarray\",\"array\":[\"I am not sure\",\"I am not sure\",\"I am not sure\",\"I am not sure\",\"I am not sure\",\"I am not sure\",\"I am not sure\",\"No\",\"No\",\"No\",\"No\",\"No\",\"No\",\"No\",\"Yes\",\"Yes\",\"Yes\",\"Yes\",\"Yes\",\"Yes\",\"Yes\"],\"shape\":[21],\"dtype\":\"object\",\"order\":\"little\"}],[\"value\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AQAAAAIAAAAUAAAAHwAAABMAAAAbAAAAAQAAAAYAAAANAAAAIAAAADAAAAAnAAAAWgAAAAQAAAADAAAAFQAAABkAAAASAAAAJwAAAD4AAAAKAAAA\"},\"shape\":[21],\"dtype\":\"int32\",\"order\":\"little\"}],[\"total\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"FgAAAEEAAACCAAAAgAAAAJQAAAAQAQAAGAAAABYAAABBAAAAggAAAIAAAACUAAAAEAEAABgAAAAWAAAAQQAAAIIAAACAAAAAlAAAABABAAAYAAAA\"},\"shape\":[21],\"dtype\":\"int32\",\"order\":\"little\"}],[\"percentage\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"L7rooosuEkDZiZ3YiZ0IQE/sxE7sxC5AAAAAAAA4OEDPusEU+awpQFpaWlpa2iNAqqqqqqqqEEBFF1100UU7QAAAAAAAADRA2Ymd2ImdOEAAAAAAAMBCQJ51gynyWTpAS0tLS0uLQECqqqqqqqowQEUXXXTRRStAdmIndmInQECyEzuxEzszQAAAAAAAICxAnnWDKfJZOkBLS0tLS8s2QFZVVVVV1URA\"},\"shape\":[21],\"dtype\":\"float64\",\"order\":\"little\"}],[\"markersize\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"oGSaLeY+A0CLDhvcPqv/P9lcpYkWtBFAenvDhFA2FkCyj9iBASwQQB9myiLbcAxAWLvckyVtAkD4AS3HMZIXQJtnjBpgLxRAO0OVNLBkFkAFGctduKMbQPZGJcZjKxdA40IJVnv2GUBYu9yTJW0SQL9QKN/RqhBAL5LhmJ6nGUAX6ZBJB8sTQLZxPtv57BBA9kYlxmMrF0B0JV0PiYwVQPcKncV2Ih1A\"},\"shape\":[21],\"dtype\":\"float64\",\"order\":\"little\"}]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"22959\"}}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"22967\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"22988\",\"attributes\":{\"tooltips\":[[\"careerLevel\",\"@careerLevel\"],[\"docStructured\",\"@docStructured\"],[\"total\",\"@total\"],[\"percentage\",\"@percentage\"]],\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"22989\"},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"22990\",\"attributes\":{\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"22991\",\"attributes\":{\"fill_alpha\":0.5,\"syncable\":false,\"line_color\":\"black\",\"level\":\"overlay\",\"fill_color\":\"lightgrey\",\"line_width\":2,\"line_alpha\":1.0,\"visible\":false,\"bottom_units\":\"canvas\",\"line_dash\":[4,4],\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"left_units\":\"canvas\"}}}},{\"type\":\"object\",\"name\":\"UndoTool\",\"id\":\"22992\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"22993\"},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"22994\"}]}},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"22981\",\"attributes\":{\"axis\":{\"id\":\"22976\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"22987\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"22982\"}}}]}}]}};\n",
- " const render_items = [{\"docid\":\"90a16b69-8ae9-4a91-b725-4b57cd359465\",\"roots\":{\"22960\":\"de1dda22-2abf-413d-9878-7a5616aefeb8\"},\"root_ids\":[\"22960\"]}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"90a16b69-8ae9-4a91-b725-4b57cd359465\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"22960\",\"attributes\":{\"toolbar_location\":\"above\",\"x_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"22972\"},\"y_range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"22970\",\"attributes\":{\"factors\":[\"No\",\"I am not sure\",\"Yes\"]}},\"left\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"22982\",\"attributes\":{\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"22985\"},\"axis_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"22983\"},\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"22984\"}}}],\"width\":900,\"x_range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"22968\",\"attributes\":{\"factors\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]}},\"below\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"22976\",\"attributes\":{\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"22979\"},\"axis_line_alpha\":0,\"major_label_orientation\":1,\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"22977\"},\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"22978\"}}}],\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"22961\",\"attributes\":{\"text\":\"title\"}},\"y_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"22974\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"23010\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"23007\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"size\":{\"type\":\"field\",\"field\":\"percentage\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"field\",\"field\":\"docStructured\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\"},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"23011\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"23012\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"23006\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"size\":{\"type\":\"field\",\"field\":\"percentage\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.6},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"field\",\"field\":\"docStructured\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\"},\"fill_alpha\":{\"type\":\"value\",\"value\":0.6}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"23008\",\"attributes\":{\"fill_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"size\":{\"type\":\"field\",\"field\":\"percentage\"},\"line_width\":{\"type\":\"value\",\"value\":5},\"y\":{\"type\":\"field\",\"field\":\"docStructured\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"23009\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"size\":{\"type\":\"field\",\"field\":\"percentage\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#A0235A\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"field\",\"field\":\"docStructured\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\"},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"22957\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"22958\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"index\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAEAAAACAAAAAwAAAAQAAAAFAAAABgAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAAAARAAAAEgAAABMAAAAUAAAA\"},\"shape\":[21],\"dtype\":\"int32\",\"order\":\"little\"}],[\"careerLevel\",{\"type\":\"ndarray\",\"array\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\",\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\",\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"],\"shape\":[21],\"dtype\":\"object\",\"order\":\"little\"}],[\"docStructured\",{\"type\":\"ndarray\",\"array\":[\"I am not sure\",\"I am not sure\",\"I am not sure\",\"I am not sure\",\"I am not sure\",\"I am not sure\",\"I am not sure\",\"No\",\"No\",\"No\",\"No\",\"No\",\"No\",\"No\",\"Yes\",\"Yes\",\"Yes\",\"Yes\",\"Yes\",\"Yes\",\"Yes\"],\"shape\":[21],\"dtype\":\"object\",\"order\":\"little\"}],[\"value\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AQAAAAIAAAAUAAAAHwAAABMAAAAbAAAAAQAAAAYAAAANAAAAIAAAADAAAAAnAAAAWgAAAAQAAAADAAAAFQAAABkAAAASAAAAJwAAAD4AAAAKAAAA\"},\"shape\":[21],\"dtype\":\"int32\",\"order\":\"little\"}],[\"total\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"FgAAAEEAAACCAAAAgAAAAJQAAAAQAQAAGAAAABYAAABBAAAAggAAAIAAAACUAAAAEAEAABgAAAAWAAAAQQAAAIIAAACAAAAAlAAAABABAAAYAAAA\"},\"shape\":[21],\"dtype\":\"int32\",\"order\":\"little\"}],[\"percentage\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"L7rooosuEkDZiZ3YiZ0IQE/sxE7sxC5AAAAAAAA4OEDPusEU+awpQFpaWlpa2iNAqqqqqqqqEEBFF1100UU7QAAAAAAAADRA2Ymd2ImdOEAAAAAAAMBCQJ51gynyWTpAS0tLS0uLQECqqqqqqqowQEUXXXTRRStAdmIndmInQECyEzuxEzszQAAAAAAAICxAnnWDKfJZOkBLS0tLS8s2QFZVVVVV1URA\"},\"shape\":[21],\"dtype\":\"float64\",\"order\":\"little\"}],[\"markersize\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"oGSaLeY+A0CLDhvcPqv/P9lcpYkWtBFAenvDhFA2FkCyj9iBASwQQB9myiLbcAxAWLvckyVtAkD4AS3HMZIXQJtnjBpgLxRAO0OVNLBkFkAFGctduKMbQPZGJcZjKxdA40IJVnv2GUBYu9yTJW0SQL9QKN/RqhBAL5LhmJ6nGUAX6ZBJB8sTQLZxPtv57BBA9kYlxmMrF0B0JV0PiYwVQPcKncV2Ih1A\"},\"shape\":[21],\"dtype\":\"float64\",\"order\":\"little\"}]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"22959\"}}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"22967\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"22988\",\"attributes\":{\"tooltips\":[[\"careerLevel\",\"@careerLevel\"],[\"docStructured\",\"@docStructured\"],[\"total\",\"@total\"],[\"percentage\",\"@percentage\"]],\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"22989\"},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"22990\",\"attributes\":{\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"22991\",\"attributes\":{\"fill_alpha\":0.5,\"syncable\":false,\"line_color\":\"black\",\"level\":\"overlay\",\"fill_color\":\"lightgrey\",\"line_width\":2,\"line_alpha\":1.0,\"visible\":false,\"bottom_units\":\"canvas\",\"line_dash\":[4,4],\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"left_units\":\"canvas\"}}}},{\"type\":\"object\",\"name\":\"UndoTool\",\"id\":\"22992\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"22993\"},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"22994\"}]}},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"22981\",\"attributes\":{\"axis\":{\"id\":\"22976\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"22987\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"22982\"}}}]}}]}};\n const render_items = [{\"docid\":\"90a16b69-8ae9-4a91-b725-4b57cd359465\",\"roots\":{\"22960\":\"de1dda22-2abf-413d-9878-7a5616aefeb8\"},\"root_ids\":[\"22960\"]}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -1225,32 +511,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"e32d99a3-a606-48ea-aca5-4f9f331dad4a\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"21113\",\"attributes\":{\"toolbar_location\":null,\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"21125\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"21123\"},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"21136\",\"attributes\":{\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"21139\"},\"axis_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"21137\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"21138\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"width\":200,\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"21121\"},\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"21129\",\"attributes\":{\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"21132\"},\"axis_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"21130\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"21131\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"21114\",\"attributes\":{\"text\":\"Rel. amount\\nof answers [%]\"}},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"21127\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21150\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21148\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21151\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21152\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21147\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21149\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21144\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21145\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21146\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21159\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21157\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21160\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21161\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21156\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21158\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21153\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21154\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"0\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21155\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21168\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21166\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21169\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21170\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21165\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21167\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21162\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21163\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21164\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21177\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21175\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21178\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21179\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21174\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21176\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21171\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21172\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"25\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21173\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21186\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21184\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21187\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21188\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21183\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21185\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21180\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21181\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21182\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21195\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21193\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21196\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21197\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21192\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21194\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21189\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21190\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"50\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21191\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21204\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21202\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21205\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21206\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21201\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21203\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21198\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21199\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21200\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21213\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21211\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21214\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21215\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21210\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21212\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21207\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21208\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"75\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21209\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21222\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21220\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21223\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21224\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21219\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21221\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21216\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21217\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21218\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21231\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21229\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21232\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21233\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21228\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21230\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21225\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21226\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"100\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21227\"}}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"21120\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"21135\",\"attributes\":{\"axis\":{\"id\":\"21129\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"21142\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"21136\"}}}]}}]}};\n",
- " const render_items = [{\"docid\":\"e32d99a3-a606-48ea-aca5-4f9f331dad4a\",\"roots\":{\"21113\":\"2855f4da-61d7-4ba1-a134-94050ede1761\"},\"root_ids\":[\"21113\"]}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"e32d99a3-a606-48ea-aca5-4f9f331dad4a\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"21113\",\"attributes\":{\"toolbar_location\":null,\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"21125\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"21123\"},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"21136\",\"attributes\":{\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"21139\"},\"axis_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"21137\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"21138\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"width\":200,\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"21121\"},\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"21129\",\"attributes\":{\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"21132\"},\"axis_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"21130\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"21131\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"21114\",\"attributes\":{\"text\":\"Rel. amount\\nof answers [%]\"}},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"21127\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21150\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21148\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21151\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21152\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21147\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21149\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21144\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21145\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21146\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21159\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21157\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21160\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21161\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21156\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21158\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21153\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21154\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"0\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21155\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21168\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21166\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21169\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21170\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21165\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21167\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21162\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21163\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21164\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21177\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21175\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21178\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21179\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21174\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21176\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21171\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21172\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"25\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21173\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21186\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21184\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21187\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21188\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21183\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21185\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21180\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21181\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21182\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21195\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21193\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21196\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21197\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21192\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21194\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21189\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21190\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"50\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21191\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21204\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21202\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21205\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21206\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21201\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21203\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21198\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21199\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21200\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21213\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21211\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21214\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21215\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21210\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21212\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21207\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21208\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"75\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21209\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21222\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21220\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21223\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21224\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21219\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21221\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21216\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21217\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21218\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21231\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21229\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21232\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21233\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21228\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21230\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21225\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21226\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"100\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21227\"}}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"21120\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"21135\",\"attributes\":{\"axis\":{\"id\":\"21129\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"21142\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"21136\"}}}]}}]}};\n const render_items = [{\"docid\":\"e32d99a3-a606-48ea-aca5-4f9f331dad4a\",\"roots\":{\"21113\":\"2855f4da-61d7-4ba1-a134-94050ede1761\"},\"root_ids\":[\"21113\"]}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -1284,32 +545,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"a252e35c-d8b3-414c-a5ba-1f083d046034\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"21113\",\"attributes\":{\"toolbar_location\":null,\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"21125\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"21123\",\"attributes\":{\"start\":-600.0,\"end\":0.0}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"21136\",\"attributes\":{\"minor_tick_line_alpha\":0,\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"21139\"},\"major_label_text_alpha\":0,\"axis_line_alpha\":0,\"major_tick_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"21137\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"21138\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"width\":200,\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"21121\",\"attributes\":{\"start\":0.0,\"end\":200}},\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"21129\",\"attributes\":{\"axis_label_text_alpha\":0,\"minor_tick_line_alpha\":0,\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"21132\"},\"major_label_text_alpha\":0,\"axis_line_alpha\":0,\"major_tick_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"21130\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"21131\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"21114\",\"attributes\":{\"text\":\"Rel. amount\\nof answers [%]\"}},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"21127\"},\"border_fill_alpha\":0,\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21150\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21148\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21151\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21152\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21147\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21149\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21144\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21145\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21146\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21159\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21157\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21160\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21161\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21156\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21158\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21153\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21154\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"0\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21155\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21168\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21166\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21169\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21170\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21165\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21167\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21162\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21163\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21164\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21177\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21175\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21178\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21179\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21174\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21176\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21171\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21172\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"25\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21173\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21186\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21184\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21187\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21188\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21183\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21185\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21180\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21181\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21182\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21195\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21193\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21196\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21197\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21192\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21194\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21189\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21190\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"50\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21191\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21204\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21202\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21205\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21206\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21201\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21203\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21198\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21199\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21200\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21213\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21211\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21214\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21215\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21210\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21212\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21207\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21208\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"75\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21209\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21222\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21220\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21223\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21224\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21219\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21221\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21216\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21217\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21218\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21231\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21229\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21232\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21233\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21228\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21230\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21225\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21226\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"100\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21227\"}}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"21120\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"21135\",\"attributes\":{\"grid_line_alpha\":0,\"axis\":{\"id\":\"21129\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"21142\",\"attributes\":{\"grid_line_alpha\":0,\"dimension\":1,\"axis\":{\"id\":\"21136\"}}}]}}]}};\n",
- " const render_items = [{\"docid\":\"a252e35c-d8b3-414c-a5ba-1f083d046034\",\"roots\":{\"21113\":\"60b1ea24-5899-41d5-9485-f591583715d3\"},\"root_ids\":[\"21113\"]}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"a252e35c-d8b3-414c-a5ba-1f083d046034\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"21113\",\"attributes\":{\"toolbar_location\":null,\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"21125\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"21123\",\"attributes\":{\"start\":-600.0,\"end\":0.0}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"21136\",\"attributes\":{\"minor_tick_line_alpha\":0,\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"21139\"},\"major_label_text_alpha\":0,\"axis_line_alpha\":0,\"major_tick_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"21137\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"21138\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"width\":200,\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"21121\",\"attributes\":{\"start\":0.0,\"end\":200}},\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"21129\",\"attributes\":{\"axis_label_text_alpha\":0,\"minor_tick_line_alpha\":0,\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"21132\"},\"major_label_text_alpha\":0,\"axis_line_alpha\":0,\"major_tick_line_alpha\":0,\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"21130\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"21131\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"21114\",\"attributes\":{\"text\":\"Rel. amount\\nof answers [%]\"}},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"21127\"},\"border_fill_alpha\":0,\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21150\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21148\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21151\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21152\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21147\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21149\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21144\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21145\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21146\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21159\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21157\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21160\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21161\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21156\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21158\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-50},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21153\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21154\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"0\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21155\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21168\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21166\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21169\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21170\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21165\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21167\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":12.6},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21162\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21163\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21164\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21177\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21175\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21178\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21179\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21174\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21176\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-150},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21171\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21172\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"25\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21173\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21186\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21184\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21187\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21188\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21183\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21185\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":25.1},\"fill_color\":{\"type\":\"value\",\"value\":\"green\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21180\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21181\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21182\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21195\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21193\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21196\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21197\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21192\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21194\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-250},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21189\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21190\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"50\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21191\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21204\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21202\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21205\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21206\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21201\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21203\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":37.6},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21198\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21199\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21200\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21213\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21211\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21214\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21215\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21210\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21212\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-350},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21207\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21208\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"75\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21209\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21222\",\"attributes\":{\"name\":\"foo\",\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21220\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21223\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21224\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21219\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Circle\",\"id\":\"21221\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"size\":{\"type\":\"value\",\"value\":50.1},\"fill_color\":{\"type\":\"value\",\"value\":\"red\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":2.0},\"fill_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21216\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21217\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21218\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"21231\",\"attributes\":{\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21229\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"text_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"21232\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"21233\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21228\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Text\",\"id\":\"21230\",\"attributes\":{\"text_baseline\":{\"type\":\"value\",\"value\":\"middle\"},\"text_font_size\":{\"type\":\"value\",\"value\":\"22px\"},\"y\":{\"type\":\"value\",\"value\":-450},\"text_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"value\",\"value\":7.0},\"text_color\":{\"type\":\"value\",\"value\":\"black\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"21225\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"21226\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"text\",[\"100\"]]]},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"21227\"}}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"21120\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"21135\",\"attributes\":{\"grid_line_alpha\":0,\"axis\":{\"id\":\"21129\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"21142\",\"attributes\":{\"grid_line_alpha\":0,\"dimension\":1,\"axis\":{\"id\":\"21136\"}}}]}}]}};\n const render_items = [{\"docid\":\"a252e35c-d8b3-414c-a5ba-1f083d046034\",\"roots\":{\"21113\":\"60b1ea24-5899-41d5-9485-f591583715d3\"},\"root_ids\":[\"21113\"]}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -1712,426 +948,16 @@
"outputs": [
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function now() {\n",
- " return new Date();\n",
- " }\n",
- "\n",
- " var force = true;\n",
- "\n",
- " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n",
- " root._bokeh_onload_callbacks = [];\n",
- " root._bokeh_is_loading = undefined;\n",
- " }\n",
- "\n",
- " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n",
- " root._bokeh_timeout = Date.now() + 5000;\n",
- " root._bokeh_failed_load = false;\n",
- " }\n",
- "\n",
- " function run_callbacks() {\n",
- " try {\n",
- " root._bokeh_onload_callbacks.forEach(function(callback) {\n",
- " if (callback != null)\n",
- " callback();\n",
- " });\n",
- " } finally {\n",
- " delete root._bokeh_onload_callbacks\n",
- " }\n",
- " console.debug(\"Bokeh: all callbacks have finished\");\n",
- " }\n",
- "\n",
- " function load_libs(css_urls, js_urls, js_modules, callback) {\n",
- " if (css_urls == null) css_urls = [];\n",
- " if (js_urls == null) js_urls = [];\n",
- " if (js_modules == null) js_modules = [];\n",
- "\n",
- " root._bokeh_onload_callbacks.push(callback);\n",
- " if (root._bokeh_is_loading > 0) {\n",
- " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
- " return null;\n",
- " }\n",
- " if (js_urls.length === 0 && js_modules.length === 0) {\n",
- " run_callbacks();\n",
- " return null;\n",
- " }\n",
- " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
- "\n",
- " function on_load() {\n",
- " root._bokeh_is_loading--;\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
- " run_callbacks()\n",
- " }\n",
- " }\n",
- "\n",
- " function on_error() {\n",
- " console.error(\"failed to load \" + url);\n",
- " }\n",
- "\n",
- " for (var i = 0; i < css_urls.length; i++) {\n",
- " var url = css_urls[i];\n",
- " const element = document.createElement(\"link\");\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.rel = \"stylesheet\";\n",
- " element.type = \"text/css\";\n",
- " element.href = url;\n",
- " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " var skip = [];\n",
- " if (window.requirejs) {\n",
- " window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n",
- " require([\"gridstack\"], function(GridStack) {\n",
- "\twindow.GridStack = GridStack\n",
- "\ton_load()\n",
- " })\n",
- " require([\"notyf\"], function() {\n",
- "\ton_load()\n",
- " })\n",
- " root._bokeh_is_loading = css_urls.length + 2;\n",
- " } else {\n",
- " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n",
- " } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n",
- " var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n",
- " for (var i = 0; i < urls.length; i++) {\n",
- " skip.push(urls[i])\n",
- " }\n",
- " } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n",
- " var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n",
- " for (var i = 0; i < urls.length; i++) {\n",
- " skip.push(urls[i])\n",
- " }\n",
- " } for (var i = 0; i < js_urls.length; i++) {\n",
- " var url = js_urls[i];\n",
- " if (skip.indexOf(url) >= 0) {\n",
- "\tif (!window.requirejs) {\n",
- "\t on_load();\n",
- "\t}\n",
- "\tcontinue;\n",
- " }\n",
- " var element = document.createElement('script');\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.async = false;\n",
- " element.src = url;\n",
- " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
- " document.head.appendChild(element);\n",
- " }\n",
- " for (var i = 0; i < js_modules.length; i++) {\n",
- " var url = js_modules[i];\n",
- " if (skip.indexOf(url) >= 0) {\n",
- "\tif (!window.requirejs) {\n",
- "\t on_load();\n",
- "\t}\n",
- "\tcontinue;\n",
- " }\n",
- " var element = document.createElement('script');\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.async = false;\n",
- " element.src = url;\n",
- " element.type = \"module\";\n",
- " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
- " document.head.appendChild(element);\n",
- " }\n",
- " if (!js_urls.length && !js_modules.length) {\n",
- " on_load()\n",
- " }\n",
- " };\n",
- "\n",
- " function inject_raw_css(css) {\n",
- " const element = document.createElement(\"style\");\n",
- " element.appendChild(document.createTextNode(css));\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n",
- " var js_modules = [];\n",
- " var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\"];\n",
- " var inline_js = [ function(Bokeh) {\n",
- " inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n",
- " }, function(Bokeh) {\n",
- " Bokeh.set_log_level(\"info\");\n",
- " },\n",
- "function(Bokeh) {} // ensure no trailing comma for IE\n",
- " ];\n",
- "\n",
- " function run_inline_js() {\n",
- " if ((root.Bokeh !== undefined) || (force === true)) {\n",
- " for (var i = 0; i < inline_js.length; i++) {\n",
- " inline_js[i].call(root, root.Bokeh);\n",
- " }} else if (Date.now() < root._bokeh_timeout) {\n",
- " setTimeout(run_inline_js, 100);\n",
- " } else if (!root._bokeh_failed_load) {\n",
- " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
- " root._bokeh_failed_load = true;\n",
- " }\n",
- " }\n",
- "\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
- " run_inline_js();\n",
- " } else {\n",
- " load_libs(css_urls, js_urls, js_modules, function() {\n",
- " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
- " run_inline_js();\n",
- " });\n",
- " }\n",
- "}(window));"
- ],
- "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 2;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n var js_modules = [];\n var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\"];\n var inline_js = [ function(Bokeh) {\n inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n }, function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, js_modules, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));"
+ "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 2;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n var js_modules = [];\n var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\"];\n var inline_js = [ function(Bokeh) {\n inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n }, function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, js_modules, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));",
+ "application/vnd.holoviews_load.v0+json": ""
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
- "application/javascript": [
- "\n",
- "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n",
- " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n",
- "}\n",
- "\n",
- "\n",
- " function JupyterCommManager() {\n",
- " }\n",
- "\n",
- " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n",
- " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
- " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
- " comm_manager.register_target(comm_id, function(comm) {\n",
- " comm.on_msg(msg_handler);\n",
- " });\n",
- " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
- " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n",
- " comm.onMsg = msg_handler;\n",
- " });\n",
- " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
- " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n",
- " var messages = comm.messages[Symbol.asyncIterator]();\n",
- " function processIteratorResult(result) {\n",
- " var message = result.value;\n",
- " console.log(message)\n",
- " var content = {data: message.data, comm_id};\n",
- " var buffers = []\n",
- " for (var buffer of message.buffers || []) {\n",
- " buffers.push(new DataView(buffer))\n",
- " }\n",
- " var metadata = message.metadata || {};\n",
- " var msg = {content, buffers, metadata}\n",
- " msg_handler(msg);\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " return messages.next().then(processIteratorResult);\n",
- " })\n",
- " }\n",
- " }\n",
- "\n",
- " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n",
- " if (comm_id in window.PyViz.comms) {\n",
- " return window.PyViz.comms[comm_id];\n",
- " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
- " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
- " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n",
- " if (msg_handler) {\n",
- " comm.on_msg(msg_handler);\n",
- " }\n",
- " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
- " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n",
- " comm.open();\n",
- " if (msg_handler) {\n",
- " comm.onMsg = msg_handler;\n",
- " }\n",
- " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
- " var comm_promise = google.colab.kernel.comms.open(comm_id)\n",
- " comm_promise.then((comm) => {\n",
- " window.PyViz.comms[comm_id] = comm;\n",
- " if (msg_handler) {\n",
- " var messages = comm.messages[Symbol.asyncIterator]();\n",
- " function processIteratorResult(result) {\n",
- " var message = result.value;\n",
- " var content = {data: message.data};\n",
- " var metadata = message.metadata || {comm_id};\n",
- " var msg = {content, metadata}\n",
- " msg_handler(msg);\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " }) \n",
- " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n",
- " return comm_promise.then((comm) => {\n",
- " comm.send(data, metadata, buffers, disposeOnDone);\n",
- " });\n",
- " };\n",
- " var comm = {\n",
- " send: sendClosure\n",
- " };\n",
- " }\n",
- " window.PyViz.comms[comm_id] = comm;\n",
- " return comm;\n",
- " }\n",
- " window.PyViz.comm_manager = new JupyterCommManager();\n",
- " \n",
- "\n",
- "\n",
- "var JS_MIME_TYPE = 'application/javascript';\n",
- "var HTML_MIME_TYPE = 'text/html';\n",
- "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n",
- "var CLASS_NAME = 'output';\n",
- "\n",
- "/**\n",
- " * Render data to the DOM node\n",
- " */\n",
- "function render(props, node) {\n",
- " var div = document.createElement(\"div\");\n",
- " var script = document.createElement(\"script\");\n",
- " node.appendChild(div);\n",
- " node.appendChild(script);\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle when a new output is added\n",
- " */\n",
- "function handle_add_output(event, handle) {\n",
- " var output_area = handle.output_area;\n",
- " var output = handle.output;\n",
- " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n",
- " return\n",
- " }\n",
- " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
- " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
- " if (id !== undefined) {\n",
- " var nchildren = toinsert.length;\n",
- " var html_node = toinsert[nchildren-1].children[0];\n",
- " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n",
- " var scripts = [];\n",
- " var nodelist = html_node.querySelectorAll(\"script\");\n",
- " for (var i in nodelist) {\n",
- " if (nodelist.hasOwnProperty(i)) {\n",
- " scripts.push(nodelist[i])\n",
- " }\n",
- " }\n",
- "\n",
- " scripts.forEach( function (oldScript) {\n",
- " var newScript = document.createElement(\"script\");\n",
- " var attrs = [];\n",
- " var nodemap = oldScript.attributes;\n",
- " for (var j in nodemap) {\n",
- " if (nodemap.hasOwnProperty(j)) {\n",
- " attrs.push(nodemap[j])\n",
- " }\n",
- " }\n",
- " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n",
- " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n",
- " oldScript.parentNode.replaceChild(newScript, oldScript);\n",
- " });\n",
- " if (JS_MIME_TYPE in output.data) {\n",
- " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n",
- " }\n",
- " output_area._hv_plot_id = id;\n",
- " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n",
- " window.PyViz.plot_index[id] = Bokeh.index[id];\n",
- " } else {\n",
- " window.PyViz.plot_index[id] = null;\n",
- " }\n",
- " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
- " var bk_div = document.createElement(\"div\");\n",
- " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
- " var script_attrs = bk_div.children[0].attributes;\n",
- " for (var i = 0; i < script_attrs.length; i++) {\n",
- " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
- " }\n",
- " // store reference to server id on output_area\n",
- " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
- " }\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle when an output is cleared or removed\n",
- " */\n",
- "function handle_clear_output(event, handle) {\n",
- " var id = handle.cell.output_area._hv_plot_id;\n",
- " var server_id = handle.cell.output_area._bokeh_server_id;\n",
- " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n",
- " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n",
- " if (server_id !== null) {\n",
- " comm.send({event_type: 'server_delete', 'id': server_id});\n",
- " return;\n",
- " } else if (comm !== null) {\n",
- " comm.send({event_type: 'delete', 'id': id});\n",
- " }\n",
- " delete PyViz.plot_index[id];\n",
- " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n",
- " var doc = window.Bokeh.index[id].model.document\n",
- " doc.clear();\n",
- " const i = window.Bokeh.documents.indexOf(doc);\n",
- " if (i > -1) {\n",
- " window.Bokeh.documents.splice(i, 1);\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle kernel restart event\n",
- " */\n",
- "function handle_kernel_cleanup(event, handle) {\n",
- " delete PyViz.comms[\"hv-extension-comm\"];\n",
- " window.PyViz.plot_index = {}\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle update_display_data messages\n",
- " */\n",
- "function handle_update_output(event, handle) {\n",
- " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n",
- " handle_add_output(event, handle)\n",
- "}\n",
- "\n",
- "function register_renderer(events, OutputArea) {\n",
- " function append_mime(data, metadata, element) {\n",
- " // create a DOM node to render to\n",
- " var toinsert = this.create_output_subarea(\n",
- " metadata,\n",
- " CLASS_NAME,\n",
- " EXEC_MIME_TYPE\n",
- " );\n",
- " this.keyboard_manager.register_events(toinsert);\n",
- " // Render to node\n",
- " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
- " render(props, toinsert[0]);\n",
- " element.append(toinsert);\n",
- " return toinsert\n",
- " }\n",
- "\n",
- " events.on('output_added.OutputArea', handle_add_output);\n",
- " events.on('output_updated.OutputArea', handle_update_output);\n",
- " events.on('clear_output.CodeCell', handle_clear_output);\n",
- " events.on('delete.Cell', handle_clear_output);\n",
- " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n",
- "\n",
- " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
- " safe: true,\n",
- " index: 0\n",
- " });\n",
- "}\n",
- "\n",
- "if (window.Jupyter !== undefined) {\n",
- " try {\n",
- " var events = require('base/js/events');\n",
- " var OutputArea = require('notebook/js/outputarea').OutputArea;\n",
- " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
- " register_renderer(events, OutputArea);\n",
- " }\n",
- " } catch(err) {\n",
- " }\n",
- "}\n"
- ],
- "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n"
+ "application/javascript": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n",
+ "application/vnd.holoviews_load.v0+json": ""
},
"metadata": {},
"output_type": "display_data"
@@ -2608,7 +1434,7 @@
"outputs": [
{
"data": {
- "image/png": "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\n",
+ "image/png": "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",
"text/plain": [
""
]
@@ -3097,32 +1923,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"228fbc7c-d827-46ec-a478-9626c245777d\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"40792\"}]},\"id\":\"40793\",\"type\":\"Column\"},{\"attributes\":{},\"id\":\"40775\",\"type\":\"DataRange1d\"},{\"attributes\":{\"height\":500,\"height_policy\":\"fixed\",\"text\":\" Click on a word to reveal more information about it. \",\"width\":400},\"id\":\"40791\",\"type\":\"Div\"},{\"attributes\":{\"children\":[{\"id\":\"40772\"},{\"id\":\"40791\"}]},\"id\":\"40792\",\"type\":\"Row\"},{\"attributes\":{\"data\":{\"angle\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90,0.0,90,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"color\":[\"rgb(186, 222, 40)\",\"rgb(61, 78, 138)\",\"rgb(210, 226, 27)\",\"rgb(223, 227, 24)\",\"rgb(108, 205, 90)\",\"rgb(69, 4, 87)\",\"rgb(71, 16, 99)\",\"rgb(70, 50, 126)\",\"rgb(112, 207, 87)\",\"rgb(216, 226, 25)\",\"rgb(49, 103, 142)\",\"rgb(71, 17, 100)\",\"rgb(236, 229, 27)\",\"rgb(82, 197, 105)\",\"rgb(61, 78, 138)\",\"rgb(55, 91, 141)\",\"rgb(57, 86, 140)\",\"rgb(213, 226, 26)\",\"rgb(69, 55, 129)\",\"rgb(62, 74, 137)\",\"rgb(74, 193, 109)\",\"rgb(69, 53, 129)\",\"rgb(253, 231, 37)\",\"rgb(101, 203, 94)\",\"rgb(65, 66, 135)\",\"rgb(71, 13, 96)\",\"rgb(221, 227, 24)\",\"rgb(72, 20, 103)\",\"rgb(124, 210, 80)\",\"rgb(46, 179, 124)\",\"rgb(42, 119, 142)\",\"rgb(165, 219, 54)\",\"rgb(200, 224, 32)\",\"rgb(110, 206, 88)\"],\"count\":[1.0,0.6304347826086957,0.34782608695652173,0.15217391304347827,0.08695652173913043,0.08695652173913043,0.06521739130434782,0.06521739130434782,0.06521739130434782,0.06521739130434782,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608],\"font_size\":[\"50px\",\"41px\",\"32px\",\"23px\",\"18px\",\"18px\",\"16px\",\"16px\",\"16px\",\"16px\",\"13px\",\"13px\",\"13px\",\"13px\",\"13px\",\"13px\",\"13px\",\"13px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\"],\"hover_color\":[\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\"],\"hover_font_size\":[\"55px\",\"46px\",\"37px\",\"28px\",\"23px\",\"23px\",\"21px\",\"21px\",\"21px\",\"21px\",\"18px\",\"18px\",\"18px\",\"18px\",\"18px\",\"18px\",\"18px\",\"18px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\"],\"text\":[\"Institutional Repository\",\"Zenodo\",\"Gitlab GitHub\",\"GEO\",\"WDCC\",\"PANGAEA\",\"OSF\",\"Open\",\"ENA\",\"RCSB PDB\",\"Materials\",\"Cloud\",\"ProteomeXchange\",\"figshare\",\"Copernicus\",\"Access\",\"Hub\",\"EGA\",\"Energy\",\"Platform\",\"FIZ\",\"Karlsruhe\",\"FAIRDOMHub\",\"CDDIS\",\"GLIMS\",\"DataONE\",\"ArrayExpress\",\"BMRB\",\"EudraCT\",\"PUBLISSO\",\"IMPC\",\"OpenOrganelle\",\"IRRMC\",\"HEPData\"],\"x\":[4,21,215,349,679,153,731,237,533,535,146,39,541,160,360,133,597,674,683,85,440,730,588,685,53,284,509,213,417,362,22,478,307,232],\"y\":[-134,-481,-438,-196,-324,-284,-26,-150,-274,-495,-162,-446,-61,-55,-161,-20,-318,-457,-285,-316,-58,-249,-379,-175,-397,-90,-351,-367,-472,-71,-275,-186,-270,-324]},\"selected\":{\"id\":\"41279\"},\"selection_policy\":{\"id\":\"41278\"}},\"id\":\"40770\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"tools\":[{\"id\":\"40783\"},{\"id\":\"40784\"}]},\"id\":\"40785\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"40777\",\"type\":\"DataRange1d\"},{\"attributes\":{\"source\":{\"id\":\"40770\"}},\"id\":\"40790\",\"type\":\"CDSView\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"40773\",\"type\":\"Title\"},{\"attributes\":{\"args\":{\"div\":{\"id\":\"40791\"}},\"code\":\"\\n const attrs = [];\\n const args = [];\\n const line = \\\"\\\" + \\\"Basic resource information (metadata) Category: Data source, Repository Name: Zenodo URL: ['https://zenodo.org/'] Other names ['Zenodo', 'Research. Shared'] Description: ZENODO builds and operates a simple and innovative service that enables researchers, scientists, EU projects and institutions to share and showcase multidisciplinary research results (data and publications) that are not part of the existing institutional or subject-based repositories of the research communities. ZENODO enables researchers, scientists, EU projects and institutions to: easily share the long tail of small research results in a wide variety of formats including text, spreadsheets, audio, video, and images across all fields of science. display their research results and get credited by making the research results citable and integrate them into existing reporting lines to funding agencies like the European Commission. easily access and reuse shared research results. Keywords: ['FAIR', 'multidisciplinary', '1 Humanities and Social Sciences', '2 Life Sciences', '3 Natural Sciences', '4 Engineering Sciences'] \\\" + \\\" (\\\" + args.join(\\\", \\\") + \\\") \\\\n\\\";\\n const text = line;\\n const lines = text.split(\\\"\\\\n\\\")\\n if (lines.length > 35)\\n lines.shift();\\n div.text = lines.join(\\\"\\\\n\\\");\\n \"},\"id\":\"40796\",\"type\":\"CustomJS\"},{\"attributes\":{\"angle\":{\"field\":\"angle\",\"units\":\"deg\"},\"text_color\":{\"field\":\"color\"},\"text_font\":{\"value\":\"'Droid Sans Mono'\"},\"text_font_size\":{\"field\":\"font_size\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"40788\",\"type\":\"Text\"},{\"attributes\":{},\"id\":\"40779\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"40770\"},\"glyph\":{\"id\":\"40788\"},\"group\":null,\"hover_glyph\":null,\"view\":{\"id\":\"40790\"}},\"id\":\"40789\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"div\":{\"id\":\"40791\"}},\"code\":\"\\n const attrs = [];\\n const args = [];\\n const line = \\\"\\\" + \\\"Basic resource information (metadata) Category: Data source, Repository Name: Zenodo URL: ['https://zenodo.org/'] Other names ['Zenodo', 'Research. Shared'] Description: ZENODO builds and operates a simple and innovative service that enables researchers, scientists, EU projects and institutions to share and showcase multidisciplinary research results (data and publications) that are not part of the existing institutional or subject-based repositories of the research communities. ZENODO enables researchers, scientists, EU projects and institutions to: easily share the long tail of small research results in a wide variety of formats including text, spreadsheets, audio, video, and images across all fields of science. display their research results and get credited by making the research results citable and integrate them into existing reporting lines to funding agencies like the European Commission. easily access and reuse shared research results. Keywords: ['FAIR', 'multidisciplinary', '1 Humanities and Social Sciences', '2 Life Sciences', '3 Natural Sciences', '4 Engineering Sciences'] \\\" + \\\" (\\\" + args.join(\\\", \\\") + \\\") \\\\n\\\";\\n const text = line;\\n const lines = text.split(\\\"\\\\n\\\")\\n if (lines.length > 35)\\n lines.shift();\\n div.text = lines.join(\\\"\\\\n\\\");\\n \"},\"id\":\"40795\",\"type\":\"CustomJS\"},{\"attributes\":{\"callback\":null},\"id\":\"40784\",\"type\":\"TapTool\"},{\"attributes\":{\"args\":{\"div\":{\"id\":\"40791\"}},\"code\":\"\\n const attrs = [];\\n const args = [];\\n const line = \\\"\\\" + \\\"Basic resource information (metadata) Category: Data source, Repository Name: Zenodo URL: ['https://zenodo.org/'] Other names ['Zenodo', 'Research. Shared'] Description: ZENODO builds and operates a simple and innovative service that enables researchers, scientists, EU projects and institutions to share and showcase multidisciplinary research results (data and publications) that are not part of the existing institutional or subject-based repositories of the research communities. ZENODO enables researchers, scientists, EU projects and institutions to: easily share the long tail of small research results in a wide variety of formats including text, spreadsheets, audio, video, and images across all fields of science. display their research results and get credited by making the research results citable and integrate them into existing reporting lines to funding agencies like the European Commission. easily access and reuse shared research results. Keywords: ['FAIR', 'multidisciplinary', '1 Humanities and Social Sciences', '2 Life Sciences', '3 Natural Sciences', '4 Engineering Sciences'] \\\" + \\\" (\\\" + args.join(\\\", \\\") + \\\") \\\\n\\\";\\n const text = line;\\n const lines = text.split(\\\"\\\\n\\\")\\n if (lines.length > 35)\\n lines.shift();\\n div.text = lines.join(\\\"\\\\n\\\");\\n \"},\"id\":\"40794\",\"type\":\"CustomJS\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"\",\"@text\"]]},\"id\":\"40783\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"41278\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"41279\",\"type\":\"Selection\"},{\"attributes\":{\"height\":500,\"js_event_callbacks\":{\"doubletap\":[{\"id\":\"40795\"}],\"press\":[{\"id\":\"40796\"}],\"tap\":[{\"id\":\"40794\"}]},\"outline_line_color\":null,\"renderers\":[{\"id\":\"40789\"}],\"title\":{\"id\":\"40773\"},\"toolbar\":{\"id\":\"40785\"},\"toolbar_location\":null,\"width\":800,\"x_range\":{\"id\":\"40775\"},\"x_scale\":{\"id\":\"40779\"},\"y_range\":{\"id\":\"40777\"},\"y_scale\":{\"id\":\"40781\"}},\"id\":\"40772\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"40781\",\"type\":\"LinearScale\"}],\"root_ids\":[\"40793\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"228fbc7c-d827-46ec-a478-9626c245777d\",\"root_ids\":[\"40793\"],\"roots\":{\"40793\":\"93d8cc67-8532-4a7a-b785-97364e58ab0b\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"228fbc7c-d827-46ec-a478-9626c245777d\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"40792\"}]},\"id\":\"40793\",\"type\":\"Column\"},{\"attributes\":{},\"id\":\"40775\",\"type\":\"DataRange1d\"},{\"attributes\":{\"height\":500,\"height_policy\":\"fixed\",\"text\":\" Click on a word to reveal more information about it. \",\"width\":400},\"id\":\"40791\",\"type\":\"Div\"},{\"attributes\":{\"children\":[{\"id\":\"40772\"},{\"id\":\"40791\"}]},\"id\":\"40792\",\"type\":\"Row\"},{\"attributes\":{\"data\":{\"angle\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90,0.0,90,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"color\":[\"rgb(186, 222, 40)\",\"rgb(61, 78, 138)\",\"rgb(210, 226, 27)\",\"rgb(223, 227, 24)\",\"rgb(108, 205, 90)\",\"rgb(69, 4, 87)\",\"rgb(71, 16, 99)\",\"rgb(70, 50, 126)\",\"rgb(112, 207, 87)\",\"rgb(216, 226, 25)\",\"rgb(49, 103, 142)\",\"rgb(71, 17, 100)\",\"rgb(236, 229, 27)\",\"rgb(82, 197, 105)\",\"rgb(61, 78, 138)\",\"rgb(55, 91, 141)\",\"rgb(57, 86, 140)\",\"rgb(213, 226, 26)\",\"rgb(69, 55, 129)\",\"rgb(62, 74, 137)\",\"rgb(74, 193, 109)\",\"rgb(69, 53, 129)\",\"rgb(253, 231, 37)\",\"rgb(101, 203, 94)\",\"rgb(65, 66, 135)\",\"rgb(71, 13, 96)\",\"rgb(221, 227, 24)\",\"rgb(72, 20, 103)\",\"rgb(124, 210, 80)\",\"rgb(46, 179, 124)\",\"rgb(42, 119, 142)\",\"rgb(165, 219, 54)\",\"rgb(200, 224, 32)\",\"rgb(110, 206, 88)\"],\"count\":[1.0,0.6304347826086957,0.34782608695652173,0.15217391304347827,0.08695652173913043,0.08695652173913043,0.06521739130434782,0.06521739130434782,0.06521739130434782,0.06521739130434782,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.043478260869565216,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608,0.021739130434782608],\"font_size\":[\"50px\",\"41px\",\"32px\",\"23px\",\"18px\",\"18px\",\"16px\",\"16px\",\"16px\",\"16px\",\"13px\",\"13px\",\"13px\",\"13px\",\"13px\",\"13px\",\"13px\",\"13px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\",\"10px\"],\"hover_color\":[\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\"],\"hover_font_size\":[\"55px\",\"46px\",\"37px\",\"28px\",\"23px\",\"23px\",\"21px\",\"21px\",\"21px\",\"21px\",\"18px\",\"18px\",\"18px\",\"18px\",\"18px\",\"18px\",\"18px\",\"18px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\"],\"text\":[\"Institutional Repository\",\"Zenodo\",\"Gitlab GitHub\",\"GEO\",\"WDCC\",\"PANGAEA\",\"OSF\",\"Open\",\"ENA\",\"RCSB PDB\",\"Materials\",\"Cloud\",\"ProteomeXchange\",\"figshare\",\"Copernicus\",\"Access\",\"Hub\",\"EGA\",\"Energy\",\"Platform\",\"FIZ\",\"Karlsruhe\",\"FAIRDOMHub\",\"CDDIS\",\"GLIMS\",\"DataONE\",\"ArrayExpress\",\"BMRB\",\"EudraCT\",\"PUBLISSO\",\"IMPC\",\"OpenOrganelle\",\"IRRMC\",\"HEPData\"],\"x\":[4,21,215,349,679,153,731,237,533,535,146,39,541,160,360,133,597,674,683,85,440,730,588,685,53,284,509,213,417,362,22,478,307,232],\"y\":[-134,-481,-438,-196,-324,-284,-26,-150,-274,-495,-162,-446,-61,-55,-161,-20,-318,-457,-285,-316,-58,-249,-379,-175,-397,-90,-351,-367,-472,-71,-275,-186,-270,-324]},\"selected\":{\"id\":\"41279\"},\"selection_policy\":{\"id\":\"41278\"}},\"id\":\"40770\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"tools\":[{\"id\":\"40783\"},{\"id\":\"40784\"}]},\"id\":\"40785\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"40777\",\"type\":\"DataRange1d\"},{\"attributes\":{\"source\":{\"id\":\"40770\"}},\"id\":\"40790\",\"type\":\"CDSView\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"40773\",\"type\":\"Title\"},{\"attributes\":{\"args\":{\"div\":{\"id\":\"40791\"}},\"code\":\"\\n const attrs = [];\\n const args = [];\\n const line = \\\"\\\" + \\\"Basic resource information (metadata) Category: Data source, Repository Name: Zenodo URL: ['https://zenodo.org/'] Other names ['Zenodo', 'Research. Shared'] Description: ZENODO builds and operates a simple and innovative service that enables researchers, scientists, EU projects and institutions to share and showcase multidisciplinary research results (data and publications) that are not part of the existing institutional or subject-based repositories of the research communities. ZENODO enables researchers, scientists, EU projects and institutions to: easily share the long tail of small research results in a wide variety of formats including text, spreadsheets, audio, video, and images across all fields of science. display their research results and get credited by making the research results citable and integrate them into existing reporting lines to funding agencies like the European Commission. easily access and reuse shared research results. Keywords: ['FAIR', 'multidisciplinary', '1 Humanities and Social Sciences', '2 Life Sciences', '3 Natural Sciences', '4 Engineering Sciences'] \\\" + \\\" (\\\" + args.join(\\\", \\\") + \\\") \\\\n\\\";\\n const text = line;\\n const lines = text.split(\\\"\\\\n\\\")\\n if (lines.length > 35)\\n lines.shift();\\n div.text = lines.join(\\\"\\\\n\\\");\\n \"},\"id\":\"40796\",\"type\":\"CustomJS\"},{\"attributes\":{\"angle\":{\"field\":\"angle\",\"units\":\"deg\"},\"text_color\":{\"field\":\"color\"},\"text_font\":{\"value\":\"'Droid Sans Mono'\"},\"text_font_size\":{\"field\":\"font_size\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"40788\",\"type\":\"Text\"},{\"attributes\":{},\"id\":\"40779\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"40770\"},\"glyph\":{\"id\":\"40788\"},\"group\":null,\"hover_glyph\":null,\"view\":{\"id\":\"40790\"}},\"id\":\"40789\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"div\":{\"id\":\"40791\"}},\"code\":\"\\n const attrs = [];\\n const args = [];\\n const line = \\\"\\\" + \\\"Basic resource information (metadata) Category: Data source, Repository Name: Zenodo URL: ['https://zenodo.org/'] Other names ['Zenodo', 'Research. Shared'] Description: ZENODO builds and operates a simple and innovative service that enables researchers, scientists, EU projects and institutions to share and showcase multidisciplinary research results (data and publications) that are not part of the existing institutional or subject-based repositories of the research communities. ZENODO enables researchers, scientists, EU projects and institutions to: easily share the long tail of small research results in a wide variety of formats including text, spreadsheets, audio, video, and images across all fields of science. display their research results and get credited by making the research results citable and integrate them into existing reporting lines to funding agencies like the European Commission. easily access and reuse shared research results. Keywords: ['FAIR', 'multidisciplinary', '1 Humanities and Social Sciences', '2 Life Sciences', '3 Natural Sciences', '4 Engineering Sciences'] \\\" + \\\" (\\\" + args.join(\\\", \\\") + \\\") \\\\n\\\";\\n const text = line;\\n const lines = text.split(\\\"\\\\n\\\")\\n if (lines.length > 35)\\n lines.shift();\\n div.text = lines.join(\\\"\\\\n\\\");\\n \"},\"id\":\"40795\",\"type\":\"CustomJS\"},{\"attributes\":{\"callback\":null},\"id\":\"40784\",\"type\":\"TapTool\"},{\"attributes\":{\"args\":{\"div\":{\"id\":\"40791\"}},\"code\":\"\\n const attrs = [];\\n const args = [];\\n const line = \\\"\\\" + \\\"Basic resource information (metadata) Category: Data source, Repository Name: Zenodo URL: ['https://zenodo.org/'] Other names ['Zenodo', 'Research. Shared'] Description: ZENODO builds and operates a simple and innovative service that enables researchers, scientists, EU projects and institutions to share and showcase multidisciplinary research results (data and publications) that are not part of the existing institutional or subject-based repositories of the research communities. ZENODO enables researchers, scientists, EU projects and institutions to: easily share the long tail of small research results in a wide variety of formats including text, spreadsheets, audio, video, and images across all fields of science. display their research results and get credited by making the research results citable and integrate them into existing reporting lines to funding agencies like the European Commission. easily access and reuse shared research results. Keywords: ['FAIR', 'multidisciplinary', '1 Humanities and Social Sciences', '2 Life Sciences', '3 Natural Sciences', '4 Engineering Sciences'] \\\" + \\\" (\\\" + args.join(\\\", \\\") + \\\") \\\\n\\\";\\n const text = line;\\n const lines = text.split(\\\"\\\\n\\\")\\n if (lines.length > 35)\\n lines.shift();\\n div.text = lines.join(\\\"\\\\n\\\");\\n \"},\"id\":\"40794\",\"type\":\"CustomJS\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"\",\"@text\"]]},\"id\":\"40783\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"41278\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"41279\",\"type\":\"Selection\"},{\"attributes\":{\"height\":500,\"js_event_callbacks\":{\"doubletap\":[{\"id\":\"40795\"}],\"press\":[{\"id\":\"40796\"}],\"tap\":[{\"id\":\"40794\"}]},\"outline_line_color\":null,\"renderers\":[{\"id\":\"40789\"}],\"title\":{\"id\":\"40773\"},\"toolbar\":{\"id\":\"40785\"},\"toolbar_location\":null,\"width\":800,\"x_range\":{\"id\":\"40775\"},\"x_scale\":{\"id\":\"40779\"},\"y_range\":{\"id\":\"40777\"},\"y_scale\":{\"id\":\"40781\"}},\"id\":\"40772\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"40781\",\"type\":\"LinearScale\"}],\"root_ids\":[\"40793\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"228fbc7c-d827-46ec-a478-9626c245777d\",\"root_ids\":[\"40793\"],\"roots\":{\"40793\":\"93d8cc67-8532-4a7a-b785-97364e58ab0b\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -3622,32 +2423,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"de95f4dc-aa68-44ac-853e-0cecaa3bc511\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"height\":500,\"outline_line_color\":null,\"renderers\":[{\"id\":\"18027\"}],\"title\":{\"id\":\"18011\"},\"toolbar\":{\"id\":\"18023\"},\"toolbar_location\":null,\"width\":800,\"x_range\":{\"id\":\"18013\"},\"x_scale\":{\"id\":\"18017\"},\"y_range\":{\"id\":\"18015\"},\"y_scale\":{\"id\":\"18019\"}},\"id\":\"18010\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Word\",\"@text\"],[\"Count\",\"@count\"]]},\"id\":\"18021\",\"type\":\"HoverTool\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"18011\",\"type\":\"Title\"},{\"attributes\":{\"tools\":[{\"id\":\"18021\"},{\"id\":\"18022\"}]},\"id\":\"18023\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"18013\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"18015\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data\":{\"angle\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"color\":[\"rgb(115, 208, 86)\",\"rgb(74, 193, 109)\",\"rgb(40, 124, 142)\",\"rgb(112, 207, 87)\",\"rgb(30, 157, 137)\",\"rgb(127, 211, 78)\",\"rgb(58, 83, 139)\",\"rgb(45, 113, 142)\",\"rgb(68, 58, 131)\",\"rgb(63, 188, 115)\",\"rgb(71, 19, 101)\",\"rgb(52, 97, 141)\",\"rgb(72, 32, 113)\",\"rgb(202, 225, 31)\",\"rgb(70, 8, 92)\",\"rgb(45, 112, 142)\",\"rgb(71, 45, 123)\",\"rgb(144, 215, 67)\",\"rgb(84, 197, 104)\",\"rgb(105, 205, 91)\",\"rgb(43, 117, 142)\",\"rgb(31, 148, 140)\",\"rgb(218, 227, 25)\",\"rgb(72, 38, 119)\",\"rgb(46, 110, 142)\",\"rgb(70, 192, 111)\",\"rgb(78, 195, 107)\",\"rgb(137, 213, 72)\",\"rgb(69, 4, 87)\",\"rgb(60, 79, 138)\",\"rgb(48, 106, 142)\",\"rgb(139, 214, 70)\",\"rgb(68, 2, 86)\",\"rgb(236, 229, 27)\",\"rgb(251, 231, 35)\",\"rgb(38, 130, 142)\",\"rgb(71, 47, 125)\",\"rgb(35, 137, 142)\",\"rgb(61, 188, 116)\",\"rgb(47, 108, 142)\",\"rgb(32, 163, 134)\",\"rgb(253, 231, 37)\",\"rgb(34, 141, 141)\",\"rgb(72, 35, 116)\",\"rgb(72, 41, 121)\",\"rgb(50, 101, 142)\",\"rgb(37, 172, 130)\",\"rgb(71, 16, 99)\",\"rgb(38, 173, 129)\",\"rgb(41, 121, 142)\",\"rgb(192, 223, 37)\",\"rgb(47, 108, 142)\",\"rgb(44, 115, 142)\",\"rgb(43, 116, 142)\",\"rgb(68, 59, 132)\",\"rgb(56, 88, 140)\",\"rgb(49, 103, 142)\",\"rgb(33, 143, 141)\",\"rgb(72, 33, 115)\",\"rgb(40, 124, 142)\",\"rgb(37, 133, 142)\",\"rgb(72, 41, 121)\",\"rgb(44, 114, 142)\",\"rgb(76, 194, 108)\",\"rgb(112, 207, 87)\",\"rgb(142, 214, 69)\",\"rgb(68, 2, 86)\",\"rgb(31, 161, 135)\",\"rgb(56, 89, 140)\",\"rgb(234, 229, 26)\",\"rgb(36, 135, 142)\",\"rgb(33, 166, 133)\",\"rgb(37, 131, 142)\",\"rgb(69, 53, 129)\",\"rgb(36, 134, 142)\",\"rgb(47, 107, 142)\",\"rgb(70, 10, 93)\",\"rgb(66, 190, 113)\",\"rgb(42, 118, 142)\",\"rgb(67, 62, 133)\",\"rgb(58, 83, 139)\",\"rgb(64, 69, 136)\",\"rgb(71, 19, 101)\",\"rgb(30, 155, 138)\",\"rgb(34, 140, 141)\",\"rgb(72, 29, 111)\",\"rgb(55, 90, 140)\",\"rgb(216, 226, 25)\",\"rgb(53, 183, 121)\",\"rgb(41, 122, 142)\",\"rgb(34, 167, 133)\",\"rgb(71, 45, 123)\",\"rgb(33, 145, 140)\",\"rgb(51, 99, 141)\",\"rgb(52, 97, 141)\",\"rgb(70, 51, 127)\",\"rgb(119, 209, 83)\",\"rgb(173, 220, 48)\",\"rgb(72, 193, 110)\",\"rgb(38, 129, 142)\"],\"count\":[1.0,0.9333333333333333,0.5333333333333333,0.4666666666666667,0.4,0.26666666666666666,0.26666666666666666,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667],\"font_size\":[\"50px\",\"48px\",\"38px\",\"36px\",\"33px\",\"27px\",\"27px\",\"24px\",\"24px\",\"24px\",\"24px\",\"24px\",\"24px\",\"24px\",\"24px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\"],\"hover_color\":[\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\"],\"hover_font_size\":[\"55px\",\"53px\",\"43px\",\"41px\",\"38px\",\"32px\",\"32px\",\"29px\",\"29px\",\"29px\",\"29px\",\"29px\",\"29px\",\"29px\",\"29px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\"],\"text\":[\"Spektroskopie\",\"sequencing\",\"spectroscopy\",\"MS\",\"Mass Spectrometry\",\"DNA\",\"Scattering\",\"HPLC\",\"RNA\",\"ICP\",\"von\",\"Neutron\",\"Next Generation\",\"UV Vis\",\"pump probe\",\"analytical\",\"model\",\"IR\",\"data\",\"XRD\",\"methods\",\"ELISA\",\"High\",\"Lumineszenz\",\"Analysen\",\"Genomic\",\"Optical\",\"single\",\"cell\",\"NMR\",\"Ion\",\"Small\",\"Photoelektronenspektroskopie\",\"R\\u00f6ntgenabsorptionsspektroskopie\",\"SAXS\",\"X\",\"ray\",\"R\\u00f6ntgenspektroskopie\",\"diffraction\",\"NEXAFS\",\"XPS\",\"Particle\",\"Software\",\"repository\",\"mining\",\"Aggregation\",\"Flow\",\"cytometry\",\"FPLC\",\"Spektrophotometrie\",\"numerous\",\"GC\",\"trace\",\"generated\",\"code\",\"R\\u00f6ntgenfluoreszenz\",\"Spektoskopie\",\"Preprocessing\",\"Remote\",\"sensing\",\"Spektralanalyse\",\"Dopplerspektrum\",\"HF\",\"radar\",\"Colorimetric\",\"MTT\",\"NIRS\",\"Lidar\",\"Enzymatic\",\"Assays\",\"determine\",\"enzyme\",\"activity\",\"sugar\",\"concentration\",\"Resolution\",\"Optimal\",\"estimation\",\"optische\",\"Messungen\",\"Absorption\",\"Fluoreszenz\",\"Massenspektrometrie\",\"Photometrie\",\"Massenspktrometrie\",\"throughput\",\"sequence\",\"Molekularbiologische\",\"Affinit\\u00e4tschromatographie\",\"PCR\",\"NGS\",\"S\\u00e4ulenchromatographie\",\"Genotyping\",\"Hochdurchsatz\",\"Screening\",\"Auslesen\",\"Illumina\",\"EPIC\",\"Methylation\",\"Array\"],\"x\":[13,437,344,414,242,101,199,729,286,590,563,2,556,573,329,123,272,152,329,699,85,713,224,98,188,30,18,42,169,469,475,226,442,284,666,625,26,179,7,713,169,46,162,106,261,662,54,641,640,532,168,24,50,56,166,592,384,382,735,425,213,411,605,149,266,766,466,669,387,622,167,127,74,47,676,482,264,549,572,673,166,231,375,671,387,538,560,415,85,731,356,499,565,92,9,176,714,584,477,394],\"y\":[-473,-112,-55,-274,-150,-51,-87,-230,-105,-314,-386,-206,-362,-201,-415,-183,-361,-110,-177,-141,-417,-33,-258,-396,-48,-72,-226,-337,-290,-311,-169,-200,-462,-237,-53,-164,-257,-319,-121,-201,-146,-301,-363,-207,-118,-286,-171,-313,-23,-331,-432,-154,-100,-149,-123,-421,-17,-382,-485,-184,-16,-484,-139,-347,-382,-88,-260,-241,-338,-125,-163,-253,-358,-392,-270,-438,-401,-13,-484,-160,-235,-294,-355,-69,-201,-262,-74,-289,-489,-321,-492,-400,-213,-18,-26,-414,-246,-443,-414,-89]},\"selected\":{\"id\":\"18377\"},\"selection_policy\":{\"id\":\"18376\"}},\"id\":\"18009\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null},\"id\":\"18022\",\"type\":\"TapTool\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"18009\"},\"glyph\":{\"id\":\"18026\"},\"group\":null,\"hover_glyph\":null,\"view\":{\"id\":\"18028\"}},\"id\":\"18027\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"angle\":{\"field\":\"angle\",\"units\":\"deg\"},\"text_color\":{\"field\":\"color\"},\"text_font\":{\"value\":\"'Droid Sans Mono'\"},\"text_font_size\":{\"field\":\"font_size\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18026\",\"type\":\"Text\"},{\"attributes\":{\"source\":{\"id\":\"18009\"}},\"id\":\"18028\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"18377\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"18376\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"18019\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"18017\",\"type\":\"LinearScale\"}],\"root_ids\":[\"18010\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"de95f4dc-aa68-44ac-853e-0cecaa3bc511\",\"root_ids\":[\"18010\"],\"roots\":{\"18010\":\"aea4df63-1b8f-4bf3-a54f-fb8b0777cfd3\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"de95f4dc-aa68-44ac-853e-0cecaa3bc511\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"height\":500,\"outline_line_color\":null,\"renderers\":[{\"id\":\"18027\"}],\"title\":{\"id\":\"18011\"},\"toolbar\":{\"id\":\"18023\"},\"toolbar_location\":null,\"width\":800,\"x_range\":{\"id\":\"18013\"},\"x_scale\":{\"id\":\"18017\"},\"y_range\":{\"id\":\"18015\"},\"y_scale\":{\"id\":\"18019\"}},\"id\":\"18010\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Word\",\"@text\"],[\"Count\",\"@count\"]]},\"id\":\"18021\",\"type\":\"HoverTool\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"18011\",\"type\":\"Title\"},{\"attributes\":{\"tools\":[{\"id\":\"18021\"},{\"id\":\"18022\"}]},\"id\":\"18023\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"18013\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"18015\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data\":{\"angle\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"color\":[\"rgb(115, 208, 86)\",\"rgb(74, 193, 109)\",\"rgb(40, 124, 142)\",\"rgb(112, 207, 87)\",\"rgb(30, 157, 137)\",\"rgb(127, 211, 78)\",\"rgb(58, 83, 139)\",\"rgb(45, 113, 142)\",\"rgb(68, 58, 131)\",\"rgb(63, 188, 115)\",\"rgb(71, 19, 101)\",\"rgb(52, 97, 141)\",\"rgb(72, 32, 113)\",\"rgb(202, 225, 31)\",\"rgb(70, 8, 92)\",\"rgb(45, 112, 142)\",\"rgb(71, 45, 123)\",\"rgb(144, 215, 67)\",\"rgb(84, 197, 104)\",\"rgb(105, 205, 91)\",\"rgb(43, 117, 142)\",\"rgb(31, 148, 140)\",\"rgb(218, 227, 25)\",\"rgb(72, 38, 119)\",\"rgb(46, 110, 142)\",\"rgb(70, 192, 111)\",\"rgb(78, 195, 107)\",\"rgb(137, 213, 72)\",\"rgb(69, 4, 87)\",\"rgb(60, 79, 138)\",\"rgb(48, 106, 142)\",\"rgb(139, 214, 70)\",\"rgb(68, 2, 86)\",\"rgb(236, 229, 27)\",\"rgb(251, 231, 35)\",\"rgb(38, 130, 142)\",\"rgb(71, 47, 125)\",\"rgb(35, 137, 142)\",\"rgb(61, 188, 116)\",\"rgb(47, 108, 142)\",\"rgb(32, 163, 134)\",\"rgb(253, 231, 37)\",\"rgb(34, 141, 141)\",\"rgb(72, 35, 116)\",\"rgb(72, 41, 121)\",\"rgb(50, 101, 142)\",\"rgb(37, 172, 130)\",\"rgb(71, 16, 99)\",\"rgb(38, 173, 129)\",\"rgb(41, 121, 142)\",\"rgb(192, 223, 37)\",\"rgb(47, 108, 142)\",\"rgb(44, 115, 142)\",\"rgb(43, 116, 142)\",\"rgb(68, 59, 132)\",\"rgb(56, 88, 140)\",\"rgb(49, 103, 142)\",\"rgb(33, 143, 141)\",\"rgb(72, 33, 115)\",\"rgb(40, 124, 142)\",\"rgb(37, 133, 142)\",\"rgb(72, 41, 121)\",\"rgb(44, 114, 142)\",\"rgb(76, 194, 108)\",\"rgb(112, 207, 87)\",\"rgb(142, 214, 69)\",\"rgb(68, 2, 86)\",\"rgb(31, 161, 135)\",\"rgb(56, 89, 140)\",\"rgb(234, 229, 26)\",\"rgb(36, 135, 142)\",\"rgb(33, 166, 133)\",\"rgb(37, 131, 142)\",\"rgb(69, 53, 129)\",\"rgb(36, 134, 142)\",\"rgb(47, 107, 142)\",\"rgb(70, 10, 93)\",\"rgb(66, 190, 113)\",\"rgb(42, 118, 142)\",\"rgb(67, 62, 133)\",\"rgb(58, 83, 139)\",\"rgb(64, 69, 136)\",\"rgb(71, 19, 101)\",\"rgb(30, 155, 138)\",\"rgb(34, 140, 141)\",\"rgb(72, 29, 111)\",\"rgb(55, 90, 140)\",\"rgb(216, 226, 25)\",\"rgb(53, 183, 121)\",\"rgb(41, 122, 142)\",\"rgb(34, 167, 133)\",\"rgb(71, 45, 123)\",\"rgb(33, 145, 140)\",\"rgb(51, 99, 141)\",\"rgb(52, 97, 141)\",\"rgb(70, 51, 127)\",\"rgb(119, 209, 83)\",\"rgb(173, 220, 48)\",\"rgb(72, 193, 110)\",\"rgb(38, 129, 142)\"],\"count\":[1.0,0.9333333333333333,0.5333333333333333,0.4666666666666667,0.4,0.26666666666666666,0.26666666666666666,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.13333333333333333,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667,0.06666666666666667],\"font_size\":[\"50px\",\"48px\",\"38px\",\"36px\",\"33px\",\"27px\",\"27px\",\"24px\",\"24px\",\"24px\",\"24px\",\"24px\",\"24px\",\"24px\",\"24px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\",\"15px\"],\"hover_color\":[\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\",\"black\"],\"hover_font_size\":[\"55px\",\"53px\",\"43px\",\"41px\",\"38px\",\"32px\",\"32px\",\"29px\",\"29px\",\"29px\",\"29px\",\"29px\",\"29px\",\"29px\",\"29px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"25px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\",\"20px\"],\"text\":[\"Spektroskopie\",\"sequencing\",\"spectroscopy\",\"MS\",\"Mass Spectrometry\",\"DNA\",\"Scattering\",\"HPLC\",\"RNA\",\"ICP\",\"von\",\"Neutron\",\"Next Generation\",\"UV Vis\",\"pump probe\",\"analytical\",\"model\",\"IR\",\"data\",\"XRD\",\"methods\",\"ELISA\",\"High\",\"Lumineszenz\",\"Analysen\",\"Genomic\",\"Optical\",\"single\",\"cell\",\"NMR\",\"Ion\",\"Small\",\"Photoelektronenspektroskopie\",\"R\\u00f6ntgenabsorptionsspektroskopie\",\"SAXS\",\"X\",\"ray\",\"R\\u00f6ntgenspektroskopie\",\"diffraction\",\"NEXAFS\",\"XPS\",\"Particle\",\"Software\",\"repository\",\"mining\",\"Aggregation\",\"Flow\",\"cytometry\",\"FPLC\",\"Spektrophotometrie\",\"numerous\",\"GC\",\"trace\",\"generated\",\"code\",\"R\\u00f6ntgenfluoreszenz\",\"Spektoskopie\",\"Preprocessing\",\"Remote\",\"sensing\",\"Spektralanalyse\",\"Dopplerspektrum\",\"HF\",\"radar\",\"Colorimetric\",\"MTT\",\"NIRS\",\"Lidar\",\"Enzymatic\",\"Assays\",\"determine\",\"enzyme\",\"activity\",\"sugar\",\"concentration\",\"Resolution\",\"Optimal\",\"estimation\",\"optische\",\"Messungen\",\"Absorption\",\"Fluoreszenz\",\"Massenspektrometrie\",\"Photometrie\",\"Massenspktrometrie\",\"throughput\",\"sequence\",\"Molekularbiologische\",\"Affinit\\u00e4tschromatographie\",\"PCR\",\"NGS\",\"S\\u00e4ulenchromatographie\",\"Genotyping\",\"Hochdurchsatz\",\"Screening\",\"Auslesen\",\"Illumina\",\"EPIC\",\"Methylation\",\"Array\"],\"x\":[13,437,344,414,242,101,199,729,286,590,563,2,556,573,329,123,272,152,329,699,85,713,224,98,188,30,18,42,169,469,475,226,442,284,666,625,26,179,7,713,169,46,162,106,261,662,54,641,640,532,168,24,50,56,166,592,384,382,735,425,213,411,605,149,266,766,466,669,387,622,167,127,74,47,676,482,264,549,572,673,166,231,375,671,387,538,560,415,85,731,356,499,565,92,9,176,714,584,477,394],\"y\":[-473,-112,-55,-274,-150,-51,-87,-230,-105,-314,-386,-206,-362,-201,-415,-183,-361,-110,-177,-141,-417,-33,-258,-396,-48,-72,-226,-337,-290,-311,-169,-200,-462,-237,-53,-164,-257,-319,-121,-201,-146,-301,-363,-207,-118,-286,-171,-313,-23,-331,-432,-154,-100,-149,-123,-421,-17,-382,-485,-184,-16,-484,-139,-347,-382,-88,-260,-241,-338,-125,-163,-253,-358,-392,-270,-438,-401,-13,-484,-160,-235,-294,-355,-69,-201,-262,-74,-289,-489,-321,-492,-400,-213,-18,-26,-414,-246,-443,-414,-89]},\"selected\":{\"id\":\"18377\"},\"selection_policy\":{\"id\":\"18376\"}},\"id\":\"18009\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null},\"id\":\"18022\",\"type\":\"TapTool\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"18009\"},\"glyph\":{\"id\":\"18026\"},\"group\":null,\"hover_glyph\":null,\"view\":{\"id\":\"18028\"}},\"id\":\"18027\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"angle\":{\"field\":\"angle\",\"units\":\"deg\"},\"text_color\":{\"field\":\"color\"},\"text_font\":{\"value\":\"'Droid Sans Mono'\"},\"text_font_size\":{\"field\":\"font_size\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18026\",\"type\":\"Text\"},{\"attributes\":{\"source\":{\"id\":\"18009\"}},\"id\":\"18028\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"18377\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"18376\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"18019\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"18017\",\"type\":\"LinearScale\"}],\"root_ids\":[\"18010\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"de95f4dc-aa68-44ac-853e-0cecaa3bc511\",\"root_ids\":[\"18010\"],\"roots\":{\"18010\":\"aea4df63-1b8f-4bf3-a54f-fb8b0777cfd3\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -3671,7 +2447,7 @@
"outputs": [
{
"data": {
- "image/png": "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\n",
+ "image/png": "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",
"text/plain": [
""
]
@@ -5332,32 +4108,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"2224d443-8f0e-4b7c-8bb6-d33a991e0067\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"10214\"}],\"center\":[{\"id\":\"10217\"},{\"id\":\"10221\"}],\"height\":300,\"left\":[{\"id\":\"10218\"}],\"renderers\":[{\"id\":\"10228\"}],\"title\":{\"id\":\"10204\"},\"toolbar\":{\"id\":\"10224\"},\"toolbar_location\":\"above\",\"width\":300,\"x_range\":{\"id\":\"10206\"},\"x_scale\":{\"id\":\"10210\"},\"y_range\":{\"id\":\"10208\"},\"y_scale\":{\"id\":\"10212\"}},\"id\":\"10203\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"10489\",\"type\":\"AllLabels\"},{\"attributes\":{\"source\":{\"id\":\"10202\"}},\"id\":\"10229\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"10490\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data\":{\"text\":[\"abc\",\"def\",\"ghi\",\"jkl\",\"mno\",\"pqr\",\"stu\",\"vwx\",\"yz\"],\"x\":{\"__ndarray__\":\"AAAAAAAAAMAAAAAAAAD4vwAAAAAAAPC/AAAAAAAA4L8AAAAAAAAAAAAAAAAAAOA/AAAAAAAA8D8AAAAAAAD4PwAAAAAAAABA\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[9]},\"y\":{\"__ndarray__\":\"AAAAAAAAEEAAAAAAAAACQAAAAAAAAPA/AAAAAAAA0D8AAAAAAAAAAAAAAAAAANA/AAAAAAAA8D8AAAAAAAACQAAAAAAAABBA\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[9]}},\"selected\":{\"id\":\"10491\"},\"selection_policy\":{\"id\":\"10490\"}},\"id\":\"10202\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"10223\",\"type\":\"SaveTool\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"10488\"},\"group\":null,\"major_label_policy\":{\"id\":\"10489\"},\"ticker\":{\"id\":\"10215\"}},\"id\":\"10214\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"10491\",\"type\":\"Selection\"},{\"attributes\":{\"angle\":{\"units\":\"deg\",\"value\":90},\"text_color\":{\"value\":\"#96deb3\"},\"text_font_size\":{\"value\":\"40px\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"10227\",\"type\":\"Text\"},{\"attributes\":{},\"id\":\"10206\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"10210\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Da\"},\"id\":\"10204\",\"type\":\"Title\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"10485\"},\"group\":null,\"major_label_policy\":{\"id\":\"10486\"},\"ticker\":{\"id\":\"10219\"}},\"id\":\"10218\",\"type\":\"LinearAxis\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10202\"},\"glyph\":{\"id\":\"10227\"},\"group\":null,\"hover_glyph\":null,\"view\":{\"id\":\"10229\"}},\"id\":\"10228\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10215\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"10214\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"10217\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10212\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"10208\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null},\"id\":\"10222\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"10485\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"axis\":{\"id\":\"10218\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"10221\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10219\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"10486\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"10488\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"tools\":[{\"id\":\"10222\"},{\"id\":\"10223\"}]},\"id\":\"10224\",\"type\":\"Toolbar\"}],\"root_ids\":[\"10203\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"2224d443-8f0e-4b7c-8bb6-d33a991e0067\",\"root_ids\":[\"10203\"],\"roots\":{\"10203\":\"6c172116-99b3-4f36-9553-9ea1ce6f6831\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"2224d443-8f0e-4b7c-8bb6-d33a991e0067\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"10214\"}],\"center\":[{\"id\":\"10217\"},{\"id\":\"10221\"}],\"height\":300,\"left\":[{\"id\":\"10218\"}],\"renderers\":[{\"id\":\"10228\"}],\"title\":{\"id\":\"10204\"},\"toolbar\":{\"id\":\"10224\"},\"toolbar_location\":\"above\",\"width\":300,\"x_range\":{\"id\":\"10206\"},\"x_scale\":{\"id\":\"10210\"},\"y_range\":{\"id\":\"10208\"},\"y_scale\":{\"id\":\"10212\"}},\"id\":\"10203\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"10489\",\"type\":\"AllLabels\"},{\"attributes\":{\"source\":{\"id\":\"10202\"}},\"id\":\"10229\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"10490\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data\":{\"text\":[\"abc\",\"def\",\"ghi\",\"jkl\",\"mno\",\"pqr\",\"stu\",\"vwx\",\"yz\"],\"x\":{\"__ndarray__\":\"AAAAAAAAAMAAAAAAAAD4vwAAAAAAAPC/AAAAAAAA4L8AAAAAAAAAAAAAAAAAAOA/AAAAAAAA8D8AAAAAAAD4PwAAAAAAAABA\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[9]},\"y\":{\"__ndarray__\":\"AAAAAAAAEEAAAAAAAAACQAAAAAAAAPA/AAAAAAAA0D8AAAAAAAAAAAAAAAAAANA/AAAAAAAA8D8AAAAAAAACQAAAAAAAABBA\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[9]}},\"selected\":{\"id\":\"10491\"},\"selection_policy\":{\"id\":\"10490\"}},\"id\":\"10202\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"10223\",\"type\":\"SaveTool\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"10488\"},\"group\":null,\"major_label_policy\":{\"id\":\"10489\"},\"ticker\":{\"id\":\"10215\"}},\"id\":\"10214\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"10491\",\"type\":\"Selection\"},{\"attributes\":{\"angle\":{\"units\":\"deg\",\"value\":90},\"text_color\":{\"value\":\"#96deb3\"},\"text_font_size\":{\"value\":\"40px\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"10227\",\"type\":\"Text\"},{\"attributes\":{},\"id\":\"10206\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"10210\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Da\"},\"id\":\"10204\",\"type\":\"Title\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"10485\"},\"group\":null,\"major_label_policy\":{\"id\":\"10486\"},\"ticker\":{\"id\":\"10219\"}},\"id\":\"10218\",\"type\":\"LinearAxis\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10202\"},\"glyph\":{\"id\":\"10227\"},\"group\":null,\"hover_glyph\":null,\"view\":{\"id\":\"10229\"}},\"id\":\"10228\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10215\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"10214\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"10217\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10212\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"10208\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null},\"id\":\"10222\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"10485\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"axis\":{\"id\":\"10218\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"10221\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10219\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"10486\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"10488\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"tools\":[{\"id\":\"10222\"},{\"id\":\"10223\"}]},\"id\":\"10224\",\"type\":\"Toolbar\"}],\"root_ids\":[\"10203\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"2224d443-8f0e-4b7c-8bb6-d33a991e0067\",\"root_ids\":[\"10203\"],\"roots\":{\"10203\":\"6c172116-99b3-4f36-9553-9ea1ce6f6831\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -5417,32 +4168,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"9b2a95aa-35f3-4b0f-b949-fa91167fcbbb\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"11914\"}],\"center\":[{\"id\":\"11917\"},{\"id\":\"11921\"}],\"height\":300,\"left\":[{\"id\":\"11918\"}],\"renderers\":[{\"id\":\"11928\"}],\"title\":{\"id\":\"11904\"},\"toolbar\":{\"id\":\"11924\"},\"toolbar_location\":\"above\",\"width\":300,\"x_range\":{\"id\":\"11906\"},\"x_scale\":{\"id\":\"11910\"},\"y_range\":{\"id\":\"11908\"},\"y_scale\":{\"id\":\"11912\"}},\"id\":\"11903\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"12222\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"12224\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"12225\",\"type\":\"AllLabels\"},{\"attributes\":{\"axis\":{\"id\":\"11918\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"11921\",\"type\":\"Grid\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"12224\"},\"group\":null,\"major_label_policy\":{\"id\":\"12225\"},\"ticker\":{\"id\":\"11915\"}},\"id\":\"11914\",\"type\":\"LinearAxis\"},{\"attributes\":{\"tools\":[{\"id\":\"11922\"},{\"id\":\"11923\"}]},\"id\":\"11924\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"10490\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data\":{\"text\":[\"abc\",\"def\",\"ghi\",\"jkl\",\"mno\",\"pqr\",\"stu\",\"vwx\",\"yz\"],\"x\":{\"__ndarray__\":\"AAAAAAAAAMAAAAAAAAD4vwAAAAAAAPC/AAAAAAAA4L8AAAAAAAAAAAAAAAAAAOA/AAAAAAAA8D8AAAAAAAD4PwAAAAAAAABA\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[9]},\"y\":{\"__ndarray__\":\"AAAAAAAAEEAAAAAAAAACQAAAAAAAAPA/AAAAAAAA0D8AAAAAAAAAAAAAAAAAANA/AAAAAAAA8D8AAAAAAAACQAAAAAAAABBA\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[9]}},\"selected\":{\"id\":\"10491\"},\"selection_policy\":{\"id\":\"10490\"}},\"id\":\"10202\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"10491\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"11919\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"11915\",\"type\":\"BasicTicker\"},{\"attributes\":{\"angle\":{\"units\":\"deg\",\"value\":90},\"text_color\":{\"value\":\"#96deb3\"},\"text_font\":{\"value\":\"Droid Sans Mono\"},\"text_font_size\":{\"value\":\"40px\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11927\",\"type\":\"Text\"},{\"attributes\":{},\"id\":\"11912\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10202\"},\"glyph\":{\"id\":\"11927\"},\"group\":null,\"hover_glyph\":null,\"view\":{\"id\":\"11929\"}},\"id\":\"11928\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"10202\"}},\"id\":\"11929\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"11906\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"11923\",\"type\":\"SaveTool\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"12221\"},\"group\":null,\"major_label_policy\":{\"id\":\"12222\"},\"ticker\":{\"id\":\"11919\"}},\"id\":\"11918\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"12221\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"11910\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Da\"},\"id\":\"11904\",\"type\":\"Title\"},{\"attributes\":{\"axis\":{\"id\":\"11914\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"11917\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null},\"id\":\"11922\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"11908\",\"type\":\"DataRange1d\"}],\"root_ids\":[\"11903\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"9b2a95aa-35f3-4b0f-b949-fa91167fcbbb\",\"root_ids\":[\"11903\"],\"roots\":{\"11903\":\"01fb2ac9-1f69-4c2f-91c8-7885b2db49cb\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"9b2a95aa-35f3-4b0f-b949-fa91167fcbbb\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"11914\"}],\"center\":[{\"id\":\"11917\"},{\"id\":\"11921\"}],\"height\":300,\"left\":[{\"id\":\"11918\"}],\"renderers\":[{\"id\":\"11928\"}],\"title\":{\"id\":\"11904\"},\"toolbar\":{\"id\":\"11924\"},\"toolbar_location\":\"above\",\"width\":300,\"x_range\":{\"id\":\"11906\"},\"x_scale\":{\"id\":\"11910\"},\"y_range\":{\"id\":\"11908\"},\"y_scale\":{\"id\":\"11912\"}},\"id\":\"11903\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"12222\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"12224\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"12225\",\"type\":\"AllLabels\"},{\"attributes\":{\"axis\":{\"id\":\"11918\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"11921\",\"type\":\"Grid\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"12224\"},\"group\":null,\"major_label_policy\":{\"id\":\"12225\"},\"ticker\":{\"id\":\"11915\"}},\"id\":\"11914\",\"type\":\"LinearAxis\"},{\"attributes\":{\"tools\":[{\"id\":\"11922\"},{\"id\":\"11923\"}]},\"id\":\"11924\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"10490\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data\":{\"text\":[\"abc\",\"def\",\"ghi\",\"jkl\",\"mno\",\"pqr\",\"stu\",\"vwx\",\"yz\"],\"x\":{\"__ndarray__\":\"AAAAAAAAAMAAAAAAAAD4vwAAAAAAAPC/AAAAAAAA4L8AAAAAAAAAAAAAAAAAAOA/AAAAAAAA8D8AAAAAAAD4PwAAAAAAAABA\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[9]},\"y\":{\"__ndarray__\":\"AAAAAAAAEEAAAAAAAAACQAAAAAAAAPA/AAAAAAAA0D8AAAAAAAAAAAAAAAAAANA/AAAAAAAA8D8AAAAAAAACQAAAAAAAABBA\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[9]}},\"selected\":{\"id\":\"10491\"},\"selection_policy\":{\"id\":\"10490\"}},\"id\":\"10202\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"10491\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"11919\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"11915\",\"type\":\"BasicTicker\"},{\"attributes\":{\"angle\":{\"units\":\"deg\",\"value\":90},\"text_color\":{\"value\":\"#96deb3\"},\"text_font\":{\"value\":\"Droid Sans Mono\"},\"text_font_size\":{\"value\":\"40px\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11927\",\"type\":\"Text\"},{\"attributes\":{},\"id\":\"11912\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10202\"},\"glyph\":{\"id\":\"11927\"},\"group\":null,\"hover_glyph\":null,\"view\":{\"id\":\"11929\"}},\"id\":\"11928\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"10202\"}},\"id\":\"11929\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"11906\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"11923\",\"type\":\"SaveTool\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"12221\"},\"group\":null,\"major_label_policy\":{\"id\":\"12222\"},\"ticker\":{\"id\":\"11919\"}},\"id\":\"11918\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"12221\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"11910\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Da\"},\"id\":\"11904\",\"type\":\"Title\"},{\"attributes\":{\"axis\":{\"id\":\"11914\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"11917\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null},\"id\":\"11922\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"11908\",\"type\":\"DataRange1d\"}],\"root_ids\":[\"11903\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"9b2a95aa-35f3-4b0f-b949-fa91167fcbbb\",\"root_ids\":[\"11903\"],\"roots\":{\"11903\":\"01fb2ac9-1f69-4c2f-91c8-7885b2db49cb\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -8367,32 +7093,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"85f39dd4-3d93-40ba-8e79-b22e8a92fb3e\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"9061\"}],\"center\":[{\"id\":\"9064\"},{\"id\":\"9068\"},{\"id\":\"9103\"}],\"left\":[{\"id\":\"9065\"}],\"renderers\":[{\"id\":\"9091\"},{\"id\":\"9113\"}],\"title\":{\"id\":\"9051\"},\"toolbar\":{\"id\":\"9076\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"9053\"},\"x_scale\":{\"id\":\"9057\"},\"y_range\":{\"id\":\"9055\"},\"y_scale\":{\"id\":\"9059\"}},\"id\":\"9050\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"9098\"},\"group\":null,\"major_label_policy\":{\"id\":\"9099\"},\"ticker\":{\"id\":\"9062\"},\"visible\":false},\"id\":\"9061\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"9125\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"9062\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"9059\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"9055\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"9072\",\"type\":\"UndoTool\"},{\"attributes\":{\"label\":{\"field\":\"labels\"},\"renderers\":[{\"id\":\"9113\"}]},\"id\":\"9127\",\"type\":\"LegendItem\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9086\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"items\":[{\"id\":\"9104\"},{\"id\":\"9127\"}]},\"id\":\"9103\",\"type\":\"Legend\"},{\"attributes\":{\"data\":{\"All\":[1,97,128,144,224,17,9],\"Chemistry\":[0,0,0,0,0,0,0],\"Cum. Sum\":[1,36,36,63,125,9,4],\"Earth Science\":[1,6,10,18,25,2,0],\"Engineering Science\":[0,30,26,45,100,7,4],\"Life Science\":[0,0,0,0,0,0,0],\"Mathematics\":[0,0,0,0,0,0,0],\"Other\":[0,0,0,0,0,0,0],\"Physics\":[0,0,0,0,0,0,0],\"Psychology\":[0,0,0,0,0,0,0],\"angle\":{\"__ndarray__\":\"5wCiQDnBhD9fifXF2nTvP+cAokA5wfQ/BEG2aGBZ9z/KwI0YEikCQPYgrNRMDcY/BEG2aGBZtz8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"careerLevel\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"],\"color_outer\":[\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\"],\"count\":[1,97,128,144,224,17,9],\"index\":[0,1,2,3,4,5,6],\"legend_field\":[\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\"],\"percent\":{\"__ndarray__\":\"bRrQpgFtWj8HtGlAmwbEP20a0KYBbco/ux2q26G6zT8fF/ZxYR/XPxQcPcHRE5w/ux2q26G6jT8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"x_value\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"]},\"selected\":{\"id\":\"9101\"},\"selection_policy\":{\"id\":\"9100\"}},\"id\":\"9048\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"axis\":{\"id\":\"9065\"},\"coordinates\":null,\"dimension\":1,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"9068\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"9066\",\"type\":\"BasicTicker\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"9105\",\"type\":\"CumSum\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color\"},\"inner_radius\":{\"value\":0.3},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9108\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9070\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"label\":{\"field\":\"legend_field\"},\"renderers\":[{\"id\":\"9091\"}]},\"id\":\"9104\",\"type\":\"LegendItem\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_color\":{\"field\":\"color\"},\"inner_radius\":{\"value\":0.3},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9111\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Data\",\"@x_value\"],[\"Percent\",\"@percent{0.00%}\"],[\"Count\",\"@count\"]]},\"id\":\"9069\",\"type\":\"HoverTool\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.3},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9109\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"overlay\":{\"id\":\"9075\"}},\"id\":\"9071\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Career level of participants.\"},\"id\":\"9051\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"9095\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.3},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9112\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9096\",\"type\":\"AllLabels\"},{\"attributes\":{\"source\":{\"id\":\"9049\"}},\"id\":\"9114\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"9053\",\"type\":\"DataRange1d\"},{\"attributes\":{\"logo\":null,\"tools\":[{\"id\":\"9069\"},{\"id\":\"9070\"},{\"id\":\"9071\"},{\"id\":\"9072\"},{\"id\":\"9073\"},{\"id\":\"9074\"}]},\"id\":\"9076\",\"type\":\"Toolbar\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.3},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9110\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9073\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"9098\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"9048\"},\"glyph\":{\"id\":\"9086\"},\"group\":null,\"hover_glyph\":{\"id\":\"9089\"},\"muted_glyph\":{\"id\":\"9090\"},\"nonselection_glyph\":{\"id\":\"9087\"},\"selection_glyph\":{\"id\":\"9088\"},\"view\":{\"id\":\"9092\"}},\"id\":\"9091\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"9099\",\"type\":\"AllLabels\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"9106\",\"type\":\"CumSum\"},{\"attributes\":{\"axis\":{\"id\":\"9061\"},\"coordinates\":null,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"9064\",\"type\":\"Grid\"},{\"attributes\":{\"data\":{\"angle\":{\"__ndarray__\":\"5wCiQDnBhD8AAAAAAAAAAFsB8+DVIa8/2eCXrCV10z/caJqRKsjjPyGBypCH8bk/vKCDhP7c0D9M4ehMwtXtPwRBtmhgWcc/RtHjgrgv3T8lCc11jETqP7WQfrr0NtA/tZB+uvQ28D+zTP1Hcg3wP+cAokA5wZQ/ysCNGBIpsj/nAKJAOcG0PwAAAAAAAAAA5wCiQDnBpD8hgcqQh/GpPw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[20]},\"color\":[\"#c6dbef\",\"#e6550d\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\"],\"count\":[1,0,6,30,61,10,26,92,18,45,81,25,100,99,2,7,8,0,4,5],\"labels\":[\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\"],\"percent\":{\"__ndarray__\":\"bRrQpgFtWj8AAAAAAAAAANITHD3B0YM/xhhjjDHGqD8wWf6S5S+5P4QQQgghhJA/eRWJV5F4pT/+kuUvWf7CP7sdqtuhup0/lVJKKaWUsj+5sI8L+7jAP6WUUkoppaQ/pZRSSimlxD9w9ARHT3DEP20a0KYBbWo/Hxf2cWEfhz9tGtCmAW2KPwAAAAAAAAAAbRrQpgFtej+EEEIIIYSAPw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[20]},\"x_value\":[\"Other, Earth Science\",\"Other, Engineering Science\",\"PhD candidate, Earth Science\",\"PhD candidate, Engineering Science\",\"PhD candidate, Other\",\"Postdoc, Earth Science\",\"Postdoc, Engineering Science\",\"Postdoc, Other\",\"Principal Investigator, Earth Science\",\"Principal Investigator, Engineering Science\",\"Principal Investigator, Other\",\"Research Associate, Earth Science\",\"Research Associate, Engineering Science\",\"Research Associate, Other\",\"Student, Earth Science\",\"Student, Engineering Science\",\"Student, Other\",\"Technical Staff, Earth Science\",\"Technical Staff, Engineering Science\",\"Technical Staff, Other\"]},\"selected\":{\"id\":\"9125\"},\"selection_policy\":{\"id\":\"9124\"}},\"id\":\"9049\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"9084\",\"type\":\"CumSum\"},{\"attributes\":{\"source\":{\"id\":\"9048\"}},\"id\":\"9092\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"9074\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"9057\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"9095\"},\"group\":null,\"major_label_policy\":{\"id\":\"9096\"},\"ticker\":{\"id\":\"9066\"},\"visible\":false},\"id\":\"9065\",\"type\":\"LinearAxis\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9087\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9101\",\"type\":\"Selection\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9089\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"9075\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"9100\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"9083\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"9124\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9088\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"9049\"},\"glyph\":{\"id\":\"9108\"},\"group\":null,\"hover_glyph\":{\"id\":\"9111\"},\"muted_glyph\":{\"id\":\"9112\"},\"nonselection_glyph\":{\"id\":\"9109\"},\"selection_glyph\":{\"id\":\"9110\"},\"view\":{\"id\":\"9114\"}},\"id\":\"9113\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color_outer\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9090\",\"type\":\"AnnularWedge\"}],\"root_ids\":[\"9050\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"85f39dd4-3d93-40ba-8e79-b22e8a92fb3e\",\"root_ids\":[\"9050\"],\"roots\":{\"9050\":\"199e4734-3c11-4319-bd9b-a8b848537f88\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"85f39dd4-3d93-40ba-8e79-b22e8a92fb3e\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"9061\"}],\"center\":[{\"id\":\"9064\"},{\"id\":\"9068\"},{\"id\":\"9103\"}],\"left\":[{\"id\":\"9065\"}],\"renderers\":[{\"id\":\"9091\"},{\"id\":\"9113\"}],\"title\":{\"id\":\"9051\"},\"toolbar\":{\"id\":\"9076\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"9053\"},\"x_scale\":{\"id\":\"9057\"},\"y_range\":{\"id\":\"9055\"},\"y_scale\":{\"id\":\"9059\"}},\"id\":\"9050\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"9098\"},\"group\":null,\"major_label_policy\":{\"id\":\"9099\"},\"ticker\":{\"id\":\"9062\"},\"visible\":false},\"id\":\"9061\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"9125\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"9062\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"9059\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"9055\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"9072\",\"type\":\"UndoTool\"},{\"attributes\":{\"label\":{\"field\":\"labels\"},\"renderers\":[{\"id\":\"9113\"}]},\"id\":\"9127\",\"type\":\"LegendItem\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9086\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"items\":[{\"id\":\"9104\"},{\"id\":\"9127\"}]},\"id\":\"9103\",\"type\":\"Legend\"},{\"attributes\":{\"data\":{\"All\":[1,97,128,144,224,17,9],\"Chemistry\":[0,0,0,0,0,0,0],\"Cum. Sum\":[1,36,36,63,125,9,4],\"Earth Science\":[1,6,10,18,25,2,0],\"Engineering Science\":[0,30,26,45,100,7,4],\"Life Science\":[0,0,0,0,0,0,0],\"Mathematics\":[0,0,0,0,0,0,0],\"Other\":[0,0,0,0,0,0,0],\"Physics\":[0,0,0,0,0,0,0],\"Psychology\":[0,0,0,0,0,0,0],\"angle\":{\"__ndarray__\":\"5wCiQDnBhD9fifXF2nTvP+cAokA5wfQ/BEG2aGBZ9z/KwI0YEikCQPYgrNRMDcY/BEG2aGBZtz8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"careerLevel\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"],\"color_outer\":[\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\"],\"count\":[1,97,128,144,224,17,9],\"index\":[0,1,2,3,4,5,6],\"legend_field\":[\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\"],\"percent\":{\"__ndarray__\":\"bRrQpgFtWj8HtGlAmwbEP20a0KYBbco/ux2q26G6zT8fF/ZxYR/XPxQcPcHRE5w/ux2q26G6jT8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"x_value\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"]},\"selected\":{\"id\":\"9101\"},\"selection_policy\":{\"id\":\"9100\"}},\"id\":\"9048\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"axis\":{\"id\":\"9065\"},\"coordinates\":null,\"dimension\":1,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"9068\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"9066\",\"type\":\"BasicTicker\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"9105\",\"type\":\"CumSum\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color\"},\"inner_radius\":{\"value\":0.3},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9108\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9070\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"label\":{\"field\":\"legend_field\"},\"renderers\":[{\"id\":\"9091\"}]},\"id\":\"9104\",\"type\":\"LegendItem\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_color\":{\"field\":\"color\"},\"inner_radius\":{\"value\":0.3},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9111\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Data\",\"@x_value\"],[\"Percent\",\"@percent{0.00%}\"],[\"Count\",\"@count\"]]},\"id\":\"9069\",\"type\":\"HoverTool\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.3},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9109\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"overlay\":{\"id\":\"9075\"}},\"id\":\"9071\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Career level of participants.\"},\"id\":\"9051\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"9095\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.3},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9112\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9096\",\"type\":\"AllLabels\"},{\"attributes\":{\"source\":{\"id\":\"9049\"}},\"id\":\"9114\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"9053\",\"type\":\"DataRange1d\"},{\"attributes\":{\"logo\":null,\"tools\":[{\"id\":\"9069\"},{\"id\":\"9070\"},{\"id\":\"9071\"},{\"id\":\"9072\"},{\"id\":\"9073\"},{\"id\":\"9074\"}]},\"id\":\"9076\",\"type\":\"Toolbar\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9106\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.3},\"outer_radius\":{\"value\":0.7},\"start_angle\":{\"expr\":{\"id\":\"9105\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9110\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9073\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"9098\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"9048\"},\"glyph\":{\"id\":\"9086\"},\"group\":null,\"hover_glyph\":{\"id\":\"9089\"},\"muted_glyph\":{\"id\":\"9090\"},\"nonselection_glyph\":{\"id\":\"9087\"},\"selection_glyph\":{\"id\":\"9088\"},\"view\":{\"id\":\"9092\"}},\"id\":\"9091\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"9099\",\"type\":\"AllLabels\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"9106\",\"type\":\"CumSum\"},{\"attributes\":{\"axis\":{\"id\":\"9061\"},\"coordinates\":null,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"9064\",\"type\":\"Grid\"},{\"attributes\":{\"data\":{\"angle\":{\"__ndarray__\":\"5wCiQDnBhD8AAAAAAAAAAFsB8+DVIa8/2eCXrCV10z/caJqRKsjjPyGBypCH8bk/vKCDhP7c0D9M4ehMwtXtPwRBtmhgWcc/RtHjgrgv3T8lCc11jETqP7WQfrr0NtA/tZB+uvQ28D+zTP1Hcg3wP+cAokA5wZQ/ysCNGBIpsj/nAKJAOcG0PwAAAAAAAAAA5wCiQDnBpD8hgcqQh/GpPw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[20]},\"color\":[\"#c6dbef\",\"#e6550d\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\",\"#c6dbef\",\"#e6550d\",\"#ffffff\"],\"count\":[1,0,6,30,61,10,26,92,18,45,81,25,100,99,2,7,8,0,4,5],\"labels\":[\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\",\"Earth Science\",\"Engineering Science\",\"Other\"],\"percent\":{\"__ndarray__\":\"bRrQpgFtWj8AAAAAAAAAANITHD3B0YM/xhhjjDHGqD8wWf6S5S+5P4QQQgghhJA/eRWJV5F4pT/+kuUvWf7CP7sdqtuhup0/lVJKKaWUsj+5sI8L+7jAP6WUUkoppaQ/pZRSSimlxD9w9ARHT3DEP20a0KYBbWo/Hxf2cWEfhz9tGtCmAW2KPwAAAAAAAAAAbRrQpgFtej+EEEIIIYSAPw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[20]},\"x_value\":[\"Other, Earth Science\",\"Other, Engineering Science\",\"PhD candidate, Earth Science\",\"PhD candidate, Engineering Science\",\"PhD candidate, Other\",\"Postdoc, Earth Science\",\"Postdoc, Engineering Science\",\"Postdoc, Other\",\"Principal Investigator, Earth Science\",\"Principal Investigator, Engineering Science\",\"Principal Investigator, Other\",\"Research Associate, Earth Science\",\"Research Associate, Engineering Science\",\"Research Associate, Other\",\"Student, Earth Science\",\"Student, Engineering Science\",\"Student, Other\",\"Technical Staff, Earth Science\",\"Technical Staff, Engineering Science\",\"Technical Staff, Other\"]},\"selected\":{\"id\":\"9125\"},\"selection_policy\":{\"id\":\"9124\"}},\"id\":\"9049\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"9084\",\"type\":\"CumSum\"},{\"attributes\":{\"source\":{\"id\":\"9048\"}},\"id\":\"9092\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"9074\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"9057\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"9095\"},\"group\":null,\"major_label_policy\":{\"id\":\"9096\"},\"ticker\":{\"id\":\"9066\"},\"visible\":false},\"id\":\"9065\",\"type\":\"LinearAxis\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9087\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9101\",\"type\":\"Selection\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9089\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"9075\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"9100\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"9083\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"9124\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9088\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"9049\"},\"glyph\":{\"id\":\"9108\"},\"group\":null,\"hover_glyph\":{\"id\":\"9111\"},\"muted_glyph\":{\"id\":\"9112\"},\"nonselection_glyph\":{\"id\":\"9109\"},\"selection_glyph\":{\"id\":\"9110\"},\"view\":{\"id\":\"9114\"}},\"id\":\"9113\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9084\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color_outer\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.3},\"start_angle\":{\"expr\":{\"id\":\"9083\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9090\",\"type\":\"AnnularWedge\"}],\"root_ids\":[\"9050\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"85f39dd4-3d93-40ba-8e79-b22e8a92fb3e\",\"root_ids\":[\"9050\"],\"roots\":{\"9050\":\"199e4734-3c11-4319-bd9b-a8b848537f88\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -8427,32 +7128,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"c42bfb72-a732-40ad-a635-08d22ecf266d\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"9513\"}],\"center\":[{\"id\":\"9516\"},{\"id\":\"9520\"},{\"id\":\"9555\"}],\"left\":[{\"id\":\"9517\"}],\"renderers\":[{\"id\":\"9543\"}],\"title\":{\"id\":\"9503\"},\"toolbar\":{\"id\":\"9528\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"9505\"},\"x_scale\":{\"id\":\"9509\"},\"y_range\":{\"id\":\"9507\"},\"y_scale\":{\"id\":\"9511\"}},\"id\":\"9502\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"9536\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"9518\",\"type\":\"BasicTicker\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9539\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9525\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"9522\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"9547\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"source\":{\"id\":\"9048\"}},\"id\":\"9544\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Data\",\"@x_value\"],[\"Percent\",\"@percent{0.00%}\"],[\"Count\",\"@count\"]]},\"id\":\"9521\",\"type\":\"HoverTool\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9541\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"overlay\":{\"id\":\"9527\"}},\"id\":\"9523\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color_outer\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9542\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"data\":{\"All\":[1,97,128,144,224,17,9],\"Chemistry\":[0,0,0,0,0,0,0],\"Cum. Sum\":[1,36,36,63,125,9,4],\"Earth Science\":[1,6,10,18,25,2,0],\"Engineering Science\":[0,30,26,45,100,7,4],\"Life Science\":[0,0,0,0,0,0,0],\"Mathematics\":[0,0,0,0,0,0,0],\"Other\":[0,0,0,0,0,0,0],\"Physics\":[0,0,0,0,0,0,0],\"Psychology\":[0,0,0,0,0,0,0],\"angle\":{\"__ndarray__\":\"5wCiQDnBhD9fifXF2nTvP+cAokA5wfQ/BEG2aGBZ9z/KwI0YEikCQPYgrNRMDcY/BEG2aGBZtz8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"careerLevel\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"],\"color_outer\":[\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\"],\"count\":[1,97,128,144,224,17,9],\"index\":[0,1,2,3,4,5,6],\"legend_field\":[\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\"],\"percent\":{\"__ndarray__\":\"bRrQpgFtWj8HtGlAmwbEP20a0KYBbco/ux2q26G6zT8fF/ZxYR/XPxQcPcHRE5w/ux2q26G6jT8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"x_value\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"]},\"selected\":{\"id\":\"9101\"},\"selection_policy\":{\"id\":\"9100\"}},\"id\":\"9048\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"9524\",\"type\":\"UndoTool\"},{\"attributes\":{},\"id\":\"9548\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"9550\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"9527\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"9509\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"items\":[{\"id\":\"9556\"}]},\"id\":\"9555\",\"type\":\"Legend\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9540\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9551\",\"type\":\"AllLabels\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"9048\"},\"glyph\":{\"id\":\"9538\"},\"group\":null,\"hover_glyph\":{\"id\":\"9541\"},\"muted_glyph\":{\"id\":\"9542\"},\"nonselection_glyph\":{\"id\":\"9539\"},\"selection_glyph\":{\"id\":\"9540\"},\"view\":{\"id\":\"9544\"}},\"id\":\"9543\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"label\":{\"field\":\"legend_field\"},\"renderers\":[{\"id\":\"9543\"}]},\"id\":\"9556\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"9505\",\"type\":\"DataRange1d\"},{\"attributes\":{\"axis\":{\"id\":\"9517\"},\"coordinates\":null,\"dimension\":1,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"9520\",\"type\":\"Grid\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"9547\"},\"group\":null,\"major_label_policy\":{\"id\":\"9548\"},\"ticker\":{\"id\":\"9518\"},\"visible\":false},\"id\":\"9517\",\"type\":\"LinearAxis\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Career level of participants.\"},\"id\":\"9503\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"9101\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"9514\",\"type\":\"BasicTicker\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"9535\",\"type\":\"CumSum\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"9550\"},\"group\":null,\"major_label_policy\":{\"id\":\"9551\"},\"ticker\":{\"id\":\"9514\"},\"visible\":false},\"id\":\"9513\",\"type\":\"LinearAxis\"},{\"attributes\":{\"logo\":null,\"tools\":[{\"id\":\"9521\"},{\"id\":\"9522\"},{\"id\":\"9523\"},{\"id\":\"9524\"},{\"id\":\"9525\"},{\"id\":\"9526\"}]},\"id\":\"9528\",\"type\":\"Toolbar\"},{\"attributes\":{\"axis\":{\"id\":\"9513\"},\"coordinates\":null,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"9516\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"9100\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"9511\",\"type\":\"LinearScale\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9538\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9507\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"9526\",\"type\":\"SaveTool\"}],\"root_ids\":[\"9502\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"c42bfb72-a732-40ad-a635-08d22ecf266d\",\"root_ids\":[\"9502\"],\"roots\":{\"9502\":\"6f0ca5fa-79de-408a-a705-e5c7b18fa8e3\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"c42bfb72-a732-40ad-a635-08d22ecf266d\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"9513\"}],\"center\":[{\"id\":\"9516\"},{\"id\":\"9520\"},{\"id\":\"9555\"}],\"left\":[{\"id\":\"9517\"}],\"renderers\":[{\"id\":\"9543\"}],\"title\":{\"id\":\"9503\"},\"toolbar\":{\"id\":\"9528\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"9505\"},\"x_scale\":{\"id\":\"9509\"},\"y_range\":{\"id\":\"9507\"},\"y_scale\":{\"id\":\"9511\"}},\"id\":\"9502\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"9536\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"9518\",\"type\":\"BasicTicker\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9539\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9525\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"9522\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"9547\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"source\":{\"id\":\"9048\"}},\"id\":\"9544\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Data\",\"@x_value\"],[\"Percent\",\"@percent{0.00%}\"],[\"Count\",\"@count\"]]},\"id\":\"9521\",\"type\":\"HoverTool\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9541\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"overlay\":{\"id\":\"9527\"}},\"id\":\"9523\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color_outer\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9542\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"data\":{\"All\":[1,97,128,144,224,17,9],\"Chemistry\":[0,0,0,0,0,0,0],\"Cum. Sum\":[1,36,36,63,125,9,4],\"Earth Science\":[1,6,10,18,25,2,0],\"Engineering Science\":[0,30,26,45,100,7,4],\"Life Science\":[0,0,0,0,0,0,0],\"Mathematics\":[0,0,0,0,0,0,0],\"Other\":[0,0,0,0,0,0,0],\"Physics\":[0,0,0,0,0,0,0],\"Psychology\":[0,0,0,0,0,0,0],\"angle\":{\"__ndarray__\":\"5wCiQDnBhD9fifXF2nTvP+cAokA5wfQ/BEG2aGBZ9z/KwI0YEikCQPYgrNRMDcY/BEG2aGBZtz8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"careerLevel\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"],\"color_outer\":[\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\"],\"count\":[1,97,128,144,224,17,9],\"index\":[0,1,2,3,4,5,6],\"legend_field\":[\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\"],\"percent\":{\"__ndarray__\":\"bRrQpgFtWj8HtGlAmwbEP20a0KYBbco/ux2q26G6zT8fF/ZxYR/XPxQcPcHRE5w/ux2q26G6jT8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"x_value\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"]},\"selected\":{\"id\":\"9101\"},\"selection_policy\":{\"id\":\"9100\"}},\"id\":\"9048\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"9524\",\"type\":\"UndoTool\"},{\"attributes\":{},\"id\":\"9548\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"9550\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"9527\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"9509\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"items\":[{\"id\":\"9556\"}]},\"id\":\"9555\",\"type\":\"Legend\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9540\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9551\",\"type\":\"AllLabels\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"9048\"},\"glyph\":{\"id\":\"9538\"},\"group\":null,\"hover_glyph\":{\"id\":\"9541\"},\"muted_glyph\":{\"id\":\"9542\"},\"nonselection_glyph\":{\"id\":\"9539\"},\"selection_glyph\":{\"id\":\"9540\"},\"view\":{\"id\":\"9544\"}},\"id\":\"9543\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"label\":{\"field\":\"legend_field\"},\"renderers\":[{\"id\":\"9543\"}]},\"id\":\"9556\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"9505\",\"type\":\"DataRange1d\"},{\"attributes\":{\"axis\":{\"id\":\"9517\"},\"coordinates\":null,\"dimension\":1,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"9520\",\"type\":\"Grid\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"9547\"},\"group\":null,\"major_label_policy\":{\"id\":\"9548\"},\"ticker\":{\"id\":\"9518\"},\"visible\":false},\"id\":\"9517\",\"type\":\"LinearAxis\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Career level of participants.\"},\"id\":\"9503\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"9101\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"9514\",\"type\":\"BasicTicker\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"9535\",\"type\":\"CumSum\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"9550\"},\"group\":null,\"major_label_policy\":{\"id\":\"9551\"},\"ticker\":{\"id\":\"9514\"},\"visible\":false},\"id\":\"9513\",\"type\":\"LinearAxis\"},{\"attributes\":{\"logo\":null,\"tools\":[{\"id\":\"9521\"},{\"id\":\"9522\"},{\"id\":\"9523\"},{\"id\":\"9524\"},{\"id\":\"9525\"},{\"id\":\"9526\"}]},\"id\":\"9528\",\"type\":\"Toolbar\"},{\"attributes\":{\"axis\":{\"id\":\"9513\"},\"coordinates\":null,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"9516\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"9100\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"9511\",\"type\":\"LinearScale\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"9536\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.0},\"start_angle\":{\"expr\":{\"id\":\"9535\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"9538\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"9507\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"9526\",\"type\":\"SaveTool\"}],\"root_ids\":[\"9502\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"c42bfb72-a732-40ad-a635-08d22ecf266d\",\"root_ids\":[\"9502\"],\"roots\":{\"9502\":\"6f0ca5fa-79de-408a-a705-e5c7b18fa8e3\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -8502,32 +7178,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"48f690a9-f159-4686-bbd3-b6d0a7a9c5bd\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"7383\"}],\"center\":[{\"id\":\"7386\"},{\"id\":\"7390\"},{\"id\":\"7413\"}],\"left\":[{\"id\":\"7387\"}],\"renderers\":[{\"id\":\"7402\"},{\"id\":\"7423\"}],\"title\":{\"id\":\"7373\"},\"toolbar\":{\"id\":\"7392\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"7375\"},\"x_scale\":{\"id\":\"7379\"},\"y_range\":{\"id\":\"7377\"},\"y_scale\":{\"id\":\"7381\"}},\"id\":\"7372\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"7416\",\"type\":\"CumSum\"},{\"attributes\":{\"data\":{\"All\":[1,97,128,144,224,17,9],\"Chemistry\":[0,0,0,0,0,0,0],\"Cum. Sum\":[1,36,36,63,125,9,4],\"Earth Science\":[1,6,10,18,25,2,0],\"Engineering Science\":[0,30,26,45,100,7,4],\"Life Science\":[0,0,0,0,0,0,0],\"Mathematics\":[0,0,0,0,0,0,0],\"Other\":[0,0,0,0,0,0,0],\"Physics\":[0,0,0,0,0,0,0],\"Psychology\":[0,0,0,0,0,0,0],\"angle\":{\"__ndarray__\":\"LdQ9uU97lz+zjmWwuWrqP7OOZbC5auo/3NxYemId9z80Yebaa+4GQLOOZbC5aso/LdQ9uU97tz8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"careerLevel\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"],\"color_outer\":[\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\"],\"count\":[1,36,36,63,125,9,4],\"index\":[0,1,2,3,4,5,6],\"legend_field\":[\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\"],\"percent\":{\"__ndarray__\":\"iob449blbT+uyzvgSNHAP67LO+BI0cA/cKRoiD9uzT9js6DaczLdP67LO+BI0aA/iob449bljT8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"x_value\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"]},\"selected\":{\"id\":\"7036\"},\"selection_policy\":{\"id\":\"7035\"}},\"id\":\"6994\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7398\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"source\":{\"id\":\"7371\"}},\"id\":\"7424\",\"type\":\"CDSView\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"items\":[{\"id\":\"7414\"},{\"id\":\"7436\"}]},\"id\":\"7413\",\"type\":\"Legend\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.5},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7422\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7400\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"7394\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"7409\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"7375\",\"type\":\"DataRange1d\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7399\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"7406\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7397\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"axis\":{\"id\":\"7387\"},\"coordinates\":null,\"dimension\":1,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"7390\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"7410\",\"type\":\"AllLabels\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"7371\"},\"glyph\":{\"id\":\"7418\"},\"group\":null,\"hover_glyph\":{\"id\":\"7421\"},\"muted_glyph\":{\"id\":\"7422\"},\"nonselection_glyph\":{\"id\":\"7419\"},\"selection_glyph\":{\"id\":\"7420\"},\"view\":{\"id\":\"7424\"}},\"id\":\"7423\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis\":{\"id\":\"7383\"},\"coordinates\":null,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"7386\",\"type\":\"Grid\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color_outer\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7401\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"label\":{\"field\":\"labels\"},\"renderers\":[{\"id\":\"7423\"}]},\"id\":\"7436\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"7381\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"7406\"},\"group\":null,\"major_label_policy\":{\"id\":\"7407\"},\"ticker\":{\"id\":\"7388\"},\"visible\":false},\"id\":\"7387\",\"type\":\"LinearAxis\"},{\"attributes\":{\"logo\":null,\"tools\":[{\"id\":\"7391\"}]},\"id\":\"7392\",\"type\":\"Toolbar\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Data\",\"@x_value\"],[\"Percent\",\"@percent{0.00%}\"],[\"Count\",\"@count\"]]},\"id\":\"7391\",\"type\":\"HoverTool\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Career level of participants.\"},\"id\":\"7373\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"7435\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"7384\",\"type\":\"BasicTicker\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"6994\"},\"glyph\":{\"id\":\"7397\"},\"group\":null,\"hover_glyph\":{\"id\":\"7400\"},\"muted_glyph\":{\"id\":\"7401\"},\"nonselection_glyph\":{\"id\":\"7398\"},\"selection_glyph\":{\"id\":\"7399\"},\"view\":{\"id\":\"7403\"}},\"id\":\"7402\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"label\":{\"field\":\"legend_field\"},\"renderers\":[{\"id\":\"7402\"}]},\"id\":\"7414\",\"type\":\"LegendItem\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"7409\"},\"group\":null,\"major_label_policy\":{\"id\":\"7410\"},\"ticker\":{\"id\":\"7384\"},\"visible\":false},\"id\":\"7383\",\"type\":\"LinearAxis\"},{\"attributes\":{\"source\":{\"id\":\"6994\"}},\"id\":\"7403\",\"type\":\"CDSView\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"7395\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"7379\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"7035\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"7036\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"7377\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"7434\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_color\":{\"field\":\"color\"},\"inner_radius\":{\"value\":0.5},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7421\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"7407\",\"type\":\"AllLabels\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color\"},\"inner_radius\":{\"value\":0.5},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7418\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"7415\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"7388\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data\":{\"angle\":{\"__ndarray__\":\"LdQ9uU97lz8AAAAAAAAAACJf7sp7nME/6vapvZoD5j83SY2nI1rNP2Q8gsYwFOM/s45lsLlq2j8veT8OtILwP8NNuEhWWOI/w024SFZYAkAt1D25T3unP6cZFsLli8Q/AAAAAAAAAAAt1D25T3u3Pw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[14]},\"color\":[\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\"],\"count\":[1,0,6,30,10,26,18,45,25,100,2,7,0,4],\"labels\":[\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\"],\"percent\":{\"__ndarray__\":\"iob449blbT8AAAAAAAAAAOhk+iphbJY/Iv64dXkHvD8WVHtOpq+iP1DtOZm+Srg/rss74EjRsD+ZvkoYmwXFPxwpGuKPW7c/HCka4o9b1z+Khvjj1uV9P7l1eQccKZo/AAAAAAAAAACKhvjj1uWNPw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[14]},\"x_value\":[\"Other, Earth Science\",\"Other, Engineering Science\",\"PhD candidate, Earth Science\",\"PhD candidate, Engineering Science\",\"Postdoc, Earth Science\",\"Postdoc, Engineering Science\",\"Principal Investigator, Earth Science\",\"Principal Investigator, Engineering Science\",\"Research Associate, Earth Science\",\"Research Associate, Engineering Science\",\"Student, Earth Science\",\"Student, Engineering Science\",\"Technical Staff, Earth Science\",\"Technical Staff, Engineering Science\"]},\"selected\":{\"id\":\"7435\"},\"selection_policy\":{\"id\":\"7434\"}},\"id\":\"7371\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.5},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7420\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.5},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7419\",\"type\":\"AnnularWedge\"}],\"root_ids\":[\"7372\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"48f690a9-f159-4686-bbd3-b6d0a7a9c5bd\",\"root_ids\":[\"7372\"],\"roots\":{\"7372\":\"4137feca-db1a-4e1c-9b8d-c3b0ea883fc6\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"48f690a9-f159-4686-bbd3-b6d0a7a9c5bd\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"7383\"}],\"center\":[{\"id\":\"7386\"},{\"id\":\"7390\"},{\"id\":\"7413\"}],\"left\":[{\"id\":\"7387\"}],\"renderers\":[{\"id\":\"7402\"},{\"id\":\"7423\"}],\"title\":{\"id\":\"7373\"},\"toolbar\":{\"id\":\"7392\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"7375\"},\"x_scale\":{\"id\":\"7379\"},\"y_range\":{\"id\":\"7377\"},\"y_scale\":{\"id\":\"7381\"}},\"id\":\"7372\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"7416\",\"type\":\"CumSum\"},{\"attributes\":{\"data\":{\"All\":[1,97,128,144,224,17,9],\"Chemistry\":[0,0,0,0,0,0,0],\"Cum. Sum\":[1,36,36,63,125,9,4],\"Earth Science\":[1,6,10,18,25,2,0],\"Engineering Science\":[0,30,26,45,100,7,4],\"Life Science\":[0,0,0,0,0,0,0],\"Mathematics\":[0,0,0,0,0,0,0],\"Other\":[0,0,0,0,0,0,0],\"Physics\":[0,0,0,0,0,0,0],\"Psychology\":[0,0,0,0,0,0,0],\"angle\":{\"__ndarray__\":\"LdQ9uU97lz+zjmWwuWrqP7OOZbC5auo/3NxYemId9z80Yebaa+4GQLOOZbC5aso/LdQ9uU97tz8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"careerLevel\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"],\"color_outer\":[\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\",\"#3182bd\"],\"count\":[1,36,36,63,125,9,4],\"index\":[0,1,2,3,4,5,6],\"legend_field\":[\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\",\"Total\"],\"percent\":{\"__ndarray__\":\"iob449blbT+uyzvgSNHAP67LO+BI0cA/cKRoiD9uzT9js6DaczLdP67LO+BI0aA/iob449bljT8=\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[7]},\"x_value\":[\"Other\",\"PhD candidate\",\"Postdoc\",\"Principal Investigator\",\"Research Associate\",\"Student\",\"Technical Staff\"]},\"selected\":{\"id\":\"7036\"},\"selection_policy\":{\"id\":\"7035\"}},\"id\":\"6994\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7398\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"source\":{\"id\":\"7371\"}},\"id\":\"7424\",\"type\":\"CDSView\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"items\":[{\"id\":\"7414\"},{\"id\":\"7436\"}]},\"id\":\"7413\",\"type\":\"Legend\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.5},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7422\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7400\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"7394\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"7409\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"7375\",\"type\":\"DataRange1d\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7399\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"7406\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color_outer\"},\"inner_radius\":{\"value\":0.0},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7397\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"axis\":{\"id\":\"7387\"},\"coordinates\":null,\"dimension\":1,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"7390\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"7410\",\"type\":\"AllLabels\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"7371\"},\"glyph\":{\"id\":\"7418\"},\"group\":null,\"hover_glyph\":{\"id\":\"7421\"},\"muted_glyph\":{\"id\":\"7422\"},\"nonselection_glyph\":{\"id\":\"7419\"},\"selection_glyph\":{\"id\":\"7420\"},\"view\":{\"id\":\"7424\"}},\"id\":\"7423\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis\":{\"id\":\"7383\"},\"coordinates\":null,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"7386\",\"type\":\"Grid\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7395\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color_outer\"},\"hatch_alpha\":{\"value\":0.2},\"inner_radius\":{\"value\":0.0},\"line_alpha\":{\"value\":0.2},\"outer_radius\":{\"value\":0.5},\"start_angle\":{\"expr\":{\"id\":\"7394\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7401\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"label\":{\"field\":\"labels\"},\"renderers\":[{\"id\":\"7423\"}]},\"id\":\"7436\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"7381\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"7406\"},\"group\":null,\"major_label_policy\":{\"id\":\"7407\"},\"ticker\":{\"id\":\"7388\"},\"visible\":false},\"id\":\"7387\",\"type\":\"LinearAxis\"},{\"attributes\":{\"logo\":null,\"tools\":[{\"id\":\"7391\"}]},\"id\":\"7392\",\"type\":\"Toolbar\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Data\",\"@x_value\"],[\"Percent\",\"@percent{0.00%}\"],[\"Count\",\"@count\"]]},\"id\":\"7391\",\"type\":\"HoverTool\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"Career level of participants.\"},\"id\":\"7373\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"7435\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"7384\",\"type\":\"BasicTicker\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"6994\"},\"glyph\":{\"id\":\"7397\"},\"group\":null,\"hover_glyph\":{\"id\":\"7400\"},\"muted_glyph\":{\"id\":\"7401\"},\"nonselection_glyph\":{\"id\":\"7398\"},\"selection_glyph\":{\"id\":\"7399\"},\"view\":{\"id\":\"7403\"}},\"id\":\"7402\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"label\":{\"field\":\"legend_field\"},\"renderers\":[{\"id\":\"7402\"}]},\"id\":\"7414\",\"type\":\"LegendItem\"},{\"attributes\":{\"coordinates\":null,\"formatter\":{\"id\":\"7409\"},\"group\":null,\"major_label_policy\":{\"id\":\"7410\"},\"ticker\":{\"id\":\"7384\"},\"visible\":false},\"id\":\"7383\",\"type\":\"LinearAxis\"},{\"attributes\":{\"source\":{\"id\":\"6994\"}},\"id\":\"7403\",\"type\":\"CDSView\"},{\"attributes\":{\"field\":\"angle\"},\"id\":\"7395\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"7379\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"7035\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"7036\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"7377\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"7434\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_color\":{\"field\":\"color\"},\"inner_radius\":{\"value\":0.5},\"line_width\":{\"value\":5.0},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7421\",\"type\":\"AnnularWedge\"},{\"attributes\":{},\"id\":\"7407\",\"type\":\"AllLabels\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"field\":\"color\"},\"inner_radius\":{\"value\":0.5},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7418\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"field\":\"angle\",\"include_zero\":true},\"id\":\"7415\",\"type\":\"CumSum\"},{\"attributes\":{},\"id\":\"7388\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data\":{\"angle\":{\"__ndarray__\":\"LdQ9uU97lz8AAAAAAAAAACJf7sp7nME/6vapvZoD5j83SY2nI1rNP2Q8gsYwFOM/s45lsLlq2j8veT8OtILwP8NNuEhWWOI/w024SFZYAkAt1D25T3unP6cZFsLli8Q/AAAAAAAAAAAt1D25T3u3Pw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[14]},\"color\":[\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\",\"#3182bd\",\"#c6dbef\"],\"count\":[1,0,6,30,10,26,18,45,25,100,2,7,0,4],\"labels\":[\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\",\"Earth Science\",\"Engineering Science\"],\"percent\":{\"__ndarray__\":\"iob449blbT8AAAAAAAAAAOhk+iphbJY/Iv64dXkHvD8WVHtOpq+iP1DtOZm+Srg/rss74EjRsD+ZvkoYmwXFPxwpGuKPW7c/HCka4o9b1z+Khvjj1uV9P7l1eQccKZo/AAAAAAAAAACKhvjj1uWNPw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[14]},\"x_value\":[\"Other, Earth Science\",\"Other, Engineering Science\",\"PhD candidate, Earth Science\",\"PhD candidate, Engineering Science\",\"Postdoc, Earth Science\",\"Postdoc, Engineering Science\",\"Principal Investigator, Earth Science\",\"Principal Investigator, Engineering Science\",\"Research Associate, Earth Science\",\"Research Associate, Engineering Science\",\"Student, Earth Science\",\"Student, Engineering Science\",\"Technical Staff, Earth Science\",\"Technical Staff, Engineering Science\"]},\"selected\":{\"id\":\"7435\"},\"selection_policy\":{\"id\":\"7434\"}},\"id\":\"7371\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_color\":{\"value\":\"black\"},\"inner_radius\":{\"value\":0.5},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7420\",\"type\":\"AnnularWedge\"},{\"attributes\":{\"end_angle\":{\"expr\":{\"id\":\"7416\"}},\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"blue\"},\"hatch_alpha\":{\"value\":0.1},\"inner_radius\":{\"value\":0.5},\"line_alpha\":{\"value\":0.5},\"outer_radius\":{\"value\":0.8},\"start_angle\":{\"expr\":{\"id\":\"7415\"}},\"x\":{\"value\":0},\"y\":{\"value\":1}},\"id\":\"7419\",\"type\":\"AnnularWedge\"}],\"root_ids\":[\"7372\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"48f690a9-f159-4686-bbd3-b6d0a7a9c5bd\",\"root_ids\":[\"7372\"],\"roots\":{\"7372\":\"4137feca-db1a-4e1c-9b8d-c3b0ea883fc6\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -9781,32 +8432,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"4b6d8204-639d-4b87-8837-2f46c7788fbf\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"10366\"}],\"center\":[{\"id\":\"10368\"},{\"id\":\"10371\"}],\"left\":[{\"id\":\"10369\"}],\"outline_line_color\":null,\"renderers\":[{\"id\":\"10391\"}],\"title\":{\"id\":\"10356\"},\"toolbar\":{\"id\":\"10379\"},\"x_range\":{\"id\":\"10358\"},\"x_scale\":{\"id\":\"10362\"},\"y_range\":{\"id\":\"10360\"},\"y_scale\":{\"id\":\"10364\"}},\"id\":\"10355\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"10364\",\"type\":\"CategoricalScale\"},{\"attributes\":{},\"id\":\"10375\",\"type\":\"UndoTool\"},{\"attributes\":{\"source\":{\"id\":\"10354\"}},\"id\":\"10392\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"orcid\",\"@x_values\"],[\"docStructured\",\"@y_values\"],[\"total\",\"@total\"],[\"percentage\",\"@percentage\"]]},\"id\":\"10372\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"10734\",\"type\":\"Selection\"},{\"attributes\":{\"axis\":{\"id\":\"10369\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"10371\",\"type\":\"Grid\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"10378\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"factors\":[\"Yes\",\"No\",\"Not sure\"]},\"id\":\"10358\",\"type\":\"FactorRange\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.6},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.6},\"line_alpha\":{\"value\":0.6},\"line_color\":{\"field\":\"color\"},\"size\":{\"field\":\"markersize\"},\"x\":{\"field\":\"x_values\"},\"y\":{\"field\":\"y_values\"}},\"id\":\"10387\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"\",\"axis_line_alpha\":0,\"coordinates\":null,\"formatter\":{\"id\":\"10731\"},\"group\":null,\"major_label_orientation\":1,\"major_label_policy\":{\"id\":\"10732\"},\"ticker\":{\"id\":\"10367\"}},\"id\":\"10366\",\"type\":\"CategoricalAxis\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"field\":\"color\"},\"size\":{\"field\":\"markersize\"},\"x\":{\"field\":\"x_values\"},\"y\":{\"field\":\"y_values\"}},\"id\":\"10388\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"10728\",\"type\":\"CategoricalTickFormatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"line_width\":{\"value\":5},\"size\":{\"field\":\"markersize\"},\"x\":{\"field\":\"x_values\"},\"y\":{\"field\":\"y_values\"}},\"id\":\"10389\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"10729\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"10731\",\"type\":\"CategoricalTickFormatter\"},{\"attributes\":{},\"id\":\"10376\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"10373\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"10370\",\"type\":\"CategoricalTicker\"},{\"attributes\":{\"factors\":[\"Yes\",\"No\",\"Not sure\"]},\"id\":\"10360\",\"type\":\"FactorRange\"},{\"attributes\":{},\"id\":\"10732\",\"type\":\"AllLabels\"},{\"attributes\":{\"data\":{\"color\":[\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\"],\"docStructured\":[\"No\",\"No\",\"No\",\"Not sure\",\"Not sure\",\"Not sure\",\"Yes\",\"Yes\",\"Yes\"],\"index\":[0,1,2,3,4,5,6,7,8],\"markersize\":[32.57350079,37.6126389,33.31124334,14.56731241,16.82088348,24.4437699,35.68248232,29.13462482,28.97140434],\"orcid\":[\"No\",\"Not sure\",\"Yes\",\"No\",\"Not sure\",\"Yes\",\"No\",\"Not sure\",\"Yes\"],\"percentage\":[41.66666667,55.55555556,43.57541899,8.33333333,11.11111111,23.46368715,50.0,33.33333333,32.96089385],\"total\":[36,9,179,36,9,179,36,9,179],\"value\":[15,5,78,3,1,42,18,3,59],\"x_values\":[\"No\",\"Not sure\",\"Yes\",\"No\",\"Not sure\",\"Yes\",\"No\",\"Not sure\",\"Yes\"],\"y_values\":[\"No\",\"No\",\"No\",\"Not sure\",\"Not sure\",\"Not sure\",\"Yes\",\"Yes\",\"Yes\"]},\"selected\":{\"id\":\"10734\"},\"selection_policy\":{\"id\":\"10733\"}},\"id\":\"10354\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"field\":\"color\"},\"size\":{\"field\":\"markersize\"},\"x\":{\"field\":\"x_values\"},\"y\":{\"field\":\"y_values\"}},\"id\":\"10390\",\"type\":\"Circle\"},{\"attributes\":{\"tools\":[{\"id\":\"10372\"},{\"id\":\"10373\"},{\"id\":\"10374\"},{\"id\":\"10375\"},{\"id\":\"10376\"},{\"id\":\"10377\"}]},\"id\":\"10379\",\"type\":\"Toolbar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10354\"},\"glyph\":{\"id\":\"10387\"},\"group\":null,\"hover_glyph\":{\"id\":\"10389\"},\"muted_glyph\":{\"id\":\"10390\"},\"nonselection_glyph\":{\"id\":\"10388\"},\"view\":{\"id\":\"10392\"}},\"id\":\"10391\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10733\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"orcid in dependence to docStructured\"},\"id\":\"10356\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"10367\",\"type\":\"CategoricalTicker\"},{\"attributes\":{\"overlay\":{\"id\":\"10378\"}},\"id\":\"10374\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"axis_label\":\"\",\"axis_line_alpha\":0,\"coordinates\":null,\"formatter\":{\"id\":\"10728\"},\"group\":null,\"major_label_policy\":{\"id\":\"10729\"},\"ticker\":{\"id\":\"10370\"}},\"id\":\"10369\",\"type\":\"CategoricalAxis\"},{\"attributes\":{\"axis\":{\"id\":\"10366\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"10368\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10377\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"10362\",\"type\":\"CategoricalScale\"}],\"root_ids\":[\"10355\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"4b6d8204-639d-4b87-8837-2f46c7788fbf\",\"root_ids\":[\"10355\"],\"roots\":{\"10355\":\"0936b2a9-e82e-418e-a13a-33f18d7de812\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"4b6d8204-639d-4b87-8837-2f46c7788fbf\":{\"defs\":[{\"extends\":null,\"module\":null,\"name\":\"ReactiveHTML1\",\"overrides\":[],\"properties\":[]},{\"extends\":null,\"module\":null,\"name\":\"FlexBox1\",\"overrides\":[],\"properties\":[{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_content\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"align_items\"},{\"default\":\"row\",\"kind\":null,\"name\":\"flex_direction\"},{\"default\":\"wrap\",\"kind\":null,\"name\":\"flex_wrap\"},{\"default\":\"flex-start\",\"kind\":null,\"name\":\"justify_content\"}]},{\"extends\":null,\"module\":null,\"name\":\"GridStack1\",\"overrides\":[],\"properties\":[{\"default\":\"warn\",\"kind\":null,\"name\":\"mode\"},{\"default\":null,\"kind\":null,\"name\":\"ncols\"},{\"default\":null,\"kind\":null,\"name\":\"nrows\"},{\"default\":true,\"kind\":null,\"name\":\"allow_resize\"},{\"default\":true,\"kind\":null,\"name\":\"allow_drag\"},{\"default\":[],\"kind\":null,\"name\":\"state\"}]},{\"extends\":null,\"module\":null,\"name\":\"click1\",\"overrides\":[],\"properties\":[{\"default\":\"\",\"kind\":null,\"name\":\"terminal_output\"},{\"default\":\"\",\"kind\":null,\"name\":\"debug_name\"},{\"default\":0,\"kind\":null,\"name\":\"clears\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationAreaBase1\",\"overrides\":[],\"properties\":[{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"}]},{\"extends\":null,\"module\":null,\"name\":\"NotificationArea1\",\"overrides\":[],\"properties\":[{\"default\":[],\"kind\":null,\"name\":\"notifications\"},{\"default\":\"bottom-right\",\"kind\":null,\"name\":\"position\"},{\"default\":0,\"kind\":null,\"name\":\"_clear\"},{\"default\":[{\"background\":\"#ffc107\",\"icon\":{\"className\":\"fas fa-exclamation-triangle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"warning\"},{\"background\":\"#007bff\",\"icon\":{\"className\":\"fas fa-info-circle\",\"color\":\"white\",\"tagName\":\"i\"},\"type\":\"info\"}],\"kind\":null,\"name\":\"types\"}]},{\"extends\":null,\"module\":null,\"name\":\"Notification\",\"overrides\":[],\"properties\":[{\"default\":null,\"kind\":null,\"name\":\"background\"},{\"default\":3000,\"kind\":null,\"name\":\"duration\"},{\"default\":null,\"kind\":null,\"name\":\"icon\"},{\"default\":\"\",\"kind\":null,\"name\":\"message\"},{\"default\":null,\"kind\":null,\"name\":\"notification_type\"},{\"default\":false,\"kind\":null,\"name\":\"_destroyed\"}]},{\"extends\":null,\"module\":null,\"name\":\"TemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]},{\"extends\":null,\"module\":null,\"name\":\"MaterialTemplateActions1\",\"overrides\":[],\"properties\":[{\"default\":0,\"kind\":null,\"name\":\"open_modal\"},{\"default\":0,\"kind\":null,\"name\":\"close_modal\"}]}],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"10366\"}],\"center\":[{\"id\":\"10368\"},{\"id\":\"10371\"}],\"left\":[{\"id\":\"10369\"}],\"outline_line_color\":null,\"renderers\":[{\"id\":\"10391\"}],\"title\":{\"id\":\"10356\"},\"toolbar\":{\"id\":\"10379\"},\"x_range\":{\"id\":\"10358\"},\"x_scale\":{\"id\":\"10362\"},\"y_range\":{\"id\":\"10360\"},\"y_scale\":{\"id\":\"10364\"}},\"id\":\"10355\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"10364\",\"type\":\"CategoricalScale\"},{\"attributes\":{},\"id\":\"10375\",\"type\":\"UndoTool\"},{\"attributes\":{\"source\":{\"id\":\"10354\"}},\"id\":\"10392\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"orcid\",\"@x_values\"],[\"docStructured\",\"@y_values\"],[\"total\",\"@total\"],[\"percentage\",\"@percentage\"]]},\"id\":\"10372\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"10734\",\"type\":\"Selection\"},{\"attributes\":{\"axis\":{\"id\":\"10369\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"10371\",\"type\":\"Grid\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"10378\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"factors\":[\"Yes\",\"No\",\"Not sure\"]},\"id\":\"10358\",\"type\":\"FactorRange\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.6},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.6},\"line_alpha\":{\"value\":0.6},\"line_color\":{\"field\":\"color\"},\"size\":{\"field\":\"markersize\"},\"x\":{\"field\":\"x_values\"},\"y\":{\"field\":\"y_values\"}},\"id\":\"10387\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"\",\"axis_line_alpha\":0,\"coordinates\":null,\"formatter\":{\"id\":\"10731\"},\"group\":null,\"major_label_orientation\":1,\"major_label_policy\":{\"id\":\"10732\"},\"ticker\":{\"id\":\"10367\"}},\"id\":\"10366\",\"type\":\"CategoricalAxis\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"field\":\"color\"},\"size\":{\"field\":\"markersize\"},\"x\":{\"field\":\"x_values\"},\"y\":{\"field\":\"y_values\"}},\"id\":\"10388\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"10728\",\"type\":\"CategoricalTickFormatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"line_width\":{\"value\":5},\"size\":{\"field\":\"markersize\"},\"x\":{\"field\":\"x_values\"},\"y\":{\"field\":\"y_values\"}},\"id\":\"10389\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"10729\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"10731\",\"type\":\"CategoricalTickFormatter\"},{\"attributes\":{},\"id\":\"10376\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"10373\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"10370\",\"type\":\"CategoricalTicker\"},{\"attributes\":{\"factors\":[\"Yes\",\"No\",\"Not sure\"]},\"id\":\"10360\",\"type\":\"FactorRange\"},{\"attributes\":{},\"id\":\"10732\",\"type\":\"AllLabels\"},{\"attributes\":{\"data\":{\"color\":[\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\",\"#A0235A\"],\"docStructured\":[\"No\",\"No\",\"No\",\"Not sure\",\"Not sure\",\"Not sure\",\"Yes\",\"Yes\",\"Yes\"],\"index\":[0,1,2,3,4,5,6,7,8],\"markersize\":[32.57350079,37.6126389,33.31124334,14.56731241,16.82088348,24.4437699,35.68248232,29.13462482,28.97140434],\"orcid\":[\"No\",\"Not sure\",\"Yes\",\"No\",\"Not sure\",\"Yes\",\"No\",\"Not sure\",\"Yes\"],\"percentage\":[41.66666667,55.55555556,43.57541899,8.33333333,11.11111111,23.46368715,50.0,33.33333333,32.96089385],\"total\":[36,9,179,36,9,179,36,9,179],\"value\":[15,5,78,3,1,42,18,3,59],\"x_values\":[\"No\",\"Not sure\",\"Yes\",\"No\",\"Not sure\",\"Yes\",\"No\",\"Not sure\",\"Yes\"],\"y_values\":[\"No\",\"No\",\"No\",\"Not sure\",\"Not sure\",\"Not sure\",\"Yes\",\"Yes\",\"Yes\"]},\"selected\":{\"id\":\"10734\"},\"selection_policy\":{\"id\":\"10733\"}},\"id\":\"10354\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"color\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"field\":\"color\"},\"size\":{\"field\":\"markersize\"},\"x\":{\"field\":\"x_values\"},\"y\":{\"field\":\"y_values\"}},\"id\":\"10390\",\"type\":\"Circle\"},{\"attributes\":{\"tools\":[{\"id\":\"10372\"},{\"id\":\"10373\"},{\"id\":\"10374\"},{\"id\":\"10375\"},{\"id\":\"10376\"},{\"id\":\"10377\"}]},\"id\":\"10379\",\"type\":\"Toolbar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10354\"},\"glyph\":{\"id\":\"10387\"},\"group\":null,\"hover_glyph\":{\"id\":\"10389\"},\"muted_glyph\":{\"id\":\"10390\"},\"nonselection_glyph\":{\"id\":\"10388\"},\"view\":{\"id\":\"10392\"}},\"id\":\"10391\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10733\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"orcid in dependence to docStructured\"},\"id\":\"10356\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"10367\",\"type\":\"CategoricalTicker\"},{\"attributes\":{\"overlay\":{\"id\":\"10378\"}},\"id\":\"10374\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"axis_label\":\"\",\"axis_line_alpha\":0,\"coordinates\":null,\"formatter\":{\"id\":\"10728\"},\"group\":null,\"major_label_policy\":{\"id\":\"10729\"},\"ticker\":{\"id\":\"10370\"}},\"id\":\"10369\",\"type\":\"CategoricalAxis\"},{\"attributes\":{\"axis\":{\"id\":\"10366\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"10368\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10377\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"10362\",\"type\":\"CategoricalScale\"}],\"root_ids\":[\"10355\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"4b6d8204-639d-4b87-8837-2f46c7788fbf\",\"root_ids\":[\"10355\"],\"roots\":{\"10355\":\"0936b2a9-e82e-418e-a13a-33f18d7de812\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
diff --git a/survey_dashboard/survey_dashboard.ipynb b/docs/notebooks/survey_dashboard.ipynb
similarity index 59%
rename from survey_dashboard/survey_dashboard.ipynb
rename to docs/notebooks/survey_dashboard.ipynb
index 5afc6e1..fb412f1 100644
--- a/survey_dashboard/survey_dashboard.ipynb
+++ b/docs/notebooks/survey_dashboard.ipynb
@@ -141,426 +141,16 @@
"outputs": [
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function now() {\n",
- " return new Date();\n",
- " }\n",
- "\n",
- " var force = true;\n",
- "\n",
- " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n",
- " root._bokeh_onload_callbacks = [];\n",
- " root._bokeh_is_loading = undefined;\n",
- " }\n",
- "\n",
- " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n",
- " root._bokeh_timeout = Date.now() + 5000;\n",
- " root._bokeh_failed_load = false;\n",
- " }\n",
- "\n",
- " function run_callbacks() {\n",
- " try {\n",
- " root._bokeh_onload_callbacks.forEach(function(callback) {\n",
- " if (callback != null)\n",
- " callback();\n",
- " });\n",
- " } finally {\n",
- " delete root._bokeh_onload_callbacks\n",
- " }\n",
- " console.debug(\"Bokeh: all callbacks have finished\");\n",
- " }\n",
- "\n",
- " function load_libs(css_urls, js_urls, js_modules, callback) {\n",
- " if (css_urls == null) css_urls = [];\n",
- " if (js_urls == null) js_urls = [];\n",
- " if (js_modules == null) js_modules = [];\n",
- "\n",
- " root._bokeh_onload_callbacks.push(callback);\n",
- " if (root._bokeh_is_loading > 0) {\n",
- " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
- " return null;\n",
- " }\n",
- " if (js_urls.length === 0 && js_modules.length === 0) {\n",
- " run_callbacks();\n",
- " return null;\n",
- " }\n",
- " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
- "\n",
- " function on_load() {\n",
- " root._bokeh_is_loading--;\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
- " run_callbacks()\n",
- " }\n",
- " }\n",
- "\n",
- " function on_error() {\n",
- " console.error(\"failed to load \" + url);\n",
- " }\n",
- "\n",
- " for (var i = 0; i < css_urls.length; i++) {\n",
- " var url = css_urls[i];\n",
- " const element = document.createElement(\"link\");\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.rel = \"stylesheet\";\n",
- " element.type = \"text/css\";\n",
- " element.href = url;\n",
- " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " var skip = [];\n",
- " if (window.requirejs) {\n",
- " window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n",
- " require([\"gridstack\"], function(GridStack) {\n",
- "\twindow.GridStack = GridStack\n",
- "\ton_load()\n",
- " })\n",
- " require([\"notyf\"], function() {\n",
- "\ton_load()\n",
- " })\n",
- " root._bokeh_is_loading = css_urls.length + 2;\n",
- " } else {\n",
- " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n",
- " } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n",
- " var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n",
- " for (var i = 0; i < urls.length; i++) {\n",
- " skip.push(urls[i])\n",
- " }\n",
- " } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n",
- " var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n",
- " for (var i = 0; i < urls.length; i++) {\n",
- " skip.push(urls[i])\n",
- " }\n",
- " } for (var i = 0; i < js_urls.length; i++) {\n",
- " var url = js_urls[i];\n",
- " if (skip.indexOf(url) >= 0) {\n",
- "\tif (!window.requirejs) {\n",
- "\t on_load();\n",
- "\t}\n",
- "\tcontinue;\n",
- " }\n",
- " var element = document.createElement('script');\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.async = false;\n",
- " element.src = url;\n",
- " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
- " document.head.appendChild(element);\n",
- " }\n",
- " for (var i = 0; i < js_modules.length; i++) {\n",
- " var url = js_modules[i];\n",
- " if (skip.indexOf(url) >= 0) {\n",
- "\tif (!window.requirejs) {\n",
- "\t on_load();\n",
- "\t}\n",
- "\tcontinue;\n",
- " }\n",
- " var element = document.createElement('script');\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error;\n",
- " element.async = false;\n",
- " element.src = url;\n",
- " element.type = \"module\";\n",
- " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
- " document.head.appendChild(element);\n",
- " }\n",
- " if (!js_urls.length && !js_modules.length) {\n",
- " on_load()\n",
- " }\n",
- " };\n",
- "\n",
- " function inject_raw_css(css) {\n",
- " const element = document.createElement(\"style\");\n",
- " element.appendChild(document.createTextNode(css));\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n",
- " var js_modules = [];\n",
- " var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\"];\n",
- " var inline_js = [ function(Bokeh) {\n",
- " inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n",
- " }, function(Bokeh) {\n",
- " Bokeh.set_log_level(\"info\");\n",
- " },\n",
- "function(Bokeh) {} // ensure no trailing comma for IE\n",
- " ];\n",
- "\n",
- " function run_inline_js() {\n",
- " if ((root.Bokeh !== undefined) || (force === true)) {\n",
- " for (var i = 0; i < inline_js.length; i++) {\n",
- " inline_js[i].call(root, root.Bokeh);\n",
- " }} else if (Date.now() < root._bokeh_timeout) {\n",
- " setTimeout(run_inline_js, 100);\n",
- " } else if (!root._bokeh_failed_load) {\n",
- " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
- " root._bokeh_failed_load = true;\n",
- " }\n",
- " }\n",
- "\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
- " run_inline_js();\n",
- " } else {\n",
- " load_libs(css_urls, js_urls, js_modules, function() {\n",
- " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
- " run_inline_js();\n",
- " });\n",
- " }\n",
- "}(window));"
- ],
- "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 2;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n var js_modules = [];\n var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\"];\n var inline_js = [ function(Bokeh) {\n inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n }, function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, js_modules, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));"
+ "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 2;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) >= 0) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n var js_modules = [];\n var css_urls = [\"https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css\", \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/debugger.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/dataframe.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/markdown.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/widgets.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/alerts.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/loading.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/json.css\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/css/card.css\"];\n var inline_js = [ function(Bokeh) {\n inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n }, function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, js_modules, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));",
+ "application/vnd.holoviews_load.v0+json": ""
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
- "application/javascript": [
- "\n",
- "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n",
- " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n",
- "}\n",
- "\n",
- "\n",
- " function JupyterCommManager() {\n",
- " }\n",
- "\n",
- " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n",
- " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
- " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
- " comm_manager.register_target(comm_id, function(comm) {\n",
- " comm.on_msg(msg_handler);\n",
- " });\n",
- " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
- " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n",
- " comm.onMsg = msg_handler;\n",
- " });\n",
- " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
- " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n",
- " var messages = comm.messages[Symbol.asyncIterator]();\n",
- " function processIteratorResult(result) {\n",
- " var message = result.value;\n",
- " console.log(message)\n",
- " var content = {data: message.data, comm_id};\n",
- " var buffers = []\n",
- " for (var buffer of message.buffers || []) {\n",
- " buffers.push(new DataView(buffer))\n",
- " }\n",
- " var metadata = message.metadata || {};\n",
- " var msg = {content, buffers, metadata}\n",
- " msg_handler(msg);\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " return messages.next().then(processIteratorResult);\n",
- " })\n",
- " }\n",
- " }\n",
- "\n",
- " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n",
- " if (comm_id in window.PyViz.comms) {\n",
- " return window.PyViz.comms[comm_id];\n",
- " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
- " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
- " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n",
- " if (msg_handler) {\n",
- " comm.on_msg(msg_handler);\n",
- " }\n",
- " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
- " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n",
- " comm.open();\n",
- " if (msg_handler) {\n",
- " comm.onMsg = msg_handler;\n",
- " }\n",
- " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
- " var comm_promise = google.colab.kernel.comms.open(comm_id)\n",
- " comm_promise.then((comm) => {\n",
- " window.PyViz.comms[comm_id] = comm;\n",
- " if (msg_handler) {\n",
- " var messages = comm.messages[Symbol.asyncIterator]();\n",
- " function processIteratorResult(result) {\n",
- " var message = result.value;\n",
- " var content = {data: message.data};\n",
- " var metadata = message.metadata || {comm_id};\n",
- " var msg = {content, metadata}\n",
- " msg_handler(msg);\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " return messages.next().then(processIteratorResult);\n",
- " }\n",
- " }) \n",
- " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n",
- " return comm_promise.then((comm) => {\n",
- " comm.send(data, metadata, buffers, disposeOnDone);\n",
- " });\n",
- " };\n",
- " var comm = {\n",
- " send: sendClosure\n",
- " };\n",
- " }\n",
- " window.PyViz.comms[comm_id] = comm;\n",
- " return comm;\n",
- " }\n",
- " window.PyViz.comm_manager = new JupyterCommManager();\n",
- " \n",
- "\n",
- "\n",
- "var JS_MIME_TYPE = 'application/javascript';\n",
- "var HTML_MIME_TYPE = 'text/html';\n",
- "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n",
- "var CLASS_NAME = 'output';\n",
- "\n",
- "/**\n",
- " * Render data to the DOM node\n",
- " */\n",
- "function render(props, node) {\n",
- " var div = document.createElement(\"div\");\n",
- " var script = document.createElement(\"script\");\n",
- " node.appendChild(div);\n",
- " node.appendChild(script);\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle when a new output is added\n",
- " */\n",
- "function handle_add_output(event, handle) {\n",
- " var output_area = handle.output_area;\n",
- " var output = handle.output;\n",
- " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n",
- " return\n",
- " }\n",
- " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
- " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
- " if (id !== undefined) {\n",
- " var nchildren = toinsert.length;\n",
- " var html_node = toinsert[nchildren-1].children[0];\n",
- " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n",
- " var scripts = [];\n",
- " var nodelist = html_node.querySelectorAll(\"script\");\n",
- " for (var i in nodelist) {\n",
- " if (nodelist.hasOwnProperty(i)) {\n",
- " scripts.push(nodelist[i])\n",
- " }\n",
- " }\n",
- "\n",
- " scripts.forEach( function (oldScript) {\n",
- " var newScript = document.createElement(\"script\");\n",
- " var attrs = [];\n",
- " var nodemap = oldScript.attributes;\n",
- " for (var j in nodemap) {\n",
- " if (nodemap.hasOwnProperty(j)) {\n",
- " attrs.push(nodemap[j])\n",
- " }\n",
- " }\n",
- " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n",
- " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n",
- " oldScript.parentNode.replaceChild(newScript, oldScript);\n",
- " });\n",
- " if (JS_MIME_TYPE in output.data) {\n",
- " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n",
- " }\n",
- " output_area._hv_plot_id = id;\n",
- " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n",
- " window.PyViz.plot_index[id] = Bokeh.index[id];\n",
- " } else {\n",
- " window.PyViz.plot_index[id] = null;\n",
- " }\n",
- " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
- " var bk_div = document.createElement(\"div\");\n",
- " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
- " var script_attrs = bk_div.children[0].attributes;\n",
- " for (var i = 0; i < script_attrs.length; i++) {\n",
- " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
- " }\n",
- " // store reference to server id on output_area\n",
- " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
- " }\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle when an output is cleared or removed\n",
- " */\n",
- "function handle_clear_output(event, handle) {\n",
- " var id = handle.cell.output_area._hv_plot_id;\n",
- " var server_id = handle.cell.output_area._bokeh_server_id;\n",
- " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n",
- " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n",
- " if (server_id !== null) {\n",
- " comm.send({event_type: 'server_delete', 'id': server_id});\n",
- " return;\n",
- " } else if (comm !== null) {\n",
- " comm.send({event_type: 'delete', 'id': id});\n",
- " }\n",
- " delete PyViz.plot_index[id];\n",
- " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n",
- " var doc = window.Bokeh.index[id].model.document\n",
- " doc.clear();\n",
- " const i = window.Bokeh.documents.indexOf(doc);\n",
- " if (i > -1) {\n",
- " window.Bokeh.documents.splice(i, 1);\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle kernel restart event\n",
- " */\n",
- "function handle_kernel_cleanup(event, handle) {\n",
- " delete PyViz.comms[\"hv-extension-comm\"];\n",
- " window.PyViz.plot_index = {}\n",
- "}\n",
- "\n",
- "/**\n",
- " * Handle update_display_data messages\n",
- " */\n",
- "function handle_update_output(event, handle) {\n",
- " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n",
- " handle_add_output(event, handle)\n",
- "}\n",
- "\n",
- "function register_renderer(events, OutputArea) {\n",
- " function append_mime(data, metadata, element) {\n",
- " // create a DOM node to render to\n",
- " var toinsert = this.create_output_subarea(\n",
- " metadata,\n",
- " CLASS_NAME,\n",
- " EXEC_MIME_TYPE\n",
- " );\n",
- " this.keyboard_manager.register_events(toinsert);\n",
- " // Render to node\n",
- " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
- " render(props, toinsert[0]);\n",
- " element.append(toinsert);\n",
- " return toinsert\n",
- " }\n",
- "\n",
- " events.on('output_added.OutputArea', handle_add_output);\n",
- " events.on('output_updated.OutputArea', handle_update_output);\n",
- " events.on('clear_output.CodeCell', handle_clear_output);\n",
- " events.on('delete.Cell', handle_clear_output);\n",
- " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n",
- "\n",
- " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
- " safe: true,\n",
- " index: 0\n",
- " });\n",
- "}\n",
- "\n",
- "if (window.Jupyter !== undefined) {\n",
- " try {\n",
- " var events = require('base/js/events');\n",
- " var OutputArea = require('notebook/js/outputarea').OutputArea;\n",
- " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
- " register_renderer(events, OutputArea);\n",
- " }\n",
- " } catch(err) {\n",
- " }\n",
- "}\n"
- ],
- "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n"
+ "application/javascript": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n",
+ "application/vnd.holoviews_load.v0+json": ""
},
"metadata": {},
"output_type": "display_data"
@@ -604,287 +194,8 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function now() {\n",
- " return new Date();\n",
- " }\n",
- "\n",
- " const force = true;\n",
- "\n",
- " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n",
- " root._bokeh_onload_callbacks = [];\n",
- " root._bokeh_is_loading = undefined;\n",
- " }\n",
- "\n",
- "const JS_MIME_TYPE = 'application/javascript';\n",
- " const HTML_MIME_TYPE = 'text/html';\n",
- " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n",
- " const CLASS_NAME = 'output_bokeh rendered_html';\n",
- "\n",
- " /**\n",
- " * Render data to the DOM node\n",
- " */\n",
- " function render(props, node) {\n",
- " const script = document.createElement(\"script\");\n",
- " node.appendChild(script);\n",
- " }\n",
- "\n",
- " /**\n",
- " * Handle when an output is cleared or removed\n",
- " */\n",
- " function handleClearOutput(event, handle) {\n",
- " const cell = handle.cell;\n",
- "\n",
- " const id = cell.output_area._bokeh_element_id;\n",
- " const server_id = cell.output_area._bokeh_server_id;\n",
- " // Clean up Bokeh references\n",
- " if (id != null && id in Bokeh.index) {\n",
- " Bokeh.index[id].model.document.clear();\n",
- " delete Bokeh.index[id];\n",
- " }\n",
- "\n",
- " if (server_id !== undefined) {\n",
- " // Clean up Bokeh references\n",
- " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n",
- " cell.notebook.kernel.execute(cmd_clean, {\n",
- " iopub: {\n",
- " output: function(msg) {\n",
- " const id = msg.content.text.trim();\n",
- " if (id in Bokeh.index) {\n",
- " Bokeh.index[id].model.document.clear();\n",
- " delete Bokeh.index[id];\n",
- " }\n",
- " }\n",
- " }\n",
- " });\n",
- " // Destroy server and session\n",
- " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n",
- " cell.notebook.kernel.execute(cmd_destroy);\n",
- " }\n",
- " }\n",
- "\n",
- " /**\n",
- " * Handle when a new output is added\n",
- " */\n",
- " function handleAddOutput(event, handle) {\n",
- " const output_area = handle.output_area;\n",
- " const output = handle.output;\n",
- "\n",
- " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n",
- " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n",
- " return\n",
- " }\n",
- "\n",
- " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
- "\n",
- " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n",
- " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n",
- " // store reference to embed id on output_area\n",
- " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
- " }\n",
- " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
- " const bk_div = document.createElement(\"div\");\n",
- " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
- " const script_attrs = bk_div.children[0].attributes;\n",
- " for (let i = 0; i < script_attrs.length; i++) {\n",
- " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
- " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n",
- " }\n",
- " // store reference to server id on output_area\n",
- " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
- " }\n",
- " }\n",
- "\n",
- " function register_renderer(events, OutputArea) {\n",
- "\n",
- " function append_mime(data, metadata, element) {\n",
- " // create a DOM node to render to\n",
- " const toinsert = this.create_output_subarea(\n",
- " metadata,\n",
- " CLASS_NAME,\n",
- " EXEC_MIME_TYPE\n",
- " );\n",
- " this.keyboard_manager.register_events(toinsert);\n",
- " // Render to node\n",
- " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
- " render(props, toinsert[toinsert.length - 1]);\n",
- " element.append(toinsert);\n",
- " return toinsert\n",
- " }\n",
- "\n",
- " /* Handle when an output is cleared or removed */\n",
- " events.on('clear_output.CodeCell', handleClearOutput);\n",
- " events.on('delete.Cell', handleClearOutput);\n",
- "\n",
- " /* Handle when a new output is added */\n",
- " events.on('output_added.OutputArea', handleAddOutput);\n",
- "\n",
- " /**\n",
- " * Register the mime type and append_mime function with output_area\n",
- " */\n",
- " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
- " /* Is output safe? */\n",
- " safe: true,\n",
- " /* Index of renderer in `output_area.display_order` */\n",
- " index: 0\n",
- " });\n",
- " }\n",
- "\n",
- " // register the mime type if in Jupyter Notebook environment and previously unregistered\n",
- " if (root.Jupyter !== undefined) {\n",
- " const events = require('base/js/events');\n",
- " const OutputArea = require('notebook/js/outputarea').OutputArea;\n",
- "\n",
- " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
- " register_renderer(events, OutputArea);\n",
- " }\n",
- " }\n",
- " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n",
- " root._bokeh_timeout = Date.now() + 5000;\n",
- " root._bokeh_failed_load = false;\n",
- " }\n",
- "\n",
- " const NB_LOAD_WARNING = {'data': {'text/html':\n",
- " \"\\n\"+\n",
- " \"
\\n\"+\n",
- " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
- " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
- " \"
\\n\"+\n",
- " \"
\\n\"+\n",
- " \"re-rerun `output_notebook()` to attempt to load from CDN again, or \\n\"+\n",
- " \"use INLINE resources instead, as so: \\n\"+\n",
- " \" \\n\"+\n",
- " \"
\\n\"+\n",
- " \"from bokeh.resources import INLINE\\n\"+\n",
- " \"output_notebook(resources=INLINE)\\n\"+\n",
- " \"\\n\"+\n",
- " \"
\"}};\n",
- "\n",
- " function display_loaded() {\n",
- " const el = document.getElementById(\"1150\");\n",
- " if (el != null) {\n",
- " el.textContent = \"BokehJS is loading...\";\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " if (el != null) {\n",
- " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n",
- " }\n",
- " } else if (Date.now() < root._bokeh_timeout) {\n",
- " setTimeout(display_loaded, 100)\n",
- " }\n",
- " }\n",
- "\n",
- " function run_callbacks() {\n",
- " try {\n",
- " root._bokeh_onload_callbacks.forEach(function(callback) {\n",
- " if (callback != null)\n",
- " callback();\n",
- " });\n",
- " } finally {\n",
- " delete root._bokeh_onload_callbacks\n",
- " }\n",
- " console.debug(\"Bokeh: all callbacks have finished\");\n",
- " }\n",
- "\n",
- " function load_libs(css_urls, js_urls, callback) {\n",
- " if (css_urls == null) css_urls = [];\n",
- " if (js_urls == null) js_urls = [];\n",
- "\n",
- " root._bokeh_onload_callbacks.push(callback);\n",
- " if (root._bokeh_is_loading > 0) {\n",
- " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
- " return null;\n",
- " }\n",
- " if (js_urls == null || js_urls.length === 0) {\n",
- " run_callbacks();\n",
- " return null;\n",
- " }\n",
- " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
- " root._bokeh_is_loading = css_urls.length + js_urls.length;\n",
- "\n",
- " function on_load() {\n",
- " root._bokeh_is_loading--;\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
- " run_callbacks()\n",
- " }\n",
- " }\n",
- "\n",
- " function on_error(url) {\n",
- " console.error(\"failed to load \" + url);\n",
- " }\n",
- "\n",
- " for (let i = 0; i < css_urls.length; i++) {\n",
- " const url = css_urls[i];\n",
- " const element = document.createElement(\"link\");\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error.bind(null, url);\n",
- " element.rel = \"stylesheet\";\n",
- " element.type = \"text/css\";\n",
- " element.href = url;\n",
- " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " for (let i = 0; i < js_urls.length; i++) {\n",
- " const url = js_urls[i];\n",
- " const element = document.createElement('script');\n",
- " element.onload = on_load;\n",
- " element.onerror = on_error.bind(null, url);\n",
- " element.async = false;\n",
- " element.src = url;\n",
- " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
- " document.head.appendChild(element);\n",
- " }\n",
- " };\n",
- "\n",
- " function inject_raw_css(css) {\n",
- " const element = document.createElement(\"style\");\n",
- " element.appendChild(document.createTextNode(css));\n",
- " document.body.appendChild(element);\n",
- " }\n",
- "\n",
- " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n",
- " const css_urls = [];\n",
- "\n",
- " const inline_js = [ function(Bokeh) {\n",
- " Bokeh.set_log_level(\"info\");\n",
- " },\n",
- "function(Bokeh) {\n",
- " }\n",
- " ];\n",
- "\n",
- " function run_inline_js() {\n",
- " if (root.Bokeh !== undefined || force === true) {\n",
- " for (let i = 0; i < inline_js.length; i++) {\n",
- " inline_js[i].call(root, root.Bokeh);\n",
- " }\n",
- "if (force === true) {\n",
- " display_loaded();\n",
- " }} else if (Date.now() < root._bokeh_timeout) {\n",
- " setTimeout(run_inline_js, 100);\n",
- " } else if (!root._bokeh_failed_load) {\n",
- " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
- " root._bokeh_failed_load = true;\n",
- " } else if (force !== true) {\n",
- " const cell = $(document.getElementById(\"1150\")).parents('.cell').data().cell;\n",
- " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n",
- " }\n",
- " }\n",
- "\n",
- " if (root._bokeh_is_loading === 0) {\n",
- " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
- " run_inline_js();\n",
- " } else {\n",
- " load_libs(css_urls, js_urls, function() {\n",
- " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
- " run_inline_js();\n",
- " });\n",
- " }\n",
- "}(window));"
- ],
- "application/vnd.bokehjs_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"\\n\"+\n \"
\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"
\\n\"+\n \"
\\n\"+\n \"re-rerun `output_notebook()` to attempt to load from CDN again, or \\n\"+\n \"use INLINE resources instead, as so: \\n\"+\n \" \\n\"+\n \"
\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n const el = document.getElementById(\"1150\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\nif (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(\"1150\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));"
+ "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\nconst JS_MIME_TYPE = 'application/javascript';\n const HTML_MIME_TYPE = 'text/html';\n const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n const CLASS_NAME = 'output_bokeh rendered_html';\n\n /**\n * Render data to the DOM node\n */\n function render(props, node) {\n const script = document.createElement(\"script\");\n node.appendChild(script);\n }\n\n /**\n * Handle when an output is cleared or removed\n */\n function handleClearOutput(event, handle) {\n const cell = handle.cell;\n\n const id = cell.output_area._bokeh_element_id;\n const server_id = cell.output_area._bokeh_server_id;\n // Clean up Bokeh references\n if (id != null && id in Bokeh.index) {\n Bokeh.index[id].model.document.clear();\n delete Bokeh.index[id];\n }\n\n if (server_id !== undefined) {\n // Clean up Bokeh references\n const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n cell.notebook.kernel.execute(cmd_clean, {\n iopub: {\n output: function(msg) {\n const id = msg.content.text.trim();\n if (id in Bokeh.index) {\n Bokeh.index[id].model.document.clear();\n delete Bokeh.index[id];\n }\n }\n }\n });\n // Destroy server and session\n const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n cell.notebook.kernel.execute(cmd_destroy);\n }\n }\n\n /**\n * Handle when a new output is added\n */\n function handleAddOutput(event, handle) {\n const output_area = handle.output_area;\n const output = handle.output;\n\n // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n return\n }\n\n const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n\n if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n // store reference to embed id on output_area\n output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n }\n if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n const bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n const script_attrs = bk_div.children[0].attributes;\n for (let i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n }\n\n function register_renderer(events, OutputArea) {\n\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n const toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[toinsert.length - 1]);\n element.append(toinsert);\n return toinsert\n }\n\n /* Handle when an output is cleared or removed */\n events.on('clear_output.CodeCell', handleClearOutput);\n events.on('delete.Cell', handleClearOutput);\n\n /* Handle when a new output is added */\n events.on('output_added.OutputArea', handleAddOutput);\n\n /**\n * Register the mime type and append_mime function with output_area\n */\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n /* Is output safe? */\n safe: true,\n /* Index of renderer in `output_area.display_order` */\n index: 0\n });\n }\n\n // register the mime type if in Jupyter Notebook environment and previously unregistered\n if (root.Jupyter !== undefined) {\n const events = require('base/js/events');\n const OutputArea = require('notebook/js/outputarea').OutputArea;\n\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n }\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"\\n\"+\n \"
\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"
\\n\"+\n \"
\\n\"+\n \"re-rerun `output_notebook()` to attempt to load from CDN again, or \\n\"+\n \"use INLINE resources instead, as so: \\n\"+\n \" \\n\"+\n \"
\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n const el = document.getElementById(\"1150\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.3.min.js\", \"https://unpkg.com/@holoviz/panel@0.13.1/dist/panel.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\nif (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(\"1150\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));",
+ "application/vnd.bokehjs_load.v0+json": ""
},
"metadata": {},
"output_type": "display_data"
@@ -2426,32 +1737,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"cb133ec6-d913-49d7-8b55-dbce4731754b\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"38388\",\"attributes\":{\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"38398\",\"attributes\":{\"start\":0}},\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"38394\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"TapTool\",\"id\":\"38417\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"38418\"},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"38419\",\"attributes\":{\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"38420\",\"attributes\":{\"left_units\":\"canvas\",\"bottom_units\":\"canvas\",\"fill_alpha\":0.5,\"right_units\":\"canvas\",\"line_color\":\"black\",\"fill_color\":\"lightgrey\",\"line_alpha\":1.0,\"line_dash\":[4,4],\"top_units\":\"canvas\",\"visible\":false,\"line_width\":2,\"level\":\"overlay\",\"syncable\":false}}}},{\"type\":\"object\",\"name\":\"UndoTool\",\"id\":\"38421\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"38422\"},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"38423\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"38387\",\"attributes\":{\"redirect\":\"https://helmholtz-metadaten.de/en/pages/structure-governance\",\"description\":\"For more information about the HMC survey click here.\"}},{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"38776\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38442\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38439\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38433\",\"attributes\":{\"value\":-0.6000000000000001,\"range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"38396\",\"attributes\":{\"factors\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"],\"range_padding\":0.1}}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38440\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38433\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38441\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38433\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38438\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38433\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38443\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38444\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"38384\",\"attributes\":{\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"38386\"},\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"38385\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"All\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAACCAAAAgAAAAJQAAAAQAQAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"careerLevel\",[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]],[\"Engineering Science\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAvAAAAHgAAADQAAACGAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Physics\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAhAAAAJgAAACcAAAA5AAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Life Science\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAcAAAAHQAAABsAAAAhAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Earth Science\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAIAAAACwAAABIAAAAgAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Chemistry\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAJAAAADAAAAAYAAAAEAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Other\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAABAAAAAgAAAAMAAAAGAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Psychology\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAADAAAAAgAAAAMAAAACAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Mathematics\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAABAAAABAAAAAAAAAAEAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}]]}}},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38437\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38433\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38469\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38466\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38460\",\"attributes\":{\"value\":-0.45000000000000007,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38467\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38460\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38468\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38460\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38465\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38460\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38470\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38471\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38464\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38460\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38498\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38495\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38489\",\"attributes\":{\"value\":-0.30000000000000004,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38496\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38489\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38497\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38489\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38494\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38489\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38499\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38500\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38493\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38489\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38530\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38527\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38521\",\"attributes\":{\"value\":-0.15000000000000002,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38528\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38521\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38529\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38521\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38526\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38521\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38531\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38532\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38525\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38521\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38565\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38562\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38556\",\"attributes\":{\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38563\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38556\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38564\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38556\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38561\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38556\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38566\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38567\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38560\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38556\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38603\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38600\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38594\",\"attributes\":{\"value\":0.15000000000000002,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38601\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38594\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38602\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38594\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38599\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38594\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38604\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38605\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38598\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38594\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38644\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38641\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38635\",\"attributes\":{\"value\":0.30000000000000004,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38642\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38635\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38643\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38635\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38640\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38635\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38645\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38646\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38639\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38635\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38688\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38685\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38679\",\"attributes\":{\"value\":0.4500000000000002,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38686\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38679\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38687\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38679\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38684\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38679\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38689\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38690\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38683\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38679\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38735\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38732\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38726\",\"attributes\":{\"value\":0.6000000000000001,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38733\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38726\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38734\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38726\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38731\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38726\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38736\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38737\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38730\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38726\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"}}}}}],\"tooltips\":[[\"careerLevel\",\"@careerLevel\"],[\"All\",\"@{All}\"],[\"Engineering Science\",\"@{Engineering Science}\"],[\"Physics\",\"@{Physics}\"],[\"Life Science\",\"@{Life Science}\"],[\"Earth Science\",\"@{Earth Science}\"],[\"Chemistry\",\"@{Chemistry}\"],[\"Other\",\"@{Other}\"],[\"Psychology\",\"@{Psychology}\"],[\"Mathematics\",\"@{Mathematics}\"]]}}],\"logo\":null}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"38410\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"38412\"},\"axis_label\":\"Number of answers\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"38411\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"38413\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"below\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"38404\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"38406\"},\"axis_label\":\"\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"38405\"},\"major_label_orientation\":1,\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"38407\"}}}],\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"38402\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"38409\",\"attributes\":{\"axis\":{\"id\":\"38404\"},\"grid_line_color\":null}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"38416\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"38410\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"38458\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38459\",\"attributes\":{\"renderers\":[{\"id\":\"38442\"}],\"label\":{\"type\":\"value\",\"value\":\"All\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38488\",\"attributes\":{\"renderers\":[{\"id\":\"38469\"}],\"label\":{\"type\":\"value\",\"value\":\"Engineering Science\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38520\",\"attributes\":{\"renderers\":[{\"id\":\"38498\"}],\"label\":{\"type\":\"value\",\"value\":\"Physics\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38555\",\"attributes\":{\"renderers\":[{\"id\":\"38530\"}],\"label\":{\"type\":\"value\",\"value\":\"Life Science\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38593\",\"attributes\":{\"renderers\":[{\"id\":\"38565\"}],\"label\":{\"type\":\"value\",\"value\":\"Earth Science\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38634\",\"attributes\":{\"renderers\":[{\"id\":\"38603\"}],\"label\":{\"type\":\"value\",\"value\":\"Chemistry\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38678\",\"attributes\":{\"renderers\":[{\"id\":\"38644\"}],\"label\":{\"type\":\"value\",\"value\":\"Other\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38725\",\"attributes\":{\"renderers\":[{\"id\":\"38688\"}],\"label\":{\"type\":\"value\",\"value\":\"Psychology\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38775\",\"attributes\":{\"renderers\":[{\"id\":\"38735\"}],\"label\":{\"type\":\"value\",\"value\":\"Mathematics\"}}}],\"location\":\"top_right\",\"click_policy\":\"hide\",\"orientation\":\"vertical\"}}],\"toolbar_location\":\"above\",\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"38389\",\"attributes\":{\"text\":\"this is a title\"}},\"x_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"38400\"},\"x_range\":{\"id\":\"38396\"},\"width\":1200,\"renderers\":[{\"id\":\"38442\"},{\"id\":\"38469\"},{\"id\":\"38498\"},{\"id\":\"38530\"},{\"id\":\"38565\"},{\"id\":\"38603\"},{\"id\":\"38644\"},{\"id\":\"38688\"},{\"id\":\"38735\"}],\"height\":550}}]}};\n",
- " const render_items = [{\"docid\":\"cb133ec6-d913-49d7-8b55-dbce4731754b\",\"roots\":{\"38388\":\"aa654e04-abc5-4f39-9e7d-084f7db36499\"},\"root_ids\":[\"38388\"]}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"cb133ec6-d913-49d7-8b55-dbce4731754b\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"38388\",\"attributes\":{\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"38398\",\"attributes\":{\"start\":0}},\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"38394\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"TapTool\",\"id\":\"38417\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"38418\"},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"38419\",\"attributes\":{\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"38420\",\"attributes\":{\"left_units\":\"canvas\",\"bottom_units\":\"canvas\",\"fill_alpha\":0.5,\"right_units\":\"canvas\",\"line_color\":\"black\",\"fill_color\":\"lightgrey\",\"line_alpha\":1.0,\"line_dash\":[4,4],\"top_units\":\"canvas\",\"visible\":false,\"line_width\":2,\"level\":\"overlay\",\"syncable\":false}}}},{\"type\":\"object\",\"name\":\"UndoTool\",\"id\":\"38421\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"38422\"},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"38423\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"38387\",\"attributes\":{\"redirect\":\"https://helmholtz-metadaten.de/en/pages/structure-governance\",\"description\":\"For more information about the HMC survey click here.\"}},{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"38776\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38442\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38439\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38433\",\"attributes\":{\"value\":-0.6000000000000001,\"range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"38396\",\"attributes\":{\"factors\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"],\"range_padding\":0.1}}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38440\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38433\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38441\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38433\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38438\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38433\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38443\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38444\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"38384\",\"attributes\":{\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"38386\"},\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"38385\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"All\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAACCAAAAgAAAAJQAAAAQAQAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"careerLevel\",[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]],[\"Engineering Science\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAvAAAAHgAAADQAAACGAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Physics\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAhAAAAJgAAACcAAAA5AAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Life Science\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAcAAAAHQAAABsAAAAhAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Earth Science\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAIAAAACwAAABIAAAAgAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Chemistry\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAAJAAAADAAAAAYAAAAEAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Other\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAABAAAAAgAAAAMAAAAGAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Psychology\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAADAAAAAgAAAAMAAAACAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Mathematics\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAAAAAABAAAABAAAAAAAAAAEAAAAAAAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}]]}}},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38437\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#3182bd\"},\"top\":{\"type\":\"field\",\"field\":\"All\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38433\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#3182bd\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38469\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38466\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38460\",\"attributes\":{\"value\":-0.45000000000000007,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38467\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38460\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38468\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38460\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38465\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38460\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38470\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38471\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38464\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#6baed6\"},\"top\":{\"type\":\"field\",\"field\":\"Engineering Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38460\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#6baed6\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38498\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38495\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38489\",\"attributes\":{\"value\":-0.30000000000000004,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38496\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38489\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38497\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38489\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38494\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38489\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38499\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38500\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38493\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"},\"top\":{\"type\":\"field\",\"field\":\"Physics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38489\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#9ecae1\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38530\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38527\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38521\",\"attributes\":{\"value\":-0.15000000000000002,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38528\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38521\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38529\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38521\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38526\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38521\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38531\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38532\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38525\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"},\"top\":{\"type\":\"field\",\"field\":\"Life Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38521\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#c6dbef\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38565\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38562\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38556\",\"attributes\":{\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38563\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38556\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38564\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38556\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38561\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38556\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38566\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38567\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38560\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#e6550d\"},\"top\":{\"type\":\"field\",\"field\":\"Earth Science\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38556\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#e6550d\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38603\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38600\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38594\",\"attributes\":{\"value\":0.15000000000000002,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38601\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38594\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38602\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38594\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38599\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38594\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38604\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38605\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38598\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"},\"top\":{\"type\":\"field\",\"field\":\"Chemistry\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38594\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fd8d3c\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38644\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38641\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38635\",\"attributes\":{\"value\":0.30000000000000004,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38642\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38635\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38643\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38635\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38640\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38635\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38645\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38646\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38639\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"},\"top\":{\"type\":\"field\",\"field\":\"Other\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38635\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdae6b\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38688\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38685\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38679\",\"attributes\":{\"value\":0.4500000000000002,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38686\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38679\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38687\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38679\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38684\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38679\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38689\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38690\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38683\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"},\"top\":{\"type\":\"field\",\"field\":\"Psychology\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38679\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#fdd0a2\"}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"38735\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38732\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"38726\",\"attributes\":{\"value\":0.6000000000000001,\"range\":{\"id\":\"38396\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38733\",\"attributes\":{\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38726\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38734\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38726\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38731\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38726\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"38736\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"38737\"}}},\"data_source\":{\"id\":\"38384\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"38730\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.5},\"line_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"width\":{\"type\":\"value\",\"value\":0.1},\"fill_color\":{\"type\":\"value\",\"value\":\"#31a354\"},\"top\":{\"type\":\"field\",\"field\":\"Mathematics\"},\"x\":{\"type\":\"field\",\"field\":\"careerLevel\",\"transform\":{\"id\":\"38726\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#31a354\"}}}}}],\"tooltips\":[[\"careerLevel\",\"@careerLevel\"],[\"All\",\"@{All}\"],[\"Engineering Science\",\"@{Engineering Science}\"],[\"Physics\",\"@{Physics}\"],[\"Life Science\",\"@{Life Science}\"],[\"Earth Science\",\"@{Earth Science}\"],[\"Chemistry\",\"@{Chemistry}\"],[\"Other\",\"@{Other}\"],[\"Psychology\",\"@{Psychology}\"],[\"Mathematics\",\"@{Mathematics}\"]]}}],\"logo\":null}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"38410\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"38412\"},\"axis_label\":\"Number of answers\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"38411\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"38413\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"below\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"38404\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"38406\"},\"axis_label\":\"\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"38405\"},\"major_label_orientation\":1,\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"38407\"}}}],\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"38402\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"38409\",\"attributes\":{\"axis\":{\"id\":\"38404\"},\"grid_line_color\":null}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"38416\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"38410\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"38458\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38459\",\"attributes\":{\"renderers\":[{\"id\":\"38442\"}],\"label\":{\"type\":\"value\",\"value\":\"All\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38488\",\"attributes\":{\"renderers\":[{\"id\":\"38469\"}],\"label\":{\"type\":\"value\",\"value\":\"Engineering Science\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38520\",\"attributes\":{\"renderers\":[{\"id\":\"38498\"}],\"label\":{\"type\":\"value\",\"value\":\"Physics\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38555\",\"attributes\":{\"renderers\":[{\"id\":\"38530\"}],\"label\":{\"type\":\"value\",\"value\":\"Life Science\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38593\",\"attributes\":{\"renderers\":[{\"id\":\"38565\"}],\"label\":{\"type\":\"value\",\"value\":\"Earth Science\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38634\",\"attributes\":{\"renderers\":[{\"id\":\"38603\"}],\"label\":{\"type\":\"value\",\"value\":\"Chemistry\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38678\",\"attributes\":{\"renderers\":[{\"id\":\"38644\"}],\"label\":{\"type\":\"value\",\"value\":\"Other\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38725\",\"attributes\":{\"renderers\":[{\"id\":\"38688\"}],\"label\":{\"type\":\"value\",\"value\":\"Psychology\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"38775\",\"attributes\":{\"renderers\":[{\"id\":\"38735\"}],\"label\":{\"type\":\"value\",\"value\":\"Mathematics\"}}}],\"location\":\"top_right\",\"click_policy\":\"hide\",\"orientation\":\"vertical\"}}],\"toolbar_location\":\"above\",\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"38389\",\"attributes\":{\"text\":\"this is a title\"}},\"x_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"38400\"},\"x_range\":{\"id\":\"38396\"},\"width\":1200,\"renderers\":[{\"id\":\"38442\"},{\"id\":\"38469\"},{\"id\":\"38498\"},{\"id\":\"38530\"},{\"id\":\"38565\"},{\"id\":\"38603\"},{\"id\":\"38644\"},{\"id\":\"38688\"},{\"id\":\"38735\"}],\"height\":550}}]}};\n const render_items = [{\"docid\":\"cb133ec6-d913-49d7-8b55-dbce4731754b\",\"roots\":{\"38388\":\"aa654e04-abc5-4f39-9e7d-084f7db36499\"},\"root_ids\":[\"38388\"]}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -2779,32 +2065,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"84a04889-f987-43e6-ab22-efd5a12d02e3\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"10085\"}],\"center\":[{\"id\":\"10088\"},{\"id\":\"10092\"}],\"left\":[{\"id\":\"10089\"}],\"renderers\":[{\"id\":\"10098\"},{\"id\":\"10104\"},{\"id\":\"10110\"},{\"id\":\"10116\"},{\"id\":\"10122\"},{\"id\":\"10128\"},{\"id\":\"10134\"},{\"id\":\"10140\"},{\"id\":\"10146\"}],\"title\":{\"id\":\"10075\"},\"toolbar\":{\"id\":\"10093\"},\"toolbar_location\":\"above\",\"width\":1600,\"x_range\":{\"id\":\"10077\"},\"x_scale\":{\"id\":\"10081\"},\"y_range\":{\"id\":\"10079\"},\"y_scale\":{\"id\":\"10083\"}},\"id\":\"10074\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"data\":{\"top\":[0,0,3,2,3,2,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10437\"},\"selection_policy\":{\"id\":\"10436\"}},\"id\":\"10136\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"10130\"}},\"id\":\"10135\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#e2e2e2\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10114\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,28,29,27,33,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10429\"},\"selection_policy\":{\"id\":\"10428\"}},\"id\":\"10112\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#e2e2e2\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10115\",\"type\":\"VBar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10118\"},\"glyph\":{\"id\":\"10119\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10121\"},\"nonselection_glyph\":{\"id\":\"10120\"},\"view\":{\"id\":\"10123\"}},\"id\":\"10122\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#c9d9d3\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10109\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,9,12,6,4,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10433\"},\"selection_policy\":{\"id\":\"10432\"}},\"id\":\"10124\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10106\"},\"glyph\":{\"id\":\"10107\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10109\"},\"nonselection_glyph\":{\"id\":\"10108\"},\"view\":{\"id\":\"10111\"}},\"id\":\"10110\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"10118\"}},\"id\":\"10123\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"10436\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ddb7b1\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10125\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10428\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10136\"},\"glyph\":{\"id\":\"10137\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10139\"},\"nonselection_glyph\":{\"id\":\"10138\"},\"view\":{\"id\":\"10141\"}},\"id\":\"10140\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10437\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"value\":\"#cc7878\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10131\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10429\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#ddb7b1\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10127\",\"type\":\"VBar\"},{\"attributes\":{\"fill_color\":{\"value\":\"#933b41\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10137\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,8,11,18,32,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10431\"},\"selection_policy\":{\"id\":\"10430\"}},\"id\":\"10118\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data\":{\"top\":[0,0,1,2,3,6,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10435\"},\"selection_policy\":{\"id\":\"10434\"}},\"id\":\"10130\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"10136\"}},\"id\":\"10141\",\"type\":\"CDSView\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10124\"},\"glyph\":{\"id\":\"10125\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10127\"},\"nonselection_glyph\":{\"id\":\"10126\"},\"view\":{\"id\":\"10129\"}},\"id\":\"10128\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#e2e2e2\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10113\",\"type\":\"VBar\"},{\"attributes\":{\"source\":{\"id\":\"10124\"}},\"id\":\"10129\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#cc7878\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10133\",\"type\":\"VBar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#cc7878\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10132\",\"type\":\"VBar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#dfccce\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10120\",\"type\":\"VBar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#933b41\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10139\",\"type\":\"VBar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10112\"},\"glyph\":{\"id\":\"10113\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10115\"},\"nonselection_glyph\":{\"id\":\"10114\"},\"view\":{\"id\":\"10117\"}},\"id\":\"10116\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"10112\"}},\"id\":\"10117\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"10438\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"value\":\"#dfccce\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10119\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10430\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#dfccce\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10121\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10439\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"10106\"}},\"id\":\"10111\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#ddb7b1\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10126\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10431\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#933b41\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10138\",\"type\":\"VBar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10130\"},\"glyph\":{\"id\":\"10131\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10133\"},\"nonselection_glyph\":{\"id\":\"10132\"},\"view\":{\"id\":\"10135\"}},\"id\":\"10134\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#c9d9d3\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10108\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10432\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"10433\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#550b1d\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10144\",\"type\":\"VBar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#550b1d\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10145\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,1,4,0,4,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10439\"},\"selection_policy\":{\"id\":\"10438\"}},\"id\":\"10142\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#550b1d\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10143\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10434\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"10435\",\"type\":\"Selection\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10142\"},\"glyph\":{\"id\":\"10143\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10145\"},\"nonselection_glyph\":{\"id\":\"10144\"},\"view\":{\"id\":\"10147\"}},\"id\":\"10146\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10417\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"10418\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"10420\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"10421\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"10427\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"10422\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"10423\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"10077\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#75968f\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10095\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10081\",\"type\":\"LinearScale\"},{\"attributes\":{\"axis_label\":\"Number of answers\",\"coordinates\":null,\"formatter\":{\"id\":\"10417\"},\"group\":null,\"major_label_policy\":{\"id\":\"10418\"},\"ticker\":{\"id\":\"10090\"}},\"id\":\"10089\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"10079\",\"type\":\"DataRange1d\"},{\"attributes\":{\"axis_label\":\"Answers\",\"coordinates\":null,\"formatter\":{\"id\":\"10420\"},\"group\":null,\"major_label_policy\":{\"id\":\"10421\"},\"ticker\":{\"id\":\"10086\"}},\"id\":\"10085\",\"type\":\"LinearAxis\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"10075\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"10083\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"10086\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"10085\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"10088\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10424\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"axis\":{\"id\":\"10089\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"10092\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10090\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"10425\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"10142\"}},\"id\":\"10147\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#75968f\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10096\",\"type\":\"VBar\"},{\"attributes\":{\"logo\":null},\"id\":\"10093\",\"type\":\"Toolbar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#75968f\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10097\",\"type\":\"VBar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10094\"},\"glyph\":{\"id\":\"10095\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10097\"},\"nonselection_glyph\":{\"id\":\"10096\"},\"view\":{\"id\":\"10099\"}},\"id\":\"10098\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a5bab7\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10101\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,130,128,148,272,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10423\"},\"selection_policy\":{\"id\":\"10422\"}},\"id\":\"10094\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#a5bab7\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10102\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,47,30,52,134,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10425\"},\"selection_policy\":{\"id\":\"10424\"}},\"id\":\"10100\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data\":{\"top\":[0,0,33,38,39,57,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10427\"},\"selection_policy\":{\"id\":\"10426\"}},\"id\":\"10106\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10100\"},\"glyph\":{\"id\":\"10101\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10103\"},\"nonselection_glyph\":{\"id\":\"10102\"},\"view\":{\"id\":\"10105\"}},\"id\":\"10104\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"10094\"}},\"id\":\"10099\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"10426\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#a5bab7\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10103\",\"type\":\"VBar\"},{\"attributes\":{\"fill_color\":{\"value\":\"#c9d9d3\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10107\",\"type\":\"VBar\"},{\"attributes\":{\"source\":{\"id\":\"10100\"}},\"id\":\"10105\",\"type\":\"CDSView\"}],\"root_ids\":[\"10074\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"84a04889-f987-43e6-ab22-efd5a12d02e3\",\"root_ids\":[\"10074\"],\"roots\":{\"10074\":\"dadade7a-26ed-489a-9e84-a90f788095b9\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"84a04889-f987-43e6-ab22-efd5a12d02e3\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"10085\"}],\"center\":[{\"id\":\"10088\"},{\"id\":\"10092\"}],\"left\":[{\"id\":\"10089\"}],\"renderers\":[{\"id\":\"10098\"},{\"id\":\"10104\"},{\"id\":\"10110\"},{\"id\":\"10116\"},{\"id\":\"10122\"},{\"id\":\"10128\"},{\"id\":\"10134\"},{\"id\":\"10140\"},{\"id\":\"10146\"}],\"title\":{\"id\":\"10075\"},\"toolbar\":{\"id\":\"10093\"},\"toolbar_location\":\"above\",\"width\":1600,\"x_range\":{\"id\":\"10077\"},\"x_scale\":{\"id\":\"10081\"},\"y_range\":{\"id\":\"10079\"},\"y_scale\":{\"id\":\"10083\"}},\"id\":\"10074\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"data\":{\"top\":[0,0,3,2,3,2,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10437\"},\"selection_policy\":{\"id\":\"10436\"}},\"id\":\"10136\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"10130\"}},\"id\":\"10135\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#e2e2e2\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10114\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,28,29,27,33,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10429\"},\"selection_policy\":{\"id\":\"10428\"}},\"id\":\"10112\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#e2e2e2\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10115\",\"type\":\"VBar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10118\"},\"glyph\":{\"id\":\"10119\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10121\"},\"nonselection_glyph\":{\"id\":\"10120\"},\"view\":{\"id\":\"10123\"}},\"id\":\"10122\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#c9d9d3\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10109\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,9,12,6,4,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10433\"},\"selection_policy\":{\"id\":\"10432\"}},\"id\":\"10124\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10106\"},\"glyph\":{\"id\":\"10107\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10109\"},\"nonselection_glyph\":{\"id\":\"10108\"},\"view\":{\"id\":\"10111\"}},\"id\":\"10110\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"10118\"}},\"id\":\"10123\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"10436\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ddb7b1\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10125\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10428\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10136\"},\"glyph\":{\"id\":\"10137\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10139\"},\"nonselection_glyph\":{\"id\":\"10138\"},\"view\":{\"id\":\"10141\"}},\"id\":\"10140\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10437\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"value\":\"#cc7878\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10131\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10429\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#ddb7b1\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10127\",\"type\":\"VBar\"},{\"attributes\":{\"fill_color\":{\"value\":\"#933b41\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10137\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,8,11,18,32,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10431\"},\"selection_policy\":{\"id\":\"10430\"}},\"id\":\"10118\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data\":{\"top\":[0,0,1,2,3,6,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10435\"},\"selection_policy\":{\"id\":\"10434\"}},\"id\":\"10130\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"10136\"}},\"id\":\"10141\",\"type\":\"CDSView\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10124\"},\"glyph\":{\"id\":\"10125\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10127\"},\"nonselection_glyph\":{\"id\":\"10126\"},\"view\":{\"id\":\"10129\"}},\"id\":\"10128\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#e2e2e2\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10113\",\"type\":\"VBar\"},{\"attributes\":{\"source\":{\"id\":\"10124\"}},\"id\":\"10129\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#cc7878\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10133\",\"type\":\"VBar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#cc7878\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10132\",\"type\":\"VBar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#dfccce\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10120\",\"type\":\"VBar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#933b41\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10139\",\"type\":\"VBar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10112\"},\"glyph\":{\"id\":\"10113\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10115\"},\"nonselection_glyph\":{\"id\":\"10114\"},\"view\":{\"id\":\"10117\"}},\"id\":\"10116\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"10112\"}},\"id\":\"10117\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"10438\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"value\":\"#dfccce\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10119\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10430\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#dfccce\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10121\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10439\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"10106\"}},\"id\":\"10111\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#ddb7b1\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10126\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10431\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#933b41\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10138\",\"type\":\"VBar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10130\"},\"glyph\":{\"id\":\"10131\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10133\"},\"nonselection_glyph\":{\"id\":\"10132\"},\"view\":{\"id\":\"10135\"}},\"id\":\"10134\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#c9d9d3\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10108\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10432\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"10433\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#550b1d\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10144\",\"type\":\"VBar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#550b1d\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10145\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,1,4,0,4,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10439\"},\"selection_policy\":{\"id\":\"10438\"}},\"id\":\"10142\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#550b1d\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10143\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10434\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"10435\",\"type\":\"Selection\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10142\"},\"glyph\":{\"id\":\"10143\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10145\"},\"nonselection_glyph\":{\"id\":\"10144\"},\"view\":{\"id\":\"10147\"}},\"id\":\"10146\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10417\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"10418\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"10420\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"10421\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"10427\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"10422\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"10423\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"10077\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#75968f\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10095\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"10081\",\"type\":\"LinearScale\"},{\"attributes\":{\"axis_label\":\"Number of answers\",\"coordinates\":null,\"formatter\":{\"id\":\"10417\"},\"group\":null,\"major_label_policy\":{\"id\":\"10418\"},\"ticker\":{\"id\":\"10090\"}},\"id\":\"10089\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"10079\",\"type\":\"DataRange1d\"},{\"attributes\":{\"axis_label\":\"Answers\",\"coordinates\":null,\"formatter\":{\"id\":\"10420\"},\"group\":null,\"major_label_policy\":{\"id\":\"10421\"},\"ticker\":{\"id\":\"10086\"}},\"id\":\"10085\",\"type\":\"LinearAxis\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"10075\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"10083\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"10086\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"10085\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"10088\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10424\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"axis\":{\"id\":\"10089\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"10092\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"10090\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"10425\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"10142\"}},\"id\":\"10147\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#75968f\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10096\",\"type\":\"VBar\"},{\"attributes\":{\"logo\":null},\"id\":\"10093\",\"type\":\"Toolbar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#75968f\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10097\",\"type\":\"VBar\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10094\"},\"glyph\":{\"id\":\"10095\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10097\"},\"nonselection_glyph\":{\"id\":\"10096\"},\"view\":{\"id\":\"10099\"}},\"id\":\"10098\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a5bab7\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10101\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,130,128,148,272,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10423\"},\"selection_policy\":{\"id\":\"10422\"}},\"id\":\"10094\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#a5bab7\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10102\",\"type\":\"VBar\"},{\"attributes\":{\"data\":{\"top\":[0,0,47,30,52,134,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10425\"},\"selection_policy\":{\"id\":\"10424\"}},\"id\":\"10100\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data\":{\"top\":[0,0,33,38,39,57,0],\"x\":[\"Director (of the institute)\",\"Other\",\"PhD student\",\"Postdoc\",\"Principal Investigator\",\"Research associate\",\"Undergraduate / Masters student\"]},\"selected\":{\"id\":\"10427\"},\"selection_policy\":{\"id\":\"10426\"}},\"id\":\"10106\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"10100\"},\"glyph\":{\"id\":\"10101\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"10103\"},\"nonselection_glyph\":{\"id\":\"10102\"},\"view\":{\"id\":\"10105\"}},\"id\":\"10104\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"10094\"}},\"id\":\"10099\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"10426\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#a5bab7\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10103\",\"type\":\"VBar\"},{\"attributes\":{\"fill_color\":{\"value\":\"#c9d9d3\"},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"top\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"x\"}},\"id\":\"10107\",\"type\":\"VBar\"},{\"attributes\":{\"source\":{\"id\":\"10100\"}},\"id\":\"10105\",\"type\":\"CDSView\"}],\"root_ids\":[\"10074\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"84a04889-f987-43e6-ab22-efd5a12d02e3\",\"root_ids\":[\"10074\"],\"roots\":{\"10074\":\"dadade7a-26ed-489a-9e84-a90f788095b9\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -3989,32 +3250,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"a983ee7e-6367-4894-8bd8-ca993559b78c\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1706\"}],\"center\":[{\"id\":\"1708\"},{\"id\":\"1712\"}],\"left\":[{\"id\":\"1709\"}],\"renderers\":[{\"id\":\"1720\"}],\"title\":{\"id\":\"1697\"},\"toolbar\":{\"id\":\"1714\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"1695\"},\"x_scale\":{\"id\":\"1702\"},\"y_range\":{\"id\":\"1700\"},\"y_scale\":{\"id\":\"1704\"}},\"id\":\"1696\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1784\",\"type\":\"Selection\"},{\"attributes\":{\"axis_label\":\"Answers\",\"coordinates\":null,\"formatter\":{\"id\":\"1781\"},\"group\":null,\"major_label_orientation\":1,\"major_label_policy\":{\"id\":\"1782\"},\"ticker\":{\"id\":\"1707\"}},\"id\":\"1706\",\"type\":\"CategoricalAxis\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1693\"},\"glyph\":{\"id\":\"1717\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1719\"},\"nonselection_glyph\":{\"id\":\"1718\"},\"view\":{\"id\":\"1721\"}},\"id\":\"1720\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1779\",\"type\":\"AllLabels\"},{\"attributes\":{\"fill_color\":{\"field\":\"value\",\"transform\":{\"id\":\"1694\"}},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"counts\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"value\"}},\"id\":\"1717\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"1783\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1778\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data\":{\"color\":[\"#3182bd\",\"#6baed6\",\"#9ecae1\",\"#c6dbef\",\"#e6550d\",\"#fd8d3c\",\"#fdae6b\",\"#fdd0a2\",\"#31a354\",\"#74c476\",\"#a1d99b\",\"#c7e9c0\",\"#756bb1\",\"#9e9ac8\",\"#bcbddc\",\"#dadaeb\",\"#636363\",\"#969696\"],\"counts\":[2,5,3,1,3,2,4,3,4,3,2,4,2,4,5,4,6,3],\"value\":[[\"Apples\",\"2015\"],[\"Apples\",\"2016\"],[\"Apples\",\"2017\"],[\"Pears\",\"2015\"],[\"Pears\",\"2016\"],[\"Pears\",\"2017\"],[\"Nectarines\",\"2015\"],[\"Nectarines\",\"2016\"],[\"Nectarines\",\"2017\"],[\"Plums\",\"2015\"],[\"Plums\",\"2016\"],[\"Plums\",\"2017\"],[\"Grapes\",\"2015\"],[\"Grapes\",\"2016\"],[\"Grapes\",\"2017\"],[\"Strawberries\",\"2015\"],[\"Strawberries\",\"2016\"],[\"Strawberries\",\"2017\"]]},\"selected\":{\"id\":\"1784\"},\"selection_policy\":{\"id\":\"1783\"}},\"id\":\"1693\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"factors\":[[\"Apples\",\"2015\"],[\"Apples\",\"2016\"],[\"Apples\",\"2017\"],[\"Pears\",\"2015\"],[\"Pears\",\"2016\"],[\"Pears\",\"2017\"],[\"Nectarines\",\"2015\"],[\"Nectarines\",\"2016\"],[\"Nectarines\",\"2017\"],[\"Plums\",\"2015\"],[\"Plums\",\"2016\"],[\"Plums\",\"2017\"],[\"Grapes\",\"2015\"],[\"Grapes\",\"2016\"],[\"Grapes\",\"2017\"],[\"Strawberries\",\"2015\"],[\"Strawberries\",\"2016\"],[\"Strawberries\",\"2017\"]],\"range_padding\":0.1},\"id\":\"1695\",\"type\":\"FactorRange\"},{\"attributes\":{\"end\":2,\"factors\":[\"2015\",\"2016\",\"2017\"],\"palette\":[\"#3182bd\",\"#6baed6\",\"#9ecae1\",\"#c6dbef\",\"#e6550d\",\"#fd8d3c\",\"#fdae6b\"],\"start\":1},\"id\":\"1694\",\"type\":\"CategoricalColorMapper\"},{\"attributes\":{\"source\":{\"id\":\"1693\"}},\"id\":\"1721\",\"type\":\"CDSView\"},{\"attributes\":{\"tools\":[{\"id\":\"1713\"}]},\"id\":\"1714\",\"type\":\"Toolbar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"value\",\"transform\":{\"id\":\"1694\"}},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"counts\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"value\"}},\"id\":\"1719\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"1710\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"field\":\"value\",\"transform\":{\"id\":\"1694\"}},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"counts\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"value\"}},\"id\":\"1718\",\"type\":\"VBar\"},{\"attributes\":{\"axis_label\":\"Number of answers\",\"coordinates\":null,\"formatter\":{\"id\":\"1778\"},\"group\":null,\"major_label_policy\":{\"id\":\"1779\"},\"ticker\":{\"id\":\"1710\"}},\"id\":\"1709\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1707\",\"type\":\"CategoricalTicker\"},{\"attributes\":{\"axis\":{\"id\":\"1706\"},\"coordinates\":null,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"1708\",\"type\":\"Grid\"},{\"attributes\":{\"axis\":{\"id\":\"1709\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"1712\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1782\",\"type\":\"AllLabels\"},{\"attributes\":{\"start\":0},\"id\":\"1700\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1702\",\"type\":\"CategoricalScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"1697\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"1704\",\"type\":\"LinearScale\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Data\",\"@value\"],[\"Count\",\"@counts\"]]},\"id\":\"1713\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"1781\",\"type\":\"CategoricalTickFormatter\"}],\"root_ids\":[\"1696\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"a983ee7e-6367-4894-8bd8-ca993559b78c\",\"root_ids\":[\"1696\"],\"roots\":{\"1696\":\"e05d72db-7a9d-4fef-8ab7-7e82c89629e3\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"a983ee7e-6367-4894-8bd8-ca993559b78c\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1706\"}],\"center\":[{\"id\":\"1708\"},{\"id\":\"1712\"}],\"left\":[{\"id\":\"1709\"}],\"renderers\":[{\"id\":\"1720\"}],\"title\":{\"id\":\"1697\"},\"toolbar\":{\"id\":\"1714\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"1695\"},\"x_scale\":{\"id\":\"1702\"},\"y_range\":{\"id\":\"1700\"},\"y_scale\":{\"id\":\"1704\"}},\"id\":\"1696\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1784\",\"type\":\"Selection\"},{\"attributes\":{\"axis_label\":\"Answers\",\"coordinates\":null,\"formatter\":{\"id\":\"1781\"},\"group\":null,\"major_label_orientation\":1,\"major_label_policy\":{\"id\":\"1782\"},\"ticker\":{\"id\":\"1707\"}},\"id\":\"1706\",\"type\":\"CategoricalAxis\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"1693\"},\"glyph\":{\"id\":\"1717\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"1719\"},\"nonselection_glyph\":{\"id\":\"1718\"},\"view\":{\"id\":\"1721\"}},\"id\":\"1720\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1779\",\"type\":\"AllLabels\"},{\"attributes\":{\"fill_color\":{\"field\":\"value\",\"transform\":{\"id\":\"1694\"}},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"counts\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"value\"}},\"id\":\"1717\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"1783\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1778\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data\":{\"color\":[\"#3182bd\",\"#6baed6\",\"#9ecae1\",\"#c6dbef\",\"#e6550d\",\"#fd8d3c\",\"#fdae6b\",\"#fdd0a2\",\"#31a354\",\"#74c476\",\"#a1d99b\",\"#c7e9c0\",\"#756bb1\",\"#9e9ac8\",\"#bcbddc\",\"#dadaeb\",\"#636363\",\"#969696\"],\"counts\":[2,5,3,1,3,2,4,3,4,3,2,4,2,4,5,4,6,3],\"value\":[[\"Apples\",\"2015\"],[\"Apples\",\"2016\"],[\"Apples\",\"2017\"],[\"Pears\",\"2015\"],[\"Pears\",\"2016\"],[\"Pears\",\"2017\"],[\"Nectarines\",\"2015\"],[\"Nectarines\",\"2016\"],[\"Nectarines\",\"2017\"],[\"Plums\",\"2015\"],[\"Plums\",\"2016\"],[\"Plums\",\"2017\"],[\"Grapes\",\"2015\"],[\"Grapes\",\"2016\"],[\"Grapes\",\"2017\"],[\"Strawberries\",\"2015\"],[\"Strawberries\",\"2016\"],[\"Strawberries\",\"2017\"]]},\"selected\":{\"id\":\"1784\"},\"selection_policy\":{\"id\":\"1783\"}},\"id\":\"1693\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"factors\":[[\"Apples\",\"2015\"],[\"Apples\",\"2016\"],[\"Apples\",\"2017\"],[\"Pears\",\"2015\"],[\"Pears\",\"2016\"],[\"Pears\",\"2017\"],[\"Nectarines\",\"2015\"],[\"Nectarines\",\"2016\"],[\"Nectarines\",\"2017\"],[\"Plums\",\"2015\"],[\"Plums\",\"2016\"],[\"Plums\",\"2017\"],[\"Grapes\",\"2015\"],[\"Grapes\",\"2016\"],[\"Grapes\",\"2017\"],[\"Strawberries\",\"2015\"],[\"Strawberries\",\"2016\"],[\"Strawberries\",\"2017\"]],\"range_padding\":0.1},\"id\":\"1695\",\"type\":\"FactorRange\"},{\"attributes\":{\"end\":2,\"factors\":[\"2015\",\"2016\",\"2017\"],\"palette\":[\"#3182bd\",\"#6baed6\",\"#9ecae1\",\"#c6dbef\",\"#e6550d\",\"#fd8d3c\",\"#fdae6b\"],\"start\":1},\"id\":\"1694\",\"type\":\"CategoricalColorMapper\"},{\"attributes\":{\"source\":{\"id\":\"1693\"}},\"id\":\"1721\",\"type\":\"CDSView\"},{\"attributes\":{\"tools\":[{\"id\":\"1713\"}]},\"id\":\"1714\",\"type\":\"Toolbar\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"field\":\"value\",\"transform\":{\"id\":\"1694\"}},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"counts\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"value\"}},\"id\":\"1719\",\"type\":\"VBar\"},{\"attributes\":{},\"id\":\"1710\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"field\":\"value\",\"transform\":{\"id\":\"1694\"}},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"white\"},\"top\":{\"field\":\"counts\"},\"width\":{\"value\":0.9},\"x\":{\"field\":\"value\"}},\"id\":\"1718\",\"type\":\"VBar\"},{\"attributes\":{\"axis_label\":\"Number of answers\",\"coordinates\":null,\"formatter\":{\"id\":\"1778\"},\"group\":null,\"major_label_policy\":{\"id\":\"1779\"},\"ticker\":{\"id\":\"1710\"}},\"id\":\"1709\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1707\",\"type\":\"CategoricalTicker\"},{\"attributes\":{\"axis\":{\"id\":\"1706\"},\"coordinates\":null,\"grid_line_color\":null,\"group\":null,\"ticker\":null},\"id\":\"1708\",\"type\":\"Grid\"},{\"attributes\":{\"axis\":{\"id\":\"1709\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"1712\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1782\",\"type\":\"AllLabels\"},{\"attributes\":{\"start\":0},\"id\":\"1700\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1702\",\"type\":\"CategoricalScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"1697\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"1704\",\"type\":\"LinearScale\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Data\",\"@value\"],[\"Count\",\"@counts\"]]},\"id\":\"1713\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"1781\",\"type\":\"CategoricalTickFormatter\"}],\"root_ids\":[\"1696\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"a983ee7e-6367-4894-8bd8-ca993559b78c\",\"root_ids\":[\"1696\"],\"roots\":{\"1696\":\"e05d72db-7a9d-4fef-8ab7-7e82c89629e3\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -4101,32 +3337,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"db39efc1-2295-4dcf-9b25-ea1b533d9eab\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"32582\",\"attributes\":{\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"32592\"},\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"32588\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"32612\",\"attributes\":{\"renderers\":\"auto\",\"tooltips\":[[\"Data\",\"@value\"],[\"Percent\",\"@percent{0.00%}\"],[\"Count\",\"@counts\"]]}},{\"type\":\"object\",\"name\":\"TapTool\",\"id\":\"32613\",\"attributes\":{\"renderers\":\"auto\"}}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"32605\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"32607\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"32606\"},\"visible\":false,\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"32608\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"32598\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"32600\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"32599\"},\"visible\":false,\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"32601\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"32596\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"32604\",\"attributes\":{\"axis\":{\"id\":\"32598\"},\"grid_line_color\":null}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"32611\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"32605\"},\"grid_line_color\":null}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"32645\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"32646\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"32630\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32627\",\"attributes\":{\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"type\":\"object\",\"name\":\"CumSum\",\"id\":\"32618\",\"attributes\":{\"field\":\"angle\"}}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"type\":\"object\",\"name\":\"CumSum\",\"id\":\"32617\",\"attributes\":{\"include_zero\":true,\"field\":\"angle\"}}}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32628\",\"attributes\":{\"fill_color\":{\"type\":\"field\",\"field\":\"color\"},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32618\"}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"line_width\":{\"type\":\"value\",\"value\":5.0},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32617\"}}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32629\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"white\"},\"fill_color\":{\"type\":\"field\",\"field\":\"color\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32618\"}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32617\"}},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32626\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"white\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.5},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32618\"}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32617\"}},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"32631\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"32632\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"32619\",\"attributes\":{\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"32621\"},\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"32620\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"index\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAEAAAACAAAAAwAAAAQAAAAFAAAABgAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"value\",{\"type\":\"ndarray\",\"array\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\"],\"shape\":[7],\"dtype\":\"object\",\"order\":\"little\"}],[\"counts\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"bwAAAAsBAACTAwAAHwIAADcEAACZAQAAOAMAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"xlabel\",{\"type\":\"ndarray\",\"array\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\"],\"shape\":[7],\"dtype\":\"object\",\"order\":\"little\"}],[\"angle\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"hnyU/4WFxT9iC7aXUeLZP43r/+8KLfY/EwBTjf9R6j9cvQc8kSb6P2nho9I20+M/Togtz3D48z8=\"},\"shape\":[7],\"dtype\":\"float64\",\"order\":\"little\"}],[\"color\",{\"type\":\"ndarray\",\"array\":[\"#3182bd\",\"#6baed6\",\"#9ecae1\",\"#c6dbef\",\"#e6550d\",\"#fd8d3c\",\"#fdae6b\"],\"shape\":[7],\"dtype\":\"object\",\"order\":\"little\"}],[\"percent\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"/idWb/Fmmz/OrFQNcnqwPzw8PDw8PMw/4whM/IrBwD8wLEHY5KXQPwfqfJ72Pbk/FdIhk1xtyT8=\"},\"shape\":[7],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32625\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.8},\"line_color\":{\"type\":\"value\",\"value\":\"white\"},\"fill_color\":{\"type\":\"field\",\"field\":\"color\"},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32618\"}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32617\"}}}}}}],\"label\":{\"type\":\"field\",\"field\":\"xlabel\"}}}]}}],\"toolbar_location\":null,\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"32583\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"32594\"},\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"32590\"},\"renderers\":[{\"id\":\"32630\"}]}}]}};\n",
- " const render_items = [{\"docid\":\"db39efc1-2295-4dcf-9b25-ea1b533d9eab\",\"roots\":{\"32582\":\"b67c0339-b1e4-4a84-b226-967788726673\"},\"root_ids\":[\"32582\"]}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"db39efc1-2295-4dcf-9b25-ea1b533d9eab\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"32582\",\"attributes\":{\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"32592\"},\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"32588\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"32612\",\"attributes\":{\"renderers\":\"auto\",\"tooltips\":[[\"Data\",\"@value\"],[\"Percent\",\"@percent{0.00%}\"],[\"Count\",\"@counts\"]]}},{\"type\":\"object\",\"name\":\"TapTool\",\"id\":\"32613\",\"attributes\":{\"renderers\":\"auto\"}}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"32605\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"32607\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"32606\"},\"visible\":false,\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"32608\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"32598\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"32600\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"32599\"},\"visible\":false,\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"32601\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"32596\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"32604\",\"attributes\":{\"axis\":{\"id\":\"32598\"},\"grid_line_color\":null}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"32611\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"32605\"},\"grid_line_color\":null}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"32645\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"32646\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"32630\",\"attributes\":{\"selection_glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32627\",\"attributes\":{\"fill_color\":{\"type\":\"value\",\"value\":\"black\"},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"type\":\"object\",\"name\":\"CumSum\",\"id\":\"32618\",\"attributes\":{\"field\":\"angle\"}}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"type\":\"object\",\"name\":\"CumSum\",\"id\":\"32617\",\"attributes\":{\"include_zero\":true,\"field\":\"angle\"}}}}},\"hover_glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32628\",\"attributes\":{\"fill_color\":{\"type\":\"field\",\"field\":\"color\"},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32618\"}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"line_width\":{\"type\":\"value\",\"value\":5.0},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32617\"}}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32629\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"white\"},\"fill_color\":{\"type\":\"field\",\"field\":\"color\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32618\"}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32617\"}},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32626\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"white\"},\"fill_color\":{\"type\":\"value\",\"value\":\"blue\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.5},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32618\"}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32617\"}},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"32631\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"32632\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"32619\",\"attributes\":{\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"32621\"},\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"32620\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"index\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AAAAAAEAAAACAAAAAwAAAAQAAAAFAAAABgAAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"value\",{\"type\":\"ndarray\",\"array\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\"],\"shape\":[7],\"dtype\":\"object\",\"order\":\"little\"}],[\"counts\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"bwAAAAsBAACTAwAAHwIAADcEAACZAQAAOAMAAA==\"},\"shape\":[7],\"dtype\":\"int32\",\"order\":\"little\"}],[\"xlabel\",{\"type\":\"ndarray\",\"array\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\"],\"shape\":[7],\"dtype\":\"object\",\"order\":\"little\"}],[\"angle\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"hnyU/4WFxT9iC7aXUeLZP43r/+8KLfY/EwBTjf9R6j9cvQc8kSb6P2nho9I20+M/Togtz3D48z8=\"},\"shape\":[7],\"dtype\":\"float64\",\"order\":\"little\"}],[\"color\",{\"type\":\"ndarray\",\"array\":[\"#3182bd\",\"#6baed6\",\"#9ecae1\",\"#c6dbef\",\"#e6550d\",\"#fd8d3c\",\"#fdae6b\"],\"shape\":[7],\"dtype\":\"object\",\"order\":\"little\"}],[\"percent\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"/idWb/Fmmz/OrFQNcnqwPzw8PDw8PMw/4whM/IrBwD8wLEHY5KXQPwfqfJ72Pbk/FdIhk1xtyT8=\"},\"shape\":[7],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"glyph\":{\"type\":\"object\",\"name\":\"Wedge\",\"id\":\"32625\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.8},\"line_color\":{\"type\":\"value\",\"value\":\"white\"},\"fill_color\":{\"type\":\"field\",\"field\":\"color\"},\"end_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32618\"}},\"x\":{\"type\":\"value\",\"value\":0},\"radius\":{\"type\":\"value\",\"value\":0.6},\"y\":{\"type\":\"value\",\"value\":1},\"start_angle\":{\"type\":\"expr\",\"expr\":{\"id\":\"32617\"}}}}}}],\"label\":{\"type\":\"field\",\"field\":\"xlabel\"}}}]}}],\"toolbar_location\":null,\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"32583\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"32594\"},\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"32590\"},\"renderers\":[{\"id\":\"32630\"}]}}]}};\n const render_items = [{\"docid\":\"db39efc1-2295-4dcf-9b25-ea1b533d9eab\",\"roots\":{\"32582\":\"b67c0339-b1e4-4a84-b226-967788726673\"},\"root_ids\":[\"32582\"]}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -4252,32 +3463,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"f7d9e2b2-e6b6-445f-bcc6-6bf9312ff27e\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1998\"}],\"center\":[{\"id\":\"2001\"},{\"id\":\"2005\"},{\"id\":\"2053\"}],\"left\":[{\"id\":\"2002\"}],\"renderers\":[{\"id\":\"2040\"},{\"id\":\"2064\"},{\"id\":\"2089\"},{\"id\":\"2116\"},{\"id\":\"2145\"},{\"id\":\"2176\"},{\"id\":\"2209\"}],\"title\":{\"id\":\"2033\"},\"toolbar\":{\"id\":\"2020\"},\"x_range\":{\"id\":\"1990\"},\"x_scale\":{\"id\":\"1994\"},\"y_range\":{\"id\":\"1992\"},\"y_scale\":{\"id\":\"1996\"}},\"id\":\"1989\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"overlay\":{\"id\":\"2019\"}},\"id\":\"2007\",\"type\":\"PolySelectTool\"},{\"attributes\":{\"callback\":null},\"id\":\"2008\",\"type\":\"TapTool\"},{\"attributes\":{},\"id\":\"1999\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"2009\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"overlay\":{\"id\":\"2018\"}},\"id\":\"2010\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"2013\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"2014\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"2011\",\"type\":\"RedoTool\"},{\"attributes\":{},\"id\":\"2012\",\"type\":\"UndoTool\"},{\"attributes\":{},\"id\":\"2015\",\"type\":\"CrosshairTool\"},{\"attributes\":{},\"id\":\"2016\",\"type\":\"ZoomOutTool\"},{\"attributes\":{},\"id\":\"2017\",\"type\":\"ZoomInTool\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"2018\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"label\":{\"value\":\"x_1\"},\"renderers\":[{\"id\":\"2064\"}]},\"id\":\"2079\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2040\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_0\"],[\"Y\",\"@y_0\"]]},\"id\":\"2055\",\"type\":\"HoverTool\"},{\"attributes\":{\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"syncable\":false,\"xs_units\":\"screen\",\"ys_units\":\"screen\"},\"id\":\"2019\",\"type\":\"PolyAnnotation\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2035\"},\"glyph\":{\"id\":\"2037\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2039\"},\"name\":\"x_0\",\"nonselection_glyph\":{\"id\":\"2038\"},\"view\":{\"id\":\"2041\"}},\"id\":\"2040\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data\":{\"x_1\":[\"1\"],\"y_1\":[886]},\"selected\":{\"id\":\"2076\"},\"selection_policy\":{\"id\":\"2075\"}},\"id\":\"2059\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ff7f0e\"},\"hatch_color\":{\"value\":\"#ff7f0e\"},\"line_color\":{\"value\":\"#ff7f0e\"},\"size\":{\"value\":7},\"x\":{\"field\":\"x_1\"},\"y\":{\"field\":\"y_1\"}},\"id\":\"2061\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#ff7f0e\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#ff7f0e\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#ff7f0e\"},\"size\":{\"value\":7},\"x\":{\"field\":\"x_1\"},\"y\":{\"field\":\"y_1\"}},\"id\":\"2062\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2044\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#ff7f0e\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#ff7f0e\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#ff7f0e\"},\"size\":{\"value\":7},\"x\":{\"field\":\"x_1\"},\"y\":{\"field\":\"y_1\"}},\"id\":\"2063\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2195\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2059\"},\"glyph\":{\"id\":\"2061\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2063\"},\"name\":\"x_1\",\"nonselection_glyph\":{\"id\":\"2062\"},\"view\":{\"id\":\"2065\"}},\"id\":\"2064\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2045\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"2102\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"source\":{\"id\":\"2059\"}},\"id\":\"2065\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"2047\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"2048\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"2132\",\"type\":\"Selection\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2176\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_5\"],[\"Y\",\"@y_5\"]]},\"id\":\"2200\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"2076\",\"type\":\"Selection\"},{\"attributes\":{\"label\":{\"value\":\"x_3\"},\"renderers\":[{\"id\":\"2116\"}]},\"id\":\"2135\",\"type\":\"LegendItem\"},{\"attributes\":{\"data\":{\"x_3\":[\"3\"],\"y_3\":[497]},\"selected\":{\"id\":\"2132\"},\"selection_policy\":{\"id\":\"2131\"}},\"id\":\"2111\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"2075\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"value\":\"#d62728\"},\"hatch_color\":{\"value\":\"#d62728\"},\"line_color\":{\"value\":\"#d62728\"},\"size\":{\"value\":9},\"x\":{\"field\":\"x_3\"},\"y\":{\"field\":\"y_3\"}},\"id\":\"2113\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#d62728\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#d62728\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#d62728\"},\"size\":{\"value\":9},\"x\":{\"field\":\"x_3\"},\"y\":{\"field\":\"y_3\"}},\"id\":\"2114\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#d62728\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#d62728\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#d62728\"},\"size\":{\"value\":9},\"x\":{\"field\":\"x_3\"},\"y\":{\"field\":\"y_3\"}},\"id\":\"2115\",\"type\":\"Scatter\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2111\"},\"glyph\":{\"id\":\"2113\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2115\"},\"name\":\"x_3\",\"nonselection_glyph\":{\"id\":\"2114\"},\"view\":{\"id\":\"2117\"}},\"id\":\"2116\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2049\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2116\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_3\"],[\"Y\",\"@y_3\"]]},\"id\":\"2136\",\"type\":\"HoverTool\"},{\"attributes\":{\"source\":{\"id\":\"2111\"}},\"id\":\"2117\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"2050\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"1990\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"2131\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1996\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"2033\",\"type\":\"Title\"},{\"attributes\":{\"label\":{\"value\":\"x_0\"},\"renderers\":[{\"id\":\"2040\"}]},\"id\":\"2054\",\"type\":\"LegendItem\"},{\"attributes\":{\"label\":{\"value\":\"x_2\"},\"renderers\":[{\"id\":\"2089\"}]},\"id\":\"2106\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2064\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_1\"],[\"Y\",\"@y_1\"]]},\"id\":\"2080\",\"type\":\"HoverTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#1f77b4\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"value\":6},\"x\":{\"field\":\"x_0\"},\"y\":{\"field\":\"y_0\"}},\"id\":\"2039\",\"type\":\"Scatter\"},{\"attributes\":{\"active_inspect\":[{\"id\":\"2055\"},{\"id\":\"2080\"},{\"id\":\"2107\"},{\"id\":\"2136\"},{\"id\":\"2167\"},{\"id\":\"2200\"},{\"id\":\"2235\"}],\"tools\":[{\"id\":\"2006\"},{\"id\":\"2007\"},{\"id\":\"2008\"},{\"id\":\"2009\"},{\"id\":\"2010\"},{\"id\":\"2011\"},{\"id\":\"2012\"},{\"id\":\"2013\"},{\"id\":\"2014\"},{\"id\":\"2015\"},{\"id\":\"2016\"},{\"id\":\"2017\"},{\"id\":\"2055\"},{\"id\":\"2080\"},{\"id\":\"2107\"},{\"id\":\"2136\"},{\"id\":\"2167\"},{\"id\":\"2200\"},{\"id\":\"2235\"}]},\"id\":\"2020\",\"type\":\"Toolbar\"},{\"attributes\":{\"data\":{\"x_2\":[\"2\"],\"y_2\":[848]},\"selected\":{\"id\":\"2103\"},\"selection_policy\":{\"id\":\"2102\"}},\"id\":\"2084\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data\":{\"x_6\":[\"6\"],\"y_6\":[823]},\"selected\":{\"id\":\"2231\"},\"selection_policy\":{\"id\":\"2230\"}},\"id\":\"2204\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"click_policy\":\"hide\",\"coordinates\":null,\"group\":null,\"items\":[{\"id\":\"2054\"},{\"id\":\"2079\"},{\"id\":\"2106\"},{\"id\":\"2135\"},{\"id\":\"2166\"},{\"id\":\"2199\"},{\"id\":\"2234\"}],\"label_text_font_size\":\"14pt\"},\"id\":\"2053\",\"type\":\"Legend\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2ca02c\"},\"hatch_color\":{\"value\":\"#2ca02c\"},\"line_color\":{\"value\":\"#2ca02c\"},\"size\":{\"value\":8},\"x\":{\"field\":\"x_2\"},\"y\":{\"field\":\"y_2\"}},\"id\":\"2086\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"1992\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data\":{\"x_0\":[\"0\"],\"y_0\":[727]},\"selected\":{\"id\":\"2050\"},\"selection_policy\":{\"id\":\"2049\"}},\"id\":\"2035\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#2ca02c\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#2ca02c\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#2ca02c\"},\"size\":{\"value\":8},\"x\":{\"field\":\"x_2\"},\"y\":{\"field\":\"y_2\"}},\"id\":\"2087\",\"type\":\"Scatter\"},{\"attributes\":{\"source\":{\"id\":\"2035\"}},\"id\":\"2041\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#2ca02c\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#2ca02c\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#2ca02c\"},\"size\":{\"value\":8},\"x\":{\"field\":\"x_2\"},\"y\":{\"field\":\"y_2\"}},\"id\":\"2088\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2103\",\"type\":\"Selection\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2084\"},\"glyph\":{\"id\":\"2086\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2088\"},\"name\":\"x_2\",\"nonselection_glyph\":{\"id\":\"2087\"},\"view\":{\"id\":\"2090\"}},\"id\":\"2089\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2089\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_2\"],[\"Y\",\"@y_2\"]]},\"id\":\"2107\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"1994\",\"type\":\"LinearScale\"},{\"attributes\":{\"source\":{\"id\":\"2084\"}},\"id\":\"2090\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"value\":6},\"x\":{\"field\":\"x_0\"},\"y\":{\"field\":\"y_0\"}},\"id\":\"2038\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2162\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"label\":{\"value\":\"x_4\"},\"renderers\":[{\"id\":\"2145\"}]},\"id\":\"2166\",\"type\":\"LegendItem\"},{\"attributes\":{\"data\":{\"x_4\":[\"4\"],\"y_4\":[444]},\"selected\":{\"id\":\"2163\"},\"selection_policy\":{\"id\":\"2162\"}},\"id\":\"2140\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#9467bd\"},\"hatch_color\":{\"value\":\"#9467bd\"},\"line_color\":{\"value\":\"#9467bd\"},\"size\":{\"value\":10},\"x\":{\"field\":\"x_4\"},\"y\":{\"field\":\"y_4\"}},\"id\":\"2142\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#9467bd\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#9467bd\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#9467bd\"},\"size\":{\"value\":10},\"x\":{\"field\":\"x_4\"},\"y\":{\"field\":\"y_4\"}},\"id\":\"2143\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#9467bd\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#9467bd\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#9467bd\"},\"size\":{\"value\":10},\"x\":{\"field\":\"x_4\"},\"y\":{\"field\":\"y_4\"}},\"id\":\"2144\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2230\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2140\"},\"glyph\":{\"id\":\"2142\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2144\"},\"name\":\"x_4\",\"nonselection_glyph\":{\"id\":\"2143\"},\"view\":{\"id\":\"2146\"}},\"id\":\"2145\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#e377c2\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#e377c2\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#e377c2\"},\"size\":{\"value\":12},\"x\":{\"field\":\"x_6\"},\"y\":{\"field\":\"y_6\"}},\"id\":\"2207\",\"type\":\"Scatter\"},{\"attributes\":{\"label\":{\"value\":\"x_6\"},\"renderers\":[{\"id\":\"2209\"}]},\"id\":\"2234\",\"type\":\"LegendItem\"},{\"attributes\":{\"source\":{\"id\":\"2140\"}},\"id\":\"2146\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#e377c2\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#e377c2\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#e377c2\"},\"size\":{\"value\":12},\"x\":{\"field\":\"x_6\"},\"y\":{\"field\":\"y_6\"}},\"id\":\"2208\",\"type\":\"Scatter\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2204\"},\"glyph\":{\"id\":\"2206\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2208\"},\"name\":\"x_6\",\"nonselection_glyph\":{\"id\":\"2207\"},\"view\":{\"id\":\"2210\"}},\"id\":\"2209\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2163\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"2204\"}},\"id\":\"2210\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2209\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_6\"],[\"Y\",\"@y_6\"]]},\"id\":\"2235\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"2231\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"2006\",\"type\":\"PanTool\"},{\"attributes\":{\"axis\":{\"id\":\"1998\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"2001\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2145\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_4\"],[\"Y\",\"@y_4\"]]},\"id\":\"2167\",\"type\":\"HoverTool\"},{\"attributes\":{\"data\":{\"x_5\":[\"5\"],\"y_5\":[1090]},\"selected\":{\"id\":\"2196\"},\"selection_policy\":{\"id\":\"2195\"}},\"id\":\"2171\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#8c564b\"},\"hatch_color\":{\"value\":\"#8c564b\"},\"line_color\":{\"value\":\"#8c564b\"},\"size\":{\"value\":11},\"x\":{\"field\":\"x_5\"},\"y\":{\"field\":\"y_5\"}},\"id\":\"2173\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"value\":\"#1f77b4\"},\"hatch_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"value\":6},\"x\":{\"field\":\"x_0\"},\"y\":{\"field\":\"y_0\"}},\"id\":\"2037\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#8c564b\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#8c564b\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#8c564b\"},\"size\":{\"value\":11},\"x\":{\"field\":\"x_5\"},\"y\":{\"field\":\"y_5\"}},\"id\":\"2174\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#8c564b\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#8c564b\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#8c564b\"},\"size\":{\"value\":11},\"x\":{\"field\":\"x_5\"},\"y\":{\"field\":\"y_5\"}},\"id\":\"2175\",\"type\":\"Scatter\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2171\"},\"glyph\":{\"id\":\"2173\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2175\"},\"name\":\"x_5\",\"nonselection_glyph\":{\"id\":\"2174\"},\"view\":{\"id\":\"2177\"}},\"id\":\"2176\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#e377c2\"},\"hatch_color\":{\"value\":\"#e377c2\"},\"line_color\":{\"value\":\"#e377c2\"},\"size\":{\"value\":12},\"x\":{\"field\":\"x_6\"},\"y\":{\"field\":\"y_6\"}},\"id\":\"2206\",\"type\":\"Scatter\"},{\"attributes\":{\"source\":{\"id\":\"2171\"}},\"id\":\"2177\",\"type\":\"CDSView\"},{\"attributes\":{\"label\":{\"value\":\"x_5\"},\"renderers\":[{\"id\":\"2176\"}]},\"id\":\"2199\",\"type\":\"LegendItem\"},{\"attributes\":{\"axis\":{\"id\":\"2002\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"2005\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"2196\",\"type\":\"Selection\"},{\"attributes\":{\"axis_label\":\"x\",\"axis_label_text_font_size\":\"18pt\",\"axis_line_width\":2,\"coordinates\":null,\"formatter\":{\"id\":\"2047\"},\"group\":null,\"major_label_policy\":{\"id\":\"2048\"},\"major_label_text_font_size\":\"16pt\",\"ticker\":{\"id\":\"1999\"}},\"id\":\"1998\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis_label\":\"y\",\"axis_label_text_font_size\":\"18pt\",\"axis_line_width\":2,\"coordinates\":null,\"formatter\":{\"id\":\"2044\"},\"group\":null,\"major_label_policy\":{\"id\":\"2045\"},\"major_label_text_font_size\":\"16pt\",\"ticker\":{\"id\":\"2003\"}},\"id\":\"2002\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"2003\",\"type\":\"BasicTicker\"}],\"root_ids\":[\"1989\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"f7d9e2b2-e6b6-445f-bcc6-6bf9312ff27e\",\"root_ids\":[\"1989\"],\"roots\":{\"1989\":\"2f073413-ed1d-4a1d-b2ba-1644e3bc88e5\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"f7d9e2b2-e6b6-445f-bcc6-6bf9312ff27e\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1998\"}],\"center\":[{\"id\":\"2001\"},{\"id\":\"2005\"},{\"id\":\"2053\"}],\"left\":[{\"id\":\"2002\"}],\"renderers\":[{\"id\":\"2040\"},{\"id\":\"2064\"},{\"id\":\"2089\"},{\"id\":\"2116\"},{\"id\":\"2145\"},{\"id\":\"2176\"},{\"id\":\"2209\"}],\"title\":{\"id\":\"2033\"},\"toolbar\":{\"id\":\"2020\"},\"x_range\":{\"id\":\"1990\"},\"x_scale\":{\"id\":\"1994\"},\"y_range\":{\"id\":\"1992\"},\"y_scale\":{\"id\":\"1996\"}},\"id\":\"1989\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"overlay\":{\"id\":\"2019\"}},\"id\":\"2007\",\"type\":\"PolySelectTool\"},{\"attributes\":{\"callback\":null},\"id\":\"2008\",\"type\":\"TapTool\"},{\"attributes\":{},\"id\":\"1999\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"2009\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"overlay\":{\"id\":\"2018\"}},\"id\":\"2010\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"2013\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"2014\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"2011\",\"type\":\"RedoTool\"},{\"attributes\":{},\"id\":\"2012\",\"type\":\"UndoTool\"},{\"attributes\":{},\"id\":\"2015\",\"type\":\"CrosshairTool\"},{\"attributes\":{},\"id\":\"2016\",\"type\":\"ZoomOutTool\"},{\"attributes\":{},\"id\":\"2017\",\"type\":\"ZoomInTool\"},{\"attributes\":{\"bottom_units\":\"screen\",\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"2018\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"label\":{\"value\":\"x_1\"},\"renderers\":[{\"id\":\"2064\"}]},\"id\":\"2079\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2040\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_0\"],[\"Y\",\"@y_0\"]]},\"id\":\"2055\",\"type\":\"HoverTool\"},{\"attributes\":{\"coordinates\":null,\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"group\":null,\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"syncable\":false,\"xs_units\":\"screen\",\"ys_units\":\"screen\"},\"id\":\"2019\",\"type\":\"PolyAnnotation\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2035\"},\"glyph\":{\"id\":\"2037\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2039\"},\"name\":\"x_0\",\"nonselection_glyph\":{\"id\":\"2038\"},\"view\":{\"id\":\"2041\"}},\"id\":\"2040\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data\":{\"x_1\":[\"1\"],\"y_1\":[886]},\"selected\":{\"id\":\"2076\"},\"selection_policy\":{\"id\":\"2075\"}},\"id\":\"2059\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ff7f0e\"},\"hatch_color\":{\"value\":\"#ff7f0e\"},\"line_color\":{\"value\":\"#ff7f0e\"},\"size\":{\"value\":7},\"x\":{\"field\":\"x_1\"},\"y\":{\"field\":\"y_1\"}},\"id\":\"2061\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#ff7f0e\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#ff7f0e\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#ff7f0e\"},\"size\":{\"value\":7},\"x\":{\"field\":\"x_1\"},\"y\":{\"field\":\"y_1\"}},\"id\":\"2062\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2044\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#ff7f0e\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#ff7f0e\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#ff7f0e\"},\"size\":{\"value\":7},\"x\":{\"field\":\"x_1\"},\"y\":{\"field\":\"y_1\"}},\"id\":\"2063\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2195\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2059\"},\"glyph\":{\"id\":\"2061\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2063\"},\"name\":\"x_1\",\"nonselection_glyph\":{\"id\":\"2062\"},\"view\":{\"id\":\"2065\"}},\"id\":\"2064\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2045\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"2102\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"source\":{\"id\":\"2059\"}},\"id\":\"2065\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"2047\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"2048\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"2132\",\"type\":\"Selection\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2176\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_5\"],[\"Y\",\"@y_5\"]]},\"id\":\"2200\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"2076\",\"type\":\"Selection\"},{\"attributes\":{\"label\":{\"value\":\"x_3\"},\"renderers\":[{\"id\":\"2116\"}]},\"id\":\"2135\",\"type\":\"LegendItem\"},{\"attributes\":{\"data\":{\"x_3\":[\"3\"],\"y_3\":[497]},\"selected\":{\"id\":\"2132\"},\"selection_policy\":{\"id\":\"2131\"}},\"id\":\"2111\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"2075\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"value\":\"#d62728\"},\"hatch_color\":{\"value\":\"#d62728\"},\"line_color\":{\"value\":\"#d62728\"},\"size\":{\"value\":9},\"x\":{\"field\":\"x_3\"},\"y\":{\"field\":\"y_3\"}},\"id\":\"2113\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#d62728\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#d62728\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#d62728\"},\"size\":{\"value\":9},\"x\":{\"field\":\"x_3\"},\"y\":{\"field\":\"y_3\"}},\"id\":\"2114\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#d62728\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#d62728\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#d62728\"},\"size\":{\"value\":9},\"x\":{\"field\":\"x_3\"},\"y\":{\"field\":\"y_3\"}},\"id\":\"2115\",\"type\":\"Scatter\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2111\"},\"glyph\":{\"id\":\"2113\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2115\"},\"name\":\"x_3\",\"nonselection_glyph\":{\"id\":\"2114\"},\"view\":{\"id\":\"2117\"}},\"id\":\"2116\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2049\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2116\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_3\"],[\"Y\",\"@y_3\"]]},\"id\":\"2136\",\"type\":\"HoverTool\"},{\"attributes\":{\"source\":{\"id\":\"2111\"}},\"id\":\"2117\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"2050\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"1990\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"2131\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1996\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null},\"id\":\"2033\",\"type\":\"Title\"},{\"attributes\":{\"label\":{\"value\":\"x_0\"},\"renderers\":[{\"id\":\"2040\"}]},\"id\":\"2054\",\"type\":\"LegendItem\"},{\"attributes\":{\"label\":{\"value\":\"x_2\"},\"renderers\":[{\"id\":\"2089\"}]},\"id\":\"2106\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2064\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_1\"],[\"Y\",\"@y_1\"]]},\"id\":\"2080\",\"type\":\"HoverTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#1f77b4\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"value\":6},\"x\":{\"field\":\"x_0\"},\"y\":{\"field\":\"y_0\"}},\"id\":\"2039\",\"type\":\"Scatter\"},{\"attributes\":{\"active_inspect\":[{\"id\":\"2055\"},{\"id\":\"2080\"},{\"id\":\"2107\"},{\"id\":\"2136\"},{\"id\":\"2167\"},{\"id\":\"2200\"},{\"id\":\"2235\"}],\"tools\":[{\"id\":\"2006\"},{\"id\":\"2007\"},{\"id\":\"2008\"},{\"id\":\"2009\"},{\"id\":\"2010\"},{\"id\":\"2011\"},{\"id\":\"2012\"},{\"id\":\"2013\"},{\"id\":\"2014\"},{\"id\":\"2015\"},{\"id\":\"2016\"},{\"id\":\"2017\"},{\"id\":\"2055\"},{\"id\":\"2080\"},{\"id\":\"2107\"},{\"id\":\"2136\"},{\"id\":\"2167\"},{\"id\":\"2200\"},{\"id\":\"2235\"}]},\"id\":\"2020\",\"type\":\"Toolbar\"},{\"attributes\":{\"data\":{\"x_2\":[\"2\"],\"y_2\":[848]},\"selected\":{\"id\":\"2103\"},\"selection_policy\":{\"id\":\"2102\"}},\"id\":\"2084\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data\":{\"x_6\":[\"6\"],\"y_6\":[823]},\"selected\":{\"id\":\"2231\"},\"selection_policy\":{\"id\":\"2230\"}},\"id\":\"2204\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"click_policy\":\"hide\",\"coordinates\":null,\"group\":null,\"items\":[{\"id\":\"2054\"},{\"id\":\"2079\"},{\"id\":\"2106\"},{\"id\":\"2135\"},{\"id\":\"2166\"},{\"id\":\"2199\"},{\"id\":\"2234\"}],\"label_text_font_size\":\"14pt\"},\"id\":\"2053\",\"type\":\"Legend\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2ca02c\"},\"hatch_color\":{\"value\":\"#2ca02c\"},\"line_color\":{\"value\":\"#2ca02c\"},\"size\":{\"value\":8},\"x\":{\"field\":\"x_2\"},\"y\":{\"field\":\"y_2\"}},\"id\":\"2086\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"1992\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data\":{\"x_0\":[\"0\"],\"y_0\":[727]},\"selected\":{\"id\":\"2050\"},\"selection_policy\":{\"id\":\"2049\"}},\"id\":\"2035\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#2ca02c\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#2ca02c\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#2ca02c\"},\"size\":{\"value\":8},\"x\":{\"field\":\"x_2\"},\"y\":{\"field\":\"y_2\"}},\"id\":\"2087\",\"type\":\"Scatter\"},{\"attributes\":{\"source\":{\"id\":\"2035\"}},\"id\":\"2041\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#2ca02c\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#2ca02c\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#2ca02c\"},\"size\":{\"value\":8},\"x\":{\"field\":\"x_2\"},\"y\":{\"field\":\"y_2\"}},\"id\":\"2088\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2103\",\"type\":\"Selection\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2084\"},\"glyph\":{\"id\":\"2086\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2088\"},\"name\":\"x_2\",\"nonselection_glyph\":{\"id\":\"2087\"},\"view\":{\"id\":\"2090\"}},\"id\":\"2089\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2089\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_2\"],[\"Y\",\"@y_2\"]]},\"id\":\"2107\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"1994\",\"type\":\"LinearScale\"},{\"attributes\":{\"source\":{\"id\":\"2084\"}},\"id\":\"2090\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"value\":6},\"x\":{\"field\":\"x_0\"},\"y\":{\"field\":\"y_0\"}},\"id\":\"2038\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2162\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"label\":{\"value\":\"x_4\"},\"renderers\":[{\"id\":\"2145\"}]},\"id\":\"2166\",\"type\":\"LegendItem\"},{\"attributes\":{\"data\":{\"x_4\":[\"4\"],\"y_4\":[444]},\"selected\":{\"id\":\"2163\"},\"selection_policy\":{\"id\":\"2162\"}},\"id\":\"2140\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#9467bd\"},\"hatch_color\":{\"value\":\"#9467bd\"},\"line_color\":{\"value\":\"#9467bd\"},\"size\":{\"value\":10},\"x\":{\"field\":\"x_4\"},\"y\":{\"field\":\"y_4\"}},\"id\":\"2142\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#9467bd\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#9467bd\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#9467bd\"},\"size\":{\"value\":10},\"x\":{\"field\":\"x_4\"},\"y\":{\"field\":\"y_4\"}},\"id\":\"2143\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#9467bd\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#9467bd\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#9467bd\"},\"size\":{\"value\":10},\"x\":{\"field\":\"x_4\"},\"y\":{\"field\":\"y_4\"}},\"id\":\"2144\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"2230\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2140\"},\"glyph\":{\"id\":\"2142\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2144\"},\"name\":\"x_4\",\"nonselection_glyph\":{\"id\":\"2143\"},\"view\":{\"id\":\"2146\"}},\"id\":\"2145\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#e377c2\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#e377c2\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#e377c2\"},\"size\":{\"value\":12},\"x\":{\"field\":\"x_6\"},\"y\":{\"field\":\"y_6\"}},\"id\":\"2207\",\"type\":\"Scatter\"},{\"attributes\":{\"label\":{\"value\":\"x_6\"},\"renderers\":[{\"id\":\"2209\"}]},\"id\":\"2234\",\"type\":\"LegendItem\"},{\"attributes\":{\"source\":{\"id\":\"2140\"}},\"id\":\"2146\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#e377c2\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#e377c2\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#e377c2\"},\"size\":{\"value\":12},\"x\":{\"field\":\"x_6\"},\"y\":{\"field\":\"y_6\"}},\"id\":\"2208\",\"type\":\"Scatter\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2204\"},\"glyph\":{\"id\":\"2206\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2208\"},\"name\":\"x_6\",\"nonselection_glyph\":{\"id\":\"2207\"},\"view\":{\"id\":\"2210\"}},\"id\":\"2209\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2163\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"2204\"}},\"id\":\"2210\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2209\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_6\"],[\"Y\",\"@y_6\"]]},\"id\":\"2235\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"2231\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"2006\",\"type\":\"PanTool\"},{\"attributes\":{\"axis\":{\"id\":\"1998\"},\"coordinates\":null,\"group\":null,\"ticker\":null},\"id\":\"2001\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"2145\"}],\"toggleable\":false,\"tooltips\":[[\"X\",\"@x_4\"],[\"Y\",\"@y_4\"]]},\"id\":\"2167\",\"type\":\"HoverTool\"},{\"attributes\":{\"data\":{\"x_5\":[\"5\"],\"y_5\":[1090]},\"selected\":{\"id\":\"2196\"},\"selection_policy\":{\"id\":\"2195\"}},\"id\":\"2171\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#8c564b\"},\"hatch_color\":{\"value\":\"#8c564b\"},\"line_color\":{\"value\":\"#8c564b\"},\"size\":{\"value\":11},\"x\":{\"field\":\"x_5\"},\"y\":{\"field\":\"y_5\"}},\"id\":\"2173\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"value\":\"#1f77b4\"},\"hatch_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"value\":6},\"x\":{\"field\":\"x_0\"},\"y\":{\"field\":\"y_0\"}},\"id\":\"2037\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#8c564b\"},\"hatch_alpha\":{\"value\":0.1},\"hatch_color\":{\"value\":\"#8c564b\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#8c564b\"},\"size\":{\"value\":11},\"x\":{\"field\":\"x_5\"},\"y\":{\"field\":\"y_5\"}},\"id\":\"2174\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"#8c564b\"},\"hatch_alpha\":{\"value\":0.2},\"hatch_color\":{\"value\":\"#8c564b\"},\"line_alpha\":{\"value\":0.2},\"line_color\":{\"value\":\"#8c564b\"},\"size\":{\"value\":11},\"x\":{\"field\":\"x_5\"},\"y\":{\"field\":\"y_5\"}},\"id\":\"2175\",\"type\":\"Scatter\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"2171\"},\"glyph\":{\"id\":\"2173\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"2175\"},\"name\":\"x_5\",\"nonselection_glyph\":{\"id\":\"2174\"},\"view\":{\"id\":\"2177\"}},\"id\":\"2176\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#e377c2\"},\"hatch_color\":{\"value\":\"#e377c2\"},\"line_color\":{\"value\":\"#e377c2\"},\"size\":{\"value\":12},\"x\":{\"field\":\"x_6\"},\"y\":{\"field\":\"y_6\"}},\"id\":\"2206\",\"type\":\"Scatter\"},{\"attributes\":{\"source\":{\"id\":\"2171\"}},\"id\":\"2177\",\"type\":\"CDSView\"},{\"attributes\":{\"label\":{\"value\":\"x_5\"},\"renderers\":[{\"id\":\"2176\"}]},\"id\":\"2199\",\"type\":\"LegendItem\"},{\"attributes\":{\"axis\":{\"id\":\"2002\"},\"coordinates\":null,\"dimension\":1,\"group\":null,\"ticker\":null},\"id\":\"2005\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"2196\",\"type\":\"Selection\"},{\"attributes\":{\"axis_label\":\"x\",\"axis_label_text_font_size\":\"18pt\",\"axis_line_width\":2,\"coordinates\":null,\"formatter\":{\"id\":\"2047\"},\"group\":null,\"major_label_policy\":{\"id\":\"2048\"},\"major_label_text_font_size\":\"16pt\",\"ticker\":{\"id\":\"1999\"}},\"id\":\"1998\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis_label\":\"y\",\"axis_label_text_font_size\":\"18pt\",\"axis_line_width\":2,\"coordinates\":null,\"formatter\":{\"id\":\"2044\"},\"group\":null,\"major_label_policy\":{\"id\":\"2045\"},\"major_label_text_font_size\":\"16pt\",\"ticker\":{\"id\":\"2003\"}},\"id\":\"2002\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"2003\",\"type\":\"BasicTicker\"}],\"root_ids\":[\"1989\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"f7d9e2b2-e6b6-445f-bcc6-6bf9312ff27e\",\"root_ids\":[\"1989\"],\"roots\":{\"1989\":\"2f073413-ed1d-4a1d-b2ba-1644e3bc88e5\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -4440,32 +3626,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"9f66405f-51e4-42b6-9d09-dfd2a94b3d7c\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"40046\",\"attributes\":{\"y_range\":{\"type\":\"object\",\"name\":\"Range1d\",\"id\":\"40056\",\"attributes\":{\"end\":10}},\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"40052\"},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"40068\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"40070\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"40069\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"40071\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"below\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"40062\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"40064\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"40063\"},\"major_label_orientation\":1,\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"40065\"}}}],\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"40060\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"40067\",\"attributes\":{\"axis\":{\"id\":\"40062\"},\"grid_line_color\":null}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"40074\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"40068\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"40098\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40099\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40083\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40082\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2015\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40076\",\"attributes\":{\"range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"40054\",\"attributes\":{\"factors\":[\"Apples\",\"Pears\",\"Nectarines\",\"Plums\",\"Grapes\",\"Strawberries\"],\"range_padding\":0.1}}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40081\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2015\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40076\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"visible\":false,\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40084\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40085\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"40043\",\"attributes\":{\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"40045\"},\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"40044\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"fruits\",[\"Apples\",\"Pears\",\"Nectarines\",\"Plums\",\"Grapes\",\"Strawberries\"]],[\"2015\",[2,1,4,3,2,4]],[\"2016\",[5,3,3,2,4,6]],[\"2017\",[3,2,4,4,5,3]],[\"2018\",[2,1,3,6,7,2]],[\"2019\",[1,1,2,2,2,1]],[\"2020\",[5,5,4,4,5,5]]]}}},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40080\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"top\":{\"type\":\"field\",\"field\":\"2015\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40076\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2015\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40125\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40107\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40106\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2016\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40100\",\"attributes\":{\"value\":-0.5,\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40105\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2016\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40100\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40108\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40109\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40104\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"top\":{\"type\":\"field\",\"field\":\"2016\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40100\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2016\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40154\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40133\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40132\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2017\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40126\",\"attributes\":{\"value\":-0.25,\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40131\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2017\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40126\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40134\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40135\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40130\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"top\":{\"type\":\"field\",\"field\":\"2017\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40126\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2017\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40186\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40162\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40161\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2018\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40155\",\"attributes\":{\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40160\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2018\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40155\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40163\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40164\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40159\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"top\":{\"type\":\"field\",\"field\":\"2018\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40155\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2018\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40221\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40194\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40193\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2019\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40187\",\"attributes\":{\"value\":0.25,\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40192\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2019\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40187\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40195\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40196\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40191\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"top\":{\"type\":\"field\",\"field\":\"2019\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40187\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2019\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40259\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40229\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40228\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2020\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40222\",\"attributes\":{\"value\":0.5,\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40227\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2020\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40222\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40230\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40231\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40226\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"top\":{\"type\":\"field\",\"field\":\"2020\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40222\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#98df8a\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2020\"}}}],\"location\":\"top_left\",\"click_policy\":\"hide\",\"orientation\":\"horizontal\"}}],\"toolbar_location\":null,\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"40047\",\"attributes\":{\"text\":\"Fruit Counts by Year\"}},\"x_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"40058\"},\"x_range\":{\"id\":\"40054\"},\"renderers\":[{\"id\":\"40083\"},{\"id\":\"40107\"},{\"id\":\"40133\"},{\"id\":\"40162\"},{\"id\":\"40194\"},{\"id\":\"40229\"}]}}]}};\n",
- " const render_items = [{\"docid\":\"9f66405f-51e4-42b6-9d09-dfd2a94b3d7c\",\"roots\":{\"40046\":\"b425f6f2-0e20-4fd2-8cc8-25cff6e34614\"},\"root_ids\":[\"40046\"]}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"9f66405f-51e4-42b6-9d09-dfd2a94b3d7c\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"40046\",\"attributes\":{\"y_range\":{\"type\":\"object\",\"name\":\"Range1d\",\"id\":\"40056\",\"attributes\":{\"end\":10}},\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"40052\"},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"40068\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"40070\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"40069\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"40071\",\"attributes\":{\"mantissas\":[1,2,5]}}}}],\"below\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"40062\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"40064\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"40063\"},\"major_label_orientation\":1,\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"40065\"}}}],\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"40060\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"40067\",\"attributes\":{\"axis\":{\"id\":\"40062\"},\"grid_line_color\":null}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"40074\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"40068\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"40098\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40099\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40083\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40082\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2015\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40076\",\"attributes\":{\"range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"40054\",\"attributes\":{\"factors\":[\"Apples\",\"Pears\",\"Nectarines\",\"Plums\",\"Grapes\",\"Strawberries\"],\"range_padding\":0.1}}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40081\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2015\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40076\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"visible\":false,\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40084\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40085\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"40043\",\"attributes\":{\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"40045\"},\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"40044\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"fruits\",[\"Apples\",\"Pears\",\"Nectarines\",\"Plums\",\"Grapes\",\"Strawberries\"]],[\"2015\",[2,1,4,3,2,4]],[\"2016\",[5,3,3,2,4,6]],[\"2017\",[3,2,4,4,5,3]],[\"2018\",[2,1,3,6,7,2]],[\"2019\",[1,1,2,2,2,1]],[\"2020\",[5,5,4,4,5,5]]]}}},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40080\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"},\"top\":{\"type\":\"field\",\"field\":\"2015\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40076\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#1f77b4\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2015\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40125\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40107\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40106\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2016\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40100\",\"attributes\":{\"value\":-0.5,\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40105\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2016\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40100\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40108\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40109\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40104\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"},\"top\":{\"type\":\"field\",\"field\":\"2016\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40100\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#aec7e8\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2016\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40154\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40133\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40132\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2017\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40126\",\"attributes\":{\"value\":-0.25,\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40131\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2017\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40126\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40134\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40135\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40130\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"},\"top\":{\"type\":\"field\",\"field\":\"2017\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40126\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ff7f0e\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2017\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40186\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40162\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40161\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2018\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40155\",\"attributes\":{\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40160\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2018\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40155\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40163\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40164\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40159\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"},\"top\":{\"type\":\"field\",\"field\":\"2018\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40155\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#ffbb78\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2018\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40221\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40194\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40193\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2019\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40187\",\"attributes\":{\"value\":0.25,\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40192\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2019\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40187\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40195\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40196\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40191\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"},\"top\":{\"type\":\"field\",\"field\":\"2019\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40187\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#2ca02c\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2019\"}}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"40259\",\"attributes\":{\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"40229\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40228\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2020\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"type\":\"object\",\"name\":\"Dodge\",\"id\":\"40222\",\"attributes\":{\"value\":0.5,\"range\":{\"id\":\"40054\"}}}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40227\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"fill_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"top\":{\"type\":\"field\",\"field\":\"2020\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40222\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"40230\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"40231\"}}},\"data_source\":{\"id\":\"40043\"},\"glyph\":{\"type\":\"object\",\"name\":\"VBar\",\"id\":\"40226\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"width\":{\"type\":\"value\",\"value\":0.2},\"fill_color\":{\"type\":\"value\",\"value\":\"#98df8a\"},\"top\":{\"type\":\"field\",\"field\":\"2020\"},\"x\":{\"type\":\"field\",\"field\":\"fruits\",\"transform\":{\"id\":\"40222\"}},\"hatch_color\":{\"type\":\"value\",\"value\":\"#98df8a\"}}}}}],\"label\":{\"type\":\"value\",\"value\":\"2020\"}}}],\"location\":\"top_left\",\"click_policy\":\"hide\",\"orientation\":\"horizontal\"}}],\"toolbar_location\":null,\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"40047\",\"attributes\":{\"text\":\"Fruit Counts by Year\"}},\"x_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"40058\"},\"x_range\":{\"id\":\"40054\"},\"renderers\":[{\"id\":\"40083\"},{\"id\":\"40107\"},{\"id\":\"40133\"},{\"id\":\"40162\"},{\"id\":\"40194\"},{\"id\":\"40229\"}]}}]}};\n const render_items = [{\"docid\":\"9f66405f-51e4-42b6-9d09-dfd2a94b3d7c\",\"roots\":{\"40046\":\"b425f6f2-0e20-4fd2-8cc8-25cff6e34614\"},\"root_ids\":[\"40046\"]}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -4840,32 +4001,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"44d1bf3a-a74d-4b27-9c7b-4797d28be4ab\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"41500\",\"attributes\":{\"y_range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"41510\",\"attributes\":{\"factors\":[\"Dec\",\"Nov\",\"Oct\",\"Sep\",\"Aug\",\"Jul\",\"Jun\",\"May\",\"Apr\",\"Mar\",\"Feb\",\"Jan\"]}},\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"41506\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"41528\",\"attributes\":{\"renderers\":\"auto\"}}]}},\"left\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"41522\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"41524\"},\"major_label_standoff\":0,\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"41525\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"41523\"},\"major_tick_line_color\":null,\"axis_line_color\":null,\"major_label_text_font_size\":\"7px\"}}],\"above\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"41516\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"41518\"},\"major_label_standoff\":0,\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"41519\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"41517\"},\"major_tick_line_color\":null,\"axis_line_color\":null,\"major_label_text_font_size\":\"7px\",\"major_label_orientation\":1.0}}],\"y_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"41514\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"41521\",\"attributes\":{\"axis\":{\"id\":\"41516\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"41527\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"41522\"}}}],\"toolbar_location\":null,\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"41501\",\"attributes\":{\"text\":\"US unemployment 1948\\u20142016\"}},\"x_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"41512\"},\"x_range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"41508\",\"attributes\":{\"factors\":[\"1948\",\"1949\",\"1950\",\"1951\",\"1952\",\"1953\",\"1954\",\"1955\",\"1956\",\"1957\",\"1958\",\"1959\",\"1960\",\"1961\",\"1962\",\"1963\",\"1964\",\"1965\",\"1966\",\"1967\",\"1968\",\"1969\",\"1970\",\"1971\",\"1972\",\"1973\",\"1974\",\"1975\",\"1976\",\"1977\",\"1978\",\"1979\",\"1980\",\"1981\",\"1982\",\"1983\",\"1984\",\"1985\",\"1986\",\"1987\",\"1988\",\"1989\",\"1990\",\"1991\",\"1992\",\"1993\",\"1994\",\"1995\",\"1996\",\"1997\",\"1998\",\"1999\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\"]}},\"width\":800,\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"41537\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"Rect\",\"id\":\"41536\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":null},\"width\":{\"type\":\"value\",\"value\":1},\"fill_color\":{\"type\":\"field\",\"field\":\"rate\",\"transform\":{\"type\":\"object\",\"name\":\"LinearColorMapper\",\"id\":\"41499\",\"attributes\":{\"low\":2.4,\"palette\":[\"#75968f\",\"#a5bab7\",\"#c9d9d3\",\"#e2e2e2\",\"#dfccce\",\"#ddb7b1\",\"#cc7878\",\"#933b41\",\"#550b1d\"],\"high\":11.4}}},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"Year\"},\"height\":{\"type\":\"value\",\"value\":1},\"y\":{\"type\":\"field\",\"field\":\"Month\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Rect\",\"id\":\"41535\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":null},\"width\":{\"type\":\"value\",\"value\":1},\"fill_color\":{\"type\":\"field\",\"field\":\"rate\",\"transform\":{\"id\":\"41499\"}},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"Year\"},\"height\":{\"type\":\"value\",\"value\":1},\"y\":{\"type\":\"field\",\"field\":\"Month\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"41538\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"41539\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"41496\",\"attributes\":{\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"41498\"},\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"41497\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"index\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"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owIAAKQCAAClAgAApgIAAKcCAACoAgAAqQIAAKoCAACrAgAArAIAAK0CAACuAgAArwIAALACAACxAgAAsgIAALMCAAC0AgAAtQIAALYCAAC3AgAAuAIAALkCAAC6AgAAuwIAALwCAAC9AgAAvgIAAL8CAADAAgAAwQIAAMICAADDAgAAxAIAAMUCAADGAgAAxwIAAMgCAADJAgAAygIAAMsCAADMAgAAzQIAAM4CAADPAgAA0AIAANECAADSAgAA0wIAANQCAADVAgAA1gIAANcCAADYAgAA2QIAANoCAADbAgAA3AIAAN0CAADeAgAA3wIAAOACAADhAgAA4gIAAOMCAADkAgAA5QIAAOYCAADnAgAA6AIAAOkCAADqAgAA6wIAAOwCAADtAgAA7gIAAO8CAADwAgAA8QIAAPICAADzAgAA9AIAAPUCAAD2AgAA9wIAAPgCAAD5AgAA+gIAAPsCAAD8AgAA/QIAAP4CAAD/AgAAAAMAAAEDAAACAwAAAwMAAAQDAAAFAwAABgMAAAcDAAAIAwAACQMAAAoDAAALAwAADAMAAA0DAAAOAwAADwMAABADAAARAwAAEgMAABMDAAAUAwAAFQMAABYDAAAXAwAAGAMAABkDAAAaAwAAGwMAABwDAAAdAwAAHgMAAB8DAAAgAwAAIQMAACIDAAAjAwAAJAMAACUDAAAmAwAAJwMAACgDAAApAwAAKgMAACsDAAAsAwAALQMAAC4DAAAvAwAAMAMAADEDAAAyAwAAMwMAADQDAAA1AwAANgMAADcDAAA4AwAAOQMAADoDAAA7AwAA\"},\"shape\":[828],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Year\",{\"type\":\"ndarray\",\"array\":[\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\"],\"shape\":[828],\"dtype\":\"object\",\"order\":\"little\"}],[\"Month\",{\"type\":\"ndarray\",\"array\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],\"shape\":[828],\"dtype\":\"object\",\"order\":\"little\"}],[\"rate\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"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MzMVQGZmZmZmZhRAzczMzMzMGECamZmZmZkXQM3MzMzMzBZAZmZmZmZmFkAAAAAAAAAWQDMzMzMzMxdAmpmZmZmZF0BmZmZmZmYWQJqZmZmZmRVAzczMzMzMFEAzMzMzMzMVQM3MzMzMzBRAMzMzMzMzGUAAAAAAAAAYQDMzMzMzMxdAmpmZmZmZFUCamZmZmZkVQAAAAAAAABZAZmZmZmZmFkBmZmZmZmYUQAAAAAAAABRAmpmZmZmZE0AAAAAAAAAUQAAAAAAAABRAmpmZmZmZF0DNzMzMzMwWQAAAAAAAABZAMzMzMzMzE0DNzMzMzMwSQM3MzMzMzBRAAAAAAAAAFEAzMzMzMzMTQM3MzMzMzBJAmpmZmZmZEUAzMzMzMzMRQJqZmZmZmRFAzczMzMzMFEAAAAAAAAAUQAAAAAAAABRAZmZmZmZmEEDNzMzMzMwQQM3MzMzMzBJAzczMzMzMEkAAAAAAAAASQJqZmZmZmRFAzczMzMzMEEBmZmZmZmYQQAAAAAAAABBAMzMzMzMzE0DNzMzMzMwSQJqZmZmZmRFAZmZmZmZmEEAAAAAAAAAQQAAAAAAAABJAAAAAAAAAEkDNzMzMzMwQQGZmZmZmZhBAZmZmZmZmDkBmZmZmZmYOQJqZmZmZmQ1AAAAAAAAAEkCamZmZmZkRQDMzMzMzMxFAmpmZmZmZDUBmZmZmZmYOQGZmZmZmZhBAzczMzMzMEEBmZmZmZmYQQGZmZmZmZg5AzczMzMzMDECamZmZmZkNQJqZmZmZmQ1AzczMzMzMEkBmZmZmZmYSQAAAAAAAABJAzczMzMzMEEBmZmZmZmYQQM3MzMzMzBJAzczMzMzMEkCamZmZmZkTQM3MzMzMzBJAAAAAAAAAFEAzMzMzMzMVQJqZmZmZmRVAMzMzMzMzGUBmZmZmZmYYQGZmZmZmZhhAzczMzMzMFkAAAAAAAAAWQAAAAAAAABhAmpmZmZmZF0DNzMzMzMwWQJqZmZmZmRVAMzMzMzMzFUBmZmZmZmYWQM3MzMzMzBZAAAAAAAAAGkCamZmZmZkZQM3MzMzMzBhAMzMzMzMzF0AzMzMzMzMXQAAAAAAAABpAMzMzMzMzGUAAAAAAAAAYQDMzMzMzMxdAZmZmZmZmFkBmZmZmZmYWQJqZmZmZmRVAMzMzMzMzGUAAAAAAAAAYQAAAAAAAABhAmpmZmZmZFUAzMzMzMzMVQDMzMzMzMxdAzczMzMzMFkCamZmZmZkVQGZmZmZmZhRAZmZmZmZmFEDNzMzMzMwUQGZmZmZmZhRAzczMzMzMFkAzMzMzMzMXQJqZmZmZmRVAmpmZmZmZE0CamZmZmZkTQM3MzMzMzBRAzczMzMzMFECamZmZmZkTQDMzMzMzMxNAZmZmZmZmEkAzMzMzMzMTQGZmZmZmZhJAZmZmZmZmFEBmZmZmZmYUQDMzMzMzMxNAAAAAAAAAEkCamZmZmZkRQDMzMzMzMxNAAAAAAAAAFEBmZmZmZmYSQJqZmZmZmRFAZmZmZmZmEEAzMzMzMzMRQDMzMzMzMxFAAAAAAAAAFECamZmZmZkTQAAAAAAAABJAMzMzMzMzEUAzMzMzMzMRQM3MzMzMzBJAmpmZmZmZE0BmZmZmZmYSQAAAAAAAABJAmpmZmZmZEUAAAAAAAAASQDMzMzMzMxNAmpmZmZmZFUDNzMzMzMwUQM3MzMzMzBRAMzMzMzMzE0DNzMzMzMwUQM3MzMzMzBZAAAAAAAAAGEBmZmZmZmYYQAAAAAAAABhAZmZmZmZmGEAAAAAAAAAaQGZmZmZmZhxAAAAAAAAAIUDNzMzMzMwhQAAAAAAAACJAMzMzMzMzIUAzMzMzMzMiQGZmZmZmZiNAZmZmZmZmI0AzMzMzMzMjQAAAAAAAACNAAAAAAAAAI0DNzMzMzMwiQGZmZmZmZiNAMzMzMzMzJUDNzMzMzMwkQGZmZmZmZiRAAAAAAAAAI0CamZmZmZkiQDMzMzMzMyNAZmZmZmZmI0AAAAAAAAAjQGZmZmZmZiJAAAAAAAAAIkCamZmZmZkiQDMzMzMzMyJAmpmZmZmZI0AAAAAAAAAjQGZmZmZmZiJAZmZmZmZmIUBmZmZmZmYhQJqZmZmZmSJAmpmZmZmZIkAzMzMzMzMiQJqZmZmZmSFAAAAAAAAAIUBmZmZmZmYgQJqZmZmZmSBAmpmZmZmZIUBmZmZmZmYhQM3MzMzMzCBAzczMzMzMHkCamZmZmZkfQM3MzMzMzCBAMzMzMzMzIUBmZmZmZmYgQGZmZmZmZh5AAAAAAAAAHkCamZmZmZkdQGZmZmZmZh5AAAAAAAAAIUAzMzMzMzMgQGZmZmZmZh5AZmZmZmZmHEAzMzMzMzMdQDMzMzMzMx9AzczMzMzMHkAzMzMzMzMdQAAAAAAAABxAAAAAAAAAHEBmZmZmZmYaQAAAAAAAABpAAAAAAAAAHEAAAAAAAAAcQDMzMzMzMxtAmpmZmZmZF0BmZmZmZmYYQDMzMzMzMxlAAAAAAAAAGkAzMzMzMzMZQM3MzMzMzBZAAAAAAAAAFkAAAAAAAAAWQJqZmZmZmRVAZmZmZmZmGEAzMzMzMzMXQGZmZmZmZhZAZmZmZmZmFEAzMzMzMzMVQAAAAAAAABZAZmZmZmZmFkDNzMzMzMwUQJqZmZmZmRNAMzMzMzMzE0AzMzMzMzMTQDMzMzMzMxNAMzMzMzMzFUDNzMzMzMwUQGZmZmZmZhRAzczMzMzMEkAAAAAAAAASQGZmZmZmZhRAZmZmZmZmFEAAAAAAAAAUQDMzMzMzMxNAzczMzMzMEkCamZmZmZkRQAAAAAAAABJA\"},\"shape\":[828],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"glyph\":{\"type\":\"object\",\"name\":\"Rect\",\"id\":\"41534\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":null},\"width\":{\"type\":\"value\",\"value\":1},\"fill_color\":{\"type\":\"field\",\"field\":\"rate\",\"transform\":{\"id\":\"41499\"}},\"x\":{\"type\":\"field\",\"field\":\"Year\"},\"height\":{\"type\":\"value\",\"value\":1},\"y\":{\"type\":\"field\",\"field\":\"Month\"}}}}}],\"height\":300,\"right\":[{\"type\":\"object\",\"name\":\"ColorBar\",\"id\":\"41542\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"PrintfTickFormatter\",\"id\":\"41541\",\"attributes\":{\"format\":\"%d%%\"}},\"major_label_policy\":{\"type\":\"object\",\"name\":\"NoOverlap\",\"id\":\"41543\"},\"color_mapper\":{\"id\":\"41499\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"41540\",\"attributes\":{\"mantissas\":[1,2,5],\"desired_num_ticks\":9}}}}]}}]}};\n",
- " const render_items = [{\"docid\":\"44d1bf3a-a74d-4b27-9c7b-4797d28be4ab\",\"roots\":{\"41500\":\"971ef454-9e11-4765-8d30-2e09b672423d\"},\"root_ids\":[\"41500\"]}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"44d1bf3a-a74d-4b27-9c7b-4797d28be4ab\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"41500\",\"attributes\":{\"y_range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"41510\",\"attributes\":{\"factors\":[\"Dec\",\"Nov\",\"Oct\",\"Sep\",\"Aug\",\"Jul\",\"Jun\",\"May\",\"Apr\",\"Mar\",\"Feb\",\"Jan\"]}},\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"41506\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"41528\",\"attributes\":{\"renderers\":\"auto\"}}]}},\"left\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"41522\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"41524\"},\"major_label_standoff\":0,\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"41525\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"41523\"},\"major_tick_line_color\":null,\"axis_line_color\":null,\"major_label_text_font_size\":\"7px\"}}],\"above\":[{\"type\":\"object\",\"name\":\"CategoricalAxis\",\"id\":\"41516\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"CategoricalTickFormatter\",\"id\":\"41518\"},\"major_label_standoff\":0,\"ticker\":{\"type\":\"object\",\"name\":\"CategoricalTicker\",\"id\":\"41519\"},\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"41517\"},\"major_tick_line_color\":null,\"axis_line_color\":null,\"major_label_text_font_size\":\"7px\",\"major_label_orientation\":1.0}}],\"y_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"41514\"},\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"41521\",\"attributes\":{\"axis\":{\"id\":\"41516\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"41527\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"41522\"}}}],\"toolbar_location\":null,\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"41501\",\"attributes\":{\"text\":\"US unemployment 1948\\u20142016\"}},\"x_scale\":{\"type\":\"object\",\"name\":\"CategoricalScale\",\"id\":\"41512\"},\"x_range\":{\"type\":\"object\",\"name\":\"FactorRange\",\"id\":\"41508\",\"attributes\":{\"factors\":[\"1948\",\"1949\",\"1950\",\"1951\",\"1952\",\"1953\",\"1954\",\"1955\",\"1956\",\"1957\",\"1958\",\"1959\",\"1960\",\"1961\",\"1962\",\"1963\",\"1964\",\"1965\",\"1966\",\"1967\",\"1968\",\"1969\",\"1970\",\"1971\",\"1972\",\"1973\",\"1974\",\"1975\",\"1976\",\"1977\",\"1978\",\"1979\",\"1980\",\"1981\",\"1982\",\"1983\",\"1984\",\"1985\",\"1986\",\"1987\",\"1988\",\"1989\",\"1990\",\"1991\",\"1992\",\"1993\",\"1994\",\"1995\",\"1996\",\"1997\",\"1998\",\"1999\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\"]}},\"width\":800,\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"41537\",\"attributes\":{\"muted_glyph\":{\"type\":\"object\",\"name\":\"Rect\",\"id\":\"41536\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_color\":{\"type\":\"value\",\"value\":null},\"width\":{\"type\":\"value\",\"value\":1},\"fill_color\":{\"type\":\"field\",\"field\":\"rate\",\"transform\":{\"type\":\"object\",\"name\":\"LinearColorMapper\",\"id\":\"41499\",\"attributes\":{\"low\":2.4,\"palette\":[\"#75968f\",\"#a5bab7\",\"#c9d9d3\",\"#e2e2e2\",\"#dfccce\",\"#ddb7b1\",\"#cc7878\",\"#933b41\",\"#550b1d\"],\"high\":11.4}}},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"x\":{\"type\":\"field\",\"field\":\"Year\"},\"height\":{\"type\":\"value\",\"value\":1},\"y\":{\"type\":\"field\",\"field\":\"Month\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Rect\",\"id\":\"41535\",\"attributes\":{\"fill_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_color\":{\"type\":\"value\",\"value\":null},\"width\":{\"type\":\"value\",\"value\":1},\"fill_color\":{\"type\":\"field\",\"field\":\"rate\",\"transform\":{\"id\":\"41499\"}},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"x\":{\"type\":\"field\",\"field\":\"Year\"},\"height\":{\"type\":\"value\",\"value\":1},\"y\":{\"type\":\"field\",\"field\":\"Month\"},\"hatch_alpha\":{\"type\":\"value\",\"value\":0.1}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"41538\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"41539\"}}},\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"41496\",\"attributes\":{\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"41498\"},\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"41497\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"data\":{\"type\":\"map\",\"entries\":[[\"index\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"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owIAAKQCAAClAgAApgIAAKcCAACoAgAAqQIAAKoCAACrAgAArAIAAK0CAACuAgAArwIAALACAACxAgAAsgIAALMCAAC0AgAAtQIAALYCAAC3AgAAuAIAALkCAAC6AgAAuwIAALwCAAC9AgAAvgIAAL8CAADAAgAAwQIAAMICAADDAgAAxAIAAMUCAADGAgAAxwIAAMgCAADJAgAAygIAAMsCAADMAgAAzQIAAM4CAADPAgAA0AIAANECAADSAgAA0wIAANQCAADVAgAA1gIAANcCAADYAgAA2QIAANoCAADbAgAA3AIAAN0CAADeAgAA3wIAAOACAADhAgAA4gIAAOMCAADkAgAA5QIAAOYCAADnAgAA6AIAAOkCAADqAgAA6wIAAOwCAADtAgAA7gIAAO8CAADwAgAA8QIAAPICAADzAgAA9AIAAPUCAAD2AgAA9wIAAPgCAAD5AgAA+gIAAPsCAAD8AgAA/QIAAP4CAAD/AgAAAAMAAAEDAAACAwAAAwMAAAQDAAAFAwAABgMAAAcDAAAIAwAACQMAAAoDAAALAwAADAMAAA0DAAAOAwAADwMAABADAAARAwAAEgMAABMDAAAUAwAAFQMAABYDAAAXAwAAGAMAABkDAAAaAwAAGwMAABwDAAAdAwAAHgMAAB8DAAAgAwAAIQMAACIDAAAjAwAAJAMAACUDAAAmAwAAJwMAACgDAAApAwAAKgMAACsDAAAsAwAALQMAAC4DAAAvAwAAMAMAADEDAAAyAwAAMwMAADQDAAA1AwAANgMAADcDAAA4AwAAOQMAADoDAAA7AwAA\"},\"shape\":[828],\"dtype\":\"int32\",\"order\":\"little\"}],[\"Year\",{\"type\":\"ndarray\",\"array\":[\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1948\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1949\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1950\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1951\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1952\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1953\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1954\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1955\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1956\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1957\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1958\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1959\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1960\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1961\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1962\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1963\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1964\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1965\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1966\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1967\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1968\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1969\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1970\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1971\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1972\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1973\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1974\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1975\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1976\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1977\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1978\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1979\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1980\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1981\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1982\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1983\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1984\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1985\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1986\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1987\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1988\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1989\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1990\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1991\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1992\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1993\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1994\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1995\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1996\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1997\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1998\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"1999\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2000\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2001\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2002\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2003\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2004\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2005\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2006\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2007\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2008\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2009\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2010\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2011\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2012\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2013\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2014\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2015\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\",\"2016\"],\"shape\":[828],\"dtype\":\"object\",\"order\":\"little\"}],[\"Month\",{\"type\":\"ndarray\",\"array\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],\"shape\":[828],\"dtype\":\"object\",\"order\":\"little\"}],[\"rate\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"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MzMVQGZmZmZmZhRAzczMzMzMGECamZmZmZkXQM3MzMzMzBZAZmZmZmZmFkAAAAAAAAAWQDMzMzMzMxdAmpmZmZmZF0BmZmZmZmYWQJqZmZmZmRVAzczMzMzMFEAzMzMzMzMVQM3MzMzMzBRAMzMzMzMzGUAAAAAAAAAYQDMzMzMzMxdAmpmZmZmZFUCamZmZmZkVQAAAAAAAABZAZmZmZmZmFkBmZmZmZmYUQAAAAAAAABRAmpmZmZmZE0AAAAAAAAAUQAAAAAAAABRAmpmZmZmZF0DNzMzMzMwWQAAAAAAAABZAMzMzMzMzE0DNzMzMzMwSQM3MzMzMzBRAAAAAAAAAFEAzMzMzMzMTQM3MzMzMzBJAmpmZmZmZEUAzMzMzMzMRQJqZmZmZmRFAzczMzMzMFEAAAAAAAAAUQAAAAAAAABRAZmZmZmZmEEDNzMzMzMwQQM3MzMzMzBJAzczMzMzMEkAAAAAAAAASQJqZmZmZmRFAzczMzMzMEEBmZmZmZmYQQAAAAAAAABBAMzMzMzMzE0DNzMzMzMwSQJqZmZmZmRFAZmZmZmZmEEAAAAAAAAAQQAAAAAAAABJAAAAAAAAAEkDNzMzMzMwQQGZmZmZmZhBAZmZmZmZmDkBmZmZmZmYOQJqZmZmZmQ1AAAAAAAAAEkCamZmZmZkRQDMzMzMzMxFAmpmZmZmZDUBmZmZmZmYOQGZmZmZmZhBAzczMzMzMEEBmZmZmZmYQQGZmZmZmZg5AzczMzMzMDECamZmZmZkNQJqZmZmZmQ1AzczMzMzMEkBmZmZmZmYSQAAAAAAAABJAzczMzMzMEEBmZmZmZmYQQM3MzMzMzBJAzczMzMzMEkCamZmZmZkTQM3MzMzMzBJAAAAAAAAAFEAzMzMzMzMVQJqZmZmZmRVAMzMzMzMzGUBmZmZmZmYYQGZmZmZmZhhAzczMzMzMFkAAAAAAAAAWQAAAAAAAABhAmpmZmZmZF0DNzMzMzMwWQJqZmZmZmRVAMzMzMzMzFUBmZmZmZmYWQM3MzMzMzBZAAAAAAAAAGkCamZmZmZkZQM3MzMzMzBhAMzMzMzMzF0AzMzMzMzMXQAAAAAAAABpAMzMzMzMzGUAAAAAAAAAYQDMzMzMzMxdAZmZmZmZmFkBmZmZmZmYWQJqZmZmZmRVAMzMzMzMzGUAAAAAAAAAYQAAAAAAAABhAmpmZmZmZFUAzMzMzMzMVQDMzMzMzMxdAzczMzMzMFkCamZmZmZkVQGZmZmZmZhRAZmZmZmZmFEDNzMzMzMwUQGZmZmZmZhRAzczMzMzMFkAzMzMzMzMXQJqZmZmZmRVAmpmZmZmZE0CamZmZmZkTQM3MzMzMzBRAzczMzMzMFECamZmZmZkTQDMzMzMzMxNAZmZmZmZmEkAzMzMzMzMTQGZmZmZmZhJAZmZmZmZmFEBmZmZmZmYUQDMzMzMzMxNAAAAAAAAAEkCamZmZmZkRQDMzMzMzMxNAAAAAAAAAFEBmZmZmZmYSQJqZmZmZmRFAZmZmZmZmEEAzMzMzMzMRQDMzMzMzMxFAAAAAAAAAFECamZmZmZkTQAAAAAAAABJAMzMzMzMzEUAzMzMzMzMRQM3MzMzMzBJAmpmZmZmZE0BmZmZmZmYSQAAAAAAAABJAmpmZmZmZEUAAAAAAAAASQDMzMzMzMxNAmpmZmZmZFUDNzMzMzMwUQM3MzMzMzBRAMzMzMzMzE0DNzMzMzMwUQM3MzMzMzBZAAAAAAAAAGEBmZmZmZmYYQAAAAAAAABhAZmZmZmZmGEAAAAAAAAAaQGZmZmZmZhxAAAAAAAAAIUDNzMzMzMwhQAAAAAAAACJAMzMzMzMzIUAzMzMzMzMiQGZmZmZmZiNAZmZmZmZmI0AzMzMzMzMjQAAAAAAAACNAAAAAAAAAI0DNzMzMzMwiQGZmZmZmZiNAMzMzMzMzJUDNzMzMzMwkQGZmZmZmZiRAAAAAAAAAI0CamZmZmZkiQDMzMzMzMyNAZmZmZmZmI0AAAAAAAAAjQGZmZmZmZiJAAAAAAAAAIkCamZmZmZkiQDMzMzMzMyJAmpmZmZmZI0AAAAAAAAAjQGZmZmZmZiJAZmZmZmZmIUBmZmZmZmYhQJqZmZmZmSJAmpmZmZmZIkAzMzMzMzMiQJqZmZmZmSFAAAAAAAAAIUBmZmZmZmYgQJqZmZmZmSBAmpmZmZmZIUBmZmZmZmYhQM3MzMzMzCBAzczMzMzMHkCamZmZmZkfQM3MzMzMzCBAMzMzMzMzIUBmZmZmZmYgQGZmZmZmZh5AAAAAAAAAHkCamZmZmZkdQGZmZmZmZh5AAAAAAAAAIUAzMzMzMzMgQGZmZmZmZh5AZmZmZmZmHEAzMzMzMzMdQDMzMzMzMx9AzczMzMzMHkAzMzMzMzMdQAAAAAAAABxAAAAAAAAAHEBmZmZmZmYaQAAAAAAAABpAAAAAAAAAHEAAAAAAAAAcQDMzMzMzMxtAmpmZmZmZF0BmZmZmZmYYQDMzMzMzMxlAAAAAAAAAGkAzMzMzMzMZQM3MzMzMzBZAAAAAAAAAFkAAAAAAAAAWQJqZmZmZmRVAZmZmZmZmGEAzMzMzMzMXQGZmZmZmZhZAZmZmZmZmFEAzMzMzMzMVQAAAAAAAABZAZmZmZmZmFkDNzMzMzMwUQJqZmZmZmRNAMzMzMzMzE0AzMzMzMzMTQDMzMzMzMxNAMzMzMzMzFUDNzMzMzMwUQGZmZmZmZhRAzczMzMzMEkAAAAAAAAASQGZmZmZmZhRAZmZmZmZmFEAAAAAAAAAUQDMzMzMzMxNAzczMzMzMEkCamZmZmZkRQAAAAAAAABJA\"},\"shape\":[828],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"glyph\":{\"type\":\"object\",\"name\":\"Rect\",\"id\":\"41534\",\"attributes\":{\"line_color\":{\"type\":\"value\",\"value\":null},\"width\":{\"type\":\"value\",\"value\":1},\"fill_color\":{\"type\":\"field\",\"field\":\"rate\",\"transform\":{\"id\":\"41499\"}},\"x\":{\"type\":\"field\",\"field\":\"Year\"},\"height\":{\"type\":\"value\",\"value\":1},\"y\":{\"type\":\"field\",\"field\":\"Month\"}}}}}],\"height\":300,\"right\":[{\"type\":\"object\",\"name\":\"ColorBar\",\"id\":\"41542\",\"attributes\":{\"formatter\":{\"type\":\"object\",\"name\":\"PrintfTickFormatter\",\"id\":\"41541\",\"attributes\":{\"format\":\"%d%%\"}},\"major_label_policy\":{\"type\":\"object\",\"name\":\"NoOverlap\",\"id\":\"41543\"},\"color_mapper\":{\"id\":\"41499\"},\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"41540\",\"attributes\":{\"mantissas\":[1,2,5],\"desired_num_ticks\":9}}}}]}}]}};\n const render_items = [{\"docid\":\"44d1bf3a-a74d-4b27-9c7b-4797d28be4ab\",\"roots\":{\"41500\":\"971ef454-9e11-4765-8d30-2e09b672423d\"},\"root_ids\":[\"41500\"]}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -5528,32 +4664,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"6fc7af1d-9af6-47ac-a22f-005fa4aa52d5\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"height\":648,\"outline_line_color\":null,\"renderers\":[{\"id\":\"3273\"},{\"id\":\"3279\"}],\"title\":{\"id\":\"3256\"},\"toolbar\":{\"id\":\"3267\"},\"toolbar_location\":null,\"width\":478,\"x_range\":{\"id\":\"3258\"},\"x_scale\":{\"id\":\"3262\"},\"y_range\":{\"id\":\"3260\"},\"y_scale\":{\"id\":\"3264\"}},\"id\":\"3255\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"line_alpha\":0.1,\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3277\",\"type\":\"Line\"},{\"attributes\":{\"tools\":[{\"id\":\"3266\"}]},\"id\":\"3267\",\"type\":\"Toolbar\"},{\"attributes\":{\"data\":{\"name\":[\"AWI\",\"CISPA\",\"DESY\",\"DKFZ\",\"DLR\",\"DZNE\",\"FZJ\",\"GEOMAR\",\"GFZ\",\"GSI\",\"HGF\",\"HZB\",\"HZDR\",\"HZI\",\"HelmholtzMunich\",\"Hereon\",\"KIT\",\"MDC\",\"UFZ\"],\"x\":[147,50,205,152,92,97,35,205,345,151,350,375,405,240,300,257,131,374,329],\"y\":[527,181,530,187,286,262,288,590,408,227,444,428,322,403,92,505,138,455,336]},\"selected\":{\"id\":\"3406\"},\"selection_policy\":{\"id\":\"3405\"}},\"id\":\"3254\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"3405\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"3406\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"white\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_width\":{\"value\":2},\"size\":{\"value\":12},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3272\",\"type\":\"Scatter\"},{\"attributes\":{\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3276\",\"type\":\"Line\"},{\"attributes\":{\"source\":{\"id\":\"3275\"}},\"id\":\"3280\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":0.2,\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3278\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"3262\",\"type\":\"LinearScale\"},{\"attributes\":{\"source\":{\"id\":\"3254\"}},\"id\":\"3274\",\"type\":\"CDSView\"},{\"attributes\":{\"end\":646.0000000000002},\"id\":\"3260\",\"type\":\"Range1d\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"value\":\"white\"},\"line_width\":{\"value\":2},\"size\":{\"value\":12},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3270\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"3407\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"3275\"},\"glyph\":{\"id\":\"3276\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"3278\"},\"nonselection_glyph\":{\"id\":\"3277\"},\"view\":{\"id\":\"3280\"}},\"id\":\"3279\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"3264\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"HGF centers\"},\"id\":\"3256\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"3408\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"white\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_width\":{\"value\":2},\"size\":{\"value\":12},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3271\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null},\"id\":\"3266\",\"type\":\"HoverTool\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"3254\"},\"glyph\":{\"id\":\"3270\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"3272\"},\"nonselection_glyph\":{\"id\":\"3271\"},\"view\":{\"id\":\"3274\"}},\"id\":\"3273\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"end\":475.57299999999907},\"id\":\"3258\",\"type\":\"Range1d\"},{\"attributes\":{\"data\":{\"x\":[473.30300000000136,473.30300000000136,471.05300000000136,468.2330000000014,461.45300000000145,457.8830000000015,458.69300000000146,457.80300000000136,459.81300000000135,459.92300000000125,459.4630000000012,456.8430000000013,454.3430000000013,454.29300000000137,452.2730000000014,450.83300000000133,451.83300000000133,455.43300000000124,455.19300000000123,455.3630000000013,455.79300000000137,456.2630000000014,453.33300000000133,454.18300000000124,453.3730000000013,453.3530000000013,452.58300000000133,452.58300000000133,452.7730000000014,453.6230000000013,453.57300000000134,451.1430000000013,450.3430000000013,446.40300000000127,445.7130000000012,444.7130000000012,443.5730000000011,443.2330000000012,445.27300000000116,446.2330000000012,446.8930000000013,446.66300000000126,447.2330000000012,447.80300000000113,444.15300000000104,441.40300000000104,436.443000000001,435.48300000000097,432.88300000000106,430.5830000000011,428.2130000000012,424.53300000000115,424.28300000000115,423.87300000000107,423.53300000000115,420.8130000000011,420.7130000000012,421.3830000000013,421.4930000000012,421.52300000000116,427.3430000000011,427.8630000000011,431.173000000001,430.5930000000011,431.8430000000011,433.5830000000011,432.5830000000011,431.173000000001,431.173000000001,431.0830000000011,428.78300000000115,427.76300000000117,426.5930000000011,425.963000000001,424.66300000000103,423.3630000000011,422.963000000001,422.953000000001,422.923000000001,421.713000000001,420.73300000000097,420.51300000000094,420.0330000000009,420.02300000000093,419.34300000000087,417.223000000001,417.0630000000009,415.59300000000087,414.2830000000009,411.3230000000009,409.963000000001,406.933000000001,404.963000000001,403.0930000000011,402.2230000000012,402.3230000000011,403.88300000000106,404.443000000001,404.8630000000011,407.52300000000116,408.37300000000107,409.3130000000011,411.423000000001,413.953000000001,416.223000000001,417.703000000001,418.51300000000094,418.473000000001,418.193000000001,418.173000000001,417.99300000000096,413.37300000000107,411.80300000000113,408.8230000000011,407.76300000000117,403.19300000000123,401.77300000000116,399.15300000000127,397.6030000000013,395.55300000000136,395.18300000000147,393.36300000000153,392.1730000000015,389.84300000000155,386.75300000000163,381.59300000000155,380.45300000000145,380.82300000000134,379.30300000000136,376.9930000000014,375.3730000000015,374.5530000000016,373.8830000000015,373.6430000000015,372.22300000000143,371.82300000000134,371.80300000000136,372.44300000000146,374.7330000000014,375.72300000000143,378.06300000000135,377.6130000000013,377.1230000000013,376.66300000000126,376.7130000000012,377.02300000000116,377.13300000000106,377.183000000001,377.213000000001,377.50300000000095,378.8230000000009,380.02300000000093,380.99300000000096,380.85300000000086,380.97300000000075,381.20300000000077,381.59300000000087,382.86300000000085,384.3030000000009,384.4030000000008,384.5230000000007,385.58300000000065,386.0330000000007,388.21300000000076,388.6930000000008,388.20300000000077,388.2930000000007,388.56300000000067,391.07300000000066,392.49300000000073,392.49300000000073,392.5030000000007,393.56300000000067,391.31300000000067,390.5330000000007,388.3930000000006,388.1130000000006,387.82300000000066,387.23300000000074,386.7530000000007,386.59300000000064,386.2930000000007,385.4330000000008,385.3330000000009,385.1830000000008,384.97300000000075,383.97300000000075,382.4430000000008,381.60300000000086,381.3030000000009,380.5330000000009,379.713000000001,379.37300000000107,379.38300000000106,378.01300000000117,377.5930000000011,376.26300000000117,374.92300000000125,374.4530000000012,374.1130000000013,373.31300000000135,372.08300000000133,371.30300000000136,370.8430000000013,369.93300000000124,370.7430000000012,371.5730000000011,373.90300000000104,374.0730000000011,374.0630000000011,375.0730000000011,376.12300000000107,376.01300000000117,375.4730000000012,374.4830000000012,371.0930000000011,369.0630000000011,366.4630000000012,364.4930000000012,364.0830000000011,365.4830000000012,367.8530000000011,367.37300000000107,366.48300000000097,366.15300000000104,365.943000000001,365.7930000000009,365.1630000000008,364.2630000000007,362.8030000000007,362.46300000000076,362.46300000000076,362.4430000000008,362.1430000000008,360.5130000000007,362.2730000000007,362.95300000000077,363.0030000000007,363.10300000000063,363.3030000000007,365.7930000000007,367.49300000000073,366.63300000000083,362.0530000000009,361.4230000000008,361.3030000000009,361.223000000001,363.3330000000009,363.5830000000009,364.0630000000009,366.02300000000093,367.87300000000084,368.85300000000086,370.11300000000085,372.26300000000094,372.73300000000097,373.00300000000095,374.203000000001,376.3630000000011,375.90300000000104,375.77300000000093,375.66300000000103,371.8130000000011,370.52300000000116,368.37300000000107,368.37300000000107,366.173000000001,362.673000000001,360.453000000001,361.01300000000094,361.14300000000105,360.87300000000107,358.963000000001,357.203000000001,356.98300000000097,354.87300000000107,354.5030000000012,354.3830000000013,353.65300000000127,351.6230000000013,350.7230000000012,342.92300000000125,340.78300000000115,337.41300000000126,335.6430000000013,334.7430000000012,332.80300000000113,332.14300000000105,329.223000000001,327.6030000000011,327.05300000000113,324.673000000001,323.223000000001,322.713000000001,318.51300000000094,317.0530000000009,313.99300000000096,313.953000000001,312.0730000000009,310.1930000000008,304.61300000000085,303.4230000000008,301.3130000000009,300.8330000000009,299.62300000000084,297.01300000000083,295.9130000000008,294.00300000000084,291.76300000000083,290.6430000000008,289.45300000000077,289.37300000000073,289.48300000000074,289.7930000000007,288.5130000000007,287.6330000000007,286.45300000000077,286.0030000000007,285.1430000000007,285.1630000000007,285.1630000000007,285.3830000000007,285.8030000000007,286.21300000000065,286.72300000000064,287.48300000000063,286.96300000000065,286.83300000000065,286.47300000000064,286.44300000000067,286.2930000000007,285.9230000000007,285.07300000000066,279.69300000000067,278.56300000000067,279.9230000000007,281.11300000000074,282.73300000000074,283.0030000000007,283.0030000000007,282.9030000000007,282.9130000000007,282.71300000000065,282.0330000000007,279.5530000000007,277.45300000000066,276.0430000000007,275.49300000000073,275.1430000000007,273.45300000000066,273.0510000000006,273.1950000000006,274.1590000000007,272.7880000000007,270.00100000000066,265.88100000000065,263.0890000000006,256.85300000000063,256.05900000000065,255.55300000000068,252.17000000000064,250.9220000000006,249.1910000000006,249.2920000000006,252.62000000000057,257.58800000000053,259.7200000000005,260.0130000000005,265.21800000000053,264.5380000000006,264.3600000000006,264.0990000000006,264.15000000000066,264.18800000000067,265.1000000000007,266.4130000000007,266.9080000000007,267.9900000000007,268.65600000000074,269.0050000000008,270.20900000000074,271.1930000000008,272.9650000000008,274.0780000000009,275.26300000000083,274.25800000000083,272.98400000000083,272.12700000000086,271.6600000000009,268.8890000000009,264.57500000000095,263.025000000001,260.228000000001,259.011000000001,258.713000000001,258.457000000001,258.63300000000106,258.63300000000106,259.2660000000011,259.8810000000011,262.9630000000011,263.2890000000011,263.86400000000117,262.9600000000012,262.7100000000012,262.4050000000012,261.25000000000125,260.0070000000012,258.41900000000123,252.98700000000122,251.58700000000124,247.8680000000012,247.6030000000012,243.2040000000012,242.70600000000115,235.22900000000118,231.90900000000113,230.71100000000115,226.0350000000011,224.35100000000114,222.66800000000114,221.2280000000011,221.07300000000112,220.47100000000114,220.68100000000118,221.49000000000115,219.0310000000012,218.3150000000012,216.02400000000114,214.59700000000112,209.7470000000011,205.4390000000011,204.69300000000112,204.4050000000011,205.91400000000112,206.24900000000116,211.22000000000116,212.73100000000113,213.05300000000113,213.29200000000117,212.9880000000012,211.56600000000117,211.09100000000115,209.8530000000011,210.74900000000105,209.80700000000104,207.03300000000104,205.857000000001,205.857000000001,204.92200000000105,201.222000000001,196.93600000000106,196.66600000000108,191.8480000000011,191.8480000000011,190.71100000000115,185.82100000000116,184.28500000000122,184.15900000000124,183.66000000000122,183.57700000000125,182.90800000000127,179.22100000000125,176.8730000000013,175.91500000000133,175.52100000000132,174.9740000000013,170.2090000000013,164.6660000000013,164.05300000000125,160.6130000000012,153.55400000000122,152.20000000000118,150.15200000000118,148.79300000000114,146.77000000000112,144.9530000000011,144.85100000000114,144.7760000000011,143.91100000000108,135.79900000000112,133.9150000000011,133.7130000000011,133.41700000000105,133.19200000000103,133.400000000001,133.79300000000103,134.366000000001,136.42500000000098,137.554000000001,138.79100000000096,137.81100000000094,136.650000000001,134.58500000000095,132.88700000000097,131.63900000000092,131.12400000000093,128.26300000000094,127.93200000000093,127.96300000000087,127.89100000000087,129.10400000000084,129.84500000000082,130.97200000000078,131.15700000000072,131.09200000000067,131.25100000000066,131.3940000000007,131.47800000000063,132.11200000000065,132.19300000000067,134.34800000000064,135.75900000000058,138.53400000000056,139.27000000000055,140.77900000000056,142.02200000000062,143.1140000000006,143.14500000000055,143.24100000000055,146.30800000000056,147.21100000000058,147.72800000000063,149.7010000000006,150.53600000000063,152.56300000000067,153.77600000000064,154.1910000000006,154.09400000000062,153.67500000000064,155.8350000000006,156.48100000000056,156.33800000000053,156.00000000000057,155.78800000000058,154.71300000000053,153.12000000000057,153.15900000000056,154.8390000000005,155.35500000000047,155.8200000000005,157.13600000000054,158.3630000000005,160.49700000000053,161.8870000000005,162.4500000000005,161.35300000000052,158.70600000000047,158.55400000000043,158.0310000000004,157.90200000000038,157.50800000000038,156.5450000000004,154.10000000000036,152.01800000000037,150.35000000000036,145.21200000000033,143.24000000000035,142.15000000000032,143.3810000000003,146.03600000000029,145.49300000000028,143.70300000000032,141.94300000000032,143.74100000000033,143.79200000000037,143.85100000000034,144.1850000000003,145.77800000000025,146.70100000000025,147.8140000000003,149.62500000000034,151.59200000000033,154.23100000000034,154.49600000000032,153.86100000000033,153.16200000000038,153.2330000000004,153.6270000000004,154.00900000000036,156.1220000000004,158.26100000000042,158.68800000000044,159.11000000000047,159.3720000000004,160.01400000000046,161.00600000000043,161.11100000000044,161.0120000000004,160.59300000000042,159.48400000000038,157.01400000000035,155.75400000000036,155.06800000000032,153.55700000000036,154.09600000000034,156.81200000000035,157.27900000000034,159.23100000000034,162.6840000000003,163.9590000000003,164.85900000000026,166.86500000000024,169.23000000000025,169.9770000000002,175.46000000000015,176.6840000000002,179.36100000000022,180.15300000000025,177.5450000000003,171.3340000000003,164.84500000000025,157.22900000000027,150.45100000000025,144.24300000000028,140.57200000000023,138.03200000000027,138.87900000000025,140.57200000000023,140.57200000000023,138.59900000000027,136.34000000000026,132.67600000000027,128.1600000000003,125.33500000000026,124.7710000000003,127.02700000000027,129.00800000000027,127.58900000000028,122.79600000000028,118.84200000000033,116.5880000000003,121.09700000000032,121.09700000000032,118.56200000000035,115.45800000000031,114.0450000000003,110.0930000000003,105.57800000000032,98.80400000000031,90.05600000000027,83.28200000000027,75.38300000000027,69.45300000000032,70.29900000000032,68.89000000000033,65.78200000000038,64.37400000000036,66.06800000000032,75.38300000000038,75.38300000000038,74.25100000000043,74.5360000000004,72.84300000000042,73.12400000000036,73.12400000000036,68.0410000000004,65.78200000000038,64.93600000000038,62.9640000000004,57.60100000000034,52.80700000000036,47.72200000000032,48.290000000000305,48.57000000000028,46.595000000000255,48.00300000000027,54.779000000000224,59.57400000000018,61.83500000000015,64.65800000000013,64.65800000000013,62.67900000000009,64.01100000000008,64.00900000000013,61.445000000000164,58.59300000000019,58.334000000000174,57.63700000000017,55.737000000000194,54.14300000000014,53.39800000000014,50.54000000000019,46.76900000000023,46.438000000000216,45.14100000000019,44.62400000000014,46.73400000000015,47.31900000000019,50.50500000000022,51.0300000000002,51.33700000000022,51.02400000000023,50.349000000000274,49.01800000000026,46.45900000000029,44.07600000000025,42.68700000000024,35.61800000000028,33.202000000000226,32.51400000000024,29.453000000000202,28.095000000000255,28.89500000000021,29.487000000000194,29.449000000000183,28.1550000000002,23.424000000000206,22.76600000000019,21.23400000000015,19.612000000000194,19.20400000000018,17.247000000000185,14.695000000000164,14.947000000000116,15.549000000000092,16.828000000000088,14.256000000000085,12.745000000000118,10.639000000000124,7.805000000000177,5.921000000000163,7.176000000000158,8.268000000000143,7.9340000000001965,5.606000000000222,4.5870000000002165,6.383000000000266,7.11400000000026,8.779000000000224,9.713000000000193,11.883000000000152,12.35300000000018,13.79700000000014,13.664000000000101,12.217000000000098,13.601000000000113,16.219000000000165,16.977000000000203,17.91900000000021,18.352000000000203,18.54000000000019,18.007000000000176,17.935000000000173,17.01200000000017,14.947000000000116,12.75500000000011,11.291000000000054,9.21300000000008,10.079000000000065,11.946000000000026,13.452999999999975,13.259000000000015,13.884000000000015,14.20799999999997,12.727999999999952,12.317999999999984,8.947999999999979,8.20799999999997,6.8940000000000055,4.671000000000049,4.254000000000019,3.3220000000000027,2.0810000000000173,0.42200000000002547,0.0,0.3990000000000009,0.3170000000000073,0.6789999999999736,1.891999999999939,2.74899999999991,5.378999999999905,6.760999999999854,6.945999999999799,7.093999999999824,6.736999999999853,6.416999999999803,9.058999999999855,9.614999999999895,9.712999999999852,9.923999999999864,10.031999999999812,9.782999999999788,9.276999999999816,8.284999999999854,7.410999999999831,6.251999999999839,5.763999999999783,4.951999999999771,3.6209999999997535,5.334999999999809,6.0899999999998045,6.514999999999759,6.35899999999981,6.371999999999844,8.066999999999894,8.61999999999989,10.017999999999915,10.825999999999908,11.236999999999853,12.013999999999896,12.579999999999927,12.843999999999937,14.718999999999937,16.284999999999968,17.365999999999985,17.552999999999997,17.653999999999996,18.270999999999958,17.310999999999922,15.557999999999879,13.96699999999987,14.78599999999983,15.225999999999885,15.579999999999927,17.195999999999913,18.81799999999987,19.603999999999814,22.490999999999758,23.462999999999738,23.622999999999706,23.08599999999967,23.535999999999717,23.52799999999968,23.86799999999971,23.868999999999687,24.832999999999743,24.852999999999724,25.26399999999967,25.119999999999663,25.03799999999967,23.250999999999635,22.70999999999958,21.132999999999583,18.239999999999554,15.710999999999558,13.96699999999953,12.612999999999488,12.797999999999433,11.690999999999462,10.453999999999496,10.034999999999513,9.274999999999523,8.681999999999562,9.848999999999592,11.626999999999612,12.423999999999637,13.948999999999614,17.135999999999626,18.204999999999586,21.05499999999961,21.577999999999633,22.802999999999656,22.927999999999656,22.9789999999997,27.404999999999745,29.29199999999969,29.247999999999706,28.892999999999688,28.153999999999655,27.155999999999608,24.676999999999566,24.545999999999594,23.479999999999563,20.731999999999516,20.300999999999476,19.83399999999949,19.390999999999508,20.49399999999946,20.630999999999403,23.73599999999942,27.404999999999404,30.78899999999942,32.20099999999945,32.20099999999945,33.327999999999406,37.2849999999994,39.53699999999935,39.2559999999994,41.80199999999945,44.61699999999951,46.8769999999995,46.31399999999951,51.10999999999956,55.343999999999596,56.753999999999564,59.29499999999962,61.83499999999958,68.0409999999996,71.14799999999957,72.67299999999955,72.80799999999954,73.90399999999954,74.41399999999953,77.18399999999951,77.50899999999956,79.14999999999952,80.84399999999948,80.88099999999952,82.30099999999948,83.7519999999995,85.72599999999954,86.73599999999954,87.0069999999995,87.35999999999945,90.76299999999947,91.9439999999995,92.78299999999956,93.04199999999958,93.72699999999952,94.75799999999947,96.96299999999951,97.73599999999954,97.76999999999953,98.0499999999995,99.6509999999995,100.09199999999953,102.03199999999958,104.07299999999964,105.1129999999996,106.5169999999996,109.58499999999958,111.61399999999958,112.1179999999996,116.02299999999957,118.92199999999957,118.6179999999996,114.46199999999965,113.81199999999967,111.86099999999965,107.5319999999997,105.40599999999972,104.66699999999969,100.87199999999973,96.92099999999971,94.65499999999975,93.4069999999997,93.27799999999968,92.93199999999968,92.40799999999967,92.29299999999967,89.60299999999961,87.87299999999959,86.57299999999964,85.04299999999967,84.08899999999971,82.82299999999975,84.93799999999976,85.43099999999981,84.72599999999977,83.04299999999978,81.99499999999978,81.63699999999983,81.2439999999998,80.60499999999979,80.32899999999984,79.78099999999984,81.65499999999986,83.26499999999987,83.40699999999993,85.64999999999998,87.86799999999994,88.77199999999993,88.03199999999993,87.12099999999998,87.24799999999993,89.85299999999995,91.77699999999993,95.3839999999999,99.93299999999988,100.49399999999991,102.00499999999988,104.13999999999987,113.45299999999986,121.03599999999983,122.37999999999988,128.14999999999986,132.52599999999984,133.30399999999986,133.12999999999988,134.6729999999999,135.9459999999999,138.4079999999999,138.4079999999999,139.16499999999985,141.88499999999988,142.43299999999988,142.88699999999983,140.88599999999985,138.8019999999999,136.68499999999995,135.94799999999998,133.82799999999997,131.55999999999995,131.10699999999997,132.10799999999995,134.1199999999999,134.25199999999984,135.92599999999982,139.01899999999978,140.13099999999974,140.9549999999997,142.4929999999997,144.5949999999997,148.14399999999966,146.4939999999997,144.3689999999997,144.58399999999972,147.56699999999967,148.65999999999963,148.78999999999962,149.98599999999965,151.5839999999996,152.8149999999996,151.96199999999965,152.87199999999962,154.78799999999967,155.17799999999966,157.0409999999997,159.6039999999997,164.9159999999997,166.37199999999973,174.10099999999977,176.84599999999978,183.6189999999998,189.29399999999976,190.1579999999998,194.89599999999984,195.50599999999986,197.5809999999999,198.0039999999999,198.5519999999999,200.4999999999999,203.1529999999999,204.70399999999995,205.16999999999996,205.25799999999992,205.13799999999992,205.12799999999993,205.1239999999999,206.50199999999995,207.32499999999993,208.3599999999999,208.4269999999999,208.71499999999992,210.6389999999999,211.2539999999999,212.2489999999999,215.5329999999999,216.1729999999999,216.63499999999988,218.21499999999992,222.16599999999994,222.7689999999999,224.03599999999994,223.85799999999995,222.5999999999999,224.00099999999986,226.28599999999983,229.9119999999998,230.2009999999998,230.7439999999998,230.99099999999976,230.65099999999973,229.58699999999976,228.70899999999972,230.44699999999978,231.37599999999975,232.02899999999977,239.2059999999998,243.20399999999984,245.25999999999988,245.92799999999988,246.41199999999992,245.3309999999999,244.59899999999993,244.8789999999999,246.25999999999988,248.02199999999982,252.48599999999988,253.54999999999984,255.3309999999998,258.12199999999984,260.90999999999985,263.14599999999984,266.2549999999999,267.11799999999994,268.24699999999996,267.6859999999999,266.6399999999999,269.2389999999999,270.0279999999999,270.67999999999995,273.049,273.119,277.043,277.793,285.443,286.903,286.803,287.84299999999996,288.2729999999999,289.71299999999997,291.8929999999999,292.1629999999999,295.0329999999999,295.4129999999999,298.4329999999999,299.37299999999993,299.37299999999993,298.23299999999995,298.24299999999994,300.313,302.023,303.87299999999993,307.273,307.87299999999993,308.25300000000004,312.793,313.3829999999999,314.01300000000003,316.073,318.6629999999999,322.2529999999998,330.6229999999997,330.94299999999964,333.7429999999996,336.5929999999995,338.6929999999994,340.7929999999993,340.88299999999924,342.7929999999993,341.87299999999925,341.5529999999993,340.9229999999992,342.5729999999993,343.9529999999994,343.38299999999947,343.29299999999955,344.3329999999995,347.4429999999994,351.8029999999993,353.85299999999927,354.4329999999992,357.64299999999923,358.38299999999924,360.10299999999927,362.6929999999992,363.5929999999993,367.00299999999936,367.62299999999925,369.73299999999915,371.46299999999917,372.1929999999992,374.5229999999991,375.0629999999991,374.5329999999991,374.00299999999913,373.47299999999916,377.09299999999905,379.662999999999,383.09299999999905,386.8029999999991,387.35299999999904,389.2929999999991,390.0329999999991,390.11299999999903,389.69299999999896,389.4929999999989,390.06299999999885,390.58299999999883,391.83299999999883,391.0029999999989,386.58299999999883,384.55299999999886,382.1229999999988,381.56299999999885,381.45299999999895,381.7629999999989,382.8629999999988,383.9729999999987,385.05299999999863,383.37299999999857,380.4229999999985,377.5429999999984,374.48299999999847,372.90299999999854,371.15299999999854,371.52299999999843,373.34299999999837,376.02299999999843,377.0629999999984,377.87299999999834,379.11299999999835,379.84299999999837,380.49299999999846,382.2229999999985,387.7829999999984,393.1829999999985,395.6129999999986,406.6029999999986,406.90299999999854,407.16299999999853,408.27299999999843,408.35299999999836,408.27299999999843,407.1829999999985,407.1929999999985,408.5429999999984,410.0729999999984,410.63299999999833,410.6729999999983,412.6529999999983,415.46299999999826,417.82299999999816,418.82299999999816,421.46299999999826,422.4129999999983,423.72299999999825,424.5529999999982,425.5229999999982,427.20299999999827,427.8029999999982,427.96299999999826,427.32299999999816,426.94299999999805,427.19299999999805,426.8629999999981,426.2729999999982,424.81299999999817,422.3829999999981,421.18299999999806,420.20299999999804,418.8729999999981,418.4129999999981,415.59299999999814,410.3029999999982,409.73299999999824,407.88299999999833,407.71299999999826,407.48299999999824,402.72299999999825,402.95299999999827,403.1729999999983,396.97299999999825,391.47299999999825,389.95299999999827,385.9329999999983,384.6829999999983,383.88299999999833,380.4329999999983,380.1729999999983,373.4429999999983,372.09299999999837,371.5829999999984,368.50299999999845,367.0529999999984,360.4229999999983,360.0829999999984,359.5529999999984,359.4729999999985,356.7829999999984,354.2929999999984,352.9329999999985,352.13299999999856,351.01299999999867,346.92299999999875,346.6229999999988,349.5129999999989,351.9929999999989,349.132999999999,348.86299999999903,349.00299999999913,349.10299999999904,351.412999999999,352.7529999999989,350.81299999999885,348.83299999999883,349.1029999999988,349.5929999999988,346.1329999999988,343.18299999999874,341.9729999999987,339.44299999999873,337.1329999999988,334.4629999999987,333.5029999999987,333.0729999999986,333.5829999999986,334.30299999999863,332.3129999999986,330.51299999999867,328.77299999999866,327.87299999999857,328.5929999999986,329.65299999999854,328.9729999999985,328.88299999999856,330.79299999999864,332.4829999999987,335.8729999999988,335.8729999999988,337.0029999999989,339.82299999999884,342.3629999999988,343.7729999999989,346.8829999999988,348.8529999999988,357.6029999999988,360.9929999999989,368.6029999999988,370.8729999999988,374.81299999999885,375.1029999999988,378.2029999999987,382.15299999999877,385.26299999999867,387.52299999999866,390.62299999999857,392.03299999999865,393.44299999999873,394.57299999999884,397.67299999999875,399.94299999999873,401.0629999999986,401.62299999999857,405.8629999999986,410.0929999999986,413.76299999999867,417.7129999999987,419.9729999999987,423.3629999999988,429.56299999999885,436.06299999999885,437.47299999999893,442.2729999999989,443.68299999999897,440.0129999999989,437.7529999999989,437.7529999999989,440.29299999999887,443.68299999999897,446.5029999999989,449.892999999999,454.402999999999,454.122999999999,456.10299999999904,457.50299999999913,458.9229999999992,464.00299999999913,467.6629999999992,469.63299999999924,471.9029999999992,475.00299999999913,475.57299999999907,473.30300000000136],\"y\":[347.53499999999997,347.53499999999997,356.009,361.087,363.063,365.66599999999994,365.93899999999996,366.726,368.823,373.466,375.36199999999997,378.76,382.26,382.44100000000003,385.654,387.432,390.75800000000004,398.17100000000005,399.50300000000004,402.2460000000001,403.0450000000001,410.2500000000001,415.12900000000013,417.55700000000013,418.03700000000015,418.03700000000015,418.6300000000001,418.6490000000001,418.80100000000016,419.6650000000002,422.36900000000014,424.50300000000016,424.62900000000013,425.88300000000015,427.8910000000002,431.19000000000017,433.6350000000002,435.5580000000002,438.5390000000002,439.64700000000016,443.6610000000002,444.3220000000001,447.9950000000001,449.1010000000001,453.7070000000001,455.00400000000013,458.0050000000001,460.1890000000001,463.16200000000003,464.4290000000001,465.93500000000006,469.1,469.42500000000007,469.3990000000001,469.3910000000001,470.0970000000001,470.7400000000001,472.74300000000017,476.0400000000002,479.87000000000023,484.5460000000003,485.1850000000003,490.95100000000025,498.41300000000024,502.0410000000003,506.1120000000003,507.9110000000003,511.27300000000025,512.0300000000002,512.0300000000002,519.3170000000002,522.1070000000002,525.4030000000002,526.7400000000002,531.6970000000001,538.5270000000002,539.6860000000001,539.7490000000001,539.8070000000001,544.0770000000001,546.8220000000001,547.1840000000002,547.1840000000002,547.1810000000002,547.2470000000001,546.1330000000002,545.8870000000002,544.9040000000002,544.7770000000002,545.3050000000002,545.7120000000002,546.9910000000002,548.1720000000001,549.2690000000001,550.7130000000002,550.7970000000001,551.1690000000001,551.1640000000002,551.1610000000002,552.2350000000001,553.4290000000002,554.1280000000002,554.1980000000002,554.2730000000001,554.3330000000002,554.3190000000002,554.3050000000002,555.1180000000002,560.1500000000001,560.4220000000001,560.6250000000001,565.2320000000002,566.7620000000002,569.4910000000001,570.259,572.4290000000001,572.671,574.6460000000002,577.469,579.806,579.7440000000001,576.2710000000001,576.8320000000001,577.655,576.224,574.702,574.1370000000001,571.7930000000001,573.066,577.3300000000002,578.6950000000002,578.6400000000001,578.5910000000001,578.613,581.0520000000001,581.9050000000002,581.9390000000001,581.5600000000002,580.6550000000002,580.8870000000002,583.9280000000001,585.4920000000002,586.0660000000003,586.8200000000002,586.8400000000001,586.9670000000002,587.2740000000002,587.4030000000002,587.4990000000003,588.2970000000003,589.6400000000003,590.2850000000003,590.6800000000003,590.2190000000003,589.2930000000002,589.0040000000002,588.9930000000002,590.0540000000002,591.6910000000003,591.7590000000002,591.6070000000002,590.7280000000002,590.6570000000002,591.7050000000002,590.5920000000001,587.2840000000001,586.9840000000002,586.8310000000001,586.0160000000001,587.0250000000001,590.7650000000001,590.7700000000002,591.9580000000001,595.6720000000001,596.2700000000002,597.6280000000002,597.7630000000001,597.6660000000002,597.5420000000001,598.0450000000001,598.3130000000001,598.3910000000001,599.0870000000001,599.2210000000001,599.3010000000002,599.4230000000001,599.7130000000002,599.1100000000001,598.6460000000002,598.5810000000001,599.0090000000001,599.5830000000001,601.8710000000001,601.9520000000002,604.0580000000002,604.1610000000002,605.8840000000002,607.5920000000002,607.5100000000002,607.4470000000002,609.1620000000003,610.9270000000001,610.7870000000003,610.6710000000003,610.3330000000002,611.0760000000002,611.7740000000001,614.1590000000001,614.3690000000001,614.6380000000001,616.8810000000001,620.1090000000002,620.6430000000001,620.7100000000002,620.7610000000002,620.0740000000001,619.2490000000001,618.0240000000001,614.8000000000002,613.3700000000001,613.8800000000001,614.7450000000001,612.3940000000001,610.3170000000001,609.4520000000001,609.2180000000001,609.1450000000002,609.3580000000002,609.6320000000002,608.0240000000001,605.1500000000001,605.0390000000002,604.5970000000002,603.2730000000001,599.9110000000001,597.6960000000001,597.6030000000001,597.815,597.7830000000001,597.6050000000001,596.6180000000002,594.488,593.8960000000002,593.6140000000001,593.6140000000001,592.9230000000002,591.3050000000002,588.3820000000002,588.2450000000001,587.9730000000002,586.4880000000002,584.7910000000002,584.0700000000002,583.5800000000002,585.2470000000001,585.9000000000001,586.2120000000002,586.0360000000002,586.6990000000002,586.1650000000002,586.0070000000002,585.8690000000001,583.4310000000003,583.1130000000003,583.4490000000003,583.6090000000003,583.9800000000002,586.1120000000003,590.0920000000003,593.2140000000003,593.6190000000003,593.9460000000003,595.1650000000002,596.3190000000002,597.9650000000003,598.7700000000002,598.7720000000003,598.6150000000002,598.9370000000004,599.3180000000002,599.2530000000003,598.6950000000003,598.5920000000003,598.4460000000003,598.6160000000002,599.7190000000003,601.3180000000002,601.1560000000003,596.7350000000004,593.5210000000003,592.7190000000003,587.4940000000003,585.6440000000002,585.2770000000003,581.9250000000002,580.7450000000002,576.1570000000002,576.0540000000002,575.2610000000002,575.1600000000002,573.6750000000002,572.5880000000002,571.1890000000002,571.2760000000002,572.0260000000002,573.1200000000001,572.9890000000003,572.7740000000002,571.5080000000003,570.2840000000002,568.7750000000002,568.5040000000001,568.2440000000001,566.0750000000003,567.2820000000002,567.5290000000002,566.9000000000002,566.4800000000002,564.0390000000002,563.4990000000003,563.1870000000001,562.9650000000001,562.5420000000001,562.1280000000002,562.4210000000003,562.8990000000002,562.1910000000003,561.9690000000003,561.4100000000002,561.4130000000002,561.4120000000003,561.4210000000003,561.4350000000002,559.4680000000003,555.9890000000003,555.1990000000003,555.4510000000002,556.1150000000002,556.2020000000002,556.1920000000002,554.4630000000002,553.7720000000003,551.5250000000003,551.7560000000003,553.1760000000003,554.3230000000003,554.8850000000002,555.1030000000003,554.6280000000003,553.2720000000003,553.6770000000002,556.4790000000003,557.4940000000003,557.7520000000002,558.8850000000002,560.6370000000002,559.8030000000002,555.4510000000002,555.1620000000003,555.9370000000002,557.9050000000002,558.2730000000003,560.5080000000003,562.2310000000002,564.4320000000002,567.5840000000003,569.5920000000003,569.7370000000003,574.1000000000003,579.1040000000003,579.7710000000002,585.8030000000002,586.7470000000003,587.3070000000002,587.0080000000003,587.6750000000002,589.8990000000002,591.9450000000002,592.2520000000002,591.9970000000003,591.2760000000003,591.1130000000003,590.3480000000002,589.8160000000003,590.7350000000002,593.7300000000002,595.8230000000003,597.5490000000002,598.5260000000003,601.2140000000002,602.8230000000002,603.3790000000001,601.2500000000002,598.7870000000001,597.7150000000001,595.1590000000001,594.2690000000002,593.6270000000002,593.5210000000002,593.4800000000002,594.5240000000001,594.7690000000002,593.8160000000003,591.3770000000002,591.0140000000001,590.2280000000002,590.2890000000002,590.3520000000001,590.2180000000001,588.0840000000001,586.4810000000001,583.7170000000001,583.729,586.3530000000001,586.9000000000001,589.9380000000001,591.5750000000002,592.3790000000001,594.0360000000001,593.3080000000001,592.3230000000001,591.6020000000001,591.8680000000002,593.4010000000001,593.5490000000002,594.6040000000002,597.2320000000002,597.5430000000001,598.2050000000002,597.8470000000001,596.5030000000002,594.5150000000001,594.6630000000001,594.9300000000001,596.0670000000001,596.1310000000001,598.9730000000002,605.5610000000001,608.7820000000002,610.2500000000002,612.1150000000002,612.7040000000002,612.7750000000002,613.0930000000002,615.3330000000002,620.6310000000002,623.4120000000003,624.1960000000001,622.7830000000001,620.7160000000001,622.1880000000001,624.2820000000002,624.3590000000002,626.6090000000002,629.4630000000002,628.7990000000002,625.6290000000001,623.8810000000001,623.7030000000002,625.9800000000001,626.6450000000002,626.6450000000002,624.6780000000001,623.1800000000002,623.7650000000001,625.5910000000001,627.5530000000001,629.4690000000002,630.2070000000001,630.5860000000002,631.7240000000002,631.7240000000002,631.5460000000002,631.2960000000002,631.7230000000002,632.7190000000002,632.1650000000002,632.0970000000002,632.0000000000002,630.6430000000003,630.8790000000001,631.5880000000002,632.8380000000002,635.6500000000002,639.0000000000002,639.0260000000003,638.9970000000003,638.9630000000002,640.1770000000002,641.3120000000002,643.1880000000002,644.3540000000003,645.0800000000002,646.0000000000002,644.9400000000003,641.2460000000002,639.4490000000002,631.6690000000002,625.3590000000002,623.9110000000003,622.4120000000003,618.6630000000002,618.5550000000002,619.0490000000002,622.6330000000003,622.9920000000002,626.6660000000002,626.9980000000002,627.1930000000002,628.6130000000002,628.3770000000002,626.2850000000002,626.5890000000002,627.8870000000002,628.3480000000002,628.7020000000002,628.6040000000002,628.5170000000002,628.5170000000002,627.0590000000002,621.9070000000002,621.2650000000001,619.7810000000002,614.9890000000003,612.8980000000001,610.4450000000002,609.3760000000002,608.8410000000001,607.7240000000002,605.5910000000001,604.4640000000002,604.5250000000001,604.3230000000001,602.1230000000002,600.6680000000001,599.8000000000002,597.8960000000002,594.5390000000002,593.7650000000001,593.8030000000001,593.8340000000002,593.6970000000001,593.5650000000002,595.1920000000002,598.8930000000003,597.6550000000002,595.2030000000002,592.3740000000003,592.1190000000001,591.3310000000001,591.3370000000002,591.3530000000002,591.3950000000002,591.4810000000002,591.3430000000002,591.2540000000001,590.0880000000002,588.6710000000003,587.8900000000002,587.3620000000002,586.5290000000002,586.1320000000002,585.4570000000001,584.5620000000001,580.1550000000002,580.1090000000002,580.0740000000002,579.8700000000001,578.5060000000002,577.7560000000002,578.4190000000002,579.7400000000002,580.0550000000003,579.7620000000002,577.1310000000003,574.9000000000003,573.7180000000003,569.5360000000003,568.6750000000002,567.3930000000003,565.9750000000003,566.8570000000002,567.1080000000002,566.2630000000001,565.6990000000002,564.5400000000002,562.4650000000001,559.9080000000001,559.8800000000001,559.9760000000001,560.4080000000001,561.0960000000002,560.7880000000002,560.5050000000001,559.3150000000002,557.6590000000001,553.3210000000001,552.1910000000001,548.8450000000001,547.0360000000001,547.2520000000002,547.373,547.1440000000001,546.8850000000001,546.931,546.1930000000001,545.6180000000002,542.9560000000001,540.3710000000001,542.8900000000001,545.1470000000002,543.7360000000001,542.3240000000002,543.4560000000001,546.8430000000002,541.1950000000002,532.7280000000002,525.1050000000002,520.5870000000002,516.0720000000002,519.4610000000002,520.0250000000003,521.9980000000003,525.3880000000003,522.2790000000002,517.4820000000002,516.3530000000003,514.0950000000003,508.7320000000002,507.88900000000024,511.8330000000002,515.7890000000002,516.3530000000003,521.1510000000003,526.7980000000002,529.3390000000002,533.0120000000002,533.8550000000002,533.5710000000003,532.1630000000002,529.9030000000002,531.0340000000002,529.3390000000002,523.6930000000002,520.0250000000002,518.0490000000002,515.7890000000002,509.01400000000024,502.5240000000002,502.23400000000026,499.9820000000003,494.8970000000003,491.2260000000002,488.4050000000002,482.7610000000002,473.1590000000002,463.8470000000002,455.65800000000024,448.0350000000002,444.65200000000016,445.7750000000002,446.9110000000002,445.2130000000002,440.97900000000016,439.0010000000002,436.7460000000002,431.9430000000002,429.4040000000002,429.1220000000002,430.53200000000015,424.89200000000017,420.08900000000017,413.8800000000002,412.61900000000026,412.6180000000003,411.5240000000002,409.1710000000003,408.57200000000023,408.31100000000026,407.7120000000002,404.9770000000002,403.4060000000002,402.7810000000002,399.82100000000014,399.8610000000001,399.0870000000001,397.4440000000001,395.1790000000001,394.7940000000001,392.24800000000005,391.61400000000003,391.231,390.552,389.46299999999997,387.121,384.81600000000003,386.904,386.648,383.35900000000004,382.135,382.44899999999996,384.264,383.351,381.35900000000004,380.466,380.33799999999997,381.1569999999999,383.34399999999994,383.29099999999994,383.14099999999996,383.72399999999993,384.72799999999995,386.972,385.92099999999994,384.3459999999999,383.59799999999984,381.88699999999983,382.8789999999998,383.91499999999974,382.3169999999998,381.0319999999998,379.56799999999976,376.8679999999997,375.33799999999974,375.0599999999997,373.36699999999973,371.8489999999997,372.20299999999975,372.25599999999974,371.9589999999997,369.27499999999975,365.7489999999998,365.5659999999998,364.9019999999998,364.78499999999985,362.8699999999999,360.5519999999999,356.7069999999999,354.9319999999999,352.71799999999985,351.23199999999986,346.7489999999999,342.8879999999999,340.99699999999996,339.842,337.827,334.456,332.19500000000005,327.274,325.996,325.47,325.75300000000004,325.61400000000003,324.9820000000001,324.3080000000001,323.9610000000001,323.80200000000013,321.05600000000015,320.1250000000001,319.33100000000013,316.1320000000002,315.30700000000013,316.4860000000001,318.12800000000016,317.37300000000016,314.60900000000015,312.81600000000014,311.5640000000002,309.0550000000002,308.57200000000023,308.6900000000003,309.0700000000003,309.26900000000023,309.3000000000002,309.2710000000002,308.43600000000015,305.99800000000016,304.7180000000002,304.6460000000002,303.2180000000002,301.52300000000014,300.10400000000016,300.01300000000015,299.9720000000001,300.05600000000004,300.1310000000001,299.74300000000005,298.4200000000001,296.0490000000001,294.9470000000001,292.9420000000001,292.6300000000001,292.45000000000016,291.56600000000014,288.5450000000002,287.51200000000017,287.4590000000002,287.69500000000016,287.8510000000001,287.5820000000001,285.9280000000001,284.32000000000016,282.7220000000002,280.49000000000024,280.18600000000026,280.32600000000025,280.3620000000002,280.10900000000015,278.9680000000002,278.0980000000002,277.0060000000002,274.8850000000002,271.1080000000002,270.57600000000014,269.9910000000001,268.9230000000001,269.16200000000015,269.25400000000013,266.7410000000001,265.3710000000001,263.4660000000001,258.2210000000001,257.64700000000016,257.6120000000002,257.32000000000016,257.3190000000002,256.4820000000002,256.5730000000002,256.19600000000025,255.97900000000027,255.8770000000003,254.2800000000003,254.46500000000026,254.95000000000027,252.41600000000028,250.70000000000027,249.90000000000032,244.7230000000003,244.34600000000034,243.67300000000034,241.7320000000003,239.94000000000028,238.04200000000026,232.5500000000003,229.88300000000027,226.4580000000003,225.74900000000036,222.9580000000003,217.5930000000003,216.68100000000027,215.19500000000028,215.2320000000003,215.36500000000035,215.36000000000035,214.57300000000032,211.55800000000033,210.88900000000035,209.7910000000004,206.9490000000004,204.50000000000045,203.96300000000042,200.84700000000043,199.65900000000045,197.04400000000044,192.70300000000043,191.41200000000038,190.04800000000034,188.18700000000035,188.9160000000004,188.31700000000035,184.0880000000003,182.67600000000027,179.56500000000028,176.4590000000003,174.76800000000026,171.37900000000025,166.29700000000025,163.1930000000002,160.93500000000017,158.39400000000012,156.9810000000001,160.09000000000015,162.62800000000016,162.90800000000013,160.6550000000001,156.13600000000008,155.8520000000001,155.8520000000001,154.15700000000004,154.72800000000007,156.34400000000005,155.341,156.591,157.18000000000006,157.79700000000003,157.75700000000006,157.3180000000001,156.57600000000014,155.1740000000001,151.55600000000004,150.389,149.22400000000005,149.788,149.962,149.68899999999996,146.36299999999994,146.79599999999994,147.4079999999999,147.26299999999992,146.9609999999999,146.75299999999993,147.64299999999992,148.12599999999986,148.14199999999983,147.78599999999983,146.39699999999982,146.21899999999982,145.69499999999982,146.5089999999998,147.06199999999978,146.22899999999981,144.48699999999985,143.39199999999983,143.00099999999986,141.26199999999983,139.69299999999987,139.3299999999998,133.53799999999978,131.2779999999998,127.22199999999975,124.42999999999972,120.90399999999977,119.5709999999998,115.79499999999985,107.85899999999981,101.95199999999977,98.3689999999998,96.48999999999978,92.35899999999981,87.56199999999978,87.4749999999998,83.48699999999974,79.89699999999971,77.73599999999976,74.42899999999975,72.46599999999978,65.63499999999976,60.69999999999982,59.8159999999998,57.016999999999825,52.72799999999984,48.374999999999886,45.90899999999988,45.32999999999993,40.108999999999924,38.347999999999956,37.344999999999914,30.792999999999893,27.55099999999993,26.60599999999988,25.09999999999991,26.422999999999888,27.437999999999874,26.27199999999982,24.919999999999845,23.05999999999983,21.759999999999877,22.189999999999827,24.12999999999988,26.36399999999992,24.999999999999886,22.719999999999914,22.569999999999936,24.899999999999977,28.23199999999997,27.67700000000002,24.200000000000045,24.690000000000055,24.82000000000005,25.600000000000023,28.411000000000058,28.684000000000083,27.583000000000084,26.936000000000035,26.936000000000035,29.554000000000087,30.828000000000088,32.62000000000012,34.30700000000013,34.871000000000095,33.60600000000011,32.85200000000009,32.287000000000035,33.259000000000015,35.68700000000001,37.15100000000007,40.40100000000007,41.05300000000011,41.53500000000008,42.585000000000036,43.03200000000004,41.694000000000074,40.02200000000005,42.18100000000004,39.992000000000075,38.72900000000004,36.68100000000004,35.00400000000002,33.88900000000001,34.004999999999995,34.02200000000005,33.4910000000001,32.86200000000008,33.68400000000008,36.55400000000009,36.08100000000013,32.92200000000014,31.235000000000127,30.44200000000012,31.282000000000153,33.0390000000001,32.88000000000011,30.117000000000075,29.12600000000009,25.980000000000132,18.19000000000017,18.130000000000223,20.000000000000227,20.190000000000282,19.000000000000227,18.52000000000021,18.86000000000024,20.08000000000027,19.560000000000286,20.210000000000264,21.85000000000025,21.84000000000026,22.800000000000296,22.86000000000024,22.890000000000214,26.236000000000217,26.469000000000165,26.06500000000017,25.350000000000136,22.40000000000009,21.520000000000095,21.57000000000005,21.760000000000105,22.22000000000014,22.1400000000001,21.12000000000012,18.40000000000009,16.690000000000055,16.760000000000105,14.46000000000015,13.260000000000105,10.190000000000055,8.120000000000005,7.560000000000059,9.660000000000082,9.950000000000045,9.629999999999995,8.090000000000032,6.360000000000014,3.4500000000000455,1.1300000000001091,0.0,0.14000000000010004,0.3200000000001637,4.820000000000164,9.46000000000015,12.0300000000002,13.470000000000255,18.400000000000205,19.890000000000214,22.11000000000024,23.36000000000024,22.43000000000029,22.270000000000323,24.340000000000373,25.0600000000004,24.500000000000455,23.270000000000437,22.000000000000455,21.240000000000464,22.230000000000473,22.46000000000049,21.88000000000045,20.96000000000049,19.090000000000487,18.170000000000528,18.18000000000052,18.18000000000052,15.080000000000496,14.760000000000446,11.660000000000423,11.690000000000396,13.750000000000341,14.260000000000332,13.390000000000327,12.050000000000296,11.830000000000268,11.320000000000277,13.130000000000223,13.500000000000227,15.950000000000273,15.930000000000291,15.380000000000337,15.150000000000318,19.90000000000032,18.530000000000314,18.570000000000277,21.280000000000314,21.22000000000037,21.140000000000327,22.020000000000323,24.1700000000003,25.820000000000277,27.994000000000256,28.065000000000282,28.098000000000297,27.95100000000025,27.77700000000027,28.806000000000267,31.756000000000313,31.734000000000265,31.3190000000003,30.894000000000347,30.67100000000039,30.894000000000347,30.91000000000031,31.82700000000034,34.58800000000031,35.09100000000035,39.01400000000035,40.891000000000304,42.35000000000025,39.60400000000027,38.17300000000023,37.660000000000196,38.55800000000022,39.46700000000021,38.87500000000023,37.781000000000176,34.02200000000016,33.75200000000018,33.316000000000145,34.81900000000019,35.92500000000018,38.22400000000016,38.29600000000016,38.479000000000156,37.882000000000176,36.63400000000013,34.04600000000016,33.76300000000015,33.239000000000146,32.737000000000194,30.81200000000024,27.26000000000022,25.200000000000273,22.720000000000255,21.870000000000232,21.810000000000286,23.11000000000024,24.04000000000019,26.86300000000017,27.971000000000117,29.32100000000014,32.28300000000013,32.871000000000095,38.53200000000004,40.08000000000004,44.537000000000035,43.84699999999998,42.535999999999945,43.7349999999999,44.049999999999955,46.07299999999998,48.03499999999997,49.918000000000006,56.61099999999999,59.71600000000001,63.40999999999997,67.02800000000002,70.02499999999998,70.70899999999995,72.52599999999995,74.73599999999999,76.298,78.67200000000003,81.34100000000001,82.58699999999999,82.75599999999997,82.73000000000002,82.70400000000006,83.44800000000009,88.2360000000001,89.6400000000001,90.19100000000014,98.38300000000015,101.72300000000018,104.26300000000015,107.90300000000013,108.15400000000011,108.40100000000007,112.66000000000008,113.01400000000012,113.72700000000009,115.30700000000013,116.07800000000009,116.11400000000003,114.77499999999998,113.99000000000001,113.18899999999996,112.16599999999994,110.32099999999991,110.64899999999989,112.71699999999987,114.49899999999991,115.46899999999994,118.4419999999999,120.75299999999993,125.18899999999996,126.09399999999994,128.38699999999994,130.082,133.88800000000003,135.11200000000008,137.67500000000007,141.70100000000002,142.53499999999997,142.37299999999993,142.1679999999999,142.20499999999993,145.14199999999994,148.67599999999993,148.76099999999997,147.05200000000002,146.65200000000004,146.82600000000002,149.42399999999998,150.41499999999996,153.596,159.98199999999997,160.27999999999997,162.49400000000003,166.94500000000005,168.66100000000006,170.14100000000008,174.17100000000005,174.4380000000001,178.21100000000013,178.04500000000007,177.9140000000001,177.32200000000012,178.42600000000016,183.9960000000002,184.12500000000023,187.8670000000002,189.85800000000017,192.59500000000014,199.18100000000015,200.1690000000002,200.8760000000002,205.4290000000002,207.40600000000018,209.87000000000023,212.21900000000028,213.63400000000024,213.63400000000024,213.76400000000024,214.87200000000018,215.14600000000019,219.4530000000002,222.8280000000002,224.59600000000023,225.76000000000022,226.17800000000022,228.0490000000002,230.28200000000015,231.73900000000015,232.6780000000001,234.1550000000001,236.0440000000001,238.6350000000001,239.1740000000001,240.26900000000012,242.27100000000007,245.59300000000007,247.22300000000007,247.96600000000012,248.88600000000008,249.86200000000008,250.87900000000013,252.1060000000001,255.47500000000014,255.65700000000015,256.3530000000002,252.9680000000002,251.55500000000018,249.29600000000016,247.88800000000015,246.75400000000013,253.81500000000017,257.1980000000002,259.4580000000002,262.5680000000002,264.82100000000025,266.51800000000026,266.79800000000023,264.82100000000025,267.9300000000003,272.7270000000003,273.29200000000037,273.8570000000004,276.6800000000004,281.2000000000004,280.3490000000004,284.0210000000004,287.1230000000004,284.29900000000043,283.17400000000043,285.4350000000004,289.10100000000045,292.2060000000005,292.7730000000005,293.05300000000045,294.4630000000004,294.4630000000004,296.4410000000004,301.2380000000004,302.36600000000044,306.32200000000046,308.5800000000005,310.27500000000055,313.6580000000006,316.2000000000006,317.89500000000066,320.7190000000006,322.4110000000006,321.0030000000006,321.28500000000065,321.84800000000064,318.74100000000067,314.79000000000065,313.0960000000007,310.27500000000066,307.44900000000064,305.4760000000007,307.7310000000007,313.94500000000073,321.28500000000076,334.2680000000007,340.1960000000007,347.53499999999997]},\"selected\":{\"id\":\"3408\"},\"selection_policy\":{\"id\":\"3407\"}},\"id\":\"3275\",\"type\":\"ColumnDataSource\"}],\"root_ids\":[\"3255\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n",
- " const render_items = [{\"docid\":\"6fc7af1d-9af6-47ac-a22f-005fa4aa52d5\",\"root_ids\":[\"3255\"],\"roots\":{\"3255\":\"5f9e8ed1-fd26-4727-a288-1c51a1cc95ad\"}}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"6fc7af1d-9af6-47ac-a22f-005fa4aa52d5\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"height\":648,\"outline_line_color\":null,\"renderers\":[{\"id\":\"3273\"},{\"id\":\"3279\"}],\"title\":{\"id\":\"3256\"},\"toolbar\":{\"id\":\"3267\"},\"toolbar_location\":null,\"width\":478,\"x_range\":{\"id\":\"3258\"},\"x_scale\":{\"id\":\"3262\"},\"y_range\":{\"id\":\"3260\"},\"y_scale\":{\"id\":\"3264\"}},\"id\":\"3255\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"line_alpha\":0.1,\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3277\",\"type\":\"Line\"},{\"attributes\":{\"tools\":[{\"id\":\"3266\"}]},\"id\":\"3267\",\"type\":\"Toolbar\"},{\"attributes\":{\"data\":{\"name\":[\"AWI\",\"CISPA\",\"DESY\",\"DKFZ\",\"DLR\",\"DZNE\",\"FZJ\",\"GEOMAR\",\"GFZ\",\"GSI\",\"HGF\",\"HZB\",\"HZDR\",\"HZI\",\"HelmholtzMunich\",\"Hereon\",\"KIT\",\"MDC\",\"UFZ\"],\"x\":[147,50,205,152,92,97,35,205,345,151,350,375,405,240,300,257,131,374,329],\"y\":[527,181,530,187,286,262,288,590,408,227,444,428,322,403,92,505,138,455,336]},\"selected\":{\"id\":\"3406\"},\"selection_policy\":{\"id\":\"3405\"}},\"id\":\"3254\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"3405\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"3406\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.2},\"fill_color\":{\"value\":\"white\"},\"hatch_alpha\":{\"value\":0.2},\"line_alpha\":{\"value\":0.2},\"line_width\":{\"value\":2},\"size\":{\"value\":12},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3272\",\"type\":\"Scatter\"},{\"attributes\":{\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3276\",\"type\":\"Line\"},{\"attributes\":{\"source\":{\"id\":\"3275\"}},\"id\":\"3280\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":0.2,\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3278\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"3262\",\"type\":\"LinearScale\"},{\"attributes\":{\"source\":{\"id\":\"3254\"}},\"id\":\"3274\",\"type\":\"CDSView\"},{\"attributes\":{\"end\":646.0000000000002},\"id\":\"3260\",\"type\":\"Range1d\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.8},\"fill_color\":{\"value\":\"white\"},\"line_width\":{\"value\":2},\"size\":{\"value\":12},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3270\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"3407\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"3275\"},\"glyph\":{\"id\":\"3276\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"3278\"},\"nonselection_glyph\":{\"id\":\"3277\"},\"view\":{\"id\":\"3280\"}},\"id\":\"3279\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"3264\",\"type\":\"LinearScale\"},{\"attributes\":{\"coordinates\":null,\"group\":null,\"text\":\"HGF centers\"},\"id\":\"3256\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"3408\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"white\"},\"hatch_alpha\":{\"value\":0.1},\"line_alpha\":{\"value\":0.1},\"line_width\":{\"value\":2},\"size\":{\"value\":12},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3271\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null},\"id\":\"3266\",\"type\":\"HoverTool\"},{\"attributes\":{\"coordinates\":null,\"data_source\":{\"id\":\"3254\"},\"glyph\":{\"id\":\"3270\"},\"group\":null,\"hover_glyph\":null,\"muted_glyph\":{\"id\":\"3272\"},\"nonselection_glyph\":{\"id\":\"3271\"},\"view\":{\"id\":\"3274\"}},\"id\":\"3273\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"end\":475.57299999999907},\"id\":\"3258\",\"type\":\"Range1d\"},{\"attributes\":{\"data\":{\"x\":[473.30300000000136,473.30300000000136,471.05300000000136,468.2330000000014,461.45300000000145,457.8830000000015,458.69300000000146,457.80300000000136,459.81300000000135,459.92300000000125,459.4630000000012,456.8430000000013,454.3430000000013,454.29300000000137,452.2730000000014,450.83300000000133,451.83300000000133,455.43300000000124,455.19300000000123,455.3630000000013,455.79300000000137,456.2630000000014,453.33300000000133,454.18300000000124,453.3730000000013,453.3530000000013,452.58300000000133,452.58300000000133,452.7730000000014,453.6230000000013,453.57300000000134,451.1430000000013,450.3430000000013,446.40300000000127,445.7130000000012,444.7130000000012,443.5730000000011,443.2330000000012,445.27300000000116,446.2330000000012,446.8930000000013,446.66300000000126,447.2330000000012,447.80300000000113,444.15300000000104,441.40300000000104,436.443000000001,435.48300000000097,432.88300000000106,430.5830000000011,428.2130000000012,424.53300000000115,424.28300000000115,423.87300000000107,423.53300000000115,420.8130000000011,420.7130000000012,421.3830000000013,421.4930000000012,421.52300000000116,427.3430000000011,427.8630000000011,431.173000000001,430.5930000000011,431.8430000000011,433.5830000000011,432.5830000000011,431.173000000001,431.173000000001,431.0830000000011,428.78300000000115,427.76300000000117,426.5930000000011,425.963000000001,424.66300000000103,423.3630000000011,422.963000000001,422.953000000001,422.923000000001,421.713000000001,420.73300000000097,420.51300000000094,420.0330000000009,420.02300000000093,419.34300000000087,417.223000000001,417.0630000000009,415.59300000000087,414.2830000000009,411.3230000000009,409.963000000001,406.933000000001,404.963000000001,403.0930000000011,402.2230000000012,402.3230000000011,403.88300000000106,404.443000000001,404.8630000000011,407.52300000000116,408.37300000000107,409.3130000000011,411.423000000001,413.953000000001,416.223000000001,417.703000000001,418.51300000000094,418.473000000001,418.193000000001,418.173000000001,417.99300000000096,413.37300000000107,411.80300000000113,408.8230000000011,407.76300000000117,403.19300000000123,401.77300000000116,399.15300000000127,397.6030000000013,395.55300000000136,395.18300000000147,393.36300000000153,392.1730000000015,389.84300000000155,386.75300000000163,381.59300000000155,380.45300000000145,380.82300000000134,379.30300000000136,376.9930000000014,375.3730000000015,374.5530000000016,373.8830000000015,373.6430000000015,372.22300000000143,371.82300000000134,371.80300000000136,372.44300000000146,374.7330000000014,375.72300000000143,378.06300000000135,377.6130000000013,377.1230000000013,376.66300000000126,376.7130000000012,377.02300000000116,377.13300000000106,377.183000000001,377.213000000001,377.50300000000095,378.8230000000009,380.02300000000093,380.99300000000096,380.85300000000086,380.97300000000075,381.20300000000077,381.59300000000087,382.86300000000085,384.3030000000009,384.4030000000008,384.5230000000007,385.58300000000065,386.0330000000007,388.21300000000076,388.6930000000008,388.20300000000077,388.2930000000007,388.56300000000067,391.07300000000066,392.49300000000073,392.49300000000073,392.5030000000007,393.56300000000067,391.31300000000067,390.5330000000007,388.3930000000006,388.1130000000006,387.82300000000066,387.23300000000074,386.7530000000007,386.59300000000064,386.2930000000007,385.4330000000008,385.3330000000009,385.1830000000008,384.97300000000075,383.97300000000075,382.4430000000008,381.60300000000086,381.3030000000009,380.5330000000009,379.713000000001,379.37300000000107,379.38300000000106,378.01300000000117,377.5930000000011,376.26300000000117,374.92300000000125,374.4530000000012,374.1130000000013,373.31300000000135,372.08300000000133,371.30300000000136,370.8430000000013,369.93300000000124,370.7430000000012,371.5730000000011,373.90300000000104,374.0730000000011,374.0630000000011,375.0730000000011,376.12300000000107,376.01300000000117,375.4730000000012,374.4830000000012,371.0930000000011,369.0630000000011,366.4630000000012,364.4930000000012,364.0830000000011,365.4830000000012,367.8530000000011,367.37300000000107,366.48300000000097,366.15300000000104,365.943000000001,365.7930000000009,365.1630000000008,364.2630000000007,362.8030000000007,362.46300000000076,362.46300000000076,362.4430000000008,362.1430000000008,360.5130000000007,362.2730000000007,362.95300000000077,363.0030000000007,363.10300000000063,363.3030000000007,365.7930000000007,367.49300000000073,366.63300000000083,362.0530000000009,361.4230000000008,361.3030000000009,361.223000000001,363.3330000000009,363.5830000000009,364.0630000000009,366.02300000000093,367.87300000000084,368.85300000000086,370.11300000000085,372.26300000000094,372.73300000000097,373.00300000000095,374.203000000001,376.3630000000011,375.90300000000104,375.77300000000093,375.66300000000103,371.8130000000011,370.52300000000116,368.37300000000107,368.37300000000107,366.173000000001,362.673000000001,360.453000000001,361.01300000000094,361.14300000000105,360.87300000000107,358.963000000001,357.203000000001,356.98300000000097,354.87300000000107,354.5030000000012,354.3830000000013,353.65300000000127,351.6230000000013,350.7230000000012,342.92300000000125,340.78300000000115,337.41300000000126,335.6430000000013,334.7430000000012,332.80300000000113,332.14300000000105,329.223000000001,327.6030000000011,327.05300000000113,324.673000000001,323.223000000001,322.713000000001,318.51300000000094,317.0530000000009,313.99300000000096,313.953000000001,312.0730000000009,310.1930000000008,304.61300000000085,303.4230000000008,301.3130000000009,300.8330000000009,299.62300000000084,297.01300000000083,295.9130000000008,294.00300000000084,291.76300000000083,290.6430000000008,289.45300000000077,289.37300000000073,289.48300000000074,289.7930000000007,288.5130000000007,287.6330000000007,286.45300000000077,286.0030000000007,285.1430000000007,285.1630000000007,285.1630000000007,285.3830000000007,285.8030000000007,286.21300000000065,286.72300000000064,287.48300000000063,286.96300000000065,286.83300000000065,286.47300000000064,286.44300000000067,286.2930000000007,285.9230000000007,285.07300000000066,279.69300000000067,278.56300000000067,279.9230000000007,281.11300000000074,282.73300000000074,283.0030000000007,283.0030000000007,282.9030000000007,282.9130000000007,282.71300000000065,282.0330000000007,279.5530000000007,277.45300000000066,276.0430000000007,275.49300000000073,275.1430000000007,273.45300000000066,273.0510000000006,273.1950000000006,274.1590000000007,272.7880000000007,270.00100000000066,265.88100000000065,263.0890000000006,256.85300000000063,256.05900000000065,255.55300000000068,252.17000000000064,250.9220000000006,249.1910000000006,249.2920000000006,252.62000000000057,257.58800000000053,259.7200000000005,260.0130000000005,265.21800000000053,264.5380000000006,264.3600000000006,264.0990000000006,264.15000000000066,264.18800000000067,265.1000000000007,266.4130000000007,266.9080000000007,267.9900000000007,268.65600000000074,269.0050000000008,270.20900000000074,271.1930000000008,272.9650000000008,274.0780000000009,275.26300000000083,274.25800000000083,272.98400000000083,272.12700000000086,271.6600000000009,268.8890000000009,264.57500000000095,263.025000000001,260.228000000001,259.011000000001,258.713000000001,258.457000000001,258.63300000000106,258.63300000000106,259.2660000000011,259.8810000000011,262.9630000000011,263.2890000000011,263.86400000000117,262.9600000000012,262.7100000000012,262.4050000000012,261.25000000000125,260.0070000000012,258.41900000000123,252.98700000000122,251.58700000000124,247.8680000000012,247.6030000000012,243.2040000000012,242.70600000000115,235.22900000000118,231.90900000000113,230.71100000000115,226.0350000000011,224.35100000000114,222.66800000000114,221.2280000000011,221.07300000000112,220.47100000000114,220.68100000000118,221.49000000000115,219.0310000000012,218.3150000000012,216.02400000000114,214.59700000000112,209.7470000000011,205.4390000000011,204.69300000000112,204.4050000000011,205.91400000000112,206.24900000000116,211.22000000000116,212.73100000000113,213.05300000000113,213.29200000000117,212.9880000000012,211.56600000000117,211.09100000000115,209.8530000000011,210.74900000000105,209.80700000000104,207.03300000000104,205.857000000001,205.857000000001,204.92200000000105,201.222000000001,196.93600000000106,196.66600000000108,191.8480000000011,191.8480000000011,190.71100000000115,185.82100000000116,184.28500000000122,184.15900000000124,183.66000000000122,183.57700000000125,182.90800000000127,179.22100000000125,176.8730000000013,175.91500000000133,175.52100000000132,174.9740000000013,170.2090000000013,164.6660000000013,164.05300000000125,160.6130000000012,153.55400000000122,152.20000000000118,150.15200000000118,148.79300000000114,146.77000000000112,144.9530000000011,144.85100000000114,144.7760000000011,143.91100000000108,135.79900000000112,133.9150000000011,133.7130000000011,133.41700000000105,133.19200000000103,133.400000000001,133.79300000000103,134.366000000001,136.42500000000098,137.554000000001,138.79100000000096,137.81100000000094,136.650000000001,134.58500000000095,132.88700000000097,131.63900000000092,131.12400000000093,128.26300000000094,127.93200000000093,127.96300000000087,127.89100000000087,129.10400000000084,129.84500000000082,130.97200000000078,131.15700000000072,131.09200000000067,131.25100000000066,131.3940000000007,131.47800000000063,132.11200000000065,132.19300000000067,134.34800000000064,135.75900000000058,138.53400000000056,139.27000000000055,140.77900000000056,142.02200000000062,143.1140000000006,143.14500000000055,143.24100000000055,146.30800000000056,147.21100000000058,147.72800000000063,149.7010000000006,150.53600000000063,152.56300000000067,153.77600000000064,154.1910000000006,154.09400000000062,153.67500000000064,155.8350000000006,156.48100000000056,156.33800000000053,156.00000000000057,155.78800000000058,154.71300000000053,153.12000000000057,153.15900000000056,154.8390000000005,155.35500000000047,155.8200000000005,157.13600000000054,158.3630000000005,160.49700000000053,161.8870000000005,162.4500000000005,161.35300000000052,158.70600000000047,158.55400000000043,158.0310000000004,157.90200000000038,157.50800000000038,156.5450000000004,154.10000000000036,152.01800000000037,150.35000000000036,145.21200000000033,143.24000000000035,142.15000000000032,143.3810000000003,146.03600000000029,145.49300000000028,143.70300000000032,141.94300000000032,143.74100000000033,143.79200000000037,143.85100000000034,144.1850000000003,145.77800000000025,146.70100000000025,147.8140000000003,149.62500000000034,151.59200000000033,154.23100000000034,154.49600000000032,153.86100000000033,153.16200000000038,153.2330000000004,153.6270000000004,154.00900000000036,156.1220000000004,158.26100000000042,158.68800000000044,159.11000000000047,159.3720000000004,160.01400000000046,161.00600000000043,161.11100000000044,161.0120000000004,160.59300000000042,159.48400000000038,157.01400000000035,155.75400000000036,155.06800000000032,153.55700000000036,154.09600000000034,156.81200000000035,157.27900000000034,159.23100000000034,162.6840000000003,163.9590000000003,164.85900000000026,166.86500000000024,169.23000000000025,169.9770000000002,175.46000000000015,176.6840000000002,179.36100000000022,180.15300000000025,177.5450000000003,171.3340000000003,164.84500000000025,157.22900000000027,150.45100000000025,144.24300000000028,140.57200000000023,138.03200000000027,138.87900000000025,140.57200000000023,140.57200000000023,138.59900000000027,136.34000000000026,132.67600000000027,128.1600000000003,125.33500000000026,124.7710000000003,127.02700000000027,129.00800000000027,127.58900000000028,122.79600000000028,118.84200000000033,116.5880000000003,121.09700000000032,121.09700000000032,118.56200000000035,115.45800000000031,114.0450000000003,110.0930000000003,105.57800000000032,98.80400000000031,90.05600000000027,83.28200000000027,75.38300000000027,69.45300000000032,70.29900000000032,68.89000000000033,65.78200000000038,64.37400000000036,66.06800000000032,75.38300000000038,75.38300000000038,74.25100000000043,74.5360000000004,72.84300000000042,73.12400000000036,73.12400000000036,68.0410000000004,65.78200000000038,64.93600000000038,62.9640000000004,57.60100000000034,52.80700000000036,47.72200000000032,48.290000000000305,48.57000000000028,46.595000000000255,48.00300000000027,54.779000000000224,59.57400000000018,61.83500000000015,64.65800000000013,64.65800000000013,62.67900000000009,64.01100000000008,64.00900000000013,61.445000000000164,58.59300000000019,58.334000000000174,57.63700000000017,55.737000000000194,54.14300000000014,53.39800000000014,50.54000000000019,46.76900000000023,46.438000000000216,45.14100000000019,44.62400000000014,46.73400000000015,47.31900000000019,50.50500000000022,51.0300000000002,51.33700000000022,51.02400000000023,50.349000000000274,49.01800000000026,46.45900000000029,44.07600000000025,42.68700000000024,35.61800000000028,33.202000000000226,32.51400000000024,29.453000000000202,28.095000000000255,28.89500000000021,29.487000000000194,29.449000000000183,28.1550000000002,23.424000000000206,22.76600000000019,21.23400000000015,19.612000000000194,19.20400000000018,17.247000000000185,14.695000000000164,14.947000000000116,15.549000000000092,16.828000000000088,14.256000000000085,12.745000000000118,10.639000000000124,7.805000000000177,5.921000000000163,7.176000000000158,8.268000000000143,7.9340000000001965,5.606000000000222,4.5870000000002165,6.383000000000266,7.11400000000026,8.779000000000224,9.713000000000193,11.883000000000152,12.35300000000018,13.79700000000014,13.664000000000101,12.217000000000098,13.601000000000113,16.219000000000165,16.977000000000203,17.91900000000021,18.352000000000203,18.54000000000019,18.007000000000176,17.935000000000173,17.01200000000017,14.947000000000116,12.75500000000011,11.291000000000054,9.21300000000008,10.079000000000065,11.946000000000026,13.452999999999975,13.259000000000015,13.884000000000015,14.20799999999997,12.727999999999952,12.317999999999984,8.947999999999979,8.20799999999997,6.8940000000000055,4.671000000000049,4.254000000000019,3.3220000000000027,2.0810000000000173,0.42200000000002547,0.0,0.3990000000000009,0.3170000000000073,0.6789999999999736,1.891999999999939,2.74899999999991,5.378999999999905,6.760999999999854,6.945999999999799,7.093999999999824,6.736999999999853,6.416999999999803,9.058999999999855,9.614999999999895,9.712999999999852,9.923999999999864,10.031999999999812,9.782999999999788,9.276999999999816,8.284999999999854,7.410999999999831,6.251999999999839,5.763999999999783,4.951999999999771,3.6209999999997535,5.334999999999809,6.0899999999998045,6.514999999999759,6.35899999999981,6.371999999999844,8.066999999999894,8.61999999999989,10.017999999999915,10.825999999999908,11.236999999999853,12.013999999999896,12.579999999999927,12.843999999999937,14.718999999999937,16.284999999999968,17.365999999999985,17.552999999999997,17.653999999999996,18.270999999999958,17.310999999999922,15.557999999999879,13.96699999999987,14.78599999999983,15.225999999999885,15.579999999999927,17.195999999999913,18.81799999999987,19.603999999999814,22.490999999999758,23.462999999999738,23.622999999999706,23.08599999999967,23.535999999999717,23.52799999999968,23.86799999999971,23.868999999999687,24.832999999999743,24.852999999999724,25.26399999999967,25.119999999999663,25.03799999999967,23.250999999999635,22.70999999999958,21.132999999999583,18.239999999999554,15.710999999999558,13.96699999999953,12.612999999999488,12.797999999999433,11.690999999999462,10.453999999999496,10.034999999999513,9.274999999999523,8.681999999999562,9.848999999999592,11.626999999999612,12.423999999999637,13.948999999999614,17.135999999999626,18.204999999999586,21.05499999999961,21.577999999999633,22.802999999999656,22.927999999999656,22.9789999999997,27.404999999999745,29.29199999999969,29.247999999999706,28.892999999999688,28.153999999999655,27.155999999999608,24.676999999999566,24.545999999999594,23.479999999999563,20.731999999999516,20.300999999999476,19.83399999999949,19.390999999999508,20.49399999999946,20.630999999999403,23.73599999999942,27.404999999999404,30.78899999999942,32.20099999999945,32.20099999999945,33.327999999999406,37.2849999999994,39.53699999999935,39.2559999999994,41.80199999999945,44.61699999999951,46.8769999999995,46.31399999999951,51.10999999999956,55.343999999999596,56.753999999999564,59.29499999999962,61.83499999999958,68.0409999999996,71.14799999999957,72.67299999999955,72.80799999999954,73.90399999999954,74.41399999999953,77.18399999999951,77.50899999999956,79.14999999999952,80.84399999999948,80.88099999999952,82.30099999999948,83.7519999999995,85.72599999999954,86.73599999999954,87.0069999999995,87.35999999999945,90.76299999999947,91.9439999999995,92.78299999999956,93.04199999999958,93.72699999999952,94.75799999999947,96.96299999999951,97.73599999999954,97.76999999999953,98.0499999999995,99.6509999999995,100.09199999999953,102.03199999999958,104.07299999999964,105.1129999999996,106.5169999999996,109.58499999999958,111.61399999999958,112.1179999999996,116.02299999999957,118.92199999999957,118.6179999999996,114.46199999999965,113.81199999999967,111.86099999999965,107.5319999999997,105.40599999999972,104.66699999999969,100.87199999999973,96.92099999999971,94.65499999999975,93.4069999999997,93.27799999999968,92.93199999999968,92.40799999999967,92.29299999999967,89.60299999999961,87.87299999999959,86.57299999999964,85.04299999999967,84.08899999999971,82.82299999999975,84.93799999999976,85.43099999999981,84.72599999999977,83.04299999999978,81.99499999999978,81.63699999999983,81.2439999999998,80.60499999999979,80.32899999999984,79.78099999999984,81.65499999999986,83.26499999999987,83.40699999999993,85.64999999999998,87.86799999999994,88.77199999999993,88.03199999999993,87.12099999999998,87.24799999999993,89.85299999999995,91.77699999999993,95.3839999999999,99.93299999999988,100.49399999999991,102.00499999999988,104.13999999999987,113.45299999999986,121.03599999999983,122.37999999999988,128.14999999999986,132.52599999999984,133.30399999999986,133.12999999999988,134.6729999999999,135.9459999999999,138.4079999999999,138.4079999999999,139.16499999999985,141.88499999999988,142.43299999999988,142.88699999999983,140.88599999999985,138.8019999999999,136.68499999999995,135.94799999999998,133.82799999999997,131.55999999999995,131.10699999999997,132.10799999999995,134.1199999999999,134.25199999999984,135.92599999999982,139.01899999999978,140.13099999999974,140.9549999999997,142.4929999999997,144.5949999999997,148.14399999999966,146.4939999999997,144.3689999999997,144.58399999999972,147.56699999999967,148.65999999999963,148.78999999999962,149.98599999999965,151.5839999999996,152.8149999999996,151.96199999999965,152.87199999999962,154.78799999999967,155.17799999999966,157.0409999999997,159.6039999999997,164.9159999999997,166.37199999999973,174.10099999999977,176.84599999999978,183.6189999999998,189.29399999999976,190.1579999999998,194.89599999999984,195.50599999999986,197.5809999999999,198.0039999999999,198.5519999999999,200.4999999999999,203.1529999999999,204.70399999999995,205.16999999999996,205.25799999999992,205.13799999999992,205.12799999999993,205.1239999999999,206.50199999999995,207.32499999999993,208.3599999999999,208.4269999999999,208.71499999999992,210.6389999999999,211.2539999999999,212.2489999999999,215.5329999999999,216.1729999999999,216.63499999999988,218.21499999999992,222.16599999999994,222.7689999999999,224.03599999999994,223.85799999999995,222.5999999999999,224.00099999999986,226.28599999999983,229.9119999999998,230.2009999999998,230.7439999999998,230.99099999999976,230.65099999999973,229.58699999999976,228.70899999999972,230.44699999999978,231.37599999999975,232.02899999999977,239.2059999999998,243.20399999999984,245.25999999999988,245.92799999999988,246.41199999999992,245.3309999999999,244.59899999999993,244.8789999999999,246.25999999999988,248.02199999999982,252.48599999999988,253.54999999999984,255.3309999999998,258.12199999999984,260.90999999999985,263.14599999999984,266.2549999999999,267.11799999999994,268.24699999999996,267.6859999999999,266.6399999999999,269.2389999999999,270.0279999999999,270.67999999999995,273.049,273.119,277.043,277.793,285.443,286.903,286.803,287.84299999999996,288.2729999999999,289.71299999999997,291.8929999999999,292.1629999999999,295.0329999999999,295.4129999999999,298.4329999999999,299.37299999999993,299.37299999999993,298.23299999999995,298.24299999999994,300.313,302.023,303.87299999999993,307.273,307.87299999999993,308.25300000000004,312.793,313.3829999999999,314.01300000000003,316.073,318.6629999999999,322.2529999999998,330.6229999999997,330.94299999999964,333.7429999999996,336.5929999999995,338.6929999999994,340.7929999999993,340.88299999999924,342.7929999999993,341.87299999999925,341.5529999999993,340.9229999999992,342.5729999999993,343.9529999999994,343.38299999999947,343.29299999999955,344.3329999999995,347.4429999999994,351.8029999999993,353.85299999999927,354.4329999999992,357.64299999999923,358.38299999999924,360.10299999999927,362.6929999999992,363.5929999999993,367.00299999999936,367.62299999999925,369.73299999999915,371.46299999999917,372.1929999999992,374.5229999999991,375.0629999999991,374.5329999999991,374.00299999999913,373.47299999999916,377.09299999999905,379.662999999999,383.09299999999905,386.8029999999991,387.35299999999904,389.2929999999991,390.0329999999991,390.11299999999903,389.69299999999896,389.4929999999989,390.06299999999885,390.58299999999883,391.83299999999883,391.0029999999989,386.58299999999883,384.55299999999886,382.1229999999988,381.56299999999885,381.45299999999895,381.7629999999989,382.8629999999988,383.9729999999987,385.05299999999863,383.37299999999857,380.4229999999985,377.5429999999984,374.48299999999847,372.90299999999854,371.15299999999854,371.52299999999843,373.34299999999837,376.02299999999843,377.0629999999984,377.87299999999834,379.11299999999835,379.84299999999837,380.49299999999846,382.2229999999985,387.7829999999984,393.1829999999985,395.6129999999986,406.6029999999986,406.90299999999854,407.16299999999853,408.27299999999843,408.35299999999836,408.27299999999843,407.1829999999985,407.1929999999985,408.5429999999984,410.0729999999984,410.63299999999833,410.6729999999983,412.6529999999983,415.46299999999826,417.82299999999816,418.82299999999816,421.46299999999826,422.4129999999983,423.72299999999825,424.5529999999982,425.5229999999982,427.20299999999827,427.8029999999982,427.96299999999826,427.32299999999816,426.94299999999805,427.19299999999805,426.8629999999981,426.2729999999982,424.81299999999817,422.3829999999981,421.18299999999806,420.20299999999804,418.8729999999981,418.4129999999981,415.59299999999814,410.3029999999982,409.73299999999824,407.88299999999833,407.71299999999826,407.48299999999824,402.72299999999825,402.95299999999827,403.1729999999983,396.97299999999825,391.47299999999825,389.95299999999827,385.9329999999983,384.6829999999983,383.88299999999833,380.4329999999983,380.1729999999983,373.4429999999983,372.09299999999837,371.5829999999984,368.50299999999845,367.0529999999984,360.4229999999983,360.0829999999984,359.5529999999984,359.4729999999985,356.7829999999984,354.2929999999984,352.9329999999985,352.13299999999856,351.01299999999867,346.92299999999875,346.6229999999988,349.5129999999989,351.9929999999989,349.132999999999,348.86299999999903,349.00299999999913,349.10299999999904,351.412999999999,352.7529999999989,350.81299999999885,348.83299999999883,349.1029999999988,349.5929999999988,346.1329999999988,343.18299999999874,341.9729999999987,339.44299999999873,337.1329999999988,334.4629999999987,333.5029999999987,333.0729999999986,333.5829999999986,334.30299999999863,332.3129999999986,330.51299999999867,328.77299999999866,327.87299999999857,328.5929999999986,329.65299999999854,328.9729999999985,328.88299999999856,330.79299999999864,332.4829999999987,335.8729999999988,335.8729999999988,337.0029999999989,339.82299999999884,342.3629999999988,343.7729999999989,346.8829999999988,348.8529999999988,357.6029999999988,360.9929999999989,368.6029999999988,370.8729999999988,374.81299999999885,375.1029999999988,378.2029999999987,382.15299999999877,385.26299999999867,387.52299999999866,390.62299999999857,392.03299999999865,393.44299999999873,394.57299999999884,397.67299999999875,399.94299999999873,401.0629999999986,401.62299999999857,405.8629999999986,410.0929999999986,413.76299999999867,417.7129999999987,419.9729999999987,423.3629999999988,429.56299999999885,436.06299999999885,437.47299999999893,442.2729999999989,443.68299999999897,440.0129999999989,437.7529999999989,437.7529999999989,440.29299999999887,443.68299999999897,446.5029999999989,449.892999999999,454.402999999999,454.122999999999,456.10299999999904,457.50299999999913,458.9229999999992,464.00299999999913,467.6629999999992,469.63299999999924,471.9029999999992,475.00299999999913,475.57299999999907,473.30300000000136],\"y\":[347.53499999999997,347.53499999999997,356.009,361.087,363.063,365.66599999999994,365.93899999999996,366.726,368.823,373.466,375.36199999999997,378.76,382.26,382.44100000000003,385.654,387.432,390.75800000000004,398.17100000000005,399.50300000000004,402.2460000000001,403.0450000000001,410.2500000000001,415.12900000000013,417.55700000000013,418.03700000000015,418.03700000000015,418.6300000000001,418.6490000000001,418.80100000000016,419.6650000000002,422.36900000000014,424.50300000000016,424.62900000000013,425.88300000000015,427.8910000000002,431.19000000000017,433.6350000000002,435.5580000000002,438.5390000000002,439.64700000000016,443.6610000000002,444.3220000000001,447.9950000000001,449.1010000000001,453.7070000000001,455.00400000000013,458.0050000000001,460.1890000000001,463.16200000000003,464.4290000000001,465.93500000000006,469.1,469.42500000000007,469.3990000000001,469.3910000000001,470.0970000000001,470.7400000000001,472.74300000000017,476.0400000000002,479.87000000000023,484.5460000000003,485.1850000000003,490.95100000000025,498.41300000000024,502.0410000000003,506.1120000000003,507.9110000000003,511.27300000000025,512.0300000000002,512.0300000000002,519.3170000000002,522.1070000000002,525.4030000000002,526.7400000000002,531.6970000000001,538.5270000000002,539.6860000000001,539.7490000000001,539.8070000000001,544.0770000000001,546.8220000000001,547.1840000000002,547.1840000000002,547.1810000000002,547.2470000000001,546.1330000000002,545.8870000000002,544.9040000000002,544.7770000000002,545.3050000000002,545.7120000000002,546.9910000000002,548.1720000000001,549.2690000000001,550.7130000000002,550.7970000000001,551.1690000000001,551.1640000000002,551.1610000000002,552.2350000000001,553.4290000000002,554.1280000000002,554.1980000000002,554.2730000000001,554.3330000000002,554.3190000000002,554.3050000000002,555.1180000000002,560.1500000000001,560.4220000000001,560.6250000000001,565.2320000000002,566.7620000000002,569.4910000000001,570.259,572.4290000000001,572.671,574.6460000000002,577.469,579.806,579.7440000000001,576.2710000000001,576.8320000000001,577.655,576.224,574.702,574.1370000000001,571.7930000000001,573.066,577.3300000000002,578.6950000000002,578.6400000000001,578.5910000000001,578.613,581.0520000000001,581.9050000000002,581.9390000000001,581.5600000000002,580.6550000000002,580.8870000000002,583.9280000000001,585.4920000000002,586.0660000000003,586.8200000000002,586.8400000000001,586.9670000000002,587.2740000000002,587.4030000000002,587.4990000000003,588.2970000000003,589.6400000000003,590.2850000000003,590.6800000000003,590.2190000000003,589.2930000000002,589.0040000000002,588.9930000000002,590.0540000000002,591.6910000000003,591.7590000000002,591.6070000000002,590.7280000000002,590.6570000000002,591.7050000000002,590.5920000000001,587.2840000000001,586.9840000000002,586.8310000000001,586.0160000000001,587.0250000000001,590.7650000000001,590.7700000000002,591.9580000000001,595.6720000000001,596.2700000000002,597.6280000000002,597.7630000000001,597.6660000000002,597.5420000000001,598.0450000000001,598.3130000000001,598.3910000000001,599.0870000000001,599.2210000000001,599.3010000000002,599.4230000000001,599.7130000000002,599.1100000000001,598.6460000000002,598.5810000000001,599.0090000000001,599.5830000000001,601.8710000000001,601.9520000000002,604.0580000000002,604.1610000000002,605.8840000000002,607.5920000000002,607.5100000000002,607.4470000000002,609.1620000000003,610.9270000000001,610.7870000000003,610.6710000000003,610.3330000000002,611.0760000000002,611.7740000000001,614.1590000000001,614.3690000000001,614.6380000000001,616.8810000000001,620.1090000000002,620.6430000000001,620.7100000000002,620.7610000000002,620.0740000000001,619.2490000000001,618.0240000000001,614.8000000000002,613.3700000000001,613.8800000000001,614.7450000000001,612.3940000000001,610.3170000000001,609.4520000000001,609.2180000000001,609.1450000000002,609.3580000000002,609.6320000000002,608.0240000000001,605.1500000000001,605.0390000000002,604.5970000000002,603.2730000000001,599.9110000000001,597.6960000000001,597.6030000000001,597.815,597.7830000000001,597.6050000000001,596.6180000000002,594.488,593.8960000000002,593.6140000000001,593.6140000000001,592.9230000000002,591.3050000000002,588.3820000000002,588.2450000000001,587.9730000000002,586.4880000000002,584.7910000000002,584.0700000000002,583.5800000000002,585.2470000000001,585.9000000000001,586.2120000000002,586.0360000000002,586.6990000000002,586.1650000000002,586.0070000000002,585.8690000000001,583.4310000000003,583.1130000000003,583.4490000000003,583.6090000000003,583.9800000000002,586.1120000000003,590.0920000000003,593.2140000000003,593.6190000000003,593.9460000000003,595.1650000000002,596.3190000000002,597.9650000000003,598.7700000000002,598.7720000000003,598.6150000000002,598.9370000000004,599.3180000000002,599.2530000000003,598.6950000000003,598.5920000000003,598.4460000000003,598.6160000000002,599.7190000000003,601.3180000000002,601.1560000000003,596.7350000000004,593.5210000000003,592.7190000000003,587.4940000000003,585.6440000000002,585.2770000000003,581.9250000000002,580.7450000000002,576.1570000000002,576.0540000000002,575.2610000000002,575.1600000000002,573.6750000000002,572.5880000000002,571.1890000000002,571.2760000000002,572.0260000000002,573.1200000000001,572.9890000000003,572.7740000000002,571.5080000000003,570.2840000000002,568.7750000000002,568.5040000000001,568.2440000000001,566.0750000000003,567.2820000000002,567.5290000000002,566.9000000000002,566.4800000000002,564.0390000000002,563.4990000000003,563.1870000000001,562.9650000000001,562.5420000000001,562.1280000000002,562.4210000000003,562.8990000000002,562.1910000000003,561.9690000000003,561.4100000000002,561.4130000000002,561.4120000000003,561.4210000000003,561.4350000000002,559.4680000000003,555.9890000000003,555.1990000000003,555.4510000000002,556.1150000000002,556.2020000000002,556.1920000000002,554.4630000000002,553.7720000000003,551.5250000000003,551.7560000000003,553.1760000000003,554.3230000000003,554.8850000000002,555.1030000000003,554.6280000000003,553.2720000000003,553.6770000000002,556.4790000000003,557.4940000000003,557.7520000000002,558.8850000000002,560.6370000000002,559.8030000000002,555.4510000000002,555.1620000000003,555.9370000000002,557.9050000000002,558.2730000000003,560.5080000000003,562.2310000000002,564.4320000000002,567.5840000000003,569.5920000000003,569.7370000000003,574.1000000000003,579.1040000000003,579.7710000000002,585.8030000000002,586.7470000000003,587.3070000000002,587.0080000000003,587.6750000000002,589.8990000000002,591.9450000000002,592.2520000000002,591.9970000000003,591.2760000000003,591.1130000000003,590.3480000000002,589.8160000000003,590.7350000000002,593.7300000000002,595.8230000000003,597.5490000000002,598.5260000000003,601.2140000000002,602.8230000000002,603.3790000000001,601.2500000000002,598.7870000000001,597.7150000000001,595.1590000000001,594.2690000000002,593.6270000000002,593.5210000000002,593.4800000000002,594.5240000000001,594.7690000000002,593.8160000000003,591.3770000000002,591.0140000000001,590.2280000000002,590.2890000000002,590.3520000000001,590.2180000000001,588.0840000000001,586.4810000000001,583.7170000000001,583.729,586.3530000000001,586.9000000000001,589.9380000000001,591.5750000000002,592.3790000000001,594.0360000000001,593.3080000000001,592.3230000000001,591.6020000000001,591.8680000000002,593.4010000000001,593.5490000000002,594.6040000000002,597.2320000000002,597.5430000000001,598.2050000000002,597.8470000000001,596.5030000000002,594.5150000000001,594.6630000000001,594.9300000000001,596.0670000000001,596.1310000000001,598.9730000000002,605.5610000000001,608.7820000000002,610.2500000000002,612.1150000000002,612.7040000000002,612.7750000000002,613.0930000000002,615.3330000000002,620.6310000000002,623.4120000000003,624.1960000000001,622.7830000000001,620.7160000000001,622.1880000000001,624.2820000000002,624.3590000000002,626.6090000000002,629.4630000000002,628.7990000000002,625.6290000000001,623.8810000000001,623.7030000000002,625.9800000000001,626.6450000000002,626.6450000000002,624.6780000000001,623.1800000000002,623.7650000000001,625.5910000000001,627.5530000000001,629.4690000000002,630.2070000000001,630.5860000000002,631.7240000000002,631.7240000000002,631.5460000000002,631.2960000000002,631.7230000000002,632.7190000000002,632.1650000000002,632.0970000000002,632.0000000000002,630.6430000000003,630.8790000000001,631.5880000000002,632.8380000000002,635.6500000000002,639.0000000000002,639.0260000000003,638.9970000000003,638.9630000000002,640.1770000000002,641.3120000000002,643.1880000000002,644.3540000000003,645.0800000000002,646.0000000000002,644.9400000000003,641.2460000000002,639.4490000000002,631.6690000000002,625.3590000000002,623.9110000000003,622.4120000000003,618.6630000000002,618.5550000000002,619.0490000000002,622.6330000000003,622.9920000000002,626.6660000000002,626.9980000000002,627.1930000000002,628.6130000000002,628.3770000000002,626.2850000000002,626.5890000000002,627.8870000000002,628.3480000000002,628.7020000000002,628.6040000000002,628.5170000000002,628.5170000000002,627.0590000000002,621.9070000000002,621.2650000000001,619.7810000000002,614.9890000000003,612.8980000000001,610.4450000000002,609.3760000000002,608.8410000000001,607.7240000000002,605.5910000000001,604.4640000000002,604.5250000000001,604.3230000000001,602.1230000000002,600.6680000000001,599.8000000000002,597.8960000000002,594.5390000000002,593.7650000000001,593.8030000000001,593.8340000000002,593.6970000000001,593.5650000000002,595.1920000000002,598.8930000000003,597.6550000000002,595.2030000000002,592.3740000000003,592.1190000000001,591.3310000000001,591.3370000000002,591.3530000000002,591.3950000000002,591.4810000000002,591.3430000000002,591.2540000000001,590.0880000000002,588.6710000000003,587.8900000000002,587.3620000000002,586.5290000000002,586.1320000000002,585.4570000000001,584.5620000000001,580.1550000000002,580.1090000000002,580.0740000000002,579.8700000000001,578.5060000000002,577.7560000000002,578.4190000000002,579.7400000000002,580.0550000000003,579.7620000000002,577.1310000000003,574.9000000000003,573.7180000000003,569.5360000000003,568.6750000000002,567.3930000000003,565.9750000000003,566.8570000000002,567.1080000000002,566.2630000000001,565.6990000000002,564.5400000000002,562.4650000000001,559.9080000000001,559.8800000000001,559.9760000000001,560.4080000000001,561.0960000000002,560.7880000000002,560.5050000000001,559.3150000000002,557.6590000000001,553.3210000000001,552.1910000000001,548.8450000000001,547.0360000000001,547.2520000000002,547.373,547.1440000000001,546.8850000000001,546.931,546.1930000000001,545.6180000000002,542.9560000000001,540.3710000000001,542.8900000000001,545.1470000000002,543.7360000000001,542.3240000000002,543.4560000000001,546.8430000000002,541.1950000000002,532.7280000000002,525.1050000000002,520.5870000000002,516.0720000000002,519.4610000000002,520.0250000000003,521.9980000000003,525.3880000000003,522.2790000000002,517.4820000000002,516.3530000000003,514.0950000000003,508.7320000000002,507.88900000000024,511.8330000000002,515.7890000000002,516.3530000000003,521.1510000000003,526.7980000000002,529.3390000000002,533.0120000000002,533.8550000000002,533.5710000000003,532.1630000000002,529.9030000000002,531.0340000000002,529.3390000000002,523.6930000000002,520.0250000000002,518.0490000000002,515.7890000000002,509.01400000000024,502.5240000000002,502.23400000000026,499.9820000000003,494.8970000000003,491.2260000000002,488.4050000000002,482.7610000000002,473.1590000000002,463.8470000000002,455.65800000000024,448.0350000000002,444.65200000000016,445.7750000000002,446.9110000000002,445.2130000000002,440.97900000000016,439.0010000000002,436.7460000000002,431.9430000000002,429.4040000000002,429.1220000000002,430.53200000000015,424.89200000000017,420.08900000000017,413.8800000000002,412.61900000000026,412.6180000000003,411.5240000000002,409.1710000000003,408.57200000000023,408.31100000000026,407.7120000000002,404.9770000000002,403.4060000000002,402.7810000000002,399.82100000000014,399.8610000000001,399.0870000000001,397.4440000000001,395.1790000000001,394.7940000000001,392.24800000000005,391.61400000000003,391.231,390.552,389.46299999999997,387.121,384.81600000000003,386.904,386.648,383.35900000000004,382.135,382.44899999999996,384.264,383.351,381.35900000000004,380.466,380.33799999999997,381.1569999999999,383.34399999999994,383.29099999999994,383.14099999999996,383.72399999999993,384.72799999999995,386.972,385.92099999999994,384.3459999999999,383.59799999999984,381.88699999999983,382.8789999999998,383.91499999999974,382.3169999999998,381.0319999999998,379.56799999999976,376.8679999999997,375.33799999999974,375.0599999999997,373.36699999999973,371.8489999999997,372.20299999999975,372.25599999999974,371.9589999999997,369.27499999999975,365.7489999999998,365.5659999999998,364.9019999999998,364.78499999999985,362.8699999999999,360.5519999999999,356.7069999999999,354.9319999999999,352.71799999999985,351.23199999999986,346.7489999999999,342.8879999999999,340.99699999999996,339.842,337.827,334.456,332.19500000000005,327.274,325.996,325.47,325.75300000000004,325.61400000000003,324.9820000000001,324.3080000000001,323.9610000000001,323.80200000000013,321.05600000000015,320.1250000000001,319.33100000000013,316.1320000000002,315.30700000000013,316.4860000000001,318.12800000000016,317.37300000000016,314.60900000000015,312.81600000000014,311.5640000000002,309.0550000000002,308.57200000000023,308.6900000000003,309.0700000000003,309.26900000000023,309.3000000000002,309.2710000000002,308.43600000000015,305.99800000000016,304.7180000000002,304.6460000000002,303.2180000000002,301.52300000000014,300.10400000000016,300.01300000000015,299.9720000000001,300.05600000000004,300.1310000000001,299.74300000000005,298.4200000000001,296.0490000000001,294.9470000000001,292.9420000000001,292.6300000000001,292.45000000000016,291.56600000000014,288.5450000000002,287.51200000000017,287.4590000000002,287.69500000000016,287.8510000000001,287.5820000000001,285.9280000000001,284.32000000000016,282.7220000000002,280.49000000000024,280.18600000000026,280.32600000000025,280.3620000000002,280.10900000000015,278.9680000000002,278.0980000000002,277.0060000000002,274.8850000000002,271.1080000000002,270.57600000000014,269.9910000000001,268.9230000000001,269.16200000000015,269.25400000000013,266.7410000000001,265.3710000000001,263.4660000000001,258.2210000000001,257.64700000000016,257.6120000000002,257.32000000000016,257.3190000000002,256.4820000000002,256.5730000000002,256.19600000000025,255.97900000000027,255.8770000000003,254.2800000000003,254.46500000000026,254.95000000000027,252.41600000000028,250.70000000000027,249.90000000000032,244.7230000000003,244.34600000000034,243.67300000000034,241.7320000000003,239.94000000000028,238.04200000000026,232.5500000000003,229.88300000000027,226.4580000000003,225.74900000000036,222.9580000000003,217.5930000000003,216.68100000000027,215.19500000000028,215.2320000000003,215.36500000000035,215.36000000000035,214.57300000000032,211.55800000000033,210.88900000000035,209.7910000000004,206.9490000000004,204.50000000000045,203.96300000000042,200.84700000000043,199.65900000000045,197.04400000000044,192.70300000000043,191.41200000000038,190.04800000000034,188.18700000000035,188.9160000000004,188.31700000000035,184.0880000000003,182.67600000000027,179.56500000000028,176.4590000000003,174.76800000000026,171.37900000000025,166.29700000000025,163.1930000000002,160.93500000000017,158.39400000000012,156.9810000000001,160.09000000000015,162.62800000000016,162.90800000000013,160.6550000000001,156.13600000000008,155.8520000000001,155.8520000000001,154.15700000000004,154.72800000000007,156.34400000000005,155.341,156.591,157.18000000000006,157.79700000000003,157.75700000000006,157.3180000000001,156.57600000000014,155.1740000000001,151.55600000000004,150.389,149.22400000000005,149.788,149.962,149.68899999999996,146.36299999999994,146.79599999999994,147.4079999999999,147.26299999999992,146.9609999999999,146.75299999999993,147.64299999999992,148.12599999999986,148.14199999999983,147.78599999999983,146.39699999999982,146.21899999999982,145.69499999999982,146.5089999999998,147.06199999999978,146.22899999999981,144.48699999999985,143.39199999999983,143.00099999999986,141.26199999999983,139.69299999999987,139.3299999999998,133.53799999999978,131.2779999999998,127.22199999999975,124.42999999999972,120.90399999999977,119.5709999999998,115.79499999999985,107.85899999999981,101.95199999999977,98.3689999999998,96.48999999999978,92.35899999999981,87.56199999999978,87.4749999999998,83.48699999999974,79.89699999999971,77.73599999999976,74.42899999999975,72.46599999999978,65.63499999999976,60.69999999999982,59.8159999999998,57.016999999999825,52.72799999999984,48.374999999999886,45.90899999999988,45.32999999999993,40.108999999999924,38.347999999999956,37.344999999999914,30.792999999999893,27.55099999999993,26.60599999999988,25.09999999999991,26.422999999999888,27.437999999999874,26.27199999999982,24.919999999999845,23.05999999999983,21.759999999999877,22.189999999999827,24.12999999999988,26.36399999999992,24.999999999999886,22.719999999999914,22.569999999999936,24.899999999999977,28.23199999999997,27.67700000000002,24.200000000000045,24.690000000000055,24.82000000000005,25.600000000000023,28.411000000000058,28.684000000000083,27.583000000000084,26.936000000000035,26.936000000000035,29.554000000000087,30.828000000000088,32.62000000000012,34.30700000000013,34.871000000000095,33.60600000000011,32.85200000000009,32.287000000000035,33.259000000000015,35.68700000000001,37.15100000000007,40.40100000000007,41.05300000000011,41.53500000000008,42.585000000000036,43.03200000000004,41.694000000000074,40.02200000000005,42.18100000000004,39.992000000000075,38.72900000000004,36.68100000000004,35.00400000000002,33.88900000000001,34.004999999999995,34.02200000000005,33.4910000000001,32.86200000000008,33.68400000000008,36.55400000000009,36.08100000000013,32.92200000000014,31.235000000000127,30.44200000000012,31.282000000000153,33.0390000000001,32.88000000000011,30.117000000000075,29.12600000000009,25.980000000000132,18.19000000000017,18.130000000000223,20.000000000000227,20.190000000000282,19.000000000000227,18.52000000000021,18.86000000000024,20.08000000000027,19.560000000000286,20.210000000000264,21.85000000000025,21.84000000000026,22.800000000000296,22.86000000000024,22.890000000000214,26.236000000000217,26.469000000000165,26.06500000000017,25.350000000000136,22.40000000000009,21.520000000000095,21.57000000000005,21.760000000000105,22.22000000000014,22.1400000000001,21.12000000000012,18.40000000000009,16.690000000000055,16.760000000000105,14.46000000000015,13.260000000000105,10.190000000000055,8.120000000000005,7.560000000000059,9.660000000000082,9.950000000000045,9.629999999999995,8.090000000000032,6.360000000000014,3.4500000000000455,1.1300000000001091,0.0,0.14000000000010004,0.3200000000001637,4.820000000000164,9.46000000000015,12.0300000000002,13.470000000000255,18.400000000000205,19.890000000000214,22.11000000000024,23.36000000000024,22.43000000000029,22.270000000000323,24.340000000000373,25.0600000000004,24.500000000000455,23.270000000000437,22.000000000000455,21.240000000000464,22.230000000000473,22.46000000000049,21.88000000000045,20.96000000000049,19.090000000000487,18.170000000000528,18.18000000000052,18.18000000000052,15.080000000000496,14.760000000000446,11.660000000000423,11.690000000000396,13.750000000000341,14.260000000000332,13.390000000000327,12.050000000000296,11.830000000000268,11.320000000000277,13.130000000000223,13.500000000000227,15.950000000000273,15.930000000000291,15.380000000000337,15.150000000000318,19.90000000000032,18.530000000000314,18.570000000000277,21.280000000000314,21.22000000000037,21.140000000000327,22.020000000000323,24.1700000000003,25.820000000000277,27.994000000000256,28.065000000000282,28.098000000000297,27.95100000000025,27.77700000000027,28.806000000000267,31.756000000000313,31.734000000000265,31.3190000000003,30.894000000000347,30.67100000000039,30.894000000000347,30.91000000000031,31.82700000000034,34.58800000000031,35.09100000000035,39.01400000000035,40.891000000000304,42.35000000000025,39.60400000000027,38.17300000000023,37.660000000000196,38.55800000000022,39.46700000000021,38.87500000000023,37.781000000000176,34.02200000000016,33.75200000000018,33.316000000000145,34.81900000000019,35.92500000000018,38.22400000000016,38.29600000000016,38.479000000000156,37.882000000000176,36.63400000000013,34.04600000000016,33.76300000000015,33.239000000000146,32.737000000000194,30.81200000000024,27.26000000000022,25.200000000000273,22.720000000000255,21.870000000000232,21.810000000000286,23.11000000000024,24.04000000000019,26.86300000000017,27.971000000000117,29.32100000000014,32.28300000000013,32.871000000000095,38.53200000000004,40.08000000000004,44.537000000000035,43.84699999999998,42.535999999999945,43.7349999999999,44.049999999999955,46.07299999999998,48.03499999999997,49.918000000000006,56.61099999999999,59.71600000000001,63.40999999999997,67.02800000000002,70.02499999999998,70.70899999999995,72.52599999999995,74.73599999999999,76.298,78.67200000000003,81.34100000000001,82.58699999999999,82.75599999999997,82.73000000000002,82.70400000000006,83.44800000000009,88.2360000000001,89.6400000000001,90.19100000000014,98.38300000000015,101.72300000000018,104.26300000000015,107.90300000000013,108.15400000000011,108.40100000000007,112.66000000000008,113.01400000000012,113.72700000000009,115.30700000000013,116.07800000000009,116.11400000000003,114.77499999999998,113.99000000000001,113.18899999999996,112.16599999999994,110.32099999999991,110.64899999999989,112.71699999999987,114.49899999999991,115.46899999999994,118.4419999999999,120.75299999999993,125.18899999999996,126.09399999999994,128.38699999999994,130.082,133.88800000000003,135.11200000000008,137.67500000000007,141.70100000000002,142.53499999999997,142.37299999999993,142.1679999999999,142.20499999999993,145.14199999999994,148.67599999999993,148.76099999999997,147.05200000000002,146.65200000000004,146.82600000000002,149.42399999999998,150.41499999999996,153.596,159.98199999999997,160.27999999999997,162.49400000000003,166.94500000000005,168.66100000000006,170.14100000000008,174.17100000000005,174.4380000000001,178.21100000000013,178.04500000000007,177.9140000000001,177.32200000000012,178.42600000000016,183.9960000000002,184.12500000000023,187.8670000000002,189.85800000000017,192.59500000000014,199.18100000000015,200.1690000000002,200.8760000000002,205.4290000000002,207.40600000000018,209.87000000000023,212.21900000000028,213.63400000000024,213.63400000000024,213.76400000000024,214.87200000000018,215.14600000000019,219.4530000000002,222.8280000000002,224.59600000000023,225.76000000000022,226.17800000000022,228.0490000000002,230.28200000000015,231.73900000000015,232.6780000000001,234.1550000000001,236.0440000000001,238.6350000000001,239.1740000000001,240.26900000000012,242.27100000000007,245.59300000000007,247.22300000000007,247.96600000000012,248.88600000000008,249.86200000000008,250.87900000000013,252.1060000000001,255.47500000000014,255.65700000000015,256.3530000000002,252.9680000000002,251.55500000000018,249.29600000000016,247.88800000000015,246.75400000000013,253.81500000000017,257.1980000000002,259.4580000000002,262.5680000000002,264.82100000000025,266.51800000000026,266.79800000000023,264.82100000000025,267.9300000000003,272.7270000000003,273.29200000000037,273.8570000000004,276.6800000000004,281.2000000000004,280.3490000000004,284.0210000000004,287.1230000000004,284.29900000000043,283.17400000000043,285.4350000000004,289.10100000000045,292.2060000000005,292.7730000000005,293.05300000000045,294.4630000000004,294.4630000000004,296.4410000000004,301.2380000000004,302.36600000000044,306.32200000000046,308.5800000000005,310.27500000000055,313.6580000000006,316.2000000000006,317.89500000000066,320.7190000000006,322.4110000000006,321.0030000000006,321.28500000000065,321.84800000000064,318.74100000000067,314.79000000000065,313.0960000000007,310.27500000000066,307.44900000000064,305.4760000000007,307.7310000000007,313.94500000000073,321.28500000000076,334.2680000000007,340.1960000000007,347.53499999999997]},\"selected\":{\"id\":\"3408\"},\"selection_policy\":{\"id\":\"3407\"}},\"id\":\"3275\",\"type\":\"ColumnDataSource\"}],\"root_ids\":[\"3255\"]},\"title\":\"Bokeh Application\",\"version\":\"2.4.3\"}};\n const render_items = [{\"docid\":\"6fc7af1d-9af6-47ac-a22f-005fa4aa52d5\",\"root_ids\":[\"3255\"],\"roots\":{\"3255\":\"5f9e8ed1-fd26-4727-a288-1c51a1cc95ad\"}}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
@@ -5678,32 +4789,7 @@
},
{
"data": {
- "application/javascript": [
- "(function(root) {\n",
- " function embed_document(root) {\n",
- " const docs_json = {\"c8c51752-0d39-4806-8171-76a8f630f801\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"GridPlot\",\"id\":\"42916\",\"attributes\":{\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"42915\"},\"children\":[[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42906\",\"attributes\":{\"text\":\"DIV
\"}},0,0],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42907\",\"attributes\":{\"text\":\"DIV
\"}},0,1],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42908\",\"attributes\":{\"text\":\"DIV
\"}},0,2],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42909\",\"attributes\":{\"text\":\"DIV
\"}},1,0],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42910\",\"attributes\":{\"margin\":[10,20,30,40],\"text\":\"DIV
\"}},1,1],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42911\",\"attributes\":{\"text\":\"DIV
\"}},1,2],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42912\",\"attributes\":{\"text\":\"DIV
\"}},2,0],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42913\",\"attributes\":{\"text\":\"DIV
\"}},2,1],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42914\",\"attributes\":{\"text\":\"DIV
\"}},2,2]],\"cols\":\"auto\",\"rows\":\"auto\"}}]}};\n",
- " const render_items = [{\"docid\":\"c8c51752-0d39-4806-8171-76a8f630f801\",\"roots\":{\"42916\":\"3c9f3473-ef88-49cc-9a28-7c0423ed8a78\"},\"root_ids\":[\"42916\"]}];\n",
- " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
- " }\n",
- " if (root.Bokeh !== undefined) {\n",
- " embed_document(root);\n",
- " } else {\n",
- " let attempts = 0;\n",
- " const timer = setInterval(function(root) {\n",
- " if (root.Bokeh !== undefined) {\n",
- " clearInterval(timer);\n",
- " embed_document(root);\n",
- " } else {\n",
- " attempts++;\n",
- " if (attempts > 100) {\n",
- " clearInterval(timer);\n",
- " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n",
- " }\n",
- " }\n",
- " }, 10, root)\n",
- " }\n",
- "})(window);"
- ],
+ "application/javascript": "(function(root) {\n function embed_document(root) {\n const docs_json = {\"c8c51752-0d39-4806-8171-76a8f630f801\":{\"version\":\"3.0.0.dev13\",\"title\":\"Bokeh Application\",\"defs\":[],\"roots\":[{\"type\":\"object\",\"name\":\"GridPlot\",\"id\":\"42916\",\"attributes\":{\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"42915\"},\"children\":[[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42906\",\"attributes\":{\"text\":\"DIV
\"}},0,0],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42907\",\"attributes\":{\"text\":\"DIV
\"}},0,1],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42908\",\"attributes\":{\"text\":\"DIV
\"}},0,2],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42909\",\"attributes\":{\"text\":\"DIV
\"}},1,0],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42910\",\"attributes\":{\"margin\":[10,20,30,40],\"text\":\"DIV
\"}},1,1],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42911\",\"attributes\":{\"text\":\"DIV
\"}},1,2],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42912\",\"attributes\":{\"text\":\"DIV
\"}},2,0],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42913\",\"attributes\":{\"text\":\"DIV
\"}},2,1],[{\"type\":\"object\",\"name\":\"Div\",\"id\":\"42914\",\"attributes\":{\"text\":\"DIV
\"}},2,2]],\"cols\":\"auto\",\"rows\":\"auto\"}}]}};\n const render_items = [{\"docid\":\"c8c51752-0d39-4806-8171-76a8f630f801\",\"roots\":{\"42916\":\"3c9f3473-ef88-49cc-9a28-7c0423ed8a78\"},\"root_ids\":[\"42916\"]}];\n root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n }\n if (root.Bokeh !== undefined) {\n embed_document(root);\n } else {\n let attempts = 0;\n const timer = setInterval(function(root) {\n if (root.Bokeh !== undefined) {\n clearInterval(timer);\n embed_document(root);\n } else {\n attempts++;\n if (attempts > 100) {\n clearInterval(timer);\n console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n }\n }\n }, 10, root)\n }\n})(window);",
"application/vnd.bokehjs_exec.v0+json": ""
},
"metadata": {
diff --git a/docs/report.pdf b/docs/report.pdf
new file mode 100644
index 0000000..9b73cb9
Binary files /dev/null and b/docs/report.pdf differ
diff --git a/docs/test-local.sh b/docs/test-local.sh
new file mode 100755
index 0000000..2a49642
--- /dev/null
+++ b/docs/test-local.sh
@@ -0,0 +1,169 @@
+#!/bin/bash
+# Quick local testing script for Survey Dashboard
+# Tests the Docker deployment setup before production deployment
+
+set -e # Exit on error
+
+# Colors for output
+RED='\033[0;31m'
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+BLUE='\033[0;34m'
+NC='\033[0m' # No Color
+
+# Print colored message
+print_status() {
+ echo -e "${BLUE}==>${NC} $1"
+}
+
+print_success() {
+ echo -e "${GREEN}✓${NC} $1"
+}
+
+print_error() {
+ echo -e "${RED}✗${NC} $1"
+}
+
+print_warning() {
+ echo -e "${YELLOW}⚠${NC} $1"
+}
+
+# Banner
+echo ""
+echo "=========================================="
+echo " Survey Dashboard - Local Testing"
+echo "=========================================="
+echo ""
+
+# Check if .env.local exists
+if [ ! -f .env.local ]; then
+ print_warning ".env.local not found. Creating from template..."
+ if [ -f .env.local.example ]; then
+ cp .env.local.example .env.local
+ print_success "Created .env.local from .env.local.example"
+ else
+ print_error ".env.local.example not found!"
+ echo "Please create .env.local manually. See LOCAL_TESTING.md for details."
+ exit 1
+ fi
+fi
+
+# Check Docker is running
+print_status "Checking Docker..."
+if ! docker info > /dev/null 2>&1; then
+ print_error "Docker is not running!"
+ echo "Please start Docker and try again."
+ exit 1
+fi
+print_success "Docker is running"
+
+# Check Docker Compose is installed
+print_status "Checking Docker Compose..."
+if ! command -v docker-compose &> /dev/null; then
+ print_error "Docker Compose is not installed!"
+ echo "Please install Docker Compose and try again."
+ exit 1
+fi
+print_success "Docker Compose is installed"
+
+# Build and start containers
+print_status "Building Docker images..."
+if docker-compose --env-file .env.local build; then
+ print_success "Docker images built successfully"
+else
+ print_error "Docker build failed!"
+ exit 1
+fi
+
+print_status "Starting containers..."
+if docker-compose --env-file .env.local up -d; then
+ print_success "Containers started"
+else
+ print_error "Failed to start containers!"
+ exit 1
+fi
+
+# Wait for containers to be ready
+print_status "Waiting for containers to be ready..."
+sleep 5
+
+# Check container status
+print_status "Checking container status..."
+if docker-compose --env-file .env.local ps | grep -q "Up"; then
+ print_success "Containers are running"
+ docker-compose --env-file .env.local ps
+else
+ print_error "Some containers are not running!"
+ docker-compose --env-file .env.local ps
+ exit 1
+fi
+
+echo ""
+print_status "Running connectivity tests..."
+echo ""
+
+# Read VIRTUAL_PATH from .env.local
+VIRTUAL_PATH=$(grep VIRTUAL_PATH .env.local | cut -d= -f2)
+if [ -z "$VIRTUAL_PATH" ]; then
+ VIRTUAL_PATH="/"
+ print_warning "VIRTUAL_PATH is empty, testing root path"
+fi
+
+# Test 1: Dashboard path should work
+print_status "Test 1: Testing dashboard path (http://localhost${VIRTUAL_PATH}/)..."
+HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" "http://localhost${VIRTUAL_PATH}/")
+if [ "$HTTP_CODE" == "200" ] || [ "$HTTP_CODE" == "302" ]; then
+ print_success "Dashboard is accessible (HTTP $HTTP_CODE)"
+else
+ print_error "Dashboard returned HTTP $HTTP_CODE (expected 200 or 302)"
+fi
+
+# Test 2: Root path should fail (if VIRTUAL_PATH is not root)
+if [ "$VIRTUAL_PATH" != "/" ]; then
+ print_status "Test 2: Testing root path should be blocked (http://localhost/)..."
+ HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" "http://localhost/")
+ if [ "$HTTP_CODE" == "404" ] || [ "$HTTP_CODE" == "503" ]; then
+ print_success "Root path is blocked (HTTP $HTTP_CODE)"
+ else
+ print_warning "Root path returned HTTP $HTTP_CODE (expected 404 or 503)"
+ fi
+fi
+
+# Test 3: Check dashboard logs
+print_status "Test 3: Checking dashboard logs..."
+if docker-compose --env-file .env.local logs dashboard | grep -q "PRODUCTION mode"; then
+ print_success "Dashboard started in production mode"
+else
+ print_warning "Could not verify production mode in logs"
+fi
+
+if docker-compose --env-file .env.local logs dashboard | grep -q "Using URL prefix"; then
+ print_success "Dashboard is using URL prefix"
+else
+ if [ "$VIRTUAL_PATH" != "/" ]; then
+ print_warning "Could not verify URL prefix in logs"
+ fi
+fi
+
+# Summary
+echo ""
+echo "=========================================="
+echo " Test Summary"
+echo "=========================================="
+echo ""
+print_success "Docker setup is working!"
+echo ""
+echo "Next steps:"
+echo " 1. Open browser: http://localhost${VIRTUAL_PATH}/"
+echo " 2. Verify dashboard loads and is interactive"
+echo " 3. Check browser console (F12) for errors"
+echo " 4. Test WebSocket connections in Network tab"
+echo ""
+echo "View logs:"
+echo " docker-compose --env-file .env.local logs -f"
+echo ""
+echo "Stop containers:"
+echo " docker-compose --env-file .env.local down"
+echo ""
+echo "See LOCAL_TESTING.md for detailed testing scenarios"
+echo ""
diff --git a/nginx/vhost.d/default b/nginx/vhost.d/default
new file mode 100644
index 0000000..9467d69
--- /dev/null
+++ b/nginx/vhost.d/default
@@ -0,0 +1,16 @@
+# Custom nginx configuration for Panel/Bokeh WebSocket support
+# This file is automatically included by nginx-proxy for all virtual hosts
+#
+# IMPORTANT: WebSocket support is REQUIRED for Panel/Bokeh interactivity
+# Without these settings, dashboard buttons, filters, and plots won't work
+
+# WebSocket support configuration
+proxy_http_version 1.1;
+proxy_set_header Upgrade $http_upgrade;
+proxy_set_header Connection "upgrade";
+
+# Timeout settings for long-lived WebSocket connections
+# Panel/Bokeh maintains persistent connections for real-time updates
+proxy_read_timeout 86400; # 24 hours - allows dashboard to stay open all day
+proxy_connect_timeout 60; # 60 seconds to establish initial connection
+proxy_send_timeout 60; # 60 seconds timeout for sending data
diff --git a/poetry.lock b/poetry.lock
index d24be8b..d9b7034 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -1,262 +1,560 @@
+# This file is automatically @generated by Poetry 2.1.4 and should not be changed by hand.
+
[[package]]
-name = "astunparse"
-version = "1.6.3"
-description = "An AST unparser for Python"
-category = "dev"
+name = "anyio"
+version = "4.10.0"
+description = "High-level concurrency and networking framework on top of asyncio or Trio"
optional = false
-python-versions = "*"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "anyio-4.10.0-py3-none-any.whl", hash = "sha256:60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1"},
+ {file = "anyio-4.10.0.tar.gz", hash = "sha256:3f3fae35c96039744587aa5b8371e7e8e603c0702999535961dd336026973ba6"},
+]
[package.dependencies]
-six = ">=1.6.1,<2.0"
-wheel = ">=0.23.0,<1.0"
-
-[[package]]
-name = "attrs"
-version = "22.1.0"
-description = "Classes Without Boilerplate"
-category = "dev"
-optional = false
-python-versions = ">=3.5"
+idna = ">=2.8"
+sniffio = ">=1.1"
+typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""}
[package.extras]
-dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"]
-docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"]
-tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"]
-tests_no_zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"]
+trio = ["trio (>=0.26.1)"]
[[package]]
name = "bleach"
-version = "5.0.1"
+version = "6.2.0"
description = "An easy safelist-based HTML-sanitizing tool."
-category = "main"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"},
+ {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"},
+]
[package.dependencies]
-six = ">=1.9.0"
webencodings = "*"
[package.extras]
-css = ["tinycss2 (>=1.1.0,<1.2)"]
-dev = ["Sphinx (==4.3.2)", "black (==22.3.0)", "build (==0.8.0)", "flake8 (==4.0.1)", "hashin (==0.17.0)", "mypy (==0.961)", "pip-tools (==6.6.2)", "pytest (==7.1.2)", "tox (==3.25.0)", "twine (==4.0.1)", "wheel (==0.37.1)"]
+css = ["tinycss2 (>=1.1.0,<1.5)"]
[[package]]
name = "bokeh"
-version = "2.4.3"
+version = "3.7.3"
description = "Interactive plots and applications in the browser from Python"
-category = "main"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.10"
+groups = ["main"]
+files = [
+ {file = "bokeh-3.7.3-py3-none-any.whl", hash = "sha256:b0e79dd737f088865212e4fdcb0f3b95d087f0f088bf8ca186a300ab1641e2c7"},
+ {file = "bokeh-3.7.3.tar.gz", hash = "sha256:70a89a9f797b103d5ee6ad15fb7944adda115cf0da996ed0b75cfba61cb12f2b"},
+]
[package.dependencies]
+contourpy = ">=1.2"
Jinja2 = ">=2.9"
-numpy = ">=1.11.3"
+narwhals = ">=1.13"
+numpy = ">=1.16"
packaging = ">=16.8"
+pandas = ">=1.2"
pillow = ">=7.1.0"
PyYAML = ">=3.10"
-tornado = ">=5.1"
-typing-extensions = ">=3.10.0"
+tornado = {version = ">=6.2", markers = "sys_platform != \"emscripten\""}
+xyzservices = ">=2021.09.1"
[[package]]
name = "certifi"
-version = "2022.6.15.1"
+version = "2025.8.3"
description = "Python package for providing Mozilla's CA Bundle."
-category = "main"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "certifi-2025.8.3-py3-none-any.whl", hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5"},
+ {file = "certifi-2025.8.3.tar.gz", hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407"},
+]
[[package]]
name = "cfgv"
-version = "3.3.1"
+version = "3.4.0"
description = "Validate configuration and produce human readable error messages."
-category = "dev"
optional = false
-python-versions = ">=3.6.1"
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"},
+ {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"},
+]
[[package]]
name = "charset-normalizer"
-version = "2.1.1"
+version = "3.4.3"
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
-category = "main"
optional = false
-python-versions = ">=3.6.0"
-
-[package.extras]
-unicode_backport = ["unicodedata2"]
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "charset_normalizer-3.4.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:fb7f67a1bfa6e40b438170ebdc8158b78dc465a5a67b6dde178a46987b244a72"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc9370a2da1ac13f0153780040f465839e6cccb4a1e44810124b4e22483c93fe"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:07a0eae9e2787b586e129fdcbe1af6997f8d0e5abaa0bc98c0e20e124d67e601"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:74d77e25adda8581ffc1c720f1c81ca082921329452eba58b16233ab1842141c"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d0e909868420b7049dafd3a31d45125b31143eec59235311fc4c57ea26a4acd2"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c6f162aabe9a91a309510d74eeb6507fab5fff92337a15acbe77753d88d9dcf0"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4ca4c094de7771a98d7fbd67d9e5dbf1eb73efa4f744a730437d8a3a5cf994f0"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:02425242e96bcf29a49711b0ca9f37e451da7c70562bc10e8ed992a5a7a25cc0"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:78deba4d8f9590fe4dae384aeff04082510a709957e968753ff3c48399f6f92a"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-win32.whl", hash = "sha256:d79c198e27580c8e958906f803e63cddb77653731be08851c7df0b1a14a8fc0f"},
+ {file = "charset_normalizer-3.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:c6e490913a46fa054e03699c70019ab869e990270597018cef1d8562132c2669"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b256ee2e749283ef3ddcff51a675ff43798d92d746d1a6e4631bf8c707d22d0b"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:13faeacfe61784e2559e690fc53fa4c5ae97c6fcedb8eb6fb8d0a15b475d2c64"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:00237675befef519d9af72169d8604a067d92755e84fe76492fef5441db05b91"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:585f3b2a80fbd26b048a0be90c5aae8f06605d3c92615911c3a2b03a8a3b796f"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e78314bdc32fa80696f72fa16dc61168fda4d6a0c014e0380f9d02f0e5d8a07"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:96b2b3d1a83ad55310de8c7b4a2d04d9277d5591f40761274856635acc5fcb30"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:939578d9d8fd4299220161fdd76e86c6a251987476f5243e8864a7844476ba14"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:fd10de089bcdcd1be95a2f73dbe6254798ec1bda9f450d5828c96f93e2536b9c"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1e8ac75d72fa3775e0b7cb7e4629cec13b7514d928d15ef8ea06bca03ef01cae"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-win32.whl", hash = "sha256:6cf8fd4c04756b6b60146d98cd8a77d0cdae0e1ca20329da2ac85eed779b6849"},
+ {file = "charset_normalizer-3.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:31a9a6f775f9bcd865d88ee350f0ffb0e25936a7f930ca98995c05abf1faf21c"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e28e334d3ff134e88989d90ba04b47d84382a828c061d0d1027b1b12a62b39b1"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0cacf8f7297b0c4fcb74227692ca46b4a5852f8f4f24b3c766dd94a1075c4884"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c6fd51128a41297f5409deab284fecbe5305ebd7e5a1f959bee1c054622b7018"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cfb2aad70f2c6debfbcb717f23b7eb55febc0bb23dcffc0f076009da10c6392"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1606f4a55c0fd363d754049cdf400175ee96c992b1f8018b993941f221221c5f"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:027b776c26d38b7f15b26a5da1044f376455fb3766df8fc38563b4efbc515154"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:42e5088973e56e31e4fa58eb6bd709e42fc03799c11c42929592889a2e54c491"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cc34f233c9e71701040d772aa7490318673aa7164a0efe3172b2981218c26d93"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:320e8e66157cc4e247d9ddca8e21f427efc7a04bbd0ac8a9faf56583fa543f9f"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-win32.whl", hash = "sha256:fb6fecfd65564f208cbf0fba07f107fb661bcd1a7c389edbced3f7a493f70e37"},
+ {file = "charset_normalizer-3.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:86df271bf921c2ee3818f0522e9a5b8092ca2ad8b065ece5d7d9d0e9f4849bcc"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41d1fc408ff5fdfb910200ec0e74abc40387bccb3252f3f27c0676731df2b2c8"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1bb60174149316da1c35fa5233681f7c0f9f514509b8e399ab70fea5f17e45c9"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:30d006f98569de3459c2fc1f2acde170b7b2bd265dc1943e87e1a4efe1b67c31"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aab0f181c486f973bc7262a97f5aca3ee7e1437011ef0c2ec04b5a11d16c927"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabf8315679312cfa71302f9bd509ded4f2f263fb5b765cf1433b39106c3cc9"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:bd28b817ea8c70215401f657edef3a8aa83c29d447fb0b622c35403780ba11d5"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:18343b2d246dc6761a249ba1fb13f9ee9a2bcd95decc767319506056ea4ad4dc"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-win32.whl", hash = "sha256:6fb70de56f1859a3f71261cbe41005f56a7842cc348d3aeb26237560bfa5e0ce"},
+ {file = "charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3cd35b7e8aedeb9e34c41385fda4f73ba609e561faedfae0a9e75e44ac558a15"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b89bc04de1d83006373429975f8ef9e7932534b8cc9ca582e4db7d20d91816db"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2001a39612b241dae17b4687898843f254f8748b796a2e16f1051a17078d991d"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8dcfc373f888e4fb39a7bc57e93e3b845e7f462dacc008d9749568b1c4ece096"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18b97b8404387b96cdbd30ad660f6407799126d26a39ca65729162fd810a99aa"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ccf600859c183d70eb47e05a44cd80a4ce77394d1ac0f79dbd2dd90a69a3a049"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:53cd68b185d98dde4ad8990e56a58dea83a4162161b1ea9272e5c9182ce415e0"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:30a96e1e1f865f78b030d65241c1ee850cdf422d869e9028e2fc1d5e4db73b92"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d716a916938e03231e86e43782ca7878fb602a125a91e7acb8b5112e2e96ac16"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-win32.whl", hash = "sha256:c6dbd0ccdda3a2ba7c2ecd9d77b37f3b5831687d8dc1b6ca5f56a4880cc7b7ce"},
+ {file = "charset_normalizer-3.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:73dc19b562516fc9bcf6e5d6e596df0b4eb98d87e4f79f3ae71840e6ed21361c"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0f2be7e0cf7754b9a30eb01f4295cc3d4358a479843b31f328afd210e2c7598c"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c60e092517a73c632ec38e290eba714e9627abe9d301c8c8a12ec32c314a2a4b"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:252098c8c7a873e17dd696ed98bbe91dbacd571da4b87df3736768efa7a792e4"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3653fad4fe3ed447a596ae8638b437f827234f01a8cd801842e43f3d0a6b281b"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8999f965f922ae054125286faf9f11bc6932184b93011d138925a1773830bbe9"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d95bfb53c211b57198bb91c46dd5a2d8018b3af446583aab40074bf7988401cb"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:5b413b0b1bfd94dbf4023ad6945889f374cd24e3f62de58d6bb102c4d9ae534a"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:b5e3b2d152e74e100a9e9573837aba24aab611d39428ded46f4e4022ea7d1942"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a2d08ac246bb48479170408d6c19f6385fa743e7157d716e144cad849b2dd94b"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-win32.whl", hash = "sha256:ec557499516fc90fd374bf2e32349a2887a876fbf162c160e3c01b6849eaf557"},
+ {file = "charset_normalizer-3.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:5d8d01eac18c423815ed4f4a2ec3b439d654e55ee4ad610e153cf02faf67ea40"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:70bfc5f2c318afece2f5838ea5e4c3febada0be750fcf4775641052bbba14d05"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:23b6b24d74478dc833444cbd927c338349d6ae852ba53a0d02a2de1fce45b96e"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:34a7f768e3f985abdb42841e20e17b330ad3aaf4bb7e7aeeb73db2e70f077b99"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:fb731e5deb0c7ef82d698b0f4c5bb724633ee2a489401594c5c88b02e6cb15f7"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:257f26fed7d7ff59921b78244f3cd93ed2af1800ff048c33f624c87475819dd7"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1ef99f0456d3d46a50945c98de1774da86f8e992ab5c77865ea8b8195341fc19"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:2c322db9c8c89009a990ef07c3bcc9f011a3269bc06782f916cd3d9eed7c9312"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:511729f456829ef86ac41ca78c63a5cb55240ed23b4b737faca0eb1abb1c41bc"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:88ab34806dea0671532d3f82d82b85e8fc23d7b2dd12fa837978dad9bb392a34"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-win32.whl", hash = "sha256:16a8770207946ac75703458e2c743631c79c59c5890c80011d536248f8eaa432"},
+ {file = "charset_normalizer-3.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:d22dbedd33326a4a5190dd4fe9e9e693ef12160c77382d9e87919bce54f3d4ca"},
+ {file = "charset_normalizer-3.4.3-py3-none-any.whl", hash = "sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a"},
+ {file = "charset_normalizer-3.4.3.tar.gz", hash = "sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14"},
+]
[[package]]
name = "colorama"
-version = "0.4.5"
+version = "0.4.6"
description = "Cross-platform colored terminal text."
-category = "main"
optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
+groups = ["main", "dev"]
+files = [
+ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
+ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
+]
+markers = {main = "platform_system == \"Windows\"", dev = "sys_platform == \"win32\""}
+
+[[package]]
+name = "contourpy"
+version = "1.3.3"
+description = "Python library for calculating contours of 2D quadrilateral grids"
+optional = false
+python-versions = ">=3.11"
+groups = ["main"]
+files = [
+ {file = "contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1"},
+ {file = "contourpy-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381"},
+ {file = "contourpy-1.3.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7"},
+ {file = "contourpy-1.3.3-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1"},
+ {file = "contourpy-1.3.3-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a"},
+ {file = "contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db"},
+ {file = "contourpy-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620"},
+ {file = "contourpy-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f"},
+ {file = "contourpy-1.3.3-cp311-cp311-win32.whl", hash = "sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff"},
+ {file = "contourpy-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42"},
+ {file = "contourpy-1.3.3-cp311-cp311-win_arm64.whl", hash = "sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470"},
+ {file = "contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb"},
+ {file = "contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6"},
+ {file = "contourpy-1.3.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7"},
+ {file = "contourpy-1.3.3-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b2e8faa0ed68cb29af51edd8e24798bb661eac3bd9f65420c1887b6ca89987c8"},
+ {file = "contourpy-1.3.3-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea"},
+ {file = "contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1"},
+ {file = "contourpy-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7"},
+ {file = "contourpy-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411"},
+ {file = "contourpy-1.3.3-cp312-cp312-win32.whl", hash = "sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69"},
+ {file = "contourpy-1.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b"},
+ {file = "contourpy-1.3.3-cp312-cp312-win_arm64.whl", hash = "sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc"},
+ {file = "contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5"},
+ {file = "contourpy-1.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1"},
+ {file = "contourpy-1.3.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286"},
+ {file = "contourpy-1.3.3-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5"},
+ {file = "contourpy-1.3.3-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67"},
+ {file = "contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9"},
+ {file = "contourpy-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659"},
+ {file = "contourpy-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7"},
+ {file = "contourpy-1.3.3-cp313-cp313-win32.whl", hash = "sha256:b20c7c9a3bf701366556e1b1984ed2d0cedf999903c51311417cf5f591d8c78d"},
+ {file = "contourpy-1.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263"},
+ {file = "contourpy-1.3.3-cp313-cp313-win_arm64.whl", hash = "sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9"},
+ {file = "contourpy-1.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d"},
+ {file = "contourpy-1.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216"},
+ {file = "contourpy-1.3.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e4e6b05a45525357e382909a4c1600444e2a45b4795163d3b22669285591c1ae"},
+ {file = "contourpy-1.3.3-cp313-cp313t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ab3074b48c4e2cf1a960e6bbeb7f04566bf36b1861d5c9d4d8ac04b82e38ba20"},
+ {file = "contourpy-1.3.3-cp313-cp313t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99"},
+ {file = "contourpy-1.3.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b"},
+ {file = "contourpy-1.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a"},
+ {file = "contourpy-1.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e"},
+ {file = "contourpy-1.3.3-cp313-cp313t-win32.whl", hash = "sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3"},
+ {file = "contourpy-1.3.3-cp313-cp313t-win_amd64.whl", hash = "sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8"},
+ {file = "contourpy-1.3.3-cp313-cp313t-win_arm64.whl", hash = "sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301"},
+ {file = "contourpy-1.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a"},
+ {file = "contourpy-1.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77"},
+ {file = "contourpy-1.3.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5"},
+ {file = "contourpy-1.3.3-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4"},
+ {file = "contourpy-1.3.3-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:afe5a512f31ee6bd7d0dda52ec9864c984ca3d66664444f2d72e0dc4eb832e36"},
+ {file = "contourpy-1.3.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3"},
+ {file = "contourpy-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b"},
+ {file = "contourpy-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36"},
+ {file = "contourpy-1.3.3-cp314-cp314-win32.whl", hash = "sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d"},
+ {file = "contourpy-1.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd"},
+ {file = "contourpy-1.3.3-cp314-cp314-win_arm64.whl", hash = "sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339"},
+ {file = "contourpy-1.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772"},
+ {file = "contourpy-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77"},
+ {file = "contourpy-1.3.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d304906ecc71672e9c89e87c4675dc5c2645e1f4269a5063b99b0bb29f232d13"},
+ {file = "contourpy-1.3.3-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe"},
+ {file = "contourpy-1.3.3-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f"},
+ {file = "contourpy-1.3.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7301b89040075c30e5768810bc96a8e8d78085b47d8be6e4c3f5a0b4ed478a0"},
+ {file = "contourpy-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4"},
+ {file = "contourpy-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f"},
+ {file = "contourpy-1.3.3-cp314-cp314t-win32.whl", hash = "sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae"},
+ {file = "contourpy-1.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc"},
+ {file = "contourpy-1.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b"},
+ {file = "contourpy-1.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497"},
+ {file = "contourpy-1.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8"},
+ {file = "contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e"},
+ {file = "contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989"},
+ {file = "contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77"},
+ {file = "contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880"},
+]
+
+[package.dependencies]
+numpy = ">=1.25"
+
+[package.extras]
+bokeh = ["bokeh", "selenium"]
+docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"]
+mypy = ["bokeh", "contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.17.0)", "types-Pillow"]
+test = ["Pillow", "contourpy[test-no-images]", "matplotlib"]
+test-no-images = ["pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "wurlitzer"]
[[package]]
name = "coverage"
-version = "6.4.4"
+version = "7.10.5"
description = "Code coverage measurement for Python"
-category = "dev"
optional = false
-python-versions = ">=3.7"
-
-[package.dependencies]
-tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""}
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "coverage-7.10.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c6a5c3414bfc7451b879141ce772c546985163cf553f08e0f135f0699a911801"},
+ {file = "coverage-7.10.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:bc8e4d99ce82f1710cc3c125adc30fd1487d3cf6c2cd4994d78d68a47b16989a"},
+ {file = "coverage-7.10.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:02252dc1216e512a9311f596b3169fad54abcb13827a8d76d5630c798a50a754"},
+ {file = "coverage-7.10.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:73269df37883e02d460bee0cc16be90509faea1e3bd105d77360b512d5bb9c33"},
+ {file = "coverage-7.10.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f8a81b0614642f91c9effd53eec284f965577591f51f547a1cbeb32035b4c2f"},
+ {file = "coverage-7.10.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6a29f8e0adb7f8c2b95fa2d4566a1d6e6722e0a637634c6563cb1ab844427dd9"},
+ {file = "coverage-7.10.5-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fcf6ab569436b4a647d4e91accba12509ad9f2554bc93d3aee23cc596e7f99c3"},
+ {file = "coverage-7.10.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:90dc3d6fb222b194a5de60af8d190bedeeddcbc7add317e4a3cd333ee6b7c879"},
+ {file = "coverage-7.10.5-cp310-cp310-win32.whl", hash = "sha256:414a568cd545f9dc75f0686a0049393de8098414b58ea071e03395505b73d7a8"},
+ {file = "coverage-7.10.5-cp310-cp310-win_amd64.whl", hash = "sha256:e551f9d03347196271935fd3c0c165f0e8c049220280c1120de0084d65e9c7ff"},
+ {file = "coverage-7.10.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c177e6ffe2ebc7c410785307758ee21258aa8e8092b44d09a2da767834f075f2"},
+ {file = "coverage-7.10.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:14d6071c51ad0f703d6440827eaa46386169b5fdced42631d5a5ac419616046f"},
+ {file = "coverage-7.10.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:61f78c7c3bc272a410c5ae3fde7792b4ffb4acc03d35a7df73ca8978826bb7ab"},
+ {file = "coverage-7.10.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f39071caa126f69d63f99b324fb08c7b1da2ec28cbb1fe7b5b1799926492f65c"},
+ {file = "coverage-7.10.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:343a023193f04d46edc46b2616cdbee68c94dd10208ecd3adc56fcc54ef2baa1"},
+ {file = "coverage-7.10.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:585ffe93ae5894d1ebdee69fc0b0d4b7c75d8007983692fb300ac98eed146f78"},
+ {file = "coverage-7.10.5-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:b0ef4e66f006ed181df29b59921bd8fc7ed7cd6a9289295cd8b2824b49b570df"},
+ {file = "coverage-7.10.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:eb7b0bbf7cc1d0453b843eca7b5fa017874735bef9bfdfa4121373d2cc885ed6"},
+ {file = "coverage-7.10.5-cp311-cp311-win32.whl", hash = "sha256:1d043a8a06987cc0c98516e57c4d3fc2c1591364831e9deb59c9e1b4937e8caf"},
+ {file = "coverage-7.10.5-cp311-cp311-win_amd64.whl", hash = "sha256:fefafcca09c3ac56372ef64a40f5fe17c5592fab906e0fdffd09543f3012ba50"},
+ {file = "coverage-7.10.5-cp311-cp311-win_arm64.whl", hash = "sha256:7e78b767da8b5fc5b2faa69bb001edafcd6f3995b42a331c53ef9572c55ceb82"},
+ {file = "coverage-7.10.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c2d05c7e73c60a4cecc7d9b60dbfd603b4ebc0adafaef371445b47d0f805c8a9"},
+ {file = "coverage-7.10.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:32ddaa3b2c509778ed5373b177eb2bf5662405493baeff52278a0b4f9415188b"},
+ {file = "coverage-7.10.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:dd382410039fe062097aa0292ab6335a3f1e7af7bba2ef8d27dcda484918f20c"},
+ {file = "coverage-7.10.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:7fa22800f3908df31cea6fb230f20ac49e343515d968cc3a42b30d5c3ebf9b5a"},
+ {file = "coverage-7.10.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f366a57ac81f5e12797136552f5b7502fa053c861a009b91b80ed51f2ce651c6"},
+ {file = "coverage-7.10.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5f1dc8f1980a272ad4a6c84cba7981792344dad33bf5869361576b7aef42733a"},
+ {file = "coverage-7.10.5-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:2285c04ee8676f7938b02b4936d9b9b672064daab3187c20f73a55f3d70e6b4a"},
+ {file = "coverage-7.10.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c2492e4dd9daab63f5f56286f8a04c51323d237631eb98505d87e4c4ff19ec34"},
+ {file = "coverage-7.10.5-cp312-cp312-win32.whl", hash = "sha256:38a9109c4ee8135d5df5505384fc2f20287a47ccbe0b3f04c53c9a1989c2bbaf"},
+ {file = "coverage-7.10.5-cp312-cp312-win_amd64.whl", hash = "sha256:6b87f1ad60b30bc3c43c66afa7db6b22a3109902e28c5094957626a0143a001f"},
+ {file = "coverage-7.10.5-cp312-cp312-win_arm64.whl", hash = "sha256:672a6c1da5aea6c629819a0e1461e89d244f78d7b60c424ecf4f1f2556c041d8"},
+ {file = "coverage-7.10.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ef3b83594d933020f54cf65ea1f4405d1f4e41a009c46df629dd964fcb6e907c"},
+ {file = "coverage-7.10.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2b96bfdf7c0ea9faebce088a3ecb2382819da4fbc05c7b80040dbc428df6af44"},
+ {file = "coverage-7.10.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:63df1fdaffa42d914d5c4d293e838937638bf75c794cf20bee12978fc8c4e3bc"},
+ {file = "coverage-7.10.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:8002dc6a049aac0e81ecec97abfb08c01ef0c1fbf962d0c98da3950ace89b869"},
+ {file = "coverage-7.10.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:63d4bb2966d6f5f705a6b0c6784c8969c468dbc4bcf9d9ded8bff1c7e092451f"},
+ {file = "coverage-7.10.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1f672efc0731a6846b157389b6e6d5d5e9e59d1d1a23a5c66a99fd58339914d5"},
+ {file = "coverage-7.10.5-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3f39cef43d08049e8afc1fde4a5da8510fc6be843f8dea350ee46e2a26b2f54c"},
+ {file = "coverage-7.10.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2968647e3ed5a6c019a419264386b013979ff1fb67dd11f5c9886c43d6a31fc2"},
+ {file = "coverage-7.10.5-cp313-cp313-win32.whl", hash = "sha256:0d511dda38595b2b6934c2b730a1fd57a3635c6aa2a04cb74714cdfdd53846f4"},
+ {file = "coverage-7.10.5-cp313-cp313-win_amd64.whl", hash = "sha256:9a86281794a393513cf117177fd39c796b3f8e3759bb2764259a2abba5cce54b"},
+ {file = "coverage-7.10.5-cp313-cp313-win_arm64.whl", hash = "sha256:cebd8e906eb98bb09c10d1feed16096700b1198d482267f8bf0474e63a7b8d84"},
+ {file = "coverage-7.10.5-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0520dff502da5e09d0d20781df74d8189ab334a1e40d5bafe2efaa4158e2d9e7"},
+ {file = "coverage-7.10.5-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d9cd64aca68f503ed3f1f18c7c9174cbb797baba02ca8ab5112f9d1c0328cd4b"},
+ {file = "coverage-7.10.5-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:0913dd1613a33b13c4f84aa6e3f4198c1a21ee28ccb4f674985c1f22109f0aae"},
+ {file = "coverage-7.10.5-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:1b7181c0feeb06ed8a02da02792f42f829a7b29990fef52eff257fef0885d760"},
+ {file = "coverage-7.10.5-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36d42b7396b605f774d4372dd9c49bed71cbabce4ae1ccd074d155709dd8f235"},
+ {file = "coverage-7.10.5-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b4fdc777e05c4940b297bf47bf7eedd56a39a61dc23ba798e4b830d585486ca5"},
+ {file = "coverage-7.10.5-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:42144e8e346de44a6f1dbd0a56575dd8ab8dfa7e9007da02ea5b1c30ab33a7db"},
+ {file = "coverage-7.10.5-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:66c644cbd7aed8fe266d5917e2c9f65458a51cfe5eeff9c05f15b335f697066e"},
+ {file = "coverage-7.10.5-cp313-cp313t-win32.whl", hash = "sha256:2d1b73023854068c44b0c554578a4e1ef1b050ed07cf8b431549e624a29a66ee"},
+ {file = "coverage-7.10.5-cp313-cp313t-win_amd64.whl", hash = "sha256:54a1532c8a642d8cc0bd5a9a51f5a9dcc440294fd06e9dda55e743c5ec1a8f14"},
+ {file = "coverage-7.10.5-cp313-cp313t-win_arm64.whl", hash = "sha256:74d5b63fe3f5f5d372253a4ef92492c11a4305f3550631beaa432fc9df16fcff"},
+ {file = "coverage-7.10.5-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:68c5e0bc5f44f68053369fa0d94459c84548a77660a5f2561c5e5f1e3bed7031"},
+ {file = "coverage-7.10.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cf33134ffae93865e32e1e37df043bef15a5e857d8caebc0099d225c579b0fa3"},
+ {file = "coverage-7.10.5-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:ad8fa9d5193bafcf668231294241302b5e683a0518bf1e33a9a0dfb142ec3031"},
+ {file = "coverage-7.10.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:146fa1531973d38ab4b689bc764592fe6c2f913e7e80a39e7eeafd11f0ef6db2"},
+ {file = "coverage-7.10.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6013a37b8a4854c478d3219ee8bc2392dea51602dd0803a12d6f6182a0061762"},
+ {file = "coverage-7.10.5-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:eb90fe20db9c3d930fa2ad7a308207ab5b86bf6a76f54ab6a40be4012d88fcae"},
+ {file = "coverage-7.10.5-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:384b34482272e960c438703cafe63316dfbea124ac62006a455c8410bf2a2262"},
+ {file = "coverage-7.10.5-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:467dc74bd0a1a7de2bedf8deaf6811f43602cb532bd34d81ffd6038d6d8abe99"},
+ {file = "coverage-7.10.5-cp314-cp314-win32.whl", hash = "sha256:556d23d4e6393ca898b2e63a5bca91e9ac2d5fb13299ec286cd69a09a7187fde"},
+ {file = "coverage-7.10.5-cp314-cp314-win_amd64.whl", hash = "sha256:f4446a9547681533c8fa3e3c6cf62121eeee616e6a92bd9201c6edd91beffe13"},
+ {file = "coverage-7.10.5-cp314-cp314-win_arm64.whl", hash = "sha256:5e78bd9cf65da4c303bf663de0d73bf69f81e878bf72a94e9af67137c69b9fe9"},
+ {file = "coverage-7.10.5-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:5661bf987d91ec756a47c7e5df4fbcb949f39e32f9334ccd3f43233bbb65e508"},
+ {file = "coverage-7.10.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a46473129244db42a720439a26984f8c6f834762fc4573616c1f37f13994b357"},
+ {file = "coverage-7.10.5-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:1f64b8d3415d60f24b058b58d859e9512624bdfa57a2d1f8aff93c1ec45c429b"},
+ {file = "coverage-7.10.5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:44d43de99a9d90b20e0163f9770542357f58860a26e24dc1d924643bd6aa7cb4"},
+ {file = "coverage-7.10.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a931a87e5ddb6b6404e65443b742cb1c14959622777f2a4efd81fba84f5d91ba"},
+ {file = "coverage-7.10.5-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:f9559b906a100029274448f4c8b8b0a127daa4dade5661dfd821b8c188058842"},
+ {file = "coverage-7.10.5-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:b08801e25e3b4526ef9ced1aa29344131a8f5213c60c03c18fe4c6170ffa2874"},
+ {file = "coverage-7.10.5-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ed9749bb8eda35f8b636fb7632f1c62f735a236a5d4edadd8bbcc5ea0542e732"},
+ {file = "coverage-7.10.5-cp314-cp314t-win32.whl", hash = "sha256:609b60d123fc2cc63ccee6d17e4676699075db72d14ac3c107cc4976d516f2df"},
+ {file = "coverage-7.10.5-cp314-cp314t-win_amd64.whl", hash = "sha256:0666cf3d2c1626b5a3463fd5b05f5e21f99e6aec40a3192eee4d07a15970b07f"},
+ {file = "coverage-7.10.5-cp314-cp314t-win_arm64.whl", hash = "sha256:bc85eb2d35e760120540afddd3044a5bf69118a91a296a8b3940dfc4fdcfe1e2"},
+ {file = "coverage-7.10.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:62835c1b00c4a4ace24c1a88561a5a59b612fbb83a525d1c70ff5720c97c0610"},
+ {file = "coverage-7.10.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5255b3bbcc1d32a4069d6403820ac8e6dbcc1d68cb28a60a1ebf17e47028e898"},
+ {file = "coverage-7.10.5-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3876385722e335d6e991c430302c24251ef9c2a9701b2b390f5473199b1b8ebf"},
+ {file = "coverage-7.10.5-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:8048ce4b149c93447a55d279078c8ae98b08a6951a3c4d2d7e87f4efc7bfe100"},
+ {file = "coverage-7.10.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4028e7558e268dd8bcf4d9484aad393cafa654c24b4885f6f9474bf53183a82a"},
+ {file = "coverage-7.10.5-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:03f47dc870eec0367fcdd603ca6a01517d2504e83dc18dbfafae37faec66129a"},
+ {file = "coverage-7.10.5-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2d488d7d42b6ded7ea0704884f89dcabd2619505457de8fc9a6011c62106f6e5"},
+ {file = "coverage-7.10.5-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b3dcf2ead47fa8be14224ee817dfc1df98043af568fe120a22f81c0eb3c34ad2"},
+ {file = "coverage-7.10.5-cp39-cp39-win32.whl", hash = "sha256:02650a11324b80057b8c9c29487020073d5e98a498f1857f37e3f9b6ea1b2426"},
+ {file = "coverage-7.10.5-cp39-cp39-win_amd64.whl", hash = "sha256:b45264dd450a10f9e03237b41a9a24e85cbb1e278e5a32adb1a303f58f0017f3"},
+ {file = "coverage-7.10.5-py3-none-any.whl", hash = "sha256:0be24d35e4db1d23d0db5c0f6a74a962e2ec83c426b5cac09f4234aadef38e4a"},
+ {file = "coverage-7.10.5.tar.gz", hash = "sha256:f2e57716a78bc3ae80b2207be0709a3b2b63b9f2dcf9740ee6ac03588a2015b6"},
+]
[package.extras]
-toml = ["tomli"]
+toml = ["tomli ; python_full_version <= \"3.11.0a6\""]
[[package]]
name = "cycler"
-version = "0.11.0"
+version = "0.12.1"
description = "Composable style cycles"
-category = "main"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"},
+ {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"},
+]
+
+[package.extras]
+docs = ["ipython", "matplotlib", "numpydoc", "sphinx"]
+tests = ["pytest", "pytest-cov", "pytest-xdist"]
[[package]]
name = "distlib"
-version = "0.3.6"
+version = "0.4.0"
description = "Distribution utilities"
-category = "dev"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "docopt"
-version = "0.6.1"
-description = "Pythonic argument parser, that will make you smile"
-category = "dev"
optional = false
python-versions = "*"
+groups = ["dev"]
+files = [
+ {file = "distlib-0.4.0-py2.py3-none-any.whl", hash = "sha256:9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16"},
+ {file = "distlib-0.4.0.tar.gz", hash = "sha256:feec40075be03a04501a973d81f633735b4b69f98b05450592310c0f401a4e0d"},
+]
[[package]]
name = "filelock"
-version = "3.8.0"
+version = "3.19.1"
description = "A platform independent file lock."
-category = "dev"
-optional = false
-python-versions = ">=3.7"
-
-[package.extras]
-docs = ["furo (>=2022.6.21)", "sphinx (>=5.1.1)", "sphinx-autodoc-typehints (>=1.19.1)"]
-testing = ["covdefaults (>=2.2)", "coverage (>=6.4.2)", "pytest (>=7.1.2)", "pytest-cov (>=3)", "pytest-timeout (>=2.1)"]
-
-[[package]]
-name = "Flask"
-version = "0.10.1"
-description = "A microframework based on Werkzeug, Jinja2 and good intentions"
-category = "dev"
optional = false
-python-versions = "*"
-
-[package.dependencies]
-itsdangerous = ">=0.21"
-Jinja2 = ">=2.4"
-Werkzeug = ">=0.7"
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "filelock-3.19.1-py3-none-any.whl", hash = "sha256:d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d"},
+ {file = "filelock-3.19.1.tar.gz", hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58"},
+]
[[package]]
name = "fonttools"
-version = "4.37.1"
+version = "4.59.1"
description = "Tools to manipulate font files"
-category = "main"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "fonttools-4.59.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e90a89e52deb56b928e761bb5b5f65f13f669bfd96ed5962975debea09776a23"},
+ {file = "fonttools-4.59.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d29ab70658d2ec19422b25e6ace00a0b0ae4181ee31e03335eaef53907d2d83"},
+ {file = "fonttools-4.59.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94f9721a564978a10d5c12927f99170d18e9a32e5a727c61eae56f956a4d118b"},
+ {file = "fonttools-4.59.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8c8758a7d97848fc8b514b3d9b4cb95243714b2f838dde5e1e3c007375de6214"},
+ {file = "fonttools-4.59.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2aeb829ad9d41a2ef17cab8bb5d186049ba38a840f10352e654aa9062ec32dc1"},
+ {file = "fonttools-4.59.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac216a2980a2d2b3b88c68a24f8a9bfb203e2490e991b3238502ad8f1e7bfed0"},
+ {file = "fonttools-4.59.1-cp310-cp310-win32.whl", hash = "sha256:d31dc137ed8ec71dbc446949eba9035926e6e967b90378805dcf667ff57cabb1"},
+ {file = "fonttools-4.59.1-cp310-cp310-win_amd64.whl", hash = "sha256:5265bc52ed447187d39891b5f21d7217722735d0de9fe81326566570d12851a9"},
+ {file = "fonttools-4.59.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4909cce2e35706f3d18c54d3dcce0414ba5e0fb436a454dffec459c61653b513"},
+ {file = "fonttools-4.59.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:efbec204fa9f877641747f2d9612b2b656071390d7a7ef07a9dbf0ecf9c7195c"},
+ {file = "fonttools-4.59.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39dfd42cc2dc647b2c5469bc7a5b234d9a49e72565b96dd14ae6f11c2c59ef15"},
+ {file = "fonttools-4.59.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b11bc177a0d428b37890825d7d025040d591aa833f85f8d8878ed183354f47df"},
+ {file = "fonttools-4.59.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5b9b4c35b3be45e5bc774d3fc9608bbf4f9a8d371103b858c80edbeed31dd5aa"},
+ {file = "fonttools-4.59.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:01158376b8a418a0bae9625c476cebfcfcb5e6761e9d243b219cd58341e7afbb"},
+ {file = "fonttools-4.59.1-cp311-cp311-win32.whl", hash = "sha256:cf7c5089d37787387123f1cb8f1793a47c5e1e3d1e4e7bfbc1cc96e0f925eabe"},
+ {file = "fonttools-4.59.1-cp311-cp311-win_amd64.whl", hash = "sha256:c866eef7a0ba320486ade6c32bfc12813d1a5db8567e6904fb56d3d40acc5116"},
+ {file = "fonttools-4.59.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:43ab814bbba5f02a93a152ee61a04182bb5809bd2bc3609f7822e12c53ae2c91"},
+ {file = "fonttools-4.59.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4f04c3ffbfa0baafcbc550657cf83657034eb63304d27b05cff1653b448ccff6"},
+ {file = "fonttools-4.59.1-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:d601b153e51a5a6221f0d4ec077b6bfc6ac35bfe6c19aeaa233d8990b2b71726"},
+ {file = "fonttools-4.59.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c735e385e30278c54f43a0d056736942023c9043f84ee1021eff9fd616d17693"},
+ {file = "fonttools-4.59.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1017413cdc8555dce7ee23720da490282ab7ec1cf022af90a241f33f9a49afc4"},
+ {file = "fonttools-4.59.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5c6d8d773470a5107052874341ed3c487c16ecd179976d81afed89dea5cd7406"},
+ {file = "fonttools-4.59.1-cp312-cp312-win32.whl", hash = "sha256:2a2d0d33307f6ad3a2086a95dd607c202ea8852fa9fb52af9b48811154d1428a"},
+ {file = "fonttools-4.59.1-cp312-cp312-win_amd64.whl", hash = "sha256:0b9e4fa7eaf046ed6ac470f6033d52c052481ff7a6e0a92373d14f556f298dc0"},
+ {file = "fonttools-4.59.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:89d9957b54246c6251345297dddf77a84d2c19df96af30d2de24093bbdf0528b"},
+ {file = "fonttools-4.59.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8156b11c0d5405810d216f53907bd0f8b982aa5f1e7e3127ab3be1a4062154ff"},
+ {file = "fonttools-4.59.1-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:8387876a8011caec52d327d5e5bca705d9399ec4b17afb8b431ec50d47c17d23"},
+ {file = "fonttools-4.59.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fb13823a74b3a9204a8ed76d3d6d5ec12e64cc5bc44914eb9ff1cdac04facd43"},
+ {file = "fonttools-4.59.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e1ca10da138c300f768bb68e40e5b20b6ecfbd95f91aac4cc15010b6b9d65455"},
+ {file = "fonttools-4.59.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2beb5bfc4887a3130f8625349605a3a45fe345655ce6031d1bac11017454b943"},
+ {file = "fonttools-4.59.1-cp313-cp313-win32.whl", hash = "sha256:419f16d750d78e6d704bfe97b48bba2f73b15c9418f817d0cb8a9ca87a5b94bf"},
+ {file = "fonttools-4.59.1-cp313-cp313-win_amd64.whl", hash = "sha256:c536f8a852e8d3fa71dde1ec03892aee50be59f7154b533f0bf3c1174cfd5126"},
+ {file = "fonttools-4.59.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:d5c3bfdc9663f3d4b565f9cb3b8c1efb3e178186435b45105bde7328cfddd7fe"},
+ {file = "fonttools-4.59.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:ea03f1da0d722fe3c2278a05957e6550175571a4894fbf9d178ceef4a3783d2b"},
+ {file = "fonttools-4.59.1-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:57a3708ca6bfccb790f585fa6d8f29432ec329618a09ff94c16bcb3c55994643"},
+ {file = "fonttools-4.59.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:729367c91eb1ee84e61a733acc485065a00590618ca31c438e7dd4d600c01486"},
+ {file = "fonttools-4.59.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8f8ef66ac6db450193ed150e10b3b45dde7aded10c5d279968bc63368027f62b"},
+ {file = "fonttools-4.59.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:075f745d539a998cd92cb84c339a82e53e49114ec62aaea8307c80d3ad3aef3a"},
+ {file = "fonttools-4.59.1-cp314-cp314-win32.whl", hash = "sha256:c2b0597522d4c5bb18aa5cf258746a2d4a90f25878cbe865e4d35526abd1b9fc"},
+ {file = "fonttools-4.59.1-cp314-cp314-win_amd64.whl", hash = "sha256:e9ad4ce044e3236f0814c906ccce8647046cc557539661e35211faadf76f283b"},
+ {file = "fonttools-4.59.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:652159e8214eb4856e8387ebcd6b6bd336ee258cbeb639c8be52005b122b9609"},
+ {file = "fonttools-4.59.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:43d177cd0e847ea026fedd9f099dc917da136ed8792d142298a252836390c478"},
+ {file = "fonttools-4.59.1-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:e54437651e1440ee53a95e6ceb6ee440b67a3d348c76f45f4f48de1a5ecab019"},
+ {file = "fonttools-4.59.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6065fdec8ff44c32a483fd44abe5bcdb40dd5e2571a5034b555348f2b3a52cea"},
+ {file = "fonttools-4.59.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:42052b56d176f8b315fbc09259439c013c0cb2109df72447148aeda677599612"},
+ {file = "fonttools-4.59.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:bcd52eaa5c4c593ae9f447c1d13e7e4a00ca21d755645efa660b6999425b3c88"},
+ {file = "fonttools-4.59.1-cp314-cp314t-win32.whl", hash = "sha256:02e4fdf27c550dded10fe038a5981c29f81cb9bc649ff2eaa48e80dab8998f97"},
+ {file = "fonttools-4.59.1-cp314-cp314t-win_amd64.whl", hash = "sha256:412a5fd6345872a7c249dac5bcce380393f40c1c316ac07f447bc17d51900922"},
+ {file = "fonttools-4.59.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ab4c1fb45f2984b8b4a3face7cff0f67f9766e9414cbb6fd061e9d77819de98"},
+ {file = "fonttools-4.59.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8ee39da0227950f88626c91e219659e6cd725ede826b1c13edd85fc4cec9bbe6"},
+ {file = "fonttools-4.59.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:58a8844f96cff35860647a65345bfca87f47a2494bfb4bef754e58c082511443"},
+ {file = "fonttools-4.59.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5f3f021cea6e36410874763f4a517a5e2d6ac36ca8f95521f3a9fdaad0fe73dc"},
+ {file = "fonttools-4.59.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bf5fb864f80061a40c1747e0dbc4f6e738de58dd6675b07eb80bd06a93b063c4"},
+ {file = "fonttools-4.59.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c29ea087843e27a7cffc78406d32a5abf166d92afde7890394e9e079c9b4dbe9"},
+ {file = "fonttools-4.59.1-cp39-cp39-win32.whl", hash = "sha256:a960b09ff50c2e87864e83f352e5a90bcf1ad5233df579b1124660e1643de272"},
+ {file = "fonttools-4.59.1-cp39-cp39-win_amd64.whl", hash = "sha256:e3680884189e2b7c3549f6d304376e64711fd15118e4b1ae81940cb6b1eaa267"},
+ {file = "fonttools-4.59.1-py3-none-any.whl", hash = "sha256:647db657073672a8330608970a984d51573557f328030566521bc03415535042"},
+ {file = "fonttools-4.59.1.tar.gz", hash = "sha256:74995b402ad09822a4c8002438e54940d9f1ecda898d2bb057729d7da983e4cb"},
+]
[package.extras]
-all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=14.0.0)", "xattr", "zopfli (>=0.1.4)"]
+all = ["brotli (>=1.0.1) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\"", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres ; platform_python_implementation == \"PyPy\"", "pycairo", "scipy ; platform_python_implementation != \"PyPy\"", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0) ; python_version <= \"3.12\"", "xattr ; sys_platform == \"darwin\"", "zopfli (>=0.1.4)"]
graphite = ["lz4 (>=1.7.4.2)"]
-interpolatable = ["munkres", "scipy"]
-lxml = ["lxml (>=4.0,<5)"]
+interpolatable = ["munkres ; platform_python_implementation == \"PyPy\"", "pycairo", "scipy ; platform_python_implementation != \"PyPy\""]
+lxml = ["lxml (>=4.0)"]
pathops = ["skia-pathops (>=0.5.0)"]
plot = ["matplotlib"]
repacker = ["uharfbuzz (>=0.23.0)"]
symfont = ["sympy"]
-type1 = ["xattr"]
-ufo = ["fs (>=2.2.0,<3)"]
-unicode = ["unicodedata2 (>=14.0.0)"]
-woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"]
-
-[[package]]
-name = "gitdb"
-version = "4.0.9"
-description = "Git Object Database"
-category = "dev"
-optional = false
-python-versions = ">=3.6"
-
-[package.dependencies]
-smmap = ">=3.0.1,<6"
-
-[[package]]
-name = "GitPython"
-version = "0.3.2.RC1"
-description = "Python Git Library"
-category = "dev"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-gitdb = ">=0.5.1"
+type1 = ["xattr ; sys_platform == \"darwin\""]
+unicode = ["unicodedata2 (>=15.1.0) ; python_version <= \"3.12\""]
+woff = ["brotli (>=1.0.1) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\"", "zopfli (>=0.1.4)"]
[[package]]
name = "identify"
-version = "2.5.5"
+version = "2.6.13"
description = "File identification library for Python"
-category = "dev"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "identify-2.6.13-py2.py3-none-any.whl", hash = "sha256:60381139b3ae39447482ecc406944190f690d4a2997f2584062089848361b33b"},
+ {file = "identify-2.6.13.tar.gz", hash = "sha256:da8d6c828e773620e13bfa86ea601c5a5310ba4bcd65edf378198b56a1f9fb32"},
+]
[package.extras]
license = ["ukkonen"]
[[package]]
name = "idna"
-version = "3.3"
+version = "3.10"
description = "Internationalized Domain Names in Applications (IDNA)"
-category = "main"
-optional = false
-python-versions = ">=3.5"
-
-[[package]]
-name = "importlib-metadata"
-version = "4.12.0"
-description = "Read metadata from Python packages"
-category = "main"
optional = false
-python-versions = ">=3.7"
-
-[package.dependencies]
-zipp = ">=0.5"
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"},
+ {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"},
+]
[package.extras]
-docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"]
-perf = ["ipython"]
-testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"]
+all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"]
[[package]]
name = "iniconfig"
-version = "1.1.1"
-description = "iniconfig: brain-dead simple config-ini parsing"
-category = "dev"
+version = "2.1.0"
+description = "brain-dead simple config-ini parsing"
optional = false
-python-versions = "*"
-
-[[package]]
-name = "itsdangerous"
-version = "2.1.2"
-description = "Safely pass data to untrusted environments and back."
-category = "dev"
-optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760"},
+ {file = "iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7"},
+]
[[package]]
-name = "Jinja2"
-version = "3.1.2"
+name = "jinja2"
+version = "3.1.6"
description = "A very fast and expressive template engine."
-category = "main"
optional = false
python-versions = ">=3.7"
+groups = ["main", "dev"]
+files = [
+ {file = "jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67"},
+ {file = "jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d"},
+]
[package.dependencies]
MarkupSafe = ">=2.0"
@@ -266,544 +564,1385 @@ i18n = ["Babel (>=2.7)"]
[[package]]
name = "kiwisolver"
-version = "1.4.4"
+version = "1.4.9"
description = "A fast implementation of the Cassowary constraint solver"
-category = "main"
+optional = false
+python-versions = ">=3.10"
+groups = ["main"]
+files = [
+ {file = "kiwisolver-1.4.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b4b4d74bda2b8ebf4da5bd42af11d02d04428b2c32846e4c2c93219df8a7987b"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fb3b8132019ea572f4611d770991000d7f58127560c4889729248eb5852a102f"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84fd60810829c27ae375114cd379da1fa65e6918e1da405f356a775d49a62bcf"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b78efa4c6e804ecdf727e580dbb9cba85624d2e1c6b5cb059c66290063bd99a9"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4efec7bcf21671db6a3294ff301d2fc861c31faa3c8740d1a94689234d1b415"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:90f47e70293fc3688b71271100a1a5453aa9944a81d27ff779c108372cf5567b"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8fdca1def57a2e88ef339de1737a1449d6dbf5fab184c54a1fca01d541317154"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9cf554f21be770f5111a1690d42313e140355e687e05cf82cb23d0a721a64a48"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fc1795ac5cd0510207482c3d1d3ed781143383b8cfd36f5c645f3897ce066220"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:ccd09f20ccdbbd341b21a67ab50a119b64a403b09288c27481575105283c1586"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:540c7c72324d864406a009d72f5d6856f49693db95d1fbb46cf86febef873634"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-win_amd64.whl", hash = "sha256:ede8c6d533bc6601a47ad4046080d36b8fc99f81e6f1c17b0ac3c2dc91ac7611"},
+ {file = "kiwisolver-1.4.9-cp310-cp310-win_arm64.whl", hash = "sha256:7b4da0d01ac866a57dd61ac258c5607b4cd677f63abaec7b148354d2b2cdd536"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:eb14a5da6dc7642b0f3a18f13654847cd8b7a2550e2645a5bda677862b03ba16"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:39a219e1c81ae3b103643d2aedb90f1ef22650deb266ff12a19e7773f3e5f089"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2405a7d98604b87f3fc28b1716783534b1b4b8510d8142adca34ee0bc3c87543"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:dc1ae486f9abcef254b5618dfb4113dd49f94c68e3e027d03cf0143f3f772b61"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a1f570ce4d62d718dce3f179ee78dac3b545ac16c0c04bb363b7607a949c0d1"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cb27e7b78d716c591e88e0a09a2139c6577865d7f2e152488c2cc6257f460872"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:15163165efc2f627eb9687ea5f3a28137217d217ac4024893d753f46bce9de26"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bdee92c56a71d2b24c33a7d4c2856bd6419d017e08caa7802d2963870e315028"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:412f287c55a6f54b0650bd9b6dce5aceddb95864a1a90c87af16979d37c89771"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2c93f00dcba2eea70af2be5f11a830a742fe6b579a1d4e00f47760ef13be247a"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f117e1a089d9411663a3207ba874f31be9ac8eaa5b533787024dc07aeb74f464"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-win_amd64.whl", hash = "sha256:be6a04e6c79819c9a8c2373317d19a96048e5a3f90bec587787e86a1153883c2"},
+ {file = "kiwisolver-1.4.9-cp311-cp311-win_arm64.whl", hash = "sha256:0ae37737256ba2de764ddc12aed4956460277f00c4996d51a197e72f62f5eec7"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ac5a486ac389dddcc5bef4f365b6ae3ffff2c433324fb38dd35e3fab7c957999"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f2ba92255faa7309d06fe44c3a4a97efe1c8d640c2a79a5ef728b685762a6fd2"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a2899935e724dd1074cb568ce7ac0dce28b2cd6ab539c8e001a8578eb106d14"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f6008a4919fdbc0b0097089f67a1eb55d950ed7e90ce2cc3e640abadd2757a04"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:67bb8b474b4181770f926f7b7d2f8c0248cbcb78b660fdd41a47054b28d2a752"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2327a4a30d3ee07d2fbe2e7933e8a37c591663b96ce42a00bc67461a87d7df77"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7a08b491ec91b1d5053ac177afe5290adacf1f0f6307d771ccac5de30592d198"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d8fc5c867c22b828001b6a38d2eaeb88160bf5783c6cb4a5e440efc981ce286d"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:3b3115b2581ea35bb6d1f24a4c90af37e5d9b49dcff267eeed14c3893c5b86ab"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858e4c22fb075920b96a291928cb7dea5644e94c0ee4fcd5af7e865655e4ccf2"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ed0fecd28cc62c54b262e3736f8bb2512d8dcfdc2bcf08be5f47f96bf405b145"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-win_amd64.whl", hash = "sha256:f68208a520c3d86ea51acf688a3e3002615a7f0238002cccc17affecc86a8a54"},
+ {file = "kiwisolver-1.4.9-cp312-cp312-win_arm64.whl", hash = "sha256:2c1a4f57df73965f3f14df20b80ee29e6a7930a57d2d9e8491a25f676e197c60"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5d0432ccf1c7ab14f9949eec60c5d1f924f17c037e9f8b33352fa05799359b8"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efb3a45b35622bb6c16dbfab491a8f5a391fe0e9d45ef32f4df85658232ca0e2"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1a12cf6398e8a0a001a059747a1cbf24705e18fe413bc22de7b3d15c67cffe3f"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b67e6efbf68e077dd71d1a6b37e43e1a99d0bff1a3d51867d45ee8908b931098"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5656aa670507437af0207645273ccdfee4f14bacd7f7c67a4306d0dcaeaf6eed"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bfc08add558155345129c7803b3671cf195e6a56e7a12f3dde7c57d9b417f525"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:40092754720b174e6ccf9e845d0d8c7d8e12c3d71e7fc35f55f3813e96376f78"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:497d05f29a1300d14e02e6441cf0f5ee81c1ff5a304b0d9fb77423974684e08b"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bdd1a81a1860476eb41ac4bc1e07b3f07259e6d55bbf739b79c8aaedcf512799"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e6b93f13371d341afee3be9f7c5964e3fe61d5fa30f6a30eb49856935dfe4fc3"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d75aa530ccfaa593da12834b86a0724f58bff12706659baa9227c2ccaa06264c"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-win_amd64.whl", hash = "sha256:dd0a578400839256df88c16abddf9ba14813ec5f21362e1fe65022e00c883d4d"},
+ {file = "kiwisolver-1.4.9-cp313-cp313-win_arm64.whl", hash = "sha256:d4188e73af84ca82468f09cadc5ac4db578109e52acb4518d8154698d3a87ca2"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:5a0f2724dfd4e3b3ac5a82436a8e6fd16baa7d507117e4279b660fe8ca38a3a1"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:1b11d6a633e4ed84fc0ddafd4ebfd8ea49b3f25082c04ad12b8315c11d504dc1"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61874cdb0a36016354853593cffc38e56fc9ca5aa97d2c05d3dcf6922cd55a11"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:60c439763a969a6af93b4881db0eed8fadf93ee98e18cbc35bc8da868d0c4f0c"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92a2f997387a1b79a75e7803aa7ded2cfbe2823852ccf1ba3bcf613b62ae3197"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a31d512c812daea6d8b3be3b2bfcbeb091dbb09177706569bcfc6240dcf8b41c"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:52a15b0f35dad39862d376df10c5230155243a2c1a436e39eb55623ccbd68185"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a30fd6fdef1430fd9e1ba7b3398b5ee4e2887783917a687d86ba69985fb08748"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cc9617b46837c6468197b5945e196ee9ca43057bb7d9d1ae688101e4e1dddf64"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:0ab74e19f6a2b027ea4f845a78827969af45ce790e6cb3e1ebab71bdf9f215ff"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dba5ee5d3981160c28d5490f0d1b7ed730c22470ff7f6cc26cfcfaacb9896a07"},
+ {file = "kiwisolver-1.4.9-cp313-cp313t-win_arm64.whl", hash = "sha256:0749fd8f4218ad2e851e11cc4dc05c7cbc0cbc4267bdfdb31782e65aace4ee9c"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:9928fe1eb816d11ae170885a74d074f57af3a0d65777ca47e9aeb854a1fba386"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d0005b053977e7b43388ddec89fa567f43d4f6d5c2c0affe57de5ebf290dc552"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:2635d352d67458b66fd0667c14cb1d4145e9560d503219034a18a87e971ce4f3"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:767c23ad1c58c9e827b649a9ab7809fd5fd9db266a9cf02b0e926ddc2c680d58"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72d0eb9fba308b8311685c2268cf7d0a0639a6cd027d8128659f72bdd8a024b4"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f68e4f3eeca8fb22cc3d731f9715a13b652795ef657a13df1ad0c7dc0e9731df"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d84cd4061ae292d8ac367b2c3fa3aad11cb8625a95d135fe93f286f914f3f5a6"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a60ea74330b91bd22a29638940d115df9dc00af5035a9a2a6ad9399ffb4ceca5"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ce6a3a4e106cf35c2d9c4fa17c05ce0b180db622736845d4315519397a77beaf"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:77937e5e2a38a7b48eef0585114fe7930346993a88060d0bf886086d2aa49ef5"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:24c175051354f4a28c5d6a31c93906dc653e2bf234e8a4bbfb964892078898ce"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-win_amd64.whl", hash = "sha256:0763515d4df10edf6d06a3c19734e2566368980d21ebec439f33f9eb936c07b7"},
+ {file = "kiwisolver-1.4.9-cp314-cp314-win_arm64.whl", hash = "sha256:0e4e2bf29574a6a7b7f6cb5fa69293b9f96c928949ac4a53ba3f525dffb87f9c"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:d976bbb382b202f71c67f77b0ac11244021cfa3f7dfd9e562eefcea2df711548"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2489e4e5d7ef9a1c300a5e0196e43d9c739f066ef23270607d45aba368b91f2d"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:e2ea9f7ab7fbf18fffb1b5434ce7c69a07582f7acc7717720f1d69f3e806f90c"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b34e51affded8faee0dfdb705416153819d8ea9250bbbf7ea1b249bdeb5f1122"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8aacd3d4b33b772542b2e01beb50187536967b514b00003bdda7589722d2a64"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7cf974dd4e35fa315563ac99d6287a1024e4dc2077b8a7d7cd3d2fb65d283134"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:85bd218b5ecfbee8c8a82e121802dcb519a86044c9c3b2e4aef02fa05c6da370"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0856e241c2d3df4efef7c04a1e46b1936b6120c9bcf36dd216e3acd84bc4fb21"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:9af39d6551f97d31a4deebeac6f45b156f9755ddc59c07b402c148f5dbb6482a"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:bb4ae2b57fc1d8cbd1cf7b1d9913803681ffa903e7488012be5b76dedf49297f"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:aedff62918805fb62d43a4aa2ecd4482c380dc76cd31bd7c8878588a61bd0369"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-win_amd64.whl", hash = "sha256:1fa333e8b2ce4d9660f2cda9c0e1b6bafcfb2457a9d259faa82289e73ec24891"},
+ {file = "kiwisolver-1.4.9-cp314-cp314t-win_arm64.whl", hash = "sha256:4a48a2ce79d65d363597ef7b567ce3d14d68783d2b2263d98db3d9477805ba32"},
+ {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4d1d9e582ad4d63062d34077a9a1e9f3c34088a2ec5135b1f7190c07cf366527"},
+ {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:deed0c7258ceb4c44ad5ec7d9918f9f14fd05b2be86378d86cf50e63d1e7b771"},
+ {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0a590506f303f512dff6b7f75fd2fd18e16943efee932008fe7140e5fa91d80e"},
+ {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e09c2279a4d01f099f52d5c4b3d9e208e91edcbd1a175c9662a8b16e000fece9"},
+ {file = "kiwisolver-1.4.9-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:c9e7cdf45d594ee04d5be1b24dd9d49f3d1590959b2271fb30b5ca2b262c00fb"},
+ {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:720e05574713db64c356e86732c0f3c5252818d05f9df320f0ad8380641acea5"},
+ {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:17680d737d5335b552994a2008fab4c851bcd7de33094a82067ef3a576ff02fa"},
+ {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:85b5352f94e490c028926ea567fc569c52ec79ce131dadb968d3853e809518c2"},
+ {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:464415881e4801295659462c49461a24fb107c140de781d55518c4b80cb6790f"},
+ {file = "kiwisolver-1.4.9-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:fb940820c63a9590d31d88b815e7a3aa5915cad3ce735ab45f0c730b39547de1"},
+ {file = "kiwisolver-1.4.9.tar.gz", hash = "sha256:c3b22c26c6fd6811b0ae8363b95ca8ce4ea3c202d3d0975b2914310ceb1bcc4d"},
+]
+
+[[package]]
+name = "linkify-it-py"
+version = "2.0.3"
+description = "Links recognition library with FULL unicode support."
optional = false
python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "linkify-it-py-2.0.3.tar.gz", hash = "sha256:68cda27e162e9215c17d786649d1da0021a451bdc436ef9e0fa0ba5234b9b048"},
+ {file = "linkify_it_py-2.0.3-py3-none-any.whl", hash = "sha256:6bcbc417b0ac14323382aef5c5192c0075bf8a9d6b41820a2b66371eac6b6d79"},
+]
+
+[package.dependencies]
+uc-micro-py = "*"
+
+[package.extras]
+benchmark = ["pytest", "pytest-benchmark"]
+dev = ["black", "flake8", "isort", "pre-commit", "pyproject-flake8"]
+doc = ["myst-parser", "sphinx", "sphinx-book-theme"]
+test = ["coverage", "pytest", "pytest-cov"]
[[package]]
-name = "Markdown"
-version = "3.4.1"
-description = "Python implementation of Markdown."
-category = "main"
+name = "markdown"
+version = "3.8.2"
+description = "Python implementation of John Gruber's Markdown."
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "markdown-3.8.2-py3-none-any.whl", hash = "sha256:5c83764dbd4e00bdd94d85a19b8d55ccca20fe35b2e678a1422b380324dd5f24"},
+ {file = "markdown-3.8.2.tar.gz", hash = "sha256:247b9a70dd12e27f67431ce62523e675b866d254f900c4fe75ce3dda62237c45"},
+]
+
+[package.extras]
+docs = ["mdx_gh_links (>=0.2)", "mkdocs (>=1.6)", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-nature (>=0.6)", "mkdocs-section-index", "mkdocstrings[python]"]
+testing = ["coverage", "pyyaml"]
+
+[[package]]
+name = "markdown-it-py"
+version = "4.0.0"
+description = "Python port of markdown-it. Markdown parsing, done right!"
+optional = false
+python-versions = ">=3.10"
+groups = ["main"]
+files = [
+ {file = "markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147"},
+ {file = "markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3"},
+]
[package.dependencies]
-importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""}
+mdurl = ">=0.1,<1.0"
[package.extras]
-testing = ["coverage", "pyyaml"]
+benchmarking = ["psutil", "pytest", "pytest-benchmark"]
+compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "markdown-it-pyrs", "mistletoe (>=1.0,<2.0)", "mistune (>=3.0,<4.0)", "panflute (>=2.3,<3.0)"]
+linkify = ["linkify-it-py (>=1,<3)"]
+plugins = ["mdit-py-plugins (>=0.5.0)"]
+profiling = ["gprof2dot"]
+rtd = ["ipykernel", "jupyter_sphinx", "mdit-py-plugins (>=0.5.0)", "myst-parser", "pyyaml", "sphinx", "sphinx-book-theme (>=1.0,<2.0)", "sphinx-copybutton", "sphinx-design"]
+testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions", "requests"]
[[package]]
-name = "MarkupSafe"
-version = "2.1.1"
+name = "markupsafe"
+version = "3.0.2"
description = "Safely add untrusted strings to HTML/XML markup."
-category = "main"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"},
+ {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"},
+]
[[package]]
name = "matplotlib"
-version = "3.5.3"
+version = "3.10.6"
description = "Python plotting package"
-category = "main"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.10"
+groups = ["main"]
+files = [
+ {file = "matplotlib-3.10.6-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:bc7316c306d97463a9866b89d5cc217824e799fa0de346c8f68f4f3d27c8693d"},
+ {file = "matplotlib-3.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d00932b0d160ef03f59f9c0e16d1e3ac89646f7785165ce6ad40c842db16cc2e"},
+ {file = "matplotlib-3.10.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8fa4c43d6bfdbfec09c733bca8667de11bfa4970e8324c471f3a3632a0301c15"},
+ {file = "matplotlib-3.10.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ea117a9c1627acaa04dbf36265691921b999cbf515a015298e54e1a12c3af837"},
+ {file = "matplotlib-3.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:08fc803293b4e1694ee325896030de97f74c141ccff0be886bb5915269247676"},
+ {file = "matplotlib-3.10.6-cp310-cp310-win_amd64.whl", hash = "sha256:2adf92d9b7527fbfb8818e050260f0ebaa460f79d61546374ce73506c9421d09"},
+ {file = "matplotlib-3.10.6-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:905b60d1cb0ee604ce65b297b61cf8be9f4e6cfecf95a3fe1c388b5266bc8f4f"},
+ {file = "matplotlib-3.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7bac38d816637343e53d7185d0c66677ff30ffb131044a81898b5792c956ba76"},
+ {file = "matplotlib-3.10.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:942a8de2b5bfff1de31d95722f702e2966b8a7e31f4e68f7cd963c7cd8861cf6"},
+ {file = "matplotlib-3.10.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a3276c85370bc0dfca051ec65c5817d1e0f8f5ce1b7787528ec8ed2d524bbc2f"},
+ {file = "matplotlib-3.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9df5851b219225731f564e4b9e7f2ac1e13c9e6481f941b5631a0f8e2d9387ce"},
+ {file = "matplotlib-3.10.6-cp311-cp311-win_amd64.whl", hash = "sha256:abb5d9478625dd9c9eb51a06d39aae71eda749ae9b3138afb23eb38824026c7e"},
+ {file = "matplotlib-3.10.6-cp311-cp311-win_arm64.whl", hash = "sha256:886f989ccfae63659183173bb3fced7fd65e9eb793c3cc21c273add368536951"},
+ {file = "matplotlib-3.10.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:31ca662df6a80bd426f871105fdd69db7543e28e73a9f2afe80de7e531eb2347"},
+ {file = "matplotlib-3.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1678bb61d897bb4ac4757b5ecfb02bfb3fddf7f808000fb81e09c510712fda75"},
+ {file = "matplotlib-3.10.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:56cd2d20842f58c03d2d6e6c1f1cf5548ad6f66b91e1e48f814e4fb5abd1cb95"},
+ {file = "matplotlib-3.10.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:662df55604a2f9a45435566d6e2660e41efe83cd94f4288dfbf1e6d1eae4b0bb"},
+ {file = "matplotlib-3.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:08f141d55148cd1fc870c3387d70ca4df16dee10e909b3b038782bd4bda6ea07"},
+ {file = "matplotlib-3.10.6-cp312-cp312-win_amd64.whl", hash = "sha256:590f5925c2d650b5c9d813c5b3b5fc53f2929c3f8ef463e4ecfa7e052044fb2b"},
+ {file = "matplotlib-3.10.6-cp312-cp312-win_arm64.whl", hash = "sha256:f44c8d264a71609c79a78d50349e724f5d5fc3684ead7c2a473665ee63d868aa"},
+ {file = "matplotlib-3.10.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:819e409653c1106c8deaf62e6de6b8611449c2cd9939acb0d7d4e57a3d95cc7a"},
+ {file = "matplotlib-3.10.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:59c8ac8382fefb9cb71308dde16a7c487432f5255d8f1fd32473523abecfecdf"},
+ {file = "matplotlib-3.10.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:84e82d9e0fd70c70bc55739defbd8055c54300750cbacf4740c9673a24d6933a"},
+ {file = "matplotlib-3.10.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:25f7a3eb42d6c1c56e89eacd495661fc815ffc08d9da750bca766771c0fd9110"},
+ {file = "matplotlib-3.10.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f9c862d91ec0b7842920a4cfdaaec29662195301914ea54c33e01f1a28d014b2"},
+ {file = "matplotlib-3.10.6-cp313-cp313-win_amd64.whl", hash = "sha256:1b53bd6337eba483e2e7d29c5ab10eee644bc3a2491ec67cc55f7b44583ffb18"},
+ {file = "matplotlib-3.10.6-cp313-cp313-win_arm64.whl", hash = "sha256:cbd5eb50b7058b2892ce45c2f4e92557f395c9991f5c886d1bb74a1582e70fd6"},
+ {file = "matplotlib-3.10.6-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:acc86dd6e0e695c095001a7fccff158c49e45e0758fdf5dcdbb0103318b59c9f"},
+ {file = "matplotlib-3.10.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e228cd2ffb8f88b7d0b29e37f68ca9aaf83e33821f24a5ccc4f082dd8396bc27"},
+ {file = "matplotlib-3.10.6-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:658bc91894adeab669cf4bb4a186d049948262987e80f0857216387d7435d833"},
+ {file = "matplotlib-3.10.6-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8913b7474f6dd83ac444c9459c91f7f0f2859e839f41d642691b104e0af056aa"},
+ {file = "matplotlib-3.10.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:091cea22e059b89f6d7d1a18e2c33a7376c26eee60e401d92a4d6726c4e12706"},
+ {file = "matplotlib-3.10.6-cp313-cp313t-win_amd64.whl", hash = "sha256:491e25e02a23d7207629d942c666924a6b61e007a48177fdd231a0097b7f507e"},
+ {file = "matplotlib-3.10.6-cp313-cp313t-win_arm64.whl", hash = "sha256:3d80d60d4e54cda462e2cd9a086d85cd9f20943ead92f575ce86885a43a565d5"},
+ {file = "matplotlib-3.10.6-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:70aaf890ce1d0efd482df969b28a5b30ea0b891224bb315810a3940f67182899"},
+ {file = "matplotlib-3.10.6-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1565aae810ab79cb72e402b22facfa6501365e73ebab70a0fdfb98488d2c3c0c"},
+ {file = "matplotlib-3.10.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f3b23315a01981689aa4e1a179dbf6ef9fbd17143c3eea77548c2ecfb0499438"},
+ {file = "matplotlib-3.10.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:30fdd37edf41a4e6785f9b37969de57aea770696cb637d9946eb37470c94a453"},
+ {file = "matplotlib-3.10.6-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:bc31e693da1c08012c764b053e702c1855378e04102238e6a5ee6a7117c53a47"},
+ {file = "matplotlib-3.10.6-cp314-cp314-win_amd64.whl", hash = "sha256:05be9bdaa8b242bc6ff96330d18c52f1fc59c6fb3a4dd411d953d67e7e1baf98"},
+ {file = "matplotlib-3.10.6-cp314-cp314-win_arm64.whl", hash = "sha256:f56a0d1ab05d34c628592435781d185cd99630bdfd76822cd686fb5a0aecd43a"},
+ {file = "matplotlib-3.10.6-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:94f0b4cacb23763b64b5dace50d5b7bfe98710fed5f0cef5c08135a03399d98b"},
+ {file = "matplotlib-3.10.6-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:cc332891306b9fb39462673d8225d1b824c89783fee82840a709f96714f17a5c"},
+ {file = "matplotlib-3.10.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee1d607b3fb1590deb04b69f02ea1d53ed0b0bf75b2b1a5745f269afcbd3cdd3"},
+ {file = "matplotlib-3.10.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:376a624a218116461696b27b2bbf7a8945053e6d799f6502fc03226d077807bf"},
+ {file = "matplotlib-3.10.6-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:83847b47f6524c34b4f2d3ce726bb0541c48c8e7692729865c3df75bfa0f495a"},
+ {file = "matplotlib-3.10.6-cp314-cp314t-win_amd64.whl", hash = "sha256:c7e0518e0d223683532a07f4b512e2e0729b62674f1b3a1a69869f98e6b1c7e3"},
+ {file = "matplotlib-3.10.6-cp314-cp314t-win_arm64.whl", hash = "sha256:4dd83e029f5b4801eeb87c64efd80e732452781c16a9cf7415b7b63ec8f374d7"},
+ {file = "matplotlib-3.10.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:13fcd07ccf17e354398358e0307a1f53f5325dca22982556ddb9c52837b5af41"},
+ {file = "matplotlib-3.10.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:470fc846d59d1406e34fa4c32ba371039cd12c2fe86801159a965956f2575bd1"},
+ {file = "matplotlib-3.10.6-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f7173f8551b88f4ef810a94adae3128c2530e0d07529f7141be7f8d8c365f051"},
+ {file = "matplotlib-3.10.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f2d684c3204fa62421bbf770ddfebc6b50130f9cad65531eeba19236d73bb488"},
+ {file = "matplotlib-3.10.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:6f4a69196e663a41d12a728fab8751177215357906436804217d6d9cf0d4d6cf"},
+ {file = "matplotlib-3.10.6-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d6ca6ef03dfd269f4ead566ec6f3fb9becf8dab146fb999022ed85ee9f6b3eb"},
+ {file = "matplotlib-3.10.6.tar.gz", hash = "sha256:ec01b645840dd1996df21ee37f208cd8ba57644779fa20464010638013d3203c"},
+]
[package.dependencies]
+contourpy = ">=1.0.1"
cycler = ">=0.10"
fonttools = ">=4.22.0"
-kiwisolver = ">=1.0.1"
-numpy = ">=1.17"
+kiwisolver = ">=1.3.1"
+numpy = ">=1.23"
packaging = ">=20.0"
-pillow = ">=6.2.0"
-pyparsing = ">=2.2.1"
+pillow = ">=8"
+pyparsing = ">=2.3.1"
python-dateutil = ">=2.7"
-setuptools_scm = ">=4,<7"
+
+[package.extras]
+dev = ["meson-python (>=0.13.1,<0.17.0)", "pybind11 (>=2.13.2,!=2.13.3)", "setuptools (>=64)", "setuptools_scm (>=7)"]
[[package]]
-name = "mypi"
-version = "0.0.3"
-description = "An api that can automatically build and serve python packages that are hosted on github"
-category = "dev"
+name = "mdit-py-plugins"
+version = "0.5.0"
+description = "Collection of plugins for markdown-it-py"
optional = false
-python-versions = "*"
+python-versions = ">=3.10"
+groups = ["main"]
+files = [
+ {file = "mdit_py_plugins-0.5.0-py3-none-any.whl", hash = "sha256:07a08422fc1936a5d26d146759e9155ea466e842f5ab2f7d2266dd084c8dab1f"},
+ {file = "mdit_py_plugins-0.5.0.tar.gz", hash = "sha256:f4918cb50119f50446560513a8e311d574ff6aaed72606ddae6d35716fe809c6"},
+]
[package.dependencies]
-docopt = "0.6.1"
-Flask = "0.10.1"
-GitPython = "0.3.2.RC1"
-semantic_version = "2.3.0"
+markdown-it-py = ">=2.0.0,<5.0.0"
+
+[package.extras]
+code-style = ["pre-commit"]
+rtd = ["myst-parser", "sphinx-book-theme"]
+testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"]
+
+[[package]]
+name = "mdurl"
+version = "0.1.2"
+description = "Markdown URL utilities"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"},
+ {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"},
+]
+
+[[package]]
+name = "narwhals"
+version = "2.2.0"
+description = "Extremely lightweight compatibility layer between dataframe libraries"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "narwhals-2.2.0-py3-none-any.whl", hash = "sha256:2b5e3d61a486fa4328c286b0c8018b3e781a964947ff725d66ba12f6d5ca3d2a"},
+ {file = "narwhals-2.2.0.tar.gz", hash = "sha256:f6a34f2699acabe2c17339c104f0bec28b9f7a55fbc7f8d485d49bea72d12b8a"},
+]
+
+[package.extras]
+cudf = ["cudf (>=24.10.0)"]
+dask = ["dask[dataframe] (>=2024.8)"]
+duckdb = ["duckdb (>=1.0)"]
+ibis = ["ibis-framework (>=6.0.0)", "packaging", "pyarrow-hotfix", "rich"]
+modin = ["modin"]
+pandas = ["pandas (>=1.1.3)"]
+polars = ["polars (>=0.20.4)"]
+pyarrow = ["pyarrow (>=13.0.0)"]
+pyspark = ["pyspark (>=3.5.0)"]
+pyspark-connect = ["pyspark[connect] (>=3.5.0)"]
+sqlframe = ["sqlframe (>=3.22.0)"]
[[package]]
name = "nodeenv"
-version = "1.7.0"
+version = "1.9.1"
description = "Node.js virtual environment builder"
-category = "dev"
optional = false
-python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*"
-
-[package.dependencies]
-setuptools = "*"
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
+groups = ["dev"]
+files = [
+ {file = "nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9"},
+ {file = "nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f"},
+]
[[package]]
name = "numpy"
-version = "1.23.3"
-description = "NumPy is the fundamental package for array computing with Python."
-category = "main"
-optional = false
-python-versions = ">=3.8"
+version = "2.3.2"
+description = "Fundamental package for array computing in Python"
+optional = false
+python-versions = ">=3.11"
+groups = ["main"]
+files = [
+ {file = "numpy-2.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:852ae5bed3478b92f093e30f785c98e0cb62fa0a939ed057c31716e18a7a22b9"},
+ {file = "numpy-2.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7a0e27186e781a69959d0230dd9909b5e26024f8da10683bd6344baea1885168"},
+ {file = "numpy-2.3.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:f0a1a8476ad77a228e41619af2fa9505cf69df928e9aaa165746584ea17fed2b"},
+ {file = "numpy-2.3.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:cbc95b3813920145032412f7e33d12080f11dc776262df1712e1638207dde9e8"},
+ {file = "numpy-2.3.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f75018be4980a7324edc5930fe39aa391d5734531b1926968605416ff58c332d"},
+ {file = "numpy-2.3.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20b8200721840f5621b7bd03f8dcd78de33ec522fc40dc2641aa09537df010c3"},
+ {file = "numpy-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f91e5c028504660d606340a084db4b216567ded1056ea2b4be4f9d10b67197f"},
+ {file = "numpy-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:fb1752a3bb9a3ad2d6b090b88a9a0ae1cd6f004ef95f75825e2f382c183b2097"},
+ {file = "numpy-2.3.2-cp311-cp311-win32.whl", hash = "sha256:4ae6863868aaee2f57503c7a5052b3a2807cf7a3914475e637a0ecd366ced220"},
+ {file = "numpy-2.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:240259d6564f1c65424bcd10f435145a7644a65a6811cfc3201c4a429ba79170"},
+ {file = "numpy-2.3.2-cp311-cp311-win_arm64.whl", hash = "sha256:4209f874d45f921bde2cff1ffcd8a3695f545ad2ffbef6d3d3c6768162efab89"},
+ {file = "numpy-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bc3186bea41fae9d8e90c2b4fb5f0a1f5a690682da79b92574d63f56b529080b"},
+ {file = "numpy-2.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2f4f0215edb189048a3c03bd5b19345bdfa7b45a7a6f72ae5945d2a28272727f"},
+ {file = "numpy-2.3.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:8b1224a734cd509f70816455c3cffe13a4f599b1bf7130f913ba0e2c0b2006c0"},
+ {file = "numpy-2.3.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:3dcf02866b977a38ba3ec10215220609ab9667378a9e2150615673f3ffd6c73b"},
+ {file = "numpy-2.3.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:572d5512df5470f50ada8d1972c5f1082d9a0b7aa5944db8084077570cf98370"},
+ {file = "numpy-2.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8145dd6d10df13c559d1e4314df29695613575183fa2e2d11fac4c208c8a1f73"},
+ {file = "numpy-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:103ea7063fa624af04a791c39f97070bf93b96d7af7eb23530cd087dc8dbe9dc"},
+ {file = "numpy-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc927d7f289d14f5e037be917539620603294454130b6de200091e23d27dc9be"},
+ {file = "numpy-2.3.2-cp312-cp312-win32.whl", hash = "sha256:d95f59afe7f808c103be692175008bab926b59309ade3e6d25009e9a171f7036"},
+ {file = "numpy-2.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:9e196ade2400c0c737d93465327d1ae7c06c7cb8a1756121ebf54b06ca183c7f"},
+ {file = "numpy-2.3.2-cp312-cp312-win_arm64.whl", hash = "sha256:ee807923782faaf60d0d7331f5e86da7d5e3079e28b291973c545476c2b00d07"},
+ {file = "numpy-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c8d9727f5316a256425892b043736d63e89ed15bbfe6556c5ff4d9d4448ff3b3"},
+ {file = "numpy-2.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:efc81393f25f14d11c9d161e46e6ee348637c0a1e8a54bf9dedc472a3fae993b"},
+ {file = "numpy-2.3.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dd937f088a2df683cbb79dda9a772b62a3e5a8a7e76690612c2737f38c6ef1b6"},
+ {file = "numpy-2.3.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:11e58218c0c46c80509186e460d79fbdc9ca1eb8d8aee39d8f2dc768eb781089"},
+ {file = "numpy-2.3.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5ad4ebcb683a1f99f4f392cc522ee20a18b2bb12a2c1c42c3d48d5a1adc9d3d2"},
+ {file = "numpy-2.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:938065908d1d869c7d75d8ec45f735a034771c6ea07088867f713d1cd3bbbe4f"},
+ {file = "numpy-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:66459dccc65d8ec98cc7df61307b64bf9e08101f9598755d42d8ae65d9a7a6ee"},
+ {file = "numpy-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a7af9ed2aa9ec5950daf05bb11abc4076a108bd3c7db9aa7251d5f107079b6a6"},
+ {file = "numpy-2.3.2-cp313-cp313-win32.whl", hash = "sha256:906a30249315f9c8e17b085cc5f87d3f369b35fedd0051d4a84686967bdbbd0b"},
+ {file = "numpy-2.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:c63d95dc9d67b676e9108fe0d2182987ccb0f11933c1e8959f42fa0da8d4fa56"},
+ {file = "numpy-2.3.2-cp313-cp313-win_arm64.whl", hash = "sha256:b05a89f2fb84d21235f93de47129dd4f11c16f64c87c33f5e284e6a3a54e43f2"},
+ {file = "numpy-2.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4e6ecfeddfa83b02318f4d84acf15fbdbf9ded18e46989a15a8b6995dfbf85ab"},
+ {file = "numpy-2.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:508b0eada3eded10a3b55725b40806a4b855961040180028f52580c4729916a2"},
+ {file = "numpy-2.3.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:754d6755d9a7588bdc6ac47dc4ee97867271b17cee39cb87aef079574366db0a"},
+ {file = "numpy-2.3.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f66e7d2b2d7712410d3bc5684149040ef5f19856f20277cd17ea83e5006286"},
+ {file = "numpy-2.3.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de6ea4e5a65d5a90c7d286ddff2b87f3f4ad61faa3db8dabe936b34c2275b6f8"},
+ {file = "numpy-2.3.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3ef07ec8cbc8fc9e369c8dcd52019510c12da4de81367d8b20bc692aa07573a"},
+ {file = "numpy-2.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:27c9f90e7481275c7800dc9c24b7cc40ace3fdb970ae4d21eaff983a32f70c91"},
+ {file = "numpy-2.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:07b62978075b67eee4065b166d000d457c82a1efe726cce608b9db9dd66a73a5"},
+ {file = "numpy-2.3.2-cp313-cp313t-win32.whl", hash = "sha256:c771cfac34a4f2c0de8e8c97312d07d64fd8f8ed45bc9f5726a7e947270152b5"},
+ {file = "numpy-2.3.2-cp313-cp313t-win_amd64.whl", hash = "sha256:72dbebb2dcc8305c431b2836bcc66af967df91be793d63a24e3d9b741374c450"},
+ {file = "numpy-2.3.2-cp313-cp313t-win_arm64.whl", hash = "sha256:72c6df2267e926a6d5286b0a6d556ebe49eae261062059317837fda12ddf0c1a"},
+ {file = "numpy-2.3.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:448a66d052d0cf14ce9865d159bfc403282c9bc7bb2a31b03cc18b651eca8b1a"},
+ {file = "numpy-2.3.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:546aaf78e81b4081b2eba1d105c3b34064783027a06b3ab20b6eba21fb64132b"},
+ {file = "numpy-2.3.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:87c930d52f45df092f7578889711a0768094debf73cfcde105e2d66954358125"},
+ {file = "numpy-2.3.2-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:8dc082ea901a62edb8f59713c6a7e28a85daddcb67454c839de57656478f5b19"},
+ {file = "numpy-2.3.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:af58de8745f7fa9ca1c0c7c943616c6fe28e75d0c81f5c295810e3c83b5be92f"},
+ {file = "numpy-2.3.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed5527c4cf10f16c6d0b6bee1f89958bccb0ad2522c8cadc2efd318bcd545f5"},
+ {file = "numpy-2.3.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:095737ed986e00393ec18ec0b21b47c22889ae4b0cd2d5e88342e08b01141f58"},
+ {file = "numpy-2.3.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b5e40e80299607f597e1a8a247ff8d71d79c5b52baa11cc1cce30aa92d2da6e0"},
+ {file = "numpy-2.3.2-cp314-cp314-win32.whl", hash = "sha256:7d6e390423cc1f76e1b8108c9b6889d20a7a1f59d9a60cac4a050fa734d6c1e2"},
+ {file = "numpy-2.3.2-cp314-cp314-win_amd64.whl", hash = "sha256:b9d0878b21e3918d76d2209c924ebb272340da1fb51abc00f986c258cd5e957b"},
+ {file = "numpy-2.3.2-cp314-cp314-win_arm64.whl", hash = "sha256:2738534837c6a1d0c39340a190177d7d66fdf432894f469728da901f8f6dc910"},
+ {file = "numpy-2.3.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:4d002ecf7c9b53240be3bb69d80f86ddbd34078bae04d87be81c1f58466f264e"},
+ {file = "numpy-2.3.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:293b2192c6bcce487dbc6326de5853787f870aeb6c43f8f9c6496db5b1781e45"},
+ {file = "numpy-2.3.2-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:0a4f2021a6da53a0d580d6ef5db29947025ae8b35b3250141805ea9a32bbe86b"},
+ {file = "numpy-2.3.2-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9c144440db4bf3bb6372d2c3e49834cc0ff7bb4c24975ab33e01199e645416f2"},
+ {file = "numpy-2.3.2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f92d6c2a8535dc4fe4419562294ff957f83a16ebdec66df0805e473ffaad8bd0"},
+ {file = "numpy-2.3.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cefc2219baa48e468e3db7e706305fcd0c095534a192a08f31e98d83a7d45fb0"},
+ {file = "numpy-2.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:76c3e9501ceb50b2ff3824c3589d5d1ab4ac857b0ee3f8f49629d0de55ecf7c2"},
+ {file = "numpy-2.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:122bf5ed9a0221b3419672493878ba4967121514b1d7d4656a7580cd11dddcbf"},
+ {file = "numpy-2.3.2-cp314-cp314t-win32.whl", hash = "sha256:6f1ae3dcb840edccc45af496f312528c15b1f79ac318169d094e85e4bb35fdf1"},
+ {file = "numpy-2.3.2-cp314-cp314t-win_amd64.whl", hash = "sha256:087ffc25890d89a43536f75c5fe8770922008758e8eeeef61733957041ed2f9b"},
+ {file = "numpy-2.3.2-cp314-cp314t-win_arm64.whl", hash = "sha256:092aeb3449833ea9c0bf0089d70c29ae480685dd2377ec9cdbbb620257f84631"},
+ {file = "numpy-2.3.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:14a91ebac98813a49bc6aa1a0dfc09513dcec1d97eaf31ca21a87221a1cdcb15"},
+ {file = "numpy-2.3.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:71669b5daae692189540cffc4c439468d35a3f84f0c88b078ecd94337f6cb0ec"},
+ {file = "numpy-2.3.2-pp311-pypy311_pp73-macosx_14_0_arm64.whl", hash = "sha256:69779198d9caee6e547adb933941ed7520f896fd9656834c300bdf4dd8642712"},
+ {file = "numpy-2.3.2-pp311-pypy311_pp73-macosx_14_0_x86_64.whl", hash = "sha256:2c3271cc4097beb5a60f010bcc1cc204b300bb3eafb4399376418a83a1c6373c"},
+ {file = "numpy-2.3.2-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8446acd11fe3dc1830568c941d44449fd5cb83068e5c70bd5a470d323d448296"},
+ {file = "numpy-2.3.2-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aa098a5ab53fa407fded5870865c6275a5cd4101cfdef8d6fafc48286a96e981"},
+ {file = "numpy-2.3.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:6936aff90dda378c09bea075af0d9c675fe3a977a9d2402f95a87f440f59f619"},
+ {file = "numpy-2.3.2.tar.gz", hash = "sha256:e0486a11ec30cdecb53f184d496d1c6a20786c81e55e41640270130056f8ee48"},
+]
[[package]]
name = "packaging"
-version = "21.3"
+version = "25.0"
description = "Core utilities for Python packages"
-category = "main"
optional = false
-python-versions = ">=3.6"
-
-[package.dependencies]
-pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484"},
+ {file = "packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f"},
+]
[[package]]
name = "pandas"
-version = "1.4.4"
+version = "2.3.2"
description = "Powerful data structures for data analysis, time series, and statistics"
-category = "main"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "pandas-2.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:52bc29a946304c360561974c6542d1dd628ddafa69134a7131fdfd6a5d7a1a35"},
+ {file = "pandas-2.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:220cc5c35ffaa764dd5bb17cf42df283b5cb7fdf49e10a7b053a06c9cb48ee2b"},
+ {file = "pandas-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42c05e15111221384019897df20c6fe893b2f697d03c811ee67ec9e0bb5a3424"},
+ {file = "pandas-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc03acc273c5515ab69f898df99d9d4f12c4d70dbfc24c3acc6203751d0804cf"},
+ {file = "pandas-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d25c20a03e8870f6339bcf67281b946bd20b86f1a544ebbebb87e66a8d642cba"},
+ {file = "pandas-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:21bb612d148bb5860b7eb2c10faacf1a810799245afd342cf297d7551513fbb6"},
+ {file = "pandas-2.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:b62d586eb25cb8cb70a5746a378fc3194cb7f11ea77170d59f889f5dfe3cec7a"},
+ {file = "pandas-2.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1333e9c299adcbb68ee89a9bb568fc3f20f9cbb419f1dd5225071e6cddb2a743"},
+ {file = "pandas-2.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:76972bcbd7de8e91ad5f0ca884a9f2c477a2125354af624e022c49e5bd0dfff4"},
+ {file = "pandas-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b98bdd7c456a05eef7cd21fd6b29e3ca243591fe531c62be94a2cc987efb5ac2"},
+ {file = "pandas-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d81573b3f7db40d020983f78721e9bfc425f411e616ef019a10ebf597aedb2e"},
+ {file = "pandas-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e190b738675a73b581736cc8ec71ae113d6c3768d0bd18bffa5b9a0927b0b6ea"},
+ {file = "pandas-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c253828cb08f47488d60f43c5fc95114c771bbfff085da54bfc79cb4f9e3a372"},
+ {file = "pandas-2.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:9467697b8083f9667b212633ad6aa4ab32436dcbaf4cd57325debb0ddef2012f"},
+ {file = "pandas-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fbb977f802156e7a3f829e9d1d5398f6192375a3e2d1a9ee0803e35fe70a2b9"},
+ {file = "pandas-2.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b9b52693123dd234b7c985c68b709b0b009f4521000d0525f2b95c22f15944b"},
+ {file = "pandas-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bd281310d4f412733f319a5bc552f86d62cddc5f51d2e392c8787335c994175"},
+ {file = "pandas-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96d31a6b4354e3b9b8a2c848af75d31da390657e3ac6f30c05c82068b9ed79b9"},
+ {file = "pandas-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:df4df0b9d02bb873a106971bb85d448378ef14b86ba96f035f50bbd3688456b4"},
+ {file = "pandas-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:213a5adf93d020b74327cb2c1b842884dbdd37f895f42dcc2f09d451d949f811"},
+ {file = "pandas-2.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:8c13b81a9347eb8c7548f53fd9a4f08d4dfe996836543f805c987bafa03317ae"},
+ {file = "pandas-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0c6ecbac99a354a051ef21c5307601093cb9e0f4b1855984a084bfec9302699e"},
+ {file = "pandas-2.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c6f048aa0fd080d6a06cc7e7537c09b53be6642d330ac6f54a600c3ace857ee9"},
+ {file = "pandas-2.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0064187b80a5be6f2f9c9d6bdde29372468751dfa89f4211a3c5871854cfbf7a"},
+ {file = "pandas-2.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ac8c320bded4718b298281339c1a50fb00a6ba78cb2a63521c39bec95b0209b"},
+ {file = "pandas-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:114c2fe4f4328cf98ce5716d1532f3ab79c5919f95a9cfee81d9140064a2e4d6"},
+ {file = "pandas-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:48fa91c4dfb3b2b9bfdb5c24cd3567575f4e13f9636810462ffed8925352be5a"},
+ {file = "pandas-2.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:12d039facec710f7ba305786837d0225a3444af7bbd9c15c32ca2d40d157ed8b"},
+ {file = "pandas-2.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:c624b615ce97864eb588779ed4046186f967374185c047070545253a52ab2d57"},
+ {file = "pandas-2.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0cee69d583b9b128823d9514171cabb6861e09409af805b54459bd0c821a35c2"},
+ {file = "pandas-2.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2319656ed81124982900b4c37f0e0c58c015af9a7bbc62342ba5ad07ace82ba9"},
+ {file = "pandas-2.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b37205ad6f00d52f16b6d09f406434ba928c1a1966e2771006a9033c736d30d2"},
+ {file = "pandas-2.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:837248b4fc3a9b83b9c6214699a13f069dc13510a6a6d7f9ba33145d2841a012"},
+ {file = "pandas-2.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d2c3554bd31b731cd6490d94a28f3abb8dd770634a9e06eb6d2911b9827db370"},
+ {file = "pandas-2.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:88080a0ff8a55eac9c84e3ff3c7665b3b5476c6fbc484775ca1910ce1c3e0b87"},
+ {file = "pandas-2.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d4a558c7620340a0931828d8065688b3cc5b4c8eb674bcaf33d18ff4a6870b4a"},
+ {file = "pandas-2.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45178cf09d1858a1509dc73ec261bf5b25a625a389b65be2e47b559905f0ab6a"},
+ {file = "pandas-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77cefe00e1b210f9c76c697fedd8fdb8d3dd86563e9c8adc9fa72b90f5e9e4c2"},
+ {file = "pandas-2.3.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:13bd629c653856f00c53dc495191baa59bcafbbf54860a46ecc50d3a88421a96"},
+ {file = "pandas-2.3.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:36d627906fd44b5fd63c943264e11e96e923f8de77d6016dc2f667b9ad193438"},
+ {file = "pandas-2.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:a9d7ec92d71a420185dec44909c32e9a362248c4ae2238234b76d5be37f208cc"},
+ {file = "pandas-2.3.2.tar.gz", hash = "sha256:ab7b58f8f82706890924ccdfb5f48002b83d2b5a3845976a9fb705d36c34dcdb"},
+]
[package.dependencies]
-numpy = [
- {version = ">=1.18.5", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""},
- {version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""},
- {version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""},
- {version = ">=1.21.0", markers = "python_version >= \"3.10\""},
-]
-python-dateutil = ">=2.8.1"
+numpy = {version = ">=1.26.0", markers = "python_version >= \"3.12\""}
+python-dateutil = ">=2.8.2"
pytz = ">=2020.1"
+tzdata = ">=2022.7"
[package.extras]
-test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"]
+all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"]
+aws = ["s3fs (>=2022.11.0)"]
+clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"]
+compression = ["zstandard (>=0.19.0)"]
+computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"]
+consortium-standard = ["dataframe-api-compat (>=0.1.7)"]
+excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"]
+feather = ["pyarrow (>=10.0.1)"]
+fss = ["fsspec (>=2022.11.0)"]
+gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"]
+hdf5 = ["tables (>=3.8.0)"]
+html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"]
+mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"]
+output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"]
+parquet = ["pyarrow (>=10.0.1)"]
+performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"]
+plot = ["matplotlib (>=3.6.3)"]
+postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"]
+pyarrow = ["pyarrow (>=10.0.1)"]
+spss = ["pyreadstat (>=1.2.0)"]
+sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"]
+test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"]
+xml = ["lxml (>=4.9.2)"]
[[package]]
name = "panel"
-version = "0.13.1"
-description = "A high level app and dashboarding solution for Python."
-category = "main"
+version = "1.7.5"
+description = "The powerful data exploration & web app framework for Python."
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.10"
+groups = ["main"]
+files = [
+ {file = "panel-1.7.5-py3-none-any.whl", hash = "sha256:1c3b4a335d56d5aa0cf5d6e1c3684a297e24a62cf99345c5e9eb8552837b97c3"},
+ {file = "panel-1.7.5.tar.gz", hash = "sha256:8bf5041174593fdb0e8c46bef3ade334ae7e97ef64f52c8955a1d7c62b5db18d"},
+]
[package.dependencies]
bleach = "*"
-bokeh = ">=2.4.0,<2.5.0"
+bokeh = ">=3.5.0,<3.8.0"
+linkify-it-py = "*"
markdown = "*"
-param = ">=1.12.0"
-pyct = ">=0.4.4"
-pyviz-comms = ">=0.7.4"
+markdown-it-py = "*"
+mdit-py-plugins = "*"
+packaging = "*"
+pandas = ">=1.2"
+param = ">=2.1.0,<3.0"
+pyviz-comms = ">=2.0.0"
requests = "*"
-setuptools = "*"
-tqdm = ">=4.48.0"
+tqdm = "*"
typing-extensions = "*"
[package.extras]
-all = ["aiohttp", "altair", "channels", "codecov", "croniter", "datashader", "django (<4)", "flake8", "folium", "graphviz", "holoviews", "holoviews (>1.14.1)", "hvplot", "ipyleaflet", "ipympl", "ipython (>=7.0)", "ipyvolume", "ipywidgets", "ipywidgets-bokeh", "jupyter-bokeh (>=3.0.2)", "lxml", "matplotlib (<3.4)", "nbsite (>=0.7.2rc2)", "nbval", "networkx (>=2.5)", "notebook (>=5.4)", "pandas (>=1.3)", "parameterized", "pillow", "plotly", "plotly (>=4.0)", "pydata-sphinx-theme", "pydeck", "pygraphviz", "pyinstrument (>=4.0)", "pytest", "pytest-cov", "python-graphviz", "pyvista (<0.33)", "scikit-learn", "scipy", "sphinx-copybutton", "streamz", "twine", "vega-datasets", "vtk (==9.0.1)", "xarray"]
-build = ["bleach", "bokeh (>=2.0.0)", "param (>=1.9.2)", "pyct (>=0.4.4)", "pyviz-comms (>=0.6.0)", "rfc3986 (>=1.4.0)", "setuptools (>=42)", "tqdm", "twine"]
-doc = ["graphviz", "holoviews (>1.14.1)", "lxml", "matplotlib (<3.4)", "nbsite (>=0.7.2rc2)", "notebook (>=5.4)", "pillow", "plotly", "pydata-sphinx-theme", "pydeck", "python-graphviz", "sphinx-copybutton"]
-examples = ["aiohttp", "altair", "channels", "croniter", "datashader", "django (<4)", "folium", "graphviz", "hvplot", "ipyleaflet", "ipympl", "ipyvolume", "ipywidgets", "ipywidgets-bokeh", "jupyter-bokeh (>=3.0.2)", "networkx (>=2.5)", "plotly (>=4.0)", "pygraphviz", "pyinstrument (>=4.0)", "pyvista (<0.33)", "scikit-learn", "streamz", "vega-datasets", "vtk (==9.0.1)", "xarray"]
-recommended = ["holoviews (>1.14.1)", "matplotlib (<3.4)", "notebook (>=5.4)", "pillow", "plotly"]
-tests = ["codecov", "flake8", "folium", "holoviews", "ipympl", "ipython (>=7.0)", "nbval", "pandas (>=1.3)", "parameterized", "pytest", "pytest-cov", "scipy", "twine"]
+dev = ["watchfiles"]
+fastapi = ["bokeh-fastapi (>=0.1.2,<0.2.0)", "fastapi[standard]"]
+mypy = ["mypy", "pandas-stubs", "types-bleach", "types-croniter", "types-markdown", "types-psutil", "types-requests", "types-tqdm", "typing-extensions"]
+recommended = ["holoviews (>=1.18.0)", "jupyterlab", "matplotlib", "pillow", "plotly"]
+tests = ["psutil", "pytest", "pytest-asyncio", "pytest-rerunfailures", "pytest-xdist"]
[[package]]
name = "param"
-version = "1.12.2"
+version = "2.2.1"
description = "Make your Python code clearer and more reliable by declaring Parameters."
-category = "main"
optional = false
-python-versions = ">=2.7"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "param-2.2.1-py3-none-any.whl", hash = "sha256:e3a4ca7f3d7610615129a55dbde2e90eb67d11cef70936487b0a59717dba0bdc"},
+ {file = "param-2.2.1.tar.gz", hash = "sha256:ba1f7cec6455ea8ad96f641f4082759bf1057dcbe629aa79d956b25973252422"},
+]
[package.extras]
-all = ["aiohttp", "flake8", "graphviz", "jinja2 (<3.1)", "myst-nb (==0.12.2)", "myst-parser", "nbconvert", "nbsite (>=0.7.1)", "pandas", "panel", "pydata-sphinx-theme (<0.9.0)", "pygraphviz", "pytest", "pytest-cov", "sphinx-copybutton"]
-doc = ["aiohttp", "graphviz", "jinja2 (<3.1)", "myst-nb (==0.12.2)", "myst-parser", "nbconvert", "nbsite (>=0.7.1)", "pandas", "panel", "pydata-sphinx-theme (<0.9.0)", "pygraphviz", "sphinx-copybutton"]
-tests = ["flake8", "pytest", "pytest-cov"]
+all = ["aiohttp", "cloudpickle", "gmpy", "ipython", "jsonschema", "nbval", "nest-asyncio", "numpy", "odfpy", "openpyxl", "pandas", "panel", "pyarrow", "pytest", "pytest-asyncio", "pytest-xdist", "tables", "xlrd"]
+examples = ["aiohttp", "pandas", "panel"]
+tests = ["pytest", "pytest-asyncio"]
+tests-deser = ["odfpy", "openpyxl", "pyarrow", "tables", "xlrd"]
+tests-examples = ["aiohttp", "nbval", "pandas", "panel", "pytest", "pytest-asyncio", "pytest-xdist"]
+tests-full = ["aiohttp", "cloudpickle", "gmpy", "ipython", "jsonschema", "nbval", "nest-asyncio", "numpy", "odfpy", "openpyxl", "pandas", "panel", "pyarrow", "pytest", "pytest-asyncio", "pytest-xdist", "tables", "xlrd"]
[[package]]
name = "pdoc"
-version = "10.0.4"
+version = "15.0.4"
description = "API Documentation for Python Projects"
-category = "dev"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "pdoc-15.0.4-py3-none-any.whl", hash = "sha256:f9028e85e7bb8475b054e69bde1f6d26fc4693d25d9fa1b1ce9009bec7f7a5c4"},
+ {file = "pdoc-15.0.4.tar.gz", hash = "sha256:cf9680f10f5b4863381f44ef084b1903f8f356acb0d4cc6b64576ba9fb712c82"},
+]
[package.dependencies]
-astunparse = {version = "*", markers = "python_version < \"3.9\""}
Jinja2 = ">=2.11.0"
-MarkupSafe = "*"
-pygments = "*"
-
-[package.extras]
-dev = ["flake8", "hypothesis", "mypy", "pytest", "pytest-cov", "pytest-timeout", "tox"]
+MarkupSafe = ">=1.1.1"
+pygments = ">=2.12.0"
[[package]]
-name = "Pillow"
-version = "9.2.0"
+name = "pillow"
+version = "11.3.0"
description = "Python Imaging Library (Fork)"
-category = "main"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "pillow-11.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1b9c17fd4ace828b3003dfd1e30bff24863e0eb59b535e8f80194d9cc7ecf860"},
+ {file = "pillow-11.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:65dc69160114cdd0ca0f35cb434633c75e8e7fad4cf855177a05bf38678f73ad"},
+ {file = "pillow-11.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7107195ddc914f656c7fc8e4a5e1c25f32e9236ea3ea860f257b0436011fddd0"},
+ {file = "pillow-11.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cc3e831b563b3114baac7ec2ee86819eb03caa1a2cef0b481a5675b59c4fe23b"},
+ {file = "pillow-11.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f1f182ebd2303acf8c380a54f615ec883322593320a9b00438eb842c1f37ae50"},
+ {file = "pillow-11.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4445fa62e15936a028672fd48c4c11a66d641d2c05726c7ec1f8ba6a572036ae"},
+ {file = "pillow-11.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:71f511f6b3b91dd543282477be45a033e4845a40278fa8dcdbfdb07109bf18f9"},
+ {file = "pillow-11.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:040a5b691b0713e1f6cbe222e0f4f74cd233421e105850ae3b3c0ceda520f42e"},
+ {file = "pillow-11.3.0-cp310-cp310-win32.whl", hash = "sha256:89bd777bc6624fe4115e9fac3352c79ed60f3bb18651420635f26e643e3dd1f6"},
+ {file = "pillow-11.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:19d2ff547c75b8e3ff46f4d9ef969a06c30ab2d4263a9e287733aa8b2429ce8f"},
+ {file = "pillow-11.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:819931d25e57b513242859ce1876c58c59dc31587847bf74cfe06b2e0cb22d2f"},
+ {file = "pillow-11.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1cd110edf822773368b396281a2293aeb91c90a2db00d78ea43e7e861631b722"},
+ {file = "pillow-11.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c412fddd1b77a75aa904615ebaa6001f169b26fd467b4be93aded278266b288"},
+ {file = "pillow-11.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7d1aa4de119a0ecac0a34a9c8bde33f34022e2e8f99104e47a3ca392fd60e37d"},
+ {file = "pillow-11.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:91da1d88226663594e3f6b4b8c3c8d85bd504117d043740a8e0ec449087cc494"},
+ {file = "pillow-11.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:643f189248837533073c405ec2f0bb250ba54598cf80e8c1e043381a60632f58"},
+ {file = "pillow-11.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:106064daa23a745510dabce1d84f29137a37224831d88eb4ce94bb187b1d7e5f"},
+ {file = "pillow-11.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cd8ff254faf15591e724dc7c4ddb6bf4793efcbe13802a4ae3e863cd300b493e"},
+ {file = "pillow-11.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:932c754c2d51ad2b2271fd01c3d121daaa35e27efae2a616f77bf164bc0b3e94"},
+ {file = "pillow-11.3.0-cp311-cp311-win32.whl", hash = "sha256:b4b8f3efc8d530a1544e5962bd6b403d5f7fe8b9e08227c6b255f98ad82b4ba0"},
+ {file = "pillow-11.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:1a992e86b0dd7aeb1f053cd506508c0999d710a8f07b4c791c63843fc6a807ac"},
+ {file = "pillow-11.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:30807c931ff7c095620fe04448e2c2fc673fcbb1ffe2a7da3fb39613489b1ddd"},
+ {file = "pillow-11.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdae223722da47b024b867c1ea0be64e0df702c5e0a60e27daad39bf960dd1e4"},
+ {file = "pillow-11.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:921bd305b10e82b4d1f5e802b6850677f965d8394203d182f078873851dada69"},
+ {file = "pillow-11.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:eb76541cba2f958032d79d143b98a3a6b3ea87f0959bbe256c0b5e416599fd5d"},
+ {file = "pillow-11.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:67172f2944ebba3d4a7b54f2e95c786a3a50c21b88456329314caaa28cda70f6"},
+ {file = "pillow-11.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97f07ed9f56a3b9b5f49d3661dc9607484e85c67e27f3e8be2c7d28ca032fec7"},
+ {file = "pillow-11.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:676b2815362456b5b3216b4fd5bd89d362100dc6f4945154ff172e206a22c024"},
+ {file = "pillow-11.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e184b2f26ff146363dd07bde8b711833d7b0202e27d13540bfe2e35a323a809"},
+ {file = "pillow-11.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6be31e3fc9a621e071bc17bb7de63b85cbe0bfae91bb0363c893cbe67247780d"},
+ {file = "pillow-11.3.0-cp312-cp312-win32.whl", hash = "sha256:7b161756381f0918e05e7cb8a371fff367e807770f8fe92ecb20d905d0e1c149"},
+ {file = "pillow-11.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a6444696fce635783440b7f7a9fc24b3ad10a9ea3f0ab66c5905be1c19ccf17d"},
+ {file = "pillow-11.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:2aceea54f957dd4448264f9bf40875da0415c83eb85f55069d89c0ed436e3542"},
+ {file = "pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:1c627742b539bba4309df89171356fcb3cc5a9178355b2727d1b74a6cf155fbd"},
+ {file = "pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:30b7c02f3899d10f13d7a48163c8969e4e653f8b43416d23d13d1bbfdc93b9f8"},
+ {file = "pillow-11.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f"},
+ {file = "pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c"},
+ {file = "pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd"},
+ {file = "pillow-11.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2d6fcc902a24ac74495df63faad1884282239265c6839a0a6416d33faedfae7e"},
+ {file = "pillow-11.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f0f5d8f4a08090c6d6d578351a2b91acf519a54986c055af27e7a93feae6d3f1"},
+ {file = "pillow-11.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c37d8ba9411d6003bba9e518db0db0c58a680ab9fe5179f040b0463644bc9805"},
+ {file = "pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8"},
+ {file = "pillow-11.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:023f6d2d11784a465f09fd09a34b150ea4672e85fb3d05931d89f373ab14abb2"},
+ {file = "pillow-11.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:45dfc51ac5975b938e9809451c51734124e73b04d0f0ac621649821a63852e7b"},
+ {file = "pillow-11.3.0-cp313-cp313-win32.whl", hash = "sha256:a4d336baed65d50d37b88ca5b60c0fa9d81e3a87d4a7930d3880d1624d5b31f3"},
+ {file = "pillow-11.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bce5c4fd0921f99d2e858dc4d4d64193407e1b99478bc5cacecba2311abde51"},
+ {file = "pillow-11.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:1904e1264881f682f02b7f8167935cce37bc97db457f8e7849dc3a6a52b99580"},
+ {file = "pillow-11.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4c834a3921375c48ee6b9624061076bc0a32a60b5532b322cc0ea64e639dd50e"},
+ {file = "pillow-11.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e05688ccef30ea69b9317a9ead994b93975104a677a36a8ed8106be9260aa6d"},
+ {file = "pillow-11.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1019b04af07fc0163e2810167918cb5add8d74674b6267616021ab558dc98ced"},
+ {file = "pillow-11.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f944255db153ebb2b19c51fe85dd99ef0ce494123f21b9db4877ffdfc5590c7c"},
+ {file = "pillow-11.3.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f85acb69adf2aaee8b7da124efebbdb959a104db34d3a2cb0f3793dbae422a8"},
+ {file = "pillow-11.3.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05f6ecbeff5005399bb48d198f098a9b4b6bdf27b8487c7f38ca16eeb070cd59"},
+ {file = "pillow-11.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a7bc6e6fd0395bc052f16b1a8670859964dbd7003bd0af2ff08342eb6e442cfe"},
+ {file = "pillow-11.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:83e1b0161c9d148125083a35c1c5a89db5b7054834fd4387499e06552035236c"},
+ {file = "pillow-11.3.0-cp313-cp313t-win32.whl", hash = "sha256:2a3117c06b8fb646639dce83694f2f9eac405472713fcb1ae887469c0d4f6788"},
+ {file = "pillow-11.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:857844335c95bea93fb39e0fa2726b4d9d758850b34075a7e3ff4f4fa3aa3b31"},
+ {file = "pillow-11.3.0-cp313-cp313t-win_arm64.whl", hash = "sha256:8797edc41f3e8536ae4b10897ee2f637235c94f27404cac7297f7b607dd0716e"},
+ {file = "pillow-11.3.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d9da3df5f9ea2a89b81bb6087177fb1f4d1c7146d583a3fe5c672c0d94e55e12"},
+ {file = "pillow-11.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0b275ff9b04df7b640c59ec5a3cb113eefd3795a8df80bac69646ef699c6981a"},
+ {file = "pillow-11.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0743841cabd3dba6a83f38a92672cccbd69af56e3e91777b0ee7f4dba4385632"},
+ {file = "pillow-11.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2465a69cf967b8b49ee1b96d76718cd98c4e925414ead59fdf75cf0fd07df673"},
+ {file = "pillow-11.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41742638139424703b4d01665b807c6468e23e699e8e90cffefe291c5832b027"},
+ {file = "pillow-11.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:93efb0b4de7e340d99057415c749175e24c8864302369e05914682ba642e5d77"},
+ {file = "pillow-11.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7966e38dcd0fa11ca390aed7c6f20454443581d758242023cf36fcb319b1a874"},
+ {file = "pillow-11.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:98a9afa7b9007c67ed84c57c9e0ad86a6000da96eaa638e4f8abe5b65ff83f0a"},
+ {file = "pillow-11.3.0-cp314-cp314-win32.whl", hash = "sha256:02a723e6bf909e7cea0dac1b0e0310be9d7650cd66222a5f1c571455c0a45214"},
+ {file = "pillow-11.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:a418486160228f64dd9e9efcd132679b7a02a5f22c982c78b6fc7dab3fefb635"},
+ {file = "pillow-11.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:155658efb5e044669c08896c0c44231c5e9abcaadbc5cd3648df2f7c0b96b9a6"},
+ {file = "pillow-11.3.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:59a03cdf019efbfeeed910bf79c7c93255c3d54bc45898ac2a4140071b02b4ae"},
+ {file = "pillow-11.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f8a5827f84d973d8636e9dc5764af4f0cf2318d26744b3d902931701b0d46653"},
+ {file = "pillow-11.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ee92f2fd10f4adc4b43d07ec5e779932b4eb3dbfbc34790ada5a6669bc095aa6"},
+ {file = "pillow-11.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c96d333dcf42d01f47b37e0979b6bd73ec91eae18614864622d9b87bbd5bbf36"},
+ {file = "pillow-11.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4c96f993ab8c98460cd0c001447bff6194403e8b1d7e149ade5f00594918128b"},
+ {file = "pillow-11.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41342b64afeba938edb034d122b2dda5db2139b9a4af999729ba8818e0056477"},
+ {file = "pillow-11.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:068d9c39a2d1b358eb9f245ce7ab1b5c3246c7c8c7d9ba58cfa5b43146c06e50"},
+ {file = "pillow-11.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a1bc6ba083b145187f648b667e05a2534ecc4b9f2784c2cbe3089e44868f2b9b"},
+ {file = "pillow-11.3.0-cp314-cp314t-win32.whl", hash = "sha256:118ca10c0d60b06d006be10a501fd6bbdfef559251ed31b794668ed569c87e12"},
+ {file = "pillow-11.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:8924748b688aa210d79883357d102cd64690e56b923a186f35a82cbc10f997db"},
+ {file = "pillow-11.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:79ea0d14d3ebad43ec77ad5272e6ff9bba5b679ef73375ea760261207fa8e0aa"},
+ {file = "pillow-11.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:48d254f8a4c776de343051023eb61ffe818299eeac478da55227d96e241de53f"},
+ {file = "pillow-11.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7aee118e30a4cf54fdd873bd3a29de51e29105ab11f9aad8c32123f58c8f8081"},
+ {file = "pillow-11.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:23cff760a9049c502721bdb743a7cb3e03365fafcdfc2ef9784610714166e5a4"},
+ {file = "pillow-11.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6359a3bc43f57d5b375d1ad54a0074318a0844d11b76abccf478c37c986d3cfc"},
+ {file = "pillow-11.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:092c80c76635f5ecb10f3f83d76716165c96f5229addbd1ec2bdbbda7d496e06"},
+ {file = "pillow-11.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cadc9e0ea0a2431124cde7e1697106471fc4c1da01530e679b2391c37d3fbb3a"},
+ {file = "pillow-11.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6a418691000f2a418c9135a7cf0d797c1bb7d9a485e61fe8e7722845b95ef978"},
+ {file = "pillow-11.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:97afb3a00b65cc0804d1c7abddbf090a81eaac02768af58cbdcaaa0a931e0b6d"},
+ {file = "pillow-11.3.0-cp39-cp39-win32.whl", hash = "sha256:ea944117a7974ae78059fcc1800e5d3295172bb97035c0c1d9345fca1419da71"},
+ {file = "pillow-11.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:e5c5858ad8ec655450a7c7df532e9842cf8df7cc349df7225c60d5d348c8aada"},
+ {file = "pillow-11.3.0-cp39-cp39-win_arm64.whl", hash = "sha256:6abdbfd3aea42be05702a8dd98832329c167ee84400a1d1f61ab11437f1717eb"},
+ {file = "pillow-11.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3cee80663f29e3843b68199b9d6f4f54bd1d4a6b59bdd91bceefc51238bcb967"},
+ {file = "pillow-11.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b5f56c3f344f2ccaf0dd875d3e180f631dc60a51b314295a3e681fe8cf851fbe"},
+ {file = "pillow-11.3.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e67d793d180c9df62f1f40aee3accca4829d3794c95098887edc18af4b8b780c"},
+ {file = "pillow-11.3.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d000f46e2917c705e9fb93a3606ee4a819d1e3aa7a9b442f6444f07e77cf5e25"},
+ {file = "pillow-11.3.0-pp310-pypy310_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:527b37216b6ac3a12d7838dc3bd75208ec57c1c6d11ef01902266a5a0c14fc27"},
+ {file = "pillow-11.3.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:be5463ac478b623b9dd3937afd7fb7ab3d79dd290a28e2b6df292dc75063eb8a"},
+ {file = "pillow-11.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:8dc70ca24c110503e16918a658b869019126ecfe03109b754c402daff12b3d9f"},
+ {file = "pillow-11.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7c8ec7a017ad1bd562f93dbd8505763e688d388cde6e4a010ae1486916e713e6"},
+ {file = "pillow-11.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:9ab6ae226de48019caa8074894544af5b53a117ccb9d3b3dcb2871464c829438"},
+ {file = "pillow-11.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fe27fb049cdcca11f11a7bfda64043c37b30e6b91f10cb5bab275806c32f6ab3"},
+ {file = "pillow-11.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:465b9e8844e3c3519a983d58b80be3f668e2a7a5db97f2784e7079fbc9f9822c"},
+ {file = "pillow-11.3.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5418b53c0d59b3824d05e029669efa023bbef0f3e92e75ec8428f3799487f361"},
+ {file = "pillow-11.3.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:504b6f59505f08ae014f724b6207ff6222662aab5cc9542577fb084ed0676ac7"},
+ {file = "pillow-11.3.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:c84d689db21a1c397d001aa08241044aa2069e7587b398c8cc63020390b1c1b8"},
+ {file = "pillow-11.3.0.tar.gz", hash = "sha256:3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523"},
+]
[package.extras]
-docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"]
-tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"]
+docs = ["furo", "olefile", "sphinx (>=8.2)", "sphinx-autobuild", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"]
+fpx = ["olefile"]
+mic = ["olefile"]
+test-arrow = ["pyarrow"]
+tests = ["check-manifest", "coverage (>=7.4.2)", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "trove-classifiers (>=2024.10.12)"]
+typing = ["typing-extensions ; python_version < \"3.10\""]
+xmp = ["defusedxml"]
[[package]]
name = "platformdirs"
-version = "2.5.2"
-description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
-category = "dev"
+version = "4.3.8"
+description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "platformdirs-4.3.8-py3-none-any.whl", hash = "sha256:ff7059bb7eb1179e2685604f4aaf157cfd9535242bd23742eadc3c13542139b4"},
+ {file = "platformdirs-4.3.8.tar.gz", hash = "sha256:3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc"},
+]
[package.extras]
-docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx (>=4)", "sphinx-autodoc-typehints (>=1.12)"]
-test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"]
+docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"]
+test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.4)", "pytest-cov (>=6)", "pytest-mock (>=3.14)"]
+type = ["mypy (>=1.14.1)"]
[[package]]
name = "pluggy"
-version = "1.0.0"
+version = "1.6.0"
description = "plugin and hook calling mechanisms for python"
-category = "dev"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746"},
+ {file = "pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3"},
+]
[package.extras]
dev = ["pre-commit", "tox"]
-testing = ["pytest", "pytest-benchmark"]
+testing = ["coverage", "pytest", "pytest-benchmark"]
[[package]]
name = "pre-commit"
-version = "2.20.0"
+version = "4.3.0"
description = "A framework for managing and maintaining multi-language pre-commit hooks."
-category = "dev"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "pre_commit-4.3.0-py2.py3-none-any.whl", hash = "sha256:2b0747ad7e6e967169136edffee14c16e148a778a54e4f967921aa1ebf2308d8"},
+ {file = "pre_commit-4.3.0.tar.gz", hash = "sha256:499fe450cc9d42e9d58e606262795ecb64dd05438943c62b66f6a8673da30b16"},
+]
[package.dependencies]
cfgv = ">=2.0.0"
identify = ">=1.0.0"
nodeenv = ">=0.11.1"
pyyaml = ">=5.1"
-toml = "*"
-virtualenv = ">=20.0.8"
-
-[[package]]
-name = "py"
-version = "1.11.0"
-description = "library with cross-python path, ini-parsing, io, code, log facilities"
-category = "dev"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-
-[[package]]
-name = "pyct"
-version = "0.4.8"
-description = "Python package common tasks for users (e.g. copy examples, fetch data, ...)"
-category = "main"
-optional = false
-python-versions = ">=2.7"
-
-[package.dependencies]
-param = ">=1.7.0"
-
-[package.extras]
-build = ["param (>=1.7.0)", "setuptools"]
-cmd = ["pyyaml", "requests"]
-doc = ["nbsite", "sphinx-ioam-theme"]
-tests = ["flake8", "pytest"]
+virtualenv = ">=20.10.0"
[[package]]
-name = "Pygments"
-version = "2.13.0"
+name = "pygments"
+version = "2.19.2"
description = "Pygments is a syntax highlighting package written in Python."
-category = "dev"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b"},
+ {file = "pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887"},
+]
[package.extras]
-plugins = ["importlib-metadata"]
+windows-terminal = ["colorama (>=0.4.6)"]
[[package]]
name = "pyparsing"
-version = "3.0.9"
+version = "3.2.3"
description = "pyparsing module - Classes and methods to define and execute parsing grammars"
-category = "main"
optional = false
-python-versions = ">=3.6.8"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf"},
+ {file = "pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be"},
+]
[package.extras]
diagrams = ["jinja2", "railroad-diagrams"]
[[package]]
name = "pytest"
-version = "7.1.3"
+version = "8.4.1"
description = "pytest: simple powerful testing with Python"
-category = "dev"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "pytest-8.4.1-py3-none-any.whl", hash = "sha256:539c70ba6fcead8e78eebbf1115e8b589e7565830d7d006a8723f19ac8a0afb7"},
+ {file = "pytest-8.4.1.tar.gz", hash = "sha256:7c67fd69174877359ed9371ec3af8a3d2b04741818c51e5e99cc1742251fa93c"},
+]
[package.dependencies]
-attrs = ">=19.2.0"
-colorama = {version = "*", markers = "sys_platform == \"win32\""}
-iniconfig = "*"
-packaging = "*"
-pluggy = ">=0.12,<2.0"
-py = ">=1.8.2"
-tomli = ">=1.0.0"
+colorama = {version = ">=0.4", markers = "sys_platform == \"win32\""}
+iniconfig = ">=1"
+packaging = ">=20"
+pluggy = ">=1.5,<2"
+pygments = ">=2.7.2"
[package.extras]
-testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"]
+dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "requests", "setuptools", "xmlschema"]
[[package]]
name = "pytest-cov"
-version = "3.0.0"
+version = "6.2.1"
description = "Pytest plugin for measuring coverage."
-category = "dev"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "pytest_cov-6.2.1-py3-none-any.whl", hash = "sha256:f5bc4c23f42f1cdd23c70b1dab1bbaef4fc505ba950d53e0081d0730dd7e86d5"},
+ {file = "pytest_cov-6.2.1.tar.gz", hash = "sha256:25cc6cc0a5358204b8108ecedc51a9b57b34cc6b8c967cc2c01a4e00d8a67da2"},
+]
[package.dependencies]
-coverage = {version = ">=5.2.1", extras = ["toml"]}
-pytest = ">=4.6"
+coverage = {version = ">=7.5", extras = ["toml"]}
+pluggy = ">=1.2"
+pytest = ">=6.2.5"
[package.extras]
-testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"]
+testing = ["fields", "hunter", "process-tests", "pytest-xdist", "virtualenv"]
[[package]]
name = "python-dateutil"
-version = "2.8.2"
+version = "2.9.0.post0"
description = "Extensions to the standard Python datetime module"
-category = "main"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
+groups = ["main"]
+files = [
+ {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"},
+ {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"},
+]
[package.dependencies]
six = ">=1.5"
[[package]]
name = "pytz"
-version = "2022.2.1"
+version = "2025.2"
description = "World timezone definitions, modern and historical"
-category = "main"
optional = false
python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00"},
+ {file = "pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3"},
+]
[[package]]
name = "pyviz-comms"
-version = "2.2.1"
-description = "Bidirectional communication for the HoloViz ecosystem."
-category = "main"
+version = "3.0.6"
+description = "A JupyterLab extension for rendering HoloViz content."
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "pyviz_comms-3.0.6-py3-none-any.whl", hash = "sha256:4eba6238cd4a7f4add2d11879ce55411785b7d38a7c5dba42c7a0826ca53e6c2"},
+ {file = "pyviz_comms-3.0.6.tar.gz", hash = "sha256:73d66b620390d97959b2c4d8a2c0778d41fe20581be4717f01e46b8fae8c5695"},
+]
[package.dependencies]
param = "*"
[package.extras]
-all = ["flake8", "jupyter-packaging (>=0.7.9,<0.8.0)", "jupyterlab (>=3.0,<4.0)", "keyring", "pytest", "rfc3986", "setuptools (>=40.8.0,<61)", "twine"]
-build = ["jupyter-packaging (>=0.7.9,<0.8.0)", "jupyterlab (>=3.0,<4.0)", "keyring", "rfc3986", "setuptools (>=40.8.0,<61)", "twine"]
+all = ["flake8", "jupyterlab (>=4.0,<5.0)", "keyring", "pytest", "rfc3986", "setuptools (>=40.8.0)", "twine"]
+build = ["jupyterlab (>=4.0,<5.0)", "keyring", "rfc3986", "setuptools (>=40.8.0)", "twine"]
tests = ["flake8", "pytest"]
[[package]]
-name = "PyYAML"
-version = "6.0"
+name = "pyyaml"
+version = "6.0.2"
description = "YAML parser and emitter for Python"
-category = "main"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"},
+ {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"},
+ {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"},
+ {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"},
+ {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"},
+ {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"},
+ {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"},
+ {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"},
+ {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"},
+ {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"},
+ {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"},
+ {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"},
+ {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"},
+ {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"},
+ {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"},
+ {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"},
+ {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"},
+ {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"},
+ {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"},
+ {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"},
+ {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"},
+ {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"},
+ {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"},
+ {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"},
+ {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"},
+ {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"},
+ {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"},
+ {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"},
+ {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"},
+ {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"},
+ {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"},
+ {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"},
+ {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"},
+ {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"},
+ {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"},
+ {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"},
+ {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"},
+ {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"},
+ {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"},
+ {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"},
+ {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"},
+ {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"},
+ {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"},
+ {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"},
+ {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"},
+ {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"},
+ {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"},
+ {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"},
+ {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"},
+ {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"},
+ {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"},
+ {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"},
+ {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"},
+]
[[package]]
name = "requests"
-version = "2.28.1"
+version = "2.32.5"
description = "Python HTTP for Humans."
-category = "main"
optional = false
-python-versions = ">=3.7, <4"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6"},
+ {file = "requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf"},
+]
[package.dependencies]
certifi = ">=2017.4.17"
-charset-normalizer = ">=2,<3"
+charset_normalizer = ">=2,<4"
idna = ">=2.5,<4"
-urllib3 = ">=1.21.1,<1.27"
+urllib3 = ">=1.21.1,<3"
[package.extras]
socks = ["PySocks (>=1.5.6,!=1.5.7)"]
-use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"]
-
-[[package]]
-name = "semantic-version"
-version = "2.3.0"
-description = "A library implementing the 'SemVer' scheme."
-category = "dev"
-optional = false
-python-versions = "*"
-
-[[package]]
-name = "setuptools"
-version = "65.3.0"
-description = "Easily download, build, install, upgrade, and uninstall Python packages"
-category = "main"
-optional = false
-python-versions = ">=3.7"
-
-[package.extras]
-docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"]
-testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mock", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"]
-testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"]
-
-[[package]]
-name = "setuptools-scm"
-version = "6.4.2"
-description = "the blessed package to manage your versions by scm tags"
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.dependencies]
-packaging = ">=20.0"
-setuptools = "*"
-tomli = ">=1.0.0"
-
-[package.extras]
-test = ["pytest (>=6.2)", "virtualenv (>20)"]
-toml = ["setuptools (>=42)"]
+use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"]
[[package]]
name = "six"
-version = "1.16.0"
+version = "1.17.0"
description = "Python 2 and 3 compatibility utilities"
-category = "main"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
-
-[[package]]
-name = "smmap"
-version = "5.0.0"
-description = "A pure Python implementation of a sliding window memory map manager"
-category = "dev"
-optional = false
-python-versions = ">=3.6"
-
-[[package]]
-name = "toml"
-version = "0.10.2"
-description = "Python Library for Tom's Obvious, Minimal Language"
-category = "dev"
optional = false
-python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
+groups = ["main"]
+files = [
+ {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"},
+ {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"},
+]
[[package]]
-name = "tomli"
-version = "2.0.1"
-description = "A lil' TOML parser"
-category = "main"
+name = "sniffio"
+version = "1.3.1"
+description = "Sniff out which async library your code is running under"
optional = false
python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"},
+ {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"},
+]
[[package]]
name = "tornado"
-version = "6.2"
+version = "6.5.2"
description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
-category = "main"
optional = false
-python-versions = ">= 3.7"
+python-versions = ">=3.9"
+groups = ["main"]
+markers = "sys_platform != \"emscripten\""
+files = [
+ {file = "tornado-6.5.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:2436822940d37cde62771cff8774f4f00b3c8024fe482e16ca8387b8a2724db6"},
+ {file = "tornado-6.5.2-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:583a52c7aa94ee046854ba81d9ebb6c81ec0fd30386d96f7640c96dad45a03ef"},
+ {file = "tornado-6.5.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0fe179f28d597deab2842b86ed4060deec7388f1fd9c1b4a41adf8af058907e"},
+ {file = "tornado-6.5.2-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b186e85d1e3536d69583d2298423744740986018e393d0321df7340e71898882"},
+ {file = "tornado-6.5.2-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e792706668c87709709c18b353da1f7662317b563ff69f00bab83595940c7108"},
+ {file = "tornado-6.5.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:06ceb1300fd70cb20e43b1ad8aaee0266e69e7ced38fa910ad2e03285009ce7c"},
+ {file = "tornado-6.5.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:74db443e0f5251be86cbf37929f84d8c20c27a355dd452a5cfa2aada0d001ec4"},
+ {file = "tornado-6.5.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b5e735ab2889d7ed33b32a459cac490eda71a1ba6857b0118de476ab6c366c04"},
+ {file = "tornado-6.5.2-cp39-abi3-win32.whl", hash = "sha256:c6f29e94d9b37a95013bb669616352ddb82e3bfe8326fccee50583caebc8a5f0"},
+ {file = "tornado-6.5.2-cp39-abi3-win_amd64.whl", hash = "sha256:e56a5af51cc30dd2cae649429af65ca2f6571da29504a07995175df14c18f35f"},
+ {file = "tornado-6.5.2-cp39-abi3-win_arm64.whl", hash = "sha256:d6c33dc3672e3a1f3618eb63b7ef4683a7688e7b9e6e8f0d9aa5726360a004af"},
+ {file = "tornado-6.5.2.tar.gz", hash = "sha256:ab53c8f9a0fa351e2c0741284e06c7a45da86afb544133201c5cc8578eb076a0"},
+]
[[package]]
name = "tqdm"
-version = "4.64.1"
+version = "4.67.1"
description = "Fast, Extensible Progress Meter"
-category = "main"
optional = false
-python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2"},
+ {file = "tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2"},
+]
[package.dependencies]
colorama = {version = "*", markers = "platform_system == \"Windows\""}
[package.extras]
-dev = ["py-make (>=0.1.0)", "twine", "wheel"]
+dev = ["nbval", "pytest (>=6)", "pytest-asyncio (>=0.24)", "pytest-cov", "pytest-timeout"]
+discord = ["requests"]
notebook = ["ipywidgets (>=6)"]
slack = ["slack-sdk"]
telegram = ["requests"]
[[package]]
name = "typing-extensions"
-version = "4.3.0"
-description = "Backported and Experimental Type Hints for Python 3.7+"
-category = "main"
+version = "4.14.1"
+description = "Backported and Experimental Type Hints for Python 3.9+"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "typing_extensions-4.14.1-py3-none-any.whl", hash = "sha256:d1e1e3b58374dc93031d6eda2420a48ea44a36c2b4766a4fdeb3710755731d76"},
+ {file = "typing_extensions-4.14.1.tar.gz", hash = "sha256:38b39f4aeeab64884ce9f74c94263ef78f3c22467c8724005483154c26648d36"},
+]
+
+[[package]]
+name = "tzdata"
+version = "2025.2"
+description = "Provider of IANA time zone data"
+optional = false
+python-versions = ">=2"
+groups = ["main"]
+files = [
+ {file = "tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8"},
+ {file = "tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9"},
+]
+
+[[package]]
+name = "uc-micro-py"
+version = "1.0.3"
+description = "Micro subset of unicode data files for linkify-it-py projects."
optional = false
python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "uc-micro-py-1.0.3.tar.gz", hash = "sha256:d321b92cff673ec58027c04015fcaa8bb1e005478643ff4a500882eaab88c48a"},
+ {file = "uc_micro_py-1.0.3-py3-none-any.whl", hash = "sha256:db1dffff340817673d7b466ec86114a9dc0e9d4d9b5ba229d9d60e5c12600cd5"},
+]
+
+[package.extras]
+test = ["coverage", "pytest", "pytest-cov"]
[[package]]
name = "urllib3"
-version = "1.26.12"
+version = "2.5.0"
description = "HTTP library with thread-safe connection pooling, file post, and more."
-category = "main"
optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4"
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc"},
+ {file = "urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760"},
+]
[package.extras]
-brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"]
-secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"]
-socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
+brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""]
+h2 = ["h2 (>=4,<5)"]
+socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
+zstd = ["zstandard (>=0.18.0)"]
[[package]]
name = "virtualenv"
-version = "20.16.5"
+version = "20.34.0"
description = "Virtual Python Environment builder"
-category = "dev"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "virtualenv-20.34.0-py3-none-any.whl", hash = "sha256:341f5afa7eee943e4984a9207c025feedd768baff6753cd660c857ceb3e36026"},
+ {file = "virtualenv-20.34.0.tar.gz", hash = "sha256:44815b2c9dee7ed86e387b842a84f20b93f7f417f95886ca1996a72a4138eb1a"},
+]
[package.dependencies]
-distlib = ">=0.3.5,<1"
-filelock = ">=3.4.1,<4"
-platformdirs = ">=2.4,<3"
+distlib = ">=0.3.7,<1"
+filelock = ">=3.12.2,<4"
+platformdirs = ">=3.9.1,<5"
[package.extras]
-docs = ["proselint (>=0.13)", "sphinx (>=5.1.1)", "sphinx-argparse (>=0.3.1)", "sphinx-rtd-theme (>=1)", "towncrier (>=21.9)"]
-testing = ["coverage (>=6.2)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=21.3)", "pytest (>=7.0.1)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.6.1)", "pytest-randomly (>=3.10.3)", "pytest-timeout (>=2.1)"]
+docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"]
+test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8) ; platform_python_implementation == \"PyPy\" or platform_python_implementation == \"GraalVM\" or platform_python_implementation == \"CPython\" and sys_platform == \"win32\" and python_version >= \"3.13\"", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10) ; platform_python_implementation == \"CPython\""]
+
+[[package]]
+name = "watchfiles"
+version = "1.1.0"
+description = "Simple, modern and high performance file watching and code reload in python."
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "watchfiles-1.1.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:27f30e14aa1c1e91cb653f03a63445739919aef84c8d2517997a83155e7a2fcc"},
+ {file = "watchfiles-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3366f56c272232860ab45c77c3ca7b74ee819c8e1f6f35a7125556b198bbc6df"},
+ {file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8412eacef34cae2836d891836a7fff7b754d6bcac61f6c12ba5ca9bc7e427b68"},
+ {file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:df670918eb7dd719642e05979fc84704af913d563fd17ed636f7c4783003fdcc"},
+ {file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d7642b9bc4827b5518ebdb3b82698ada8c14c7661ddec5fe719f3e56ccd13c97"},
+ {file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:199207b2d3eeaeb80ef4411875a6243d9ad8bc35b07fc42daa6b801cc39cc41c"},
+ {file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a479466da6db5c1e8754caee6c262cd373e6e6c363172d74394f4bff3d84d7b5"},
+ {file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:935f9edd022ec13e447e5723a7d14456c8af254544cefbc533f6dd276c9aa0d9"},
+ {file = "watchfiles-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8076a5769d6bdf5f673a19d51da05fc79e2bbf25e9fe755c47595785c06a8c72"},
+ {file = "watchfiles-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:86b1e28d4c37e89220e924305cd9f82866bb0ace666943a6e4196c5df4d58dcc"},
+ {file = "watchfiles-1.1.0-cp310-cp310-win32.whl", hash = "sha256:d1caf40c1c657b27858f9774d5c0e232089bca9cb8ee17ce7478c6e9264d2587"},
+ {file = "watchfiles-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:a89c75a5b9bc329131115a409d0acc16e8da8dfd5867ba59f1dd66ae7ea8fa82"},
+ {file = "watchfiles-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:c9649dfc57cc1f9835551deb17689e8d44666315f2e82d337b9f07bd76ae3aa2"},
+ {file = "watchfiles-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:406520216186b99374cdb58bc48e34bb74535adec160c8459894884c983a149c"},
+ {file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb45350fd1dc75cd68d3d72c47f5b513cb0578da716df5fba02fff31c69d5f2d"},
+ {file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:11ee4444250fcbeb47459a877e5e80ed994ce8e8d20283857fc128be1715dac7"},
+ {file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bda8136e6a80bdea23e5e74e09df0362744d24ffb8cd59c4a95a6ce3d142f79c"},
+ {file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b915daeb2d8c1f5cee4b970f2e2c988ce6514aace3c9296e58dd64dc9aa5d575"},
+ {file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ed8fc66786de8d0376f9f913c09e963c66e90ced9aa11997f93bdb30f7c872a8"},
+ {file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe4371595edf78c41ef8ac8df20df3943e13defd0efcb732b2e393b5a8a7a71f"},
+ {file = "watchfiles-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b7c5f6fe273291f4d414d55b2c80d33c457b8a42677ad14b4b47ff025d0893e4"},
+ {file = "watchfiles-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7738027989881e70e3723c75921f1efa45225084228788fc59ea8c6d732eb30d"},
+ {file = "watchfiles-1.1.0-cp311-cp311-win32.whl", hash = "sha256:622d6b2c06be19f6e89b1d951485a232e3b59618def88dbeda575ed8f0d8dbf2"},
+ {file = "watchfiles-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:48aa25e5992b61debc908a61ab4d3f216b64f44fdaa71eb082d8b2de846b7d12"},
+ {file = "watchfiles-1.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:00645eb79a3faa70d9cb15c8d4187bb72970b2470e938670240c7998dad9f13a"},
+ {file = "watchfiles-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9dc001c3e10de4725c749d4c2f2bdc6ae24de5a88a339c4bce32300a31ede179"},
+ {file = "watchfiles-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d9ba68ec283153dead62cbe81872d28e053745f12335d037de9cbd14bd1877f5"},
+ {file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:130fc497b8ee68dce163e4254d9b0356411d1490e868bd8790028bc46c5cc297"},
+ {file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50a51a90610d0845a5931a780d8e51d7bd7f309ebc25132ba975aca016b576a0"},
+ {file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc44678a72ac0910bac46fa6a0de6af9ba1355669b3dfaf1ce5f05ca7a74364e"},
+ {file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a543492513a93b001975ae283a51f4b67973662a375a403ae82f420d2c7205ee"},
+ {file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ac164e20d17cc285f2b94dc31c384bc3aa3dd5e7490473b3db043dd70fbccfd"},
+ {file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7590d5a455321e53857892ab8879dce62d1f4b04748769f5adf2e707afb9d4f"},
+ {file = "watchfiles-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:37d3d3f7defb13f62ece99e9be912afe9dd8a0077b7c45ee5a57c74811d581a4"},
+ {file = "watchfiles-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7080c4bb3efd70a07b1cc2df99a7aa51d98685be56be6038c3169199d0a1c69f"},
+ {file = "watchfiles-1.1.0-cp312-cp312-win32.whl", hash = "sha256:cbcf8630ef4afb05dc30107bfa17f16c0896bb30ee48fc24bf64c1f970f3b1fd"},
+ {file = "watchfiles-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:cbd949bdd87567b0ad183d7676feb98136cde5bb9025403794a4c0db28ed3a47"},
+ {file = "watchfiles-1.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:0a7d40b77f07be87c6faa93d0951a0fcd8cbca1ddff60a1b65d741bac6f3a9f6"},
+ {file = "watchfiles-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:5007f860c7f1f8df471e4e04aaa8c43673429047d63205d1630880f7637bca30"},
+ {file = "watchfiles-1.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:20ecc8abbd957046f1fe9562757903f5eaf57c3bce70929fda6c7711bb58074a"},
+ {file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2f0498b7d2a3c072766dba3274fe22a183dbea1f99d188f1c6c72209a1063dc"},
+ {file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:239736577e848678e13b201bba14e89718f5c2133dfd6b1f7846fa1b58a8532b"},
+ {file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eff4b8d89f444f7e49136dc695599a591ff769300734446c0a86cba2eb2f9895"},
+ {file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12b0a02a91762c08f7264e2e79542f76870c3040bbc847fb67410ab81474932a"},
+ {file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:29e7bc2eee15cbb339c68445959108803dc14ee0c7b4eea556400131a8de462b"},
+ {file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9481174d3ed982e269c090f780122fb59cee6c3796f74efe74e70f7780ed94c"},
+ {file = "watchfiles-1.1.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:80f811146831c8c86ab17b640801c25dc0a88c630e855e2bef3568f30434d52b"},
+ {file = "watchfiles-1.1.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:60022527e71d1d1fda67a33150ee42869042bce3d0fcc9cc49be009a9cded3fb"},
+ {file = "watchfiles-1.1.0-cp313-cp313-win32.whl", hash = "sha256:32d6d4e583593cb8576e129879ea0991660b935177c0f93c6681359b3654bfa9"},
+ {file = "watchfiles-1.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:f21af781a4a6fbad54f03c598ab620e3a77032c5878f3d780448421a6e1818c7"},
+ {file = "watchfiles-1.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:5366164391873ed76bfdf618818c82084c9db7fac82b64a20c44d335eec9ced5"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:17ab167cca6339c2b830b744eaf10803d2a5b6683be4d79d8475d88b4a8a4be1"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:328dbc9bff7205c215a7807da7c18dce37da7da718e798356212d22696404339"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7208ab6e009c627b7557ce55c465c98967e8caa8b11833531fdf95799372633"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a8f6f72974a19efead54195bc9bed4d850fc047bb7aa971268fd9a8387c89011"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d181ef50923c29cf0450c3cd47e2f0557b62218c50b2ab8ce2ecaa02bd97e670"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adb4167043d3a78280d5d05ce0ba22055c266cf8655ce942f2fb881262ff3cdf"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c5701dc474b041e2934a26d31d39f90fac8a3dee2322b39f7729867f932b1d4"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b067915e3c3936966a8607f6fe5487df0c9c4afb85226613b520890049deea20"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:9c733cda03b6d636b4219625a4acb5c6ffb10803338e437fb614fef9516825ef"},
+ {file = "watchfiles-1.1.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:cc08ef8b90d78bfac66f0def80240b0197008e4852c9f285907377b2947ffdcb"},
+ {file = "watchfiles-1.1.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:9974d2f7dc561cce3bb88dfa8eb309dab64c729de85fba32e98d75cf24b66297"},
+ {file = "watchfiles-1.1.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c68e9f1fcb4d43798ad8814c4c1b61547b014b667216cb754e606bfade587018"},
+ {file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95ab1594377effac17110e1352989bdd7bdfca9ff0e5eeccd8c69c5389b826d0"},
+ {file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fba9b62da882c1be1280a7584ec4515d0a6006a94d6e5819730ec2eab60ffe12"},
+ {file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3434e401f3ce0ed6b42569128b3d1e3af773d7ec18751b918b89cd49c14eaafb"},
+ {file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa257a4d0d21fcbca5b5fcba9dca5a78011cb93c0323fb8855c6d2dfbc76eb77"},
+ {file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7fd1b3879a578a8ec2076c7961076df540b9af317123f84569f5a9ddee64ce92"},
+ {file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62cc7a30eeb0e20ecc5f4bd113cd69dcdb745a07c68c0370cea919f373f65d9e"},
+ {file = "watchfiles-1.1.0-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:891c69e027748b4a73847335d208e374ce54ca3c335907d381fde4e41661b13b"},
+ {file = "watchfiles-1.1.0-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:12fe8eaffaf0faa7906895b4f8bb88264035b3f0243275e0bf24af0436b27259"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:bfe3c517c283e484843cb2e357dd57ba009cff351edf45fb455b5fbd1f45b15f"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a9ccbf1f129480ed3044f540c0fdbc4ee556f7175e5ab40fe077ff6baf286d4e"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba0e3255b0396cac3cc7bbace76404dd72b5438bf0d8e7cefa2f79a7f3649caa"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4281cd9fce9fc0a9dbf0fc1217f39bf9cf2b4d315d9626ef1d4e87b84699e7e8"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d2404af8db1329f9a3c9b79ff63e0ae7131986446901582067d9304ae8aaf7f"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e78b6ed8165996013165eeabd875c5dfc19d41b54f94b40e9fff0eb3193e5e8e"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:249590eb75ccc117f488e2fabd1bfa33c580e24b96f00658ad88e38844a040bb"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d05686b5487cfa2e2c28ff1aa370ea3e6c5accfe6435944ddea1e10d93872147"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:d0e10e6f8f6dc5762adee7dece33b722282e1f59aa6a55da5d493a97282fedd8"},
+ {file = "watchfiles-1.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:af06c863f152005c7592df1d6a7009c836a247c9d8adb78fef8575a5a98699db"},
+ {file = "watchfiles-1.1.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:865c8e95713744cf5ae261f3067861e9da5f1370ba91fc536431e29b418676fa"},
+ {file = "watchfiles-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:42f92befc848bb7a19658f21f3e7bae80d7d005d13891c62c2cd4d4d0abb3433"},
+ {file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa0cc8365ab29487eb4f9979fd41b22549853389e22d5de3f134a6796e1b05a4"},
+ {file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:90ebb429e933645f3da534c89b29b665e285048973b4d2b6946526888c3eb2c7"},
+ {file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c588c45da9b08ab3da81d08d7987dae6d2a3badd63acdb3e206a42dbfa7cb76f"},
+ {file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7c55b0f9f68590115c25272b06e63f0824f03d4fc7d6deed43d8ad5660cabdbf"},
+ {file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd17a1e489f02ce9117b0de3c0b1fab1c3e2eedc82311b299ee6b6faf6c23a29"},
+ {file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da71945c9ace018d8634822f16cbc2a78323ef6c876b1d34bbf5d5222fd6a72e"},
+ {file = "watchfiles-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:51556d5004887045dba3acdd1fdf61dddea2be0a7e18048b5e853dcd37149b86"},
+ {file = "watchfiles-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04e4ed5d1cd3eae68c89bcc1a485a109f39f2fd8de05f705e98af6b5f1861f1f"},
+ {file = "watchfiles-1.1.0-cp39-cp39-win32.whl", hash = "sha256:c600e85f2ffd9f1035222b1a312aff85fd11ea39baff1d705b9b047aad2ce267"},
+ {file = "watchfiles-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:3aba215958d88182e8d2acba0fdaf687745180974946609119953c0e112397dc"},
+ {file = "watchfiles-1.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3a6fd40bbb50d24976eb275ccb55cd1951dfb63dbc27cae3066a6ca5f4beabd5"},
+ {file = "watchfiles-1.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9f811079d2f9795b5d48b55a37aa7773680a5659afe34b54cc1d86590a51507d"},
+ {file = "watchfiles-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2726d7bfd9f76158c84c10a409b77a320426540df8c35be172444394b17f7ea"},
+ {file = "watchfiles-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df32d59cb9780f66d165a9a7a26f19df2c7d24e3bd58713108b41d0ff4f929c6"},
+ {file = "watchfiles-1.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:0ece16b563b17ab26eaa2d52230c9a7ae46cf01759621f4fbbca280e438267b3"},
+ {file = "watchfiles-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:51b81e55d40c4b4aa8658427a3ee7ea847c591ae9e8b81ef94a90b668999353c"},
+ {file = "watchfiles-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2bcdc54ea267fe72bfc7d83c041e4eb58d7d8dc6f578dfddb52f037ce62f432"},
+ {file = "watchfiles-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:923fec6e5461c42bd7e3fd5ec37492c6f3468be0499bc0707b4bbbc16ac21792"},
+ {file = "watchfiles-1.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7b3443f4ec3ba5aa00b0e9fa90cf31d98321cbff8b925a7c7b84161619870bc9"},
+ {file = "watchfiles-1.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:7049e52167fc75fc3cc418fc13d39a8e520cbb60ca08b47f6cedb85e181d2f2a"},
+ {file = "watchfiles-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54062ef956807ba806559b3c3d52105ae1827a0d4ab47b621b31132b6b7e2866"},
+ {file = "watchfiles-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a7bd57a1bb02f9d5c398c0c1675384e7ab1dd39da0ca50b7f09af45fa435277"},
+ {file = "watchfiles-1.1.0.tar.gz", hash = "sha256:693ed7ec72cbfcee399e92c895362b6e66d63dac6b91e2c11ae03d10d503e575"},
+]
+
+[package.dependencies]
+anyio = ">=3.0.0"
[[package]]
name = "webencodings"
version = "0.5.1"
description = "Character encoding aliases for legacy web content"
-category = "main"
optional = false
python-versions = "*"
-
-[[package]]
-name = "Werkzeug"
-version = "2.2.2"
-description = "The comprehensive WSGI web application library."
-category = "dev"
-optional = false
-python-versions = ">=3.7"
-
-[package.dependencies]
-MarkupSafe = ">=2.1.1"
-
-[package.extras]
-watchdog = ["watchdog"]
-
-[[package]]
-name = "wheel"
-version = "0.37.1"
-description = "A built-package format for Python"
-category = "dev"
-optional = false
-python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
-
-[package.extras]
-test = ["pytest (>=3.0.0)", "pytest-cov"]
+groups = ["main"]
+files = [
+ {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
+ {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
+]
[[package]]
name = "wordcloud"
-version = "1.8.2.2"
+version = "1.9.4"
description = "A little word cloud generator"
-category = "main"
optional = false
-python-versions = "*"
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "wordcloud-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:61a84e7311fce8415943edcb7b2ba65b4bfec1dc6dff8fe5a8ea76e278447fb2"},
+ {file = "wordcloud-1.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e8752750726f31385f364823d3ef1d9c8ec829e5c07706c36beb40679945c71"},
+ {file = "wordcloud-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:990dfd6dd43a1c7fa156be865eb98aba167a986b65f56cbf50e24772107fcd70"},
+ {file = "wordcloud-1.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a70fe8999cd63aec64daa0377b720be6e5ff344963b828caeb4c2a081599a3a0"},
+ {file = "wordcloud-1.9.4-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:37dcd5500cc2ea02950739390e89e2efa6624c2f54b5e2df1ee961fce685b2d7"},
+ {file = "wordcloud-1.9.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5cc5c902dc2492b9fc0e29a1f5c688422d7e6eb9e5c0e43f0331d1c8e1341ba"},
+ {file = "wordcloud-1.9.4-cp310-cp310-win32.whl", hash = "sha256:c20fbb51af2046c940b4fead4bafffc30b4191f5fb477c3af844446d8956bfd4"},
+ {file = "wordcloud-1.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:61a153e76d73c72f5cc6c89ee80ddad70758a207c3c6b1d86be8635ec70164f1"},
+ {file = "wordcloud-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:af168eeaed67a675f35b5668a7804c4d64f8e4f62a273b909eb5cc39efc4c294"},
+ {file = "wordcloud-1.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3092bf85cb20158c8b90d78650dc0226985109ac6fe13a0086ac47b9581b62ce"},
+ {file = "wordcloud-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddfb852f551681f5e33feb934505e060952b6aa98aaa48c781cdbf101f84e7cc"},
+ {file = "wordcloud-1.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57ad8064a634a4870fcd00a9694c0a7839c6dfbac3d32522c69d5e1e9cbfd911"},
+ {file = "wordcloud-1.9.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ea14858973ad8561a20a5475eb8d7ad33622bc5f27c60206fbb3e10a036cee26"},
+ {file = "wordcloud-1.9.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b27759f12dd235468ff8c1df875b106b23dbf2c74aae05cdcdc3ccd8e23ea89c"},
+ {file = "wordcloud-1.9.4-cp311-cp311-win32.whl", hash = "sha256:0ac3d87627022fb8cce17297298be96c91185edd55ecf8906f89f981b55974f0"},
+ {file = "wordcloud-1.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:85368249df056527f1b64e80e68636abb61f0f6bd2d1c430894d2af1feea7f73"},
+ {file = "wordcloud-1.9.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3910494ce5acb27731fd5678d146e8aa8f588d5fdb455810c817ff4b84ee0f67"},
+ {file = "wordcloud-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b1c29a0089ee90778700cc96305fa830a6a5bbb342eaaa59d6ac8d37a9b232f"},
+ {file = "wordcloud-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f369ae7bef16341c2bb208e658d5e4c56517046eb6176f89ac95525eaf8ace09"},
+ {file = "wordcloud-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9ec6ffba61ca20123e7c09103a5692bbc3163f75ee0bdc7893e80e0e2786ccd2"},
+ {file = "wordcloud-1.9.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:cdc4aac2bcce77fd91dbfe91db5a8c0cdc239e10d8954356d2ebf79a3b43646c"},
+ {file = "wordcloud-1.9.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e4942fbed48a88a0c42c5b0a057651fc09d26b31be8b6c069adaaa5051836040"},
+ {file = "wordcloud-1.9.4-cp312-cp312-win32.whl", hash = "sha256:96b801fe4b2aa39bb6c5e68b4a74c81fd8996dd5fb5cea31fda518dc5f77ad82"},
+ {file = "wordcloud-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:360977705d0808a1795fcbe98afb5dc4833cb4bb8e421cbb10e93ef0bce816ff"},
+ {file = "wordcloud-1.9.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:88c4c99f43b13df0e812fac0e4680cca2afd3ce16ade506812127ed7c7b9d132"},
+ {file = "wordcloud-1.9.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2367ec70b2f195c278f91caf4674871ee9218eb57250e01a02b986d34e55f88e"},
+ {file = "wordcloud-1.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6104a52936886dbc785844ab6986b5321a312238abb242ee4062c7b3fdcca7c"},
+ {file = "wordcloud-1.9.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81bbe75b2725730bf5cbabfe86a5c38960e7ce1166f76ba7001964d8de50b3a7"},
+ {file = "wordcloud-1.9.4-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:a936b8e03c32cc84c99ad8f1bdaf261dfef6c44d31ca5b0c7d0df147220dbb3c"},
+ {file = "wordcloud-1.9.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:046300566df97b48640bd3efd94957a56941ada98cc23f811bc3f9b6a0ac1350"},
+ {file = "wordcloud-1.9.4-cp313-cp313-win32.whl", hash = "sha256:22357990a01d87579dbd38a06c2a5c7b601179c4e17517b1b8f73d25faa6a5ed"},
+ {file = "wordcloud-1.9.4-cp313-cp313-win_amd64.whl", hash = "sha256:8c9a5af2fbcf029a19e827adbee58e86efe7536dca7a42380a8601113a86069b"},
+ {file = "wordcloud-1.9.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:42affa75c1b033cb0a0afb674f653c4af16d51d97a0852c5770b659b903d9af5"},
+ {file = "wordcloud-1.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e0876722c35cf4d5d7717ab81ba98b946e07b0e869252248fdd9ea1fd6c977cc"},
+ {file = "wordcloud-1.9.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:489079ef173fe83ccff8baffd7a3c2d5fedfd31221c25ad21b4de770ea37b49f"},
+ {file = "wordcloud-1.9.4-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:3f3dc2dacca48eac9b130a8938b473db81cfbeeb1a738530a7098913941a8211"},
+ {file = "wordcloud-1.9.4-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:2e509c4588ae2ce47ee5cc5cf353422e7f7ecc38f450998654ed50565c8a550d"},
+ {file = "wordcloud-1.9.4-cp37-cp37m-win32.whl", hash = "sha256:8009f53ba0c3b2d6f2b1dad83e0fb165ebcdfbd000ce62ebe0917106f51d975d"},
+ {file = "wordcloud-1.9.4-cp37-cp37m-win_amd64.whl", hash = "sha256:30b1a59b9073eaaa4f2b0f27d5b6b6c3eb6aaa3a6e0b3dbb2220036b25b37dac"},
+ {file = "wordcloud-1.9.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8a685babefe032716c1a00b7d8cec3f6bfdc1c89fd839578432fc53824a02fea"},
+ {file = "wordcloud-1.9.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b78b9fb292a243cf8fcdf63b9cc1fd157ec6abbf1a6e675303668b85e948f616"},
+ {file = "wordcloud-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f51ab42c00bc4782ab45701de45226a269ca0850df14e1bd63a60da73271724e"},
+ {file = "wordcloud-1.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38ee69d9404504cf2419d60c3017af7ab9e88f4ba6cf47bc1c96b2d5e58ef513"},
+ {file = "wordcloud-1.9.4-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9955223708f196c1e431ae3b86074409bc256c5868e4f50eb9c36c6f06f8b1a3"},
+ {file = "wordcloud-1.9.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3585ab8f4f09f1508f2d351ed48f9b56472ae26eaf6e2d2e76e975abd715d7a2"},
+ {file = "wordcloud-1.9.4-cp38-cp38-win32.whl", hash = "sha256:d7d0b89c2ada0e65d84a6ebbdd8d36876b5da1a143cce2f7dcdaff6714232d24"},
+ {file = "wordcloud-1.9.4-cp38-cp38-win_amd64.whl", hash = "sha256:bd7caefe91d4084c1608d816052eeb605d9a7aee0c908f3a9d7421ee6363bde0"},
+ {file = "wordcloud-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e5b2f7195adef0a071dc24a568d8a7715bc5cf5d752b4560f51da3aa4467dcf8"},
+ {file = "wordcloud-1.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:34843fa49135c4ed3739dea050696e707fd00e7335ee4ed62c33639589f90adf"},
+ {file = "wordcloud-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6570cc4e48e8e951d24ef6599cd8bf7ff405fbe995ff6d596bcdfa290a6206a8"},
+ {file = "wordcloud-1.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:17f944805a17b8343eb877c9aa1dc9e5339eb14c02dd00ec80feccea899bbf81"},
+ {file = "wordcloud-1.9.4-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:7c1cd2a6ef876f5f9fe0255e44f131a6113f883447ed1cf8bdb86f569603bac9"},
+ {file = "wordcloud-1.9.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2b129584327ba21d05869fcf9495f10f7b31a34a580c431c4942a71ce2317e79"},
+ {file = "wordcloud-1.9.4-cp39-cp39-win32.whl", hash = "sha256:526dfd822600f158210a191a59cc4bdcaaa1ff05ab2aa199040d857a518b1db6"},
+ {file = "wordcloud-1.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:ac32b851a19b7d2a9ee5e0aebc8210bf16eadc42c5c0da82e36d447552c8ec48"},
+ {file = "wordcloud-1.9.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f733cca468eae79af83cdda1de2434f1799cefef461ed892e7679d5a4c929fa1"},
+ {file = "wordcloud-1.9.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a99f96efe5983c6eed17abb8766ced713ddf18b26450da74addc91570922e62"},
+ {file = "wordcloud-1.9.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80773ec6a9caa2048602bc347151e3b6e68e1d8fab148dfd0d2e7d4302ce5c01"},
+ {file = "wordcloud-1.9.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ca95392bba150190cca8df4a97854b554bdeb28007f28bf4698bd7e1af91b310"},
+ {file = "wordcloud-1.9.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:eed94b42676f4cfa9b9bdac777e3a1f046b16250216dd8ddcb583c4b6e4b1286"},
+ {file = "wordcloud-1.9.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b38aae2ff7aa10ad00d57a5b87ed4a573ef04dbc9119d4a304349c9cb3e03b6e"},
+ {file = "wordcloud-1.9.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3057be0d071afd57afb9be84fec767abdd78eac6396ead0f0f55c6775170945"},
+ {file = "wordcloud-1.9.4-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:9c39351d2cffc15e3794f7afab78e9135d700f61c5b51904c55d9f3729d1a0df"},
+ {file = "wordcloud-1.9.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:914745f0312d248c1a0e1f16ae7b3ce82f78924a2b050ca912d2453c62586da4"},
+ {file = "wordcloud-1.9.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:885d51d20cc7b0dad2306fb76b867de20e759e005a1a6e183f3865b5e5f53985"},
+ {file = "wordcloud-1.9.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:61fc126ed9ce8d55bf20acbdc00284f5a6da66900197a2dd7b62c5ac37585ac5"},
+ {file = "wordcloud-1.9.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:c7b8536955f5026b0587ff829265392185b6b4bc923f2ed933c805fcac412b28"},
+ {file = "wordcloud-1.9.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6a30ed8aa50b98edb113f72ef619581c221ba3678adeeed88345263c90092561"},
+ {file = "wordcloud-1.9.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a62627e5b081b23a4586104d4b01d064db7b53342ae123b511326585eaf7433c"},
+ {file = "wordcloud-1.9.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e137493365770f59655c7308ff76addc95ada2c6bd50ac119e4c33091e2e4e08"},
+ {file = "wordcloud-1.9.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:665f8e7de3dcc1e43aa5bdd9560d56ed51026ba638a33472eede2b9051108adb"},
+ {file = "wordcloud-1.9.4.tar.gz", hash = "sha256:b273d8a5ded97d3ead904046b49464dcb71119ee79df875072a4c105cadd347a"},
+]
[package.dependencies]
matplotlib = "*"
@@ -811,666 +1950,18 @@ numpy = ">=1.6.1"
pillow = "*"
[[package]]
-name = "yapf"
-version = "0.32.0"
-description = "A formatter for Python code."
-category = "dev"
+name = "xyzservices"
+version = "2025.4.0"
+description = "Source of XYZ tiles providers"
optional = false
-python-versions = "*"
-
-[[package]]
-name = "zipp"
-version = "3.8.1"
-description = "Backport of pathlib-compatible object wrapper for zip files"
-category = "main"
-optional = false
-python-versions = ">=3.7"
-
-[package.extras]
-docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"]
-testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"]
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "xyzservices-2025.4.0-py3-none-any.whl", hash = "sha256:8d4db9a59213ccb4ce1cf70210584f30b10795bff47627cdfb862b39ff6e10c9"},
+ {file = "xyzservices-2025.4.0.tar.gz", hash = "sha256:6fe764713648fac53450fbc61a3c366cb6ae5335a1b2ae0c3796b495de3709d8"},
+]
[metadata]
-lock-version = "1.1"
-python-versions = "^3.8"
-content-hash = "5741d4a52968cf73718a09bd924b33a609374fffab673f39055d9b6f33d7657d"
-
-[metadata.files]
-astunparse = [
- {file = "astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8"},
- {file = "astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872"},
-]
-attrs = [
- {file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"},
- {file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"},
-]
-bleach = [
- {file = "bleach-5.0.1-py3-none-any.whl", hash = "sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a"},
- {file = "bleach-5.0.1.tar.gz", hash = "sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c"},
-]
-bokeh = [
- {file = "bokeh-2.4.3-py3-none-any.whl", hash = "sha256:104d2f0a4ca7774ee4b11e545aa34ff76bf3e2ad6de0d33944361981b65da420"},
- {file = "bokeh-2.4.3.tar.gz", hash = "sha256:ef33801161af379665ab7a34684f2209861e3aefd5c803a21fbbb99d94874b03"},
-]
-certifi = [
- {file = "certifi-2022.6.15.1-py3-none-any.whl", hash = "sha256:43dadad18a7f168740e66944e4fa82c6611848ff9056ad910f8f7a3e46ab89e0"},
- {file = "certifi-2022.6.15.1.tar.gz", hash = "sha256:cffdcd380919da6137f76633531a5817e3a9f268575c128249fb637e4f9e73fb"},
-]
-cfgv = [
- {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"},
- {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"},
-]
-charset-normalizer = [
- {file = "charset-normalizer-2.1.1.tar.gz", hash = "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845"},
- {file = "charset_normalizer-2.1.1-py3-none-any.whl", hash = "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f"},
-]
-colorama = [
- {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
- {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
-]
-coverage = [
- {file = "coverage-6.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7b4da9bafad21ea45a714d3ea6f3e1679099e420c8741c74905b92ee9bfa7cc"},
- {file = "coverage-6.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fde17bc42e0716c94bf19d92e4c9f5a00c5feb401f5bc01101fdf2a8b7cacf60"},
- {file = "coverage-6.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdbb0d89923c80dbd435b9cf8bba0ff55585a3cdb28cbec65f376c041472c60d"},
- {file = "coverage-6.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:67f9346aeebea54e845d29b487eb38ec95f2ecf3558a3cffb26ee3f0dcc3e760"},
- {file = "coverage-6.4.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42c499c14efd858b98c4e03595bf914089b98400d30789511577aa44607a1b74"},
- {file = "coverage-6.4.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c35cca192ba700979d20ac43024a82b9b32a60da2f983bec6c0f5b84aead635c"},
- {file = "coverage-6.4.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:9cc4f107009bca5a81caef2fca843dbec4215c05e917a59dec0c8db5cff1d2aa"},
- {file = "coverage-6.4.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5f444627b3664b80d078c05fe6a850dd711beeb90d26731f11d492dcbadb6973"},
- {file = "coverage-6.4.4-cp310-cp310-win32.whl", hash = "sha256:66e6df3ac4659a435677d8cd40e8eb1ac7219345d27c41145991ee9bf4b806a0"},
- {file = "coverage-6.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:35ef1f8d8a7a275aa7410d2f2c60fa6443f4a64fae9be671ec0696a68525b875"},
- {file = "coverage-6.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c1328d0c2f194ffda30a45f11058c02410e679456276bfa0bbe0b0ee87225fac"},
- {file = "coverage-6.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:61b993f3998ee384935ee423c3d40894e93277f12482f6e777642a0141f55782"},
- {file = "coverage-6.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d5dd4b8e9cd0deb60e6fcc7b0647cbc1da6c33b9e786f9c79721fd303994832f"},
- {file = "coverage-6.4.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7026f5afe0d1a933685d8f2169d7c2d2e624f6255fb584ca99ccca8c0e966fd7"},
- {file = "coverage-6.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9c7b9b498eb0c0d48b4c2abc0e10c2d78912203f972e0e63e3c9dc21f15abdaa"},
- {file = "coverage-6.4.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:ee2b2fb6eb4ace35805f434e0f6409444e1466a47f620d1d5763a22600f0f892"},
- {file = "coverage-6.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ab066f5ab67059d1f1000b5e1aa8bbd75b6ed1fc0014559aea41a9eb66fc2ce0"},
- {file = "coverage-6.4.4-cp311-cp311-win32.whl", hash = "sha256:9d6e1f3185cbfd3d91ac77ea065d85d5215d3dfa45b191d14ddfcd952fa53796"},
- {file = "coverage-6.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:e3d3c4cc38b2882f9a15bafd30aec079582b819bec1b8afdbde8f7797008108a"},
- {file = "coverage-6.4.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a095aa0a996ea08b10580908e88fbaf81ecf798e923bbe64fb98d1807db3d68a"},
- {file = "coverage-6.4.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef6f44409ab02e202b31a05dd6666797f9de2aa2b4b3534e9d450e42dea5e817"},
- {file = "coverage-6.4.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b7101938584d67e6f45f0015b60e24a95bf8dea19836b1709a80342e01b472f"},
- {file = "coverage-6.4.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14a32ec68d721c3d714d9b105c7acf8e0f8a4f4734c811eda75ff3718570b5e3"},
- {file = "coverage-6.4.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6a864733b22d3081749450466ac80698fe39c91cb6849b2ef8752fd7482011f3"},
- {file = "coverage-6.4.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:08002f9251f51afdcc5e3adf5d5d66bb490ae893d9e21359b085f0e03390a820"},
- {file = "coverage-6.4.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a3b2752de32c455f2521a51bd3ffb53c5b3ae92736afde67ce83477f5c1dd928"},
- {file = "coverage-6.4.4-cp37-cp37m-win32.whl", hash = "sha256:f855b39e4f75abd0dfbcf74a82e84ae3fc260d523fcb3532786bcbbcb158322c"},
- {file = "coverage-6.4.4-cp37-cp37m-win_amd64.whl", hash = "sha256:ee6ae6bbcac0786807295e9687169fba80cb0617852b2fa118a99667e8e6815d"},
- {file = "coverage-6.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:564cd0f5b5470094df06fab676c6d77547abfdcb09b6c29c8a97c41ad03b103c"},
- {file = "coverage-6.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cbbb0e4cd8ddcd5ef47641cfac97d8473ab6b132dd9a46bacb18872828031685"},
- {file = "coverage-6.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6113e4df2fa73b80f77663445be6d567913fb3b82a86ceb64e44ae0e4b695de1"},
- {file = "coverage-6.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8d032bfc562a52318ae05047a6eb801ff31ccee172dc0d2504614e911d8fa83e"},
- {file = "coverage-6.4.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e431e305a1f3126477abe9a184624a85308da8edf8486a863601d58419d26ffa"},
- {file = "coverage-6.4.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:cf2afe83a53f77aec067033199797832617890e15bed42f4a1a93ea24794ae3e"},
- {file = "coverage-6.4.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:783bc7c4ee524039ca13b6d9b4186a67f8e63d91342c713e88c1865a38d0892a"},
- {file = "coverage-6.4.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ff934ced84054b9018665ca3967fc48e1ac99e811f6cc99ea65978e1d384454b"},
- {file = "coverage-6.4.4-cp38-cp38-win32.whl", hash = "sha256:e1fabd473566fce2cf18ea41171d92814e4ef1495e04471786cbc943b89a3781"},
- {file = "coverage-6.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:4179502f210ebed3ccfe2f78bf8e2d59e50b297b598b100d6c6e3341053066a2"},
- {file = "coverage-6.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:98c0b9e9b572893cdb0a00e66cf961a238f8d870d4e1dc8e679eb8bdc2eb1b86"},
- {file = "coverage-6.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fc600f6ec19b273da1d85817eda339fb46ce9eef3e89f220055d8696e0a06908"},
- {file = "coverage-6.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a98d6bf6d4ca5c07a600c7b4e0c5350cd483c85c736c522b786be90ea5bac4f"},
- {file = "coverage-6.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01778769097dbd705a24e221f42be885c544bb91251747a8a3efdec6eb4788f2"},
- {file = "coverage-6.4.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfa0b97eb904255e2ab24166071b27408f1f69c8fbda58e9c0972804851e0558"},
- {file = "coverage-6.4.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:fcbe3d9a53e013f8ab88734d7e517eb2cd06b7e689bedf22c0eb68db5e4a0a19"},
- {file = "coverage-6.4.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:15e38d853ee224e92ccc9a851457fb1e1f12d7a5df5ae44544ce7863691c7a0d"},
- {file = "coverage-6.4.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6913dddee2deff8ab2512639c5168c3e80b3ebb0f818fed22048ee46f735351a"},
- {file = "coverage-6.4.4-cp39-cp39-win32.whl", hash = "sha256:354df19fefd03b9a13132fa6643527ef7905712109d9c1c1903f2133d3a4e145"},
- {file = "coverage-6.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:1238b08f3576201ebf41f7c20bf59baa0d05da941b123c6656e42cdb668e9827"},
- {file = "coverage-6.4.4-pp36.pp37.pp38-none-any.whl", hash = "sha256:f67cf9f406cf0d2f08a3515ce2db5b82625a7257f88aad87904674def6ddaec1"},
- {file = "coverage-6.4.4.tar.gz", hash = "sha256:e16c45b726acb780e1e6f88b286d3c10b3914ab03438f32117c4aa52d7f30d58"},
-]
-cycler = [
- {file = "cycler-0.11.0-py3-none-any.whl", hash = "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3"},
- {file = "cycler-0.11.0.tar.gz", hash = "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f"},
-]
-distlib = [
- {file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"},
- {file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"},
-]
-docopt = [
- {file = "docopt-0.6.1.tar.gz", hash = "sha256:71ad940a773fbc23be6093e9476ad57b2ecec446946a28d30127501f3b29aa35"},
-]
-filelock = [
- {file = "filelock-3.8.0-py3-none-any.whl", hash = "sha256:617eb4e5eedc82fc5f47b6d61e4d11cb837c56cb4544e39081099fa17ad109d4"},
- {file = "filelock-3.8.0.tar.gz", hash = "sha256:55447caa666f2198c5b6b13a26d2084d26fa5b115c00d065664b2124680c4edc"},
-]
-Flask = [
- {file = "Flask-0.10.1.tar.gz", hash = "sha256:4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4563373"},
-]
-fonttools = [
- {file = "fonttools-4.37.1-py3-none-any.whl", hash = "sha256:fff6b752e326c15756c819fe2fe7ceab69f96a1dbcfe8911d0941cdb49905007"},
- {file = "fonttools-4.37.1.zip", hash = "sha256:4606e1a88ee1f6699d182fea9511bd9a8a915d913eab4584e5226da1180fcce7"},
-]
-gitdb = [
- {file = "gitdb-4.0.9-py3-none-any.whl", hash = "sha256:8033ad4e853066ba6ca92050b9df2f89301b8fc8bf7e9324d412a63f8bf1a8fd"},
- {file = "gitdb-4.0.9.tar.gz", hash = "sha256:bac2fd45c0a1c9cf619e63a90d62bdc63892ef92387424b855792a6cabe789aa"},
-]
-GitPython = [
- {file = "GitPython-0.3.2.RC1.tar.gz", hash = "sha256:fd6786684a0d0dd7ebb961da754e3312fafe0c8e88f55ceb09858aa0af6094e0"},
-]
-identify = [
- {file = "identify-2.5.5-py2.py3-none-any.whl", hash = "sha256:ef78c0d96098a3b5fe7720be4a97e73f439af7cf088ebf47b620aeaa10fadf97"},
- {file = "identify-2.5.5.tar.gz", hash = "sha256:322a5699daecf7c6fd60e68852f36f2ecbb6a36ff6e6e973e0d2bb6fca203ee6"},
-]
-idna = [
- {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"},
- {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
-]
-importlib-metadata = [
- {file = "importlib_metadata-4.12.0-py3-none-any.whl", hash = "sha256:7401a975809ea1fdc658c3aa4f78cc2195a0e019c5cbc4c06122884e9ae80c23"},
- {file = "importlib_metadata-4.12.0.tar.gz", hash = "sha256:637245b8bab2b6502fcbc752cc4b7a6f6243bb02b31c5c26156ad103d3d45670"},
-]
-iniconfig = [
- {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
- {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
-]
-itsdangerous = [
- {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"},
- {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"},
-]
-Jinja2 = [
- {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"},
- {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"},
-]
-kiwisolver = [
- {file = "kiwisolver-1.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2f5e60fabb7343a836360c4f0919b8cd0d6dbf08ad2ca6b9cf90bf0c76a3c4f6"},
- {file = "kiwisolver-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:10ee06759482c78bdb864f4109886dff7b8a56529bc1609d4f1112b93fe6423c"},
- {file = "kiwisolver-1.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c79ebe8f3676a4c6630fd3f777f3cfecf9289666c84e775a67d1d358578dc2e3"},
- {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abbe9fa13da955feb8202e215c4018f4bb57469b1b78c7a4c5c7b93001699938"},
- {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7577c1987baa3adc4b3c62c33bd1118c3ef5c8ddef36f0f2c950ae0b199e100d"},
- {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8ad8285b01b0d4695102546b342b493b3ccc6781fc28c8c6a1bb63e95d22f09"},
- {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8ed58b8acf29798b036d347791141767ccf65eee7f26bde03a71c944449e53de"},
- {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a68b62a02953b9841730db7797422f983935aeefceb1679f0fc85cbfbd311c32"},
- {file = "kiwisolver-1.4.4-cp310-cp310-win32.whl", hash = "sha256:e92a513161077b53447160b9bd8f522edfbed4bd9759e4c18ab05d7ef7e49408"},
- {file = "kiwisolver-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:3fe20f63c9ecee44560d0e7f116b3a747a5d7203376abeea292ab3152334d004"},
- {file = "kiwisolver-1.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e0ea21f66820452a3f5d1655f8704a60d66ba1191359b96541eaf457710a5fc6"},
- {file = "kiwisolver-1.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bc9db8a3efb3e403e4ecc6cd9489ea2bac94244f80c78e27c31dcc00d2790ac2"},
- {file = "kiwisolver-1.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d5b61785a9ce44e5a4b880272baa7cf6c8f48a5180c3e81c59553ba0cb0821ca"},
- {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c2dbb44c3f7e6c4d3487b31037b1bdbf424d97687c1747ce4ff2895795c9bf69"},
- {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6295ecd49304dcf3bfbfa45d9a081c96509e95f4b9d0eb7ee4ec0530c4a96514"},
- {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4bd472dbe5e136f96a4b18f295d159d7f26fd399136f5b17b08c4e5f498cd494"},
- {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf7d9fce9bcc4752ca4a1b80aabd38f6d19009ea5cbda0e0856983cf6d0023f5"},
- {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d6601aed50c74e0ef02f4204da1816147a6d3fbdc8b3872d263338a9052c51"},
- {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:877272cf6b4b7e94c9614f9b10140e198d2186363728ed0f701c6eee1baec1da"},
- {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:db608a6757adabb32f1cfe6066e39b3706d8c3aa69bbc353a5b61edad36a5cb4"},
- {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:5853eb494c71e267912275e5586fe281444eb5e722de4e131cddf9d442615626"},
- {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:f0a1dbdb5ecbef0d34eb77e56fcb3e95bbd7e50835d9782a45df81cc46949750"},
- {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:283dffbf061a4ec60391d51e6155e372a1f7a4f5b15d59c8505339454f8989e4"},
- {file = "kiwisolver-1.4.4-cp311-cp311-win32.whl", hash = "sha256:d06adcfa62a4431d404c31216f0f8ac97397d799cd53800e9d3efc2fbb3cf14e"},
- {file = "kiwisolver-1.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:e7da3fec7408813a7cebc9e4ec55afed2d0fd65c4754bc376bf03498d4e92686"},
- {file = "kiwisolver-1.4.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:62ac9cc684da4cf1778d07a89bf5f81b35834cb96ca523d3a7fb32509380cbf6"},
- {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41dae968a94b1ef1897cb322b39360a0812661dba7c682aa45098eb8e193dbdf"},
- {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02f79693ec433cb4b5f51694e8477ae83b3205768a6fb48ffba60549080e295b"},
- {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d0611a0a2a518464c05ddd5a3a1a0e856ccc10e67079bb17f265ad19ab3c7597"},
- {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:db5283d90da4174865d520e7366801a93777201e91e79bacbac6e6927cbceede"},
- {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1041feb4cda8708ce73bb4dcb9ce1ccf49d553bf87c3954bdfa46f0c3f77252c"},
- {file = "kiwisolver-1.4.4-cp37-cp37m-win32.whl", hash = "sha256:a553dadda40fef6bfa1456dc4be49b113aa92c2a9a9e8711e955618cd69622e3"},
- {file = "kiwisolver-1.4.4-cp37-cp37m-win_amd64.whl", hash = "sha256:03baab2d6b4a54ddbb43bba1a3a2d1627e82d205c5cf8f4c924dc49284b87166"},
- {file = "kiwisolver-1.4.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:841293b17ad704d70c578f1f0013c890e219952169ce8a24ebc063eecf775454"},
- {file = "kiwisolver-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f4f270de01dd3e129a72efad823da90cc4d6aafb64c410c9033aba70db9f1ff0"},
- {file = "kiwisolver-1.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f9f39e2f049db33a908319cf46624a569b36983c7c78318e9726a4cb8923b26c"},
- {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c97528e64cb9ebeff9701e7938653a9951922f2a38bd847787d4a8e498cc83ae"},
- {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d1573129aa0fd901076e2bfb4275a35f5b7aa60fbfb984499d661ec950320b0"},
- {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad881edc7ccb9d65b0224f4e4d05a1e85cf62d73aab798943df6d48ab0cd79a1"},
- {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b428ef021242344340460fa4c9185d0b1f66fbdbfecc6c63eff4b7c29fad429d"},
- {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2e407cb4bd5a13984a6c2c0fe1845e4e41e96f183e5e5cd4d77a857d9693494c"},
- {file = "kiwisolver-1.4.4-cp38-cp38-win32.whl", hash = "sha256:75facbe9606748f43428fc91a43edb46c7ff68889b91fa31f53b58894503a191"},
- {file = "kiwisolver-1.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:5bce61af018b0cb2055e0e72e7d65290d822d3feee430b7b8203d8a855e78766"},
- {file = "kiwisolver-1.4.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8c808594c88a025d4e322d5bb549282c93c8e1ba71b790f539567932722d7bd8"},
- {file = "kiwisolver-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0a71d85ecdd570ded8ac3d1c0f480842f49a40beb423bb8014539a9f32a5897"},
- {file = "kiwisolver-1.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b533558eae785e33e8c148a8d9921692a9fe5aa516efbdff8606e7d87b9d5824"},
- {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:efda5fc8cc1c61e4f639b8067d118e742b812c930f708e6667a5ce0d13499e29"},
- {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7c43e1e1206cd421cd92e6b3280d4385d41d7166b3ed577ac20444b6995a445f"},
- {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc8d3bd6c72b2dd9decf16ce70e20abcb3274ba01b4e1c96031e0c4067d1e7cd"},
- {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4ea39b0ccc4f5d803e3337dd46bcce60b702be4d86fd0b3d7531ef10fd99a1ac"},
- {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:968f44fdbf6dd757d12920d63b566eeb4d5b395fd2d00d29d7ef00a00582aac9"},
- {file = "kiwisolver-1.4.4-cp39-cp39-win32.whl", hash = "sha256:da7e547706e69e45d95e116e6939488d62174e033b763ab1496b4c29b76fabea"},
- {file = "kiwisolver-1.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:ba59c92039ec0a66103b1d5fe588fa546373587a7d68f5c96f743c3396afc04b"},
- {file = "kiwisolver-1.4.4-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:91672bacaa030f92fc2f43b620d7b337fd9a5af28b0d6ed3f77afc43c4a64b5a"},
- {file = "kiwisolver-1.4.4-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:787518a6789009c159453da4d6b683f468ef7a65bbde796bcea803ccf191058d"},
- {file = "kiwisolver-1.4.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da152d8cdcab0e56e4f45eb08b9aea6455845ec83172092f09b0e077ece2cf7a"},
- {file = "kiwisolver-1.4.4-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ecb1fa0db7bf4cff9dac752abb19505a233c7f16684c5826d1f11ebd9472b871"},
- {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:28bc5b299f48150b5f822ce68624e445040595a4ac3d59251703779836eceff9"},
- {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:81e38381b782cc7e1e46c4e14cd997ee6040768101aefc8fa3c24a4cc58e98f8"},
- {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2a66fdfb34e05b705620dd567f5a03f239a088d5a3f321e7b6ac3239d22aa286"},
- {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:872b8ca05c40d309ed13eb2e582cab0c5a05e81e987ab9c521bf05ad1d5cf5cb"},
- {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:70e7c2e7b750585569564e2e5ca9845acfaa5da56ac46df68414f29fea97be9f"},
- {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9f85003f5dfa867e86d53fac6f7e6f30c045673fa27b603c397753bebadc3008"},
- {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e307eb9bd99801f82789b44bb45e9f541961831c7311521b13a6c85afc09767"},
- {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1792d939ec70abe76f5054d3f36ed5656021dcad1322d1cc996d4e54165cef9"},
- {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6cb459eea32a4e2cf18ba5fcece2dbdf496384413bc1bae15583f19e567f3b2"},
- {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:36dafec3d6d6088d34e2de6b85f9d8e2324eb734162fba59d2ba9ed7a2043d5b"},
- {file = "kiwisolver-1.4.4.tar.gz", hash = "sha256:d41997519fcba4a1e46eb4a2fe31bc12f0ff957b2b81bac28db24744f333e955"},
-]
-Markdown = [
- {file = "Markdown-3.4.1-py3-none-any.whl", hash = "sha256:08fb8465cffd03d10b9dd34a5c3fea908e20391a2a90b88d66362cb05beed186"},
- {file = "Markdown-3.4.1.tar.gz", hash = "sha256:3b809086bb6efad416156e00a0da66fe47618a5d6918dd688f53f40c8e4cfeff"},
-]
-MarkupSafe = [
- {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"},
- {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"},
- {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"},
- {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"},
- {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"},
- {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"},
-]
-matplotlib = [
- {file = "matplotlib-3.5.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a206a1b762b39398efea838f528b3a6d60cdb26fe9d58b48265787e29cd1d693"},
- {file = "matplotlib-3.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cd45a6f3e93a780185f70f05cf2a383daed13c3489233faad83e81720f7ede24"},
- {file = "matplotlib-3.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d62880e1f60e5a30a2a8484432bcb3a5056969dc97258d7326ad465feb7ae069"},
- {file = "matplotlib-3.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ab29589cef03bc88acfa3a1490359000c18186fc30374d8aa77d33cc4a51a4a"},
- {file = "matplotlib-3.5.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2886cc009f40e2984c083687251821f305d811d38e3df8ded414265e4583f0c5"},
- {file = "matplotlib-3.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c995f7d9568f18b5db131ab124c64e51b6820a92d10246d4f2b3f3a66698a15b"},
- {file = "matplotlib-3.5.3-cp310-cp310-win32.whl", hash = "sha256:6bb93a0492d68461bd458eba878f52fdc8ac7bdb6c4acdfe43dba684787838c2"},
- {file = "matplotlib-3.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:2e6d184ebe291b9e8f7e78bbab7987d269c38ea3e062eace1fe7d898042ef804"},
- {file = "matplotlib-3.5.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6ea6aef5c4338e58d8d376068e28f80a24f54e69f09479d1c90b7172bad9f25b"},
- {file = "matplotlib-3.5.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:839d47b8ead7ad9669aaacdbc03f29656dc21f0d41a6fea2d473d856c39c8b1c"},
- {file = "matplotlib-3.5.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3b4fa56159dc3c7f9250df88f653f085068bcd32dcd38e479bba58909254af7f"},
- {file = "matplotlib-3.5.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:94ff86af56a3869a4ae26a9637a849effd7643858a1a04dd5ee50e9ab75069a7"},
- {file = "matplotlib-3.5.3-cp37-cp37m-win32.whl", hash = "sha256:35a8ad4dddebd51f94c5d24bec689ec0ec66173bf614374a1244c6241c1595e0"},
- {file = "matplotlib-3.5.3-cp37-cp37m-win_amd64.whl", hash = "sha256:43e9d3fa077bf0cc95ded13d331d2156f9973dce17c6f0c8b49ccd57af94dbd9"},
- {file = "matplotlib-3.5.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:22227c976ad4dc8c5a5057540421f0d8708c6560744ad2ad638d48e2984e1dbc"},
- {file = "matplotlib-3.5.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bf618a825deb6205f015df6dfe6167a5d9b351203b03fab82043ae1d30f16511"},
- {file = "matplotlib-3.5.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9befa5954cdbc085e37d974ff6053da269474177921dd61facdad8023c4aeb51"},
- {file = "matplotlib-3.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3840c280ebc87a48488a46f760ea1c0c0c83fcf7abbe2e6baf99d033fd35fd8"},
- {file = "matplotlib-3.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dacddf5bfcec60e3f26ec5c0ae3d0274853a258b6c3fc5ef2f06a8eb23e042be"},
- {file = "matplotlib-3.5.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b428076a55fb1c084c76cb93e68006f27d247169f056412607c5c88828d08f88"},
- {file = "matplotlib-3.5.3-cp38-cp38-win32.whl", hash = "sha256:874df7505ba820e0400e7091199decf3ff1fde0583652120c50cd60d5820ca9a"},
- {file = "matplotlib-3.5.3-cp38-cp38-win_amd64.whl", hash = "sha256:b28de401d928890187c589036857a270a032961411934bdac4cf12dde3d43094"},
- {file = "matplotlib-3.5.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3211ba82b9f1518d346f6309df137b50c3dc4421b4ed4815d1d7eadc617f45a1"},
- {file = "matplotlib-3.5.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6fe807e8a22620b4cd95cfbc795ba310dc80151d43b037257250faf0bfcd82bc"},
- {file = "matplotlib-3.5.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5c096363b206a3caf43773abebdbb5a23ea13faef71d701b21a9c27fdcef72f4"},
- {file = "matplotlib-3.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bcdfcb0f976e1bac6721d7d457c17be23cf7501f977b6a38f9d38a3762841f7"},
- {file = "matplotlib-3.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1e64ac9be9da6bfff0a732e62116484b93b02a0b4d4b19934fb4f8e7ad26ad6a"},
- {file = "matplotlib-3.5.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:73dd93dc35c85dece610cca8358003bf0760d7986f70b223e2306b4ea6d1406b"},
- {file = "matplotlib-3.5.3-cp39-cp39-win32.whl", hash = "sha256:879c7e5fce4939c6aa04581dfe08d57eb6102a71f2e202e3314d5fbc072fd5a0"},
- {file = "matplotlib-3.5.3-cp39-cp39-win_amd64.whl", hash = "sha256:ab8d26f07fe64f6f6736d635cce7bfd7f625320490ed5bfc347f2cdb4fae0e56"},
- {file = "matplotlib-3.5.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:99482b83ebf4eb6d5fc6813d7aacdefdd480f0d9c0b52dcf9f1cc3b2c4b3361a"},
- {file = "matplotlib-3.5.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f814504e459c68118bf2246a530ed953ebd18213dc20e3da524174d84ed010b2"},
- {file = "matplotlib-3.5.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57f1b4e69f438a99bb64d7f2c340db1b096b41ebaa515cf61ea72624279220ce"},
- {file = "matplotlib-3.5.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d2484b350bf3d32cae43f85dcfc89b3ed7bd2bcd781ef351f93eb6fb2cc483f9"},
- {file = "matplotlib-3.5.3.tar.gz", hash = "sha256:339cac48b80ddbc8bfd05daae0a3a73414651a8596904c2a881cfd1edb65f26c"},
-]
-mypi = [
- {file = "mypi-0.0.3.tar.gz", hash = "sha256:4f30dabdd0bb74124694d56354d45b6521c9de34845a1a001957ebb5398a9741"},
-]
-nodeenv = [
- {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"},
- {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"},
-]
-numpy = [
- {file = "numpy-1.23.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c9f707b5bb73bf277d812ded9896f9512a43edff72712f31667d0a8c2f8e71ee"},
- {file = "numpy-1.23.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ffcf105ecdd9396e05a8e58e81faaaf34d3f9875f137c7372450baa5d77c9a54"},
- {file = "numpy-1.23.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ea3f98a0ffce3f8f57675eb9119f3f4edb81888b6874bc1953f91e0b1d4f440"},
- {file = "numpy-1.23.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:004f0efcb2fe1c0bd6ae1fcfc69cc8b6bf2407e0f18be308612007a0762b4089"},
- {file = "numpy-1.23.3-cp310-cp310-win32.whl", hash = "sha256:98dcbc02e39b1658dc4b4508442a560fe3ca5ca0d989f0df062534e5ca3a5c1a"},
- {file = "numpy-1.23.3-cp310-cp310-win_amd64.whl", hash = "sha256:39a664e3d26ea854211867d20ebcc8023257c1800ae89773cbba9f9e97bae036"},
- {file = "numpy-1.23.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1f27b5322ac4067e67c8f9378b41c746d8feac8bdd0e0ffede5324667b8a075c"},
- {file = "numpy-1.23.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2ad3ec9a748a8943e6eb4358201f7e1c12ede35f510b1a2221b70af4bb64295c"},
- {file = "numpy-1.23.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdc9febce3e68b697d931941b263c59e0c74e8f18861f4064c1f712562903411"},
- {file = "numpy-1.23.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:301c00cf5e60e08e04d842fc47df641d4a181e651c7135c50dc2762ffe293dbd"},
- {file = "numpy-1.23.3-cp311-cp311-win32.whl", hash = "sha256:7cd1328e5bdf0dee621912f5833648e2daca72e3839ec1d6695e91089625f0b4"},
- {file = "numpy-1.23.3-cp311-cp311-win_amd64.whl", hash = "sha256:8355fc10fd33a5a70981a5b8a0de51d10af3688d7a9e4a34fcc8fa0d7467bb7f"},
- {file = "numpy-1.23.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bc6e8da415f359b578b00bcfb1d08411c96e9a97f9e6c7adada554a0812a6cc6"},
- {file = "numpy-1.23.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:22d43376ee0acd547f3149b9ec12eec2f0ca4a6ab2f61753c5b29bb3e795ac4d"},
- {file = "numpy-1.23.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a64403f634e5ffdcd85e0b12c08f04b3080d3e840aef118721021f9b48fc1460"},
- {file = "numpy-1.23.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efd9d3abe5774404becdb0748178b48a218f1d8c44e0375475732211ea47c67e"},
- {file = "numpy-1.23.3-cp38-cp38-win32.whl", hash = "sha256:f8c02ec3c4c4fcb718fdf89a6c6f709b14949408e8cf2a2be5bfa9c49548fd85"},
- {file = "numpy-1.23.3-cp38-cp38-win_amd64.whl", hash = "sha256:e868b0389c5ccfc092031a861d4e158ea164d8b7fdbb10e3b5689b4fc6498df6"},
- {file = "numpy-1.23.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:09f6b7bdffe57fc61d869a22f506049825d707b288039d30f26a0d0d8ea05164"},
- {file = "numpy-1.23.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8c79d7cf86d049d0c5089231a5bcd31edb03555bd93d81a16870aa98c6cfb79d"},
- {file = "numpy-1.23.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5d5420053bbb3dd64c30e58f9363d7a9c27444c3648e61460c1237f9ec3fa14"},
- {file = "numpy-1.23.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5422d6a1ea9b15577a9432e26608c73a78faf0b9039437b075cf322c92e98e7"},
- {file = "numpy-1.23.3-cp39-cp39-win32.whl", hash = "sha256:c1ba66c48b19cc9c2975c0d354f24058888cdc674bebadceb3cdc9ec403fb5d1"},
- {file = "numpy-1.23.3-cp39-cp39-win_amd64.whl", hash = "sha256:78a63d2df1d947bd9d1b11d35564c2f9e4b57898aae4626638056ec1a231c40c"},
- {file = "numpy-1.23.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:17c0e467ade9bda685d5ac7f5fa729d8d3e76b23195471adae2d6a6941bd2c18"},
- {file = "numpy-1.23.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91b8d6768a75247026e951dce3b2aac79dc7e78622fc148329135ba189813584"},
- {file = "numpy-1.23.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:94c15ca4e52671a59219146ff584488907b1f9b3fc232622b47e2cf832e94fb8"},
- {file = "numpy-1.23.3.tar.gz", hash = "sha256:51bf49c0cd1d52be0a240aa66f3458afc4b95d8993d2d04f0d91fa60c10af6cd"},
-]
-packaging = [
- {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
- {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
-]
-pandas = [
- {file = "pandas-1.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:799e6a25932df7e6b1f8dabf63de064e2205dc309abb75956126a0453fd88e97"},
- {file = "pandas-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7cd1d69a387f7d5e1a5a06a87574d9ef2433847c0e78113ab51c84d3a8bcaeaa"},
- {file = "pandas-1.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:94f2ed1fd51e545ebf71da1e942fe1822ee01e10d3dd2a7276d01351333b7c6b"},
- {file = "pandas-1.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4591cadd06fbbbd16fafc2de6e840c1aaefeae3d5864b688004777ef1bbdede3"},
- {file = "pandas-1.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0022fe6a313df1c4869b5edc012d734c6519a6fffa3cf70930f32e6a1078e49"},
- {file = "pandas-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:785e878a6e6d8ddcdb8c181e600855402750052497d7fc6d6b508894f6b8830b"},
- {file = "pandas-1.4.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c4bb8b0ab9f94207d07e401d24baebfc63057246b1a5e0cd9ee50df85a656871"},
- {file = "pandas-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:51c424ca134fdaeac9a4acd719d1ab48046afc60943a489028f0413fdbe9ef1c"},
- {file = "pandas-1.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ce35f947202b0b99c660221d82beb91d2e6d553d55a40b30128204e3e2c63848"},
- {file = "pandas-1.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee6f1848148ed3204235967613b0a32be2d77f214e9623f554511047705c1e04"},
- {file = "pandas-1.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7cc960959be28d064faefc0cb2aef854d46b827c004ebea7e79b5497ed83e7d"},
- {file = "pandas-1.4.4-cp38-cp38-win32.whl", hash = "sha256:9d805bce209714b1c1fa29bfb1e42ad87e4c0a825e4b390c56a3e71593b7e8d8"},
- {file = "pandas-1.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:afbddad78a98ec4d2ce08b384b81730de1ccc975b99eb663e6dac43703f36d98"},
- {file = "pandas-1.4.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a08ceb59db499864c58a9bf85ab6219d527d91f14c0240cc25fa2c261032b2a7"},
- {file = "pandas-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0959c41004e3d2d16f39c828d6da66ebee329836a7ecee49fb777ac9ad8a7501"},
- {file = "pandas-1.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87b4194f344dcd14c0f885cecb22005329b38bda10f1aaf7b9596a00ec8a4768"},
- {file = "pandas-1.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d2a7a3c1fea668d56bd91edbd5f2732e0af8feb9d2bf8d9bfacb2dea5fa9536"},
- {file = "pandas-1.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a981cfabf51c318a562deb4ae7deec594c07aee7cf18b4594a92c23718ec8275"},
- {file = "pandas-1.4.4-cp39-cp39-win32.whl", hash = "sha256:050aada67a5ec6699a7879e769825b510018a95fb9ac462bb1867483d0974a97"},
- {file = "pandas-1.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:8d4d2fe2863ecddb0ba1979bdda26c8bc2ea138f5a979abe3ba80c0fa4015c91"},
- {file = "pandas-1.4.4.tar.gz", hash = "sha256:ab6c0d738617b675183e5f28db32b5148b694ad9bba0a40c3ea26d96b431db67"},
-]
-panel = [
- {file = "panel-0.13.1-py2.py3-none-any.whl", hash = "sha256:d460b5d7d0147e6b1eddf8504314a2f5e0c9268ad8bedd8d784ed46351ab5b71"},
- {file = "panel-0.13.1.tar.gz", hash = "sha256:0e9008f0a851cbcffbce0273d62b5bc62644d9030cc68535c824381df52113af"},
-]
-param = [
- {file = "param-1.12.2-py2.py3-none-any.whl", hash = "sha256:262bc328c49392cf8df3b773659b1b8e12ecf71377c16794fe36be7984e62a92"},
- {file = "param-1.12.2.tar.gz", hash = "sha256:f9ccc45c7f329150fc3dca517b4595859199aa08d9cda2ecdebc112bbe718c0f"},
-]
-pdoc = [
- {file = "pdoc-10.0.4-py3-none-any.whl", hash = "sha256:39186fa0a12b903388fc6e8a85cbe682dc40de59ea97f2fa45ae316bdbad8d40"},
-]
-Pillow = [
- {file = "Pillow-9.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:a9c9bc489f8ab30906d7a85afac4b4944a572a7432e00698a7239f44a44e6efb"},
- {file = "Pillow-9.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:510cef4a3f401c246cfd8227b300828715dd055463cdca6176c2e4036df8bd4f"},
- {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7888310f6214f19ab2b6df90f3f06afa3df7ef7355fc025e78a3044737fab1f5"},
- {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:831e648102c82f152e14c1a0938689dbb22480c548c8d4b8b248b3e50967b88c"},
- {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cc1d2451e8a3b4bfdb9caf745b58e6c7a77d2e469159b0d527a4554d73694d1"},
- {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:136659638f61a251e8ed3b331fc6ccd124590eeff539de57c5f80ef3a9594e58"},
- {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:6e8c66f70fb539301e064f6478d7453e820d8a2c631da948a23384865cd95544"},
- {file = "Pillow-9.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:37ff6b522a26d0538b753f0b4e8e164fdada12db6c6f00f62145d732d8a3152e"},
- {file = "Pillow-9.2.0-cp310-cp310-win32.whl", hash = "sha256:c79698d4cd9318d9481d89a77e2d3fcaeff5486be641e60a4b49f3d2ecca4e28"},
- {file = "Pillow-9.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:254164c57bab4b459f14c64e93df11eff5ded575192c294a0c49270f22c5d93d"},
- {file = "Pillow-9.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:adabc0bce035467fb537ef3e5e74f2847c8af217ee0be0455d4fec8adc0462fc"},
- {file = "Pillow-9.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:336b9036127eab855beec9662ac3ea13a4544a523ae273cbf108b228ecac8437"},
- {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50dff9cc21826d2977ef2d2a205504034e3a4563ca6f5db739b0d1026658e004"},
- {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cb6259196a589123d755380b65127ddc60f4c64b21fc3bb46ce3a6ea663659b0"},
- {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b0554af24df2bf96618dac71ddada02420f946be943b181108cac55a7a2dcd4"},
- {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:15928f824870535c85dbf949c09d6ae7d3d6ac2d6efec80f3227f73eefba741c"},
- {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:bdd0de2d64688ecae88dd8935012c4a72681e5df632af903a1dca8c5e7aa871a"},
- {file = "Pillow-9.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5b87da55a08acb586bad5c3aa3b86505f559b84f39035b233d5bf844b0834b1"},
- {file = "Pillow-9.2.0-cp311-cp311-win32.whl", hash = "sha256:b6d5e92df2b77665e07ddb2e4dbd6d644b78e4c0d2e9272a852627cdba0d75cf"},
- {file = "Pillow-9.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:6bf088c1ce160f50ea40764f825ec9b72ed9da25346216b91361eef8ad1b8f8c"},
- {file = "Pillow-9.2.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:2c58b24e3a63efd22554c676d81b0e57f80e0a7d3a5874a7e14ce90ec40d3069"},
- {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eef7592281f7c174d3d6cbfbb7ee5984a671fcd77e3fc78e973d492e9bf0eb3f"},
- {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dcd7b9c7139dc8258d164b55696ecd16c04607f1cc33ba7af86613881ffe4ac8"},
- {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a138441e95562b3c078746a22f8fca8ff1c22c014f856278bdbdd89ca36cff1b"},
- {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:93689632949aff41199090eff5474f3990b6823404e45d66a5d44304e9cdc467"},
- {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:f3fac744f9b540148fa7715a435d2283b71f68bfb6d4aae24482a890aed18b59"},
- {file = "Pillow-9.2.0-cp37-cp37m-win32.whl", hash = "sha256:fa768eff5f9f958270b081bb33581b4b569faabf8774726b283edb06617101dc"},
- {file = "Pillow-9.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:69bd1a15d7ba3694631e00df8de65a8cb031911ca11f44929c97fe05eb9b6c1d"},
- {file = "Pillow-9.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:030e3460861488e249731c3e7ab59b07c7853838ff3b8e16aac9561bb345da14"},
- {file = "Pillow-9.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:74a04183e6e64930b667d321524e3c5361094bb4af9083db5c301db64cd341f3"},
- {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d33a11f601213dcd5718109c09a52c2a1c893e7461f0be2d6febc2879ec2402"},
- {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fd6f5e3c0e4697fa7eb45b6e93996299f3feee73a3175fa451f49a74d092b9f"},
- {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a647c0d4478b995c5e54615a2e5360ccedd2f85e70ab57fbe817ca613d5e63b8"},
- {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:4134d3f1ba5f15027ff5c04296f13328fecd46921424084516bdb1b2548e66ff"},
- {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:bc431b065722a5ad1dfb4df354fb9333b7a582a5ee39a90e6ffff688d72f27a1"},
- {file = "Pillow-9.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:1536ad017a9f789430fb6b8be8bf99d2f214c76502becc196c6f2d9a75b01b76"},
- {file = "Pillow-9.2.0-cp38-cp38-win32.whl", hash = "sha256:2ad0d4df0f5ef2247e27fc790d5c9b5a0af8ade9ba340db4a73bb1a4a3e5fb4f"},
- {file = "Pillow-9.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:ec52c351b35ca269cb1f8069d610fc45c5bd38c3e91f9ab4cbbf0aebc136d9c8"},
- {file = "Pillow-9.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ed2c4ef2451de908c90436d6e8092e13a43992f1860275b4d8082667fbb2ffc"},
- {file = "Pillow-9.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ad2f835e0ad81d1689f1b7e3fbac7b01bb8777d5a985c8962bedee0cc6d43da"},
- {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea98f633d45f7e815db648fd7ff0f19e328302ac36427343e4432c84432e7ff4"},
- {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7761afe0126d046974a01e030ae7529ed0ca6a196de3ec6937c11df0df1bc91c"},
- {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a54614049a18a2d6fe156e68e188da02a046a4a93cf24f373bffd977e943421"},
- {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:5aed7dde98403cd91d86a1115c78d8145c83078e864c1de1064f52e6feb61b20"},
- {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:13b725463f32df1bfeacbf3dd197fb358ae8ebcd8c5548faa75126ea425ccb60"},
- {file = "Pillow-9.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:808add66ea764ed97d44dda1ac4f2cfec4c1867d9efb16a33d158be79f32b8a4"},
- {file = "Pillow-9.2.0-cp39-cp39-win32.whl", hash = "sha256:337a74fd2f291c607d220c793a8135273c4c2ab001b03e601c36766005f36885"},
- {file = "Pillow-9.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:fac2d65901fb0fdf20363fbd345c01958a742f2dc62a8dd4495af66e3ff502a4"},
- {file = "Pillow-9.2.0-pp37-pypy37_pp73-macosx_10_10_x86_64.whl", hash = "sha256:ad2277b185ebce47a63f4dc6302e30f05762b688f8dc3de55dbae4651872cdf3"},
- {file = "Pillow-9.2.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7b502bc34f6e32ba022b4a209638f9e097d7a9098104ae420eb8186217ebbb"},
- {file = "Pillow-9.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d1f14f5f691f55e1b47f824ca4fdcb4b19b4323fe43cc7bb105988cad7496be"},
- {file = "Pillow-9.2.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:dfe4c1fedfde4e2fbc009d5ad420647f7730d719786388b7de0999bf32c0d9fd"},
- {file = "Pillow-9.2.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:f07f1f00e22b231dd3d9b9208692042e29792d6bd4f6639415d2f23158a80013"},
- {file = "Pillow-9.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1802f34298f5ba11d55e5bb09c31997dc0c6aed919658dfdf0198a2fe75d5490"},
- {file = "Pillow-9.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17d4cafe22f050b46d983b71c707162d63d796a1235cdf8b9d7a112e97b15bac"},
- {file = "Pillow-9.2.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:96b5e6874431df16aee0c1ba237574cb6dff1dcb173798faa6a9d8b399a05d0e"},
- {file = "Pillow-9.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:0030fdbd926fb85844b8b92e2f9449ba89607231d3dd597a21ae72dc7fe26927"},
- {file = "Pillow-9.2.0.tar.gz", hash = "sha256:75e636fd3e0fb872693f23ccb8a5ff2cd578801251f3a4f6854c6a5d437d3c04"},
-]
-platformdirs = [
- {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"},
- {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"},
-]
-pluggy = [
- {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
- {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
-]
-pre-commit = [
- {file = "pre_commit-2.20.0-py2.py3-none-any.whl", hash = "sha256:51a5ba7c480ae8072ecdb6933df22d2f812dc897d5fe848778116129a681aac7"},
- {file = "pre_commit-2.20.0.tar.gz", hash = "sha256:a978dac7bc9ec0bcee55c18a277d553b0f419d259dadb4b9418ff2d00eb43959"},
-]
-py = [
- {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
- {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
-]
-pyct = [
- {file = "pyct-0.4.8-py2.py3-none-any.whl", hash = "sha256:222e104d561b28cfdb56667d2ba10e5290b4466db66d0af38ab935577af85390"},
- {file = "pyct-0.4.8.tar.gz", hash = "sha256:23d7525b5a1567535c093aea4b9c33809415aa5f018dd77f6eb738b1226df6f7"},
-]
-Pygments = [
- {file = "Pygments-2.13.0-py3-none-any.whl", hash = "sha256:f643f331ab57ba3c9d89212ee4a2dabc6e94f117cf4eefde99a0574720d14c42"},
- {file = "Pygments-2.13.0.tar.gz", hash = "sha256:56a8508ae95f98e2b9bdf93a6be5ae3f7d8af858b43e02c5a2ff083726be40c1"},
-]
-pyparsing = [
- {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
- {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
-]
-pytest = [
- {file = "pytest-7.1.3-py3-none-any.whl", hash = "sha256:1377bda3466d70b55e3f5cecfa55bb7cfcf219c7964629b967c37cf0bda818b7"},
- {file = "pytest-7.1.3.tar.gz", hash = "sha256:4f365fec2dff9c1162f834d9f18af1ba13062db0c708bf7b946f8a5c76180c39"},
-]
-pytest-cov = [
- {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"},
- {file = "pytest_cov-3.0.0-py3-none-any.whl", hash = "sha256:578d5d15ac4a25e5f961c938b85a05b09fdaae9deef3bb6de9a6e766622ca7a6"},
-]
-python-dateutil = [
- {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"},
- {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"},
-]
-pytz = [
- {file = "pytz-2022.2.1-py2.py3-none-any.whl", hash = "sha256:220f481bdafa09c3955dfbdddb7b57780e9a94f5127e35456a48589b9e0c0197"},
- {file = "pytz-2022.2.1.tar.gz", hash = "sha256:cea221417204f2d1a2aa03ddae3e867921971d0d76f14d87abb4414415bbdcf5"},
-]
-pyviz-comms = [
- {file = "pyviz_comms-2.2.1-py2.py3-none-any.whl", hash = "sha256:aba28430cf28b39f2605acb48f7fddf0e3025394a8286adfeb40d74b0ae0f4f9"},
- {file = "pyviz_comms-2.2.1.tar.gz", hash = "sha256:a26145b8ce43d2d934b3c6826d77b913ce105c528eb2e494c890b3e3525ddf33"},
-]
-PyYAML = [
- {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"},
- {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"},
- {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"},
- {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"},
- {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"},
- {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"},
- {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"},
- {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"},
- {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"},
- {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"},
- {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"},
- {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"},
- {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"},
- {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"},
- {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"},
- {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"},
- {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"},
- {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"},
- {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"},
- {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"},
- {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"},
- {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"},
- {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"},
- {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"},
- {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"},
- {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"},
- {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"},
- {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"},
- {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"},
- {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"},
- {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"},
- {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"},
- {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
-]
-requests = [
- {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"},
- {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"},
-]
-semantic-version = [
- {file = "semantic_version-2.3.0.tar.gz", hash = "sha256:19723ccc0d7ac93fa5af5ce680e0ad0781350d3e17480da9655817bd52ce937c"},
-]
-setuptools = [
- {file = "setuptools-65.3.0-py3-none-any.whl", hash = "sha256:2e24e0bec025f035a2e72cdd1961119f557d78ad331bb00ff82efb2ab8da8e82"},
- {file = "setuptools-65.3.0.tar.gz", hash = "sha256:7732871f4f7fa58fb6bdcaeadb0161b2bd046c85905dbaa066bdcbcc81953b57"},
-]
-setuptools-scm = [
- {file = "setuptools_scm-6.4.2-py3-none-any.whl", hash = "sha256:acea13255093849de7ccb11af9e1fb8bde7067783450cee9ef7a93139bddf6d4"},
- {file = "setuptools_scm-6.4.2.tar.gz", hash = "sha256:6833ac65c6ed9711a4d5d2266f8024cfa07c533a0e55f4c12f6eff280a5a9e30"},
-]
-six = [
- {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
- {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
-]
-smmap = [
- {file = "smmap-5.0.0-py3-none-any.whl", hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94"},
- {file = "smmap-5.0.0.tar.gz", hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936"},
-]
-toml = [
- {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
- {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
-]
-tomli = [
- {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
- {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
-]
-tornado = [
- {file = "tornado-6.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:20f638fd8cc85f3cbae3c732326e96addff0a15e22d80f049e00121651e82e72"},
- {file = "tornado-6.2-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:87dcafae3e884462f90c90ecc200defe5e580a7fbbb4365eda7c7c1eb809ebc9"},
- {file = "tornado-6.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba09ef14ca9893954244fd872798b4ccb2367c165946ce2dd7376aebdde8e3ac"},
- {file = "tornado-6.2-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8150f721c101abdef99073bf66d3903e292d851bee51910839831caba341a75"},
- {file = "tornado-6.2-cp37-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3a2f5999215a3a06a4fc218026cd84c61b8b2b40ac5296a6db1f1451ef04c1e"},
- {file = "tornado-6.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5f8c52d219d4995388119af7ccaa0bcec289535747620116a58d830e7c25d8a8"},
- {file = "tornado-6.2-cp37-abi3-musllinux_1_1_i686.whl", hash = "sha256:6fdfabffd8dfcb6cf887428849d30cf19a3ea34c2c248461e1f7d718ad30b66b"},
- {file = "tornado-6.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:1d54d13ab8414ed44de07efecb97d4ef7c39f7438cf5e976ccd356bebb1b5fca"},
- {file = "tornado-6.2-cp37-abi3-win32.whl", hash = "sha256:5c87076709343557ef8032934ce5f637dbb552efa7b21d08e89ae7619ed0eb23"},
- {file = "tornado-6.2-cp37-abi3-win_amd64.whl", hash = "sha256:e5f923aa6a47e133d1cf87d60700889d7eae68988704e20c75fb2d65677a8e4b"},
- {file = "tornado-6.2.tar.gz", hash = "sha256:9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13"},
-]
-tqdm = [
- {file = "tqdm-4.64.1-py2.py3-none-any.whl", hash = "sha256:6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1"},
- {file = "tqdm-4.64.1.tar.gz", hash = "sha256:5f4f682a004951c1b450bc753c710e9280c5746ce6ffedee253ddbcbf54cf1e4"},
-]
-typing-extensions = [
- {file = "typing_extensions-4.3.0-py3-none-any.whl", hash = "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02"},
- {file = "typing_extensions-4.3.0.tar.gz", hash = "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6"},
-]
-urllib3 = [
- {file = "urllib3-1.26.12-py2.py3-none-any.whl", hash = "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997"},
- {file = "urllib3-1.26.12.tar.gz", hash = "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e"},
-]
-virtualenv = [
- {file = "virtualenv-20.16.5-py3-none-any.whl", hash = "sha256:d07dfc5df5e4e0dbc92862350ad87a36ed505b978f6c39609dc489eadd5b0d27"},
- {file = "virtualenv-20.16.5.tar.gz", hash = "sha256:227ea1b9994fdc5ea31977ba3383ef296d7472ea85be9d6732e42a91c04e80da"},
-]
-webencodings = [
- {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
- {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
-]
-Werkzeug = [
- {file = "Werkzeug-2.2.2-py3-none-any.whl", hash = "sha256:f979ab81f58d7318e064e99c4506445d60135ac5cd2e177a2de0089bfd4c9bd5"},
- {file = "Werkzeug-2.2.2.tar.gz", hash = "sha256:7ea2d48322cc7c0f8b3a215ed73eabd7b5d75d0b50e31ab006286ccff9e00b8f"},
-]
-wheel = [
- {file = "wheel-0.37.1-py2.py3-none-any.whl", hash = "sha256:4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a"},
- {file = "wheel-0.37.1.tar.gz", hash = "sha256:e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4"},
-]
-wordcloud = [
- {file = "wordcloud-1.8.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2a90f512c1c3c2a483d9d12b06a80124cecf813ec7a49b328dce6181c5440f2d"},
- {file = "wordcloud-1.8.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6376f09543416d03844313d7e6e39eb0a42547e07001ac50be93fbd4c6c4431"},
- {file = "wordcloud-1.8.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:334318eb345eafc3494d81fbbe11823fc945833e6a77cf05c7a6a1b88c1e1db0"},
- {file = "wordcloud-1.8.2.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c162814bc0ca2f1436e553ef8c451009c689f5a3f04be8acb5f1df7389b2dbc2"},
- {file = "wordcloud-1.8.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:66bd735eb869a769806154067da01ecaeb4ce165d3c523c306e8ea7d376a1706"},
- {file = "wordcloud-1.8.2.2-cp310-cp310-win32.whl", hash = "sha256:7344df98ea8556a4f8e12924cf0b2e2d7055b1565440fd0c2a453c2b7e1e240b"},
- {file = "wordcloud-1.8.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:bc2974162313e3702cfd314401c943bb94add4ae64a4d7d4ecdf93863133b5e1"},
- {file = "wordcloud-1.8.2.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:90174d2154d554e186e4db14121315bb0e2cb4b0c88d0ca0f8f99831f672cfea"},
- {file = "wordcloud-1.8.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:948a947960ce688088e7617c9f82c26a0992c1e4e28a4de1f9a0afa736102556"},
- {file = "wordcloud-1.8.2.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52acd837fdd26239352f77be1491148b36e77f3c31ce7a9fe232664bfadd1a2c"},
- {file = "wordcloud-1.8.2.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:a17055e10baee8e5f19d2b72c474d59dfb45660f66b92d3468fef44f0cc67b37"},
- {file = "wordcloud-1.8.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:7b0a7e43b961ea7be13d7d7397fd131f8e795e1b36a23fdcab914a14d7c50def"},
- {file = "wordcloud-1.8.2.2-cp36-cp36m-win32.whl", hash = "sha256:3d4da63b8f315caf3f715b23ab0a05d43139b9395e5e78b7e12b7ed2701d3a8e"},
- {file = "wordcloud-1.8.2.2-cp36-cp36m-win_amd64.whl", hash = "sha256:ccd027f089df42d9d99f0a2d227823f1248d49826b82dc942e6066a16b825d99"},
- {file = "wordcloud-1.8.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:61b292af5d88e719a641bb832280b81902df24a39936e6cf87ae0b6ea7910262"},
- {file = "wordcloud-1.8.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43a71a15ac8f721f425d1030633f26a8037ddb767fe9bb45647fe5ed94b92eda"},
- {file = "wordcloud-1.8.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14f7d34c25ddad412fac32760bd5d6d1565a98821f6dd021cf6617203b0db5ae"},
- {file = "wordcloud-1.8.2.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:cf81862e9ff7c7abca1fb883ee60d3274b1ce1b30f99cd07cc29c5f5d95cbab8"},
- {file = "wordcloud-1.8.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:3639eeb7c8b09f71376c6369277fb78d2dd8c96648034c3c25ee0f34f3e9249c"},
- {file = "wordcloud-1.8.2.2-cp37-cp37m-win32.whl", hash = "sha256:d2a966bdebdb4eab57ce4ce9a31e96b8772c0e5c46f7e334cb2e8afa59297d8a"},
- {file = "wordcloud-1.8.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b8fc88ce6bd9edb514473f10ea4fb14ef78fbd5266b56a614939c5a8a0256283"},
- {file = "wordcloud-1.8.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9595200d2e30ba161f585dfc5bf568010e76adc7c7bbc5d7149f0bf3b96996aa"},
- {file = "wordcloud-1.8.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b6573eaab49a3682822ea7208077ed5b81210daa3ddb41a9d4879f9803d7b6b"},
- {file = "wordcloud-1.8.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:55f6416f9958042fe92d751962a3dfd83e583828504d9f6e8f886e034b3354d0"},
- {file = "wordcloud-1.8.2.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4580f1cbf42b3a0565b140d580d6e249230373b8fa31e4491620af1caec45e92"},
- {file = "wordcloud-1.8.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3e3f01635def27b971f178b8bc3438f3be09d91f72ab3b51b90a1ae16e4028d8"},
- {file = "wordcloud-1.8.2.2-cp38-cp38-win32.whl", hash = "sha256:b4e4dcd8c1c2483c2c45082d1e9cd600924d84b52154324cce5579a3dac33c46"},
- {file = "wordcloud-1.8.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:31c09d77a01b3d5638f2e0e043cfcb0d90f1c8b4d12864132e1d421dc525467f"},
- {file = "wordcloud-1.8.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f6377f570838661ade045793e100f506a4e1f92ddac23455470a03617e30d2a8"},
- {file = "wordcloud-1.8.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b50378e7cb7b9a1990ff3a10dfcad968185a1fbfd99de68c436245bbd5cd669"},
- {file = "wordcloud-1.8.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d76e1939ca45907dcdf8b17fd64d5a392534f42a90b6194e806f08b65ed73948"},
- {file = "wordcloud-1.8.2.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c70fd9ff86a4370d0ba9aede977440635a859b3c6a86693e178f2ecb4369e153"},
- {file = "wordcloud-1.8.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c1fa72f4f94d7236eb6a1a86cfcfa6df292411047320c8deb173cac379a87c2a"},
- {file = "wordcloud-1.8.2.2-cp39-cp39-win32.whl", hash = "sha256:55224971bd7c3ba2a1038dd5aefa0559b3a320bf6f0b864c0469db5dfa7d587b"},
- {file = "wordcloud-1.8.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:a3e6c77da50d1f5263281c72db8c2cf5893b2dd624ce684910b7830eb7069163"},
- {file = "wordcloud-1.8.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:be045984d2cdb4f181c7aff24001a97ade10d04b1098ac5c859748e2802263f4"},
- {file = "wordcloud-1.8.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15da7c4ff531b19527fb605da11e747d418a4d81d78503c34fb11babf3196b7a"},
- {file = "wordcloud-1.8.2.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd6d3f253f163ce21f6efc2cc675caf16ce474977de925b0adcdae9b97fe8659"},
- {file = "wordcloud-1.8.2.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:47f329426a0952a4509d4d0c8b84867f8d11e65cb81ee852ebcfad588598cda8"},
- {file = "wordcloud-1.8.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:001a0b4483fe4ec26302b306c1590a4c44a99483c2da8232012ac62177296594"},
- {file = "wordcloud-1.8.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d512c9867a43cbbfa51661ea2d7e3e84c4309ef29ee1be3e10b64f9d3353bd70"},
- {file = "wordcloud-1.8.2.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c887681e9353e559f25421bfd3b358990ae80ed77c42f28eed810ab180047578"},
- {file = "wordcloud-1.8.2.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:aa0ddb25cde58232131072870f139d6c737d74d7a3b6a80fcb9721f3b9b2e7bb"},
- {file = "wordcloud-1.8.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:16ed864495573094e5b64f424d66d9030a638569182ad7c5b2c8e11ab78a2541"},
- {file = "wordcloud-1.8.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19c444200056b3d75b5d84a6cc018d6491da1841462546663ea3a88300db03f1"},
- {file = "wordcloud-1.8.2.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1dc69a57a349272119ae633b8d6bcc9cde600aeb4342261e12ce169badcd28ca"},
- {file = "wordcloud-1.8.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3c39bd66f172f56257f09cec8fe246cd11ef36e9e16eeabe88933788d983c6a1"},
- {file = "wordcloud-1.8.2.2.tar.gz", hash = "sha256:523db887e47e840eb5c2e60428243bb1d7439fdc60f89626b17bafa1be64459c"},
-]
-yapf = [
- {file = "yapf-0.32.0-py2.py3-none-any.whl", hash = "sha256:8fea849025584e486fd06d6ba2bed717f396080fd3cc236ba10cb97c4c51cf32"},
- {file = "yapf-0.32.0.tar.gz", hash = "sha256:a3f5085d37ef7e3e004c4ba9f9b3e40c54ff1901cd111f05145ae313a7c67d1b"},
-]
-zipp = [
- {file = "zipp-3.8.1-py3-none-any.whl", hash = "sha256:47c40d7fe183a6f21403a199b3e4192cca5774656965b0a4988ad2f8feb5f009"},
- {file = "zipp-3.8.1.tar.gz", hash = "sha256:05b45f1ee8f807d0cc928485ca40a07cb491cf092ff587c0df9cb1fd154848d2"},
-]
+lock-version = "2.1"
+python-versions = "^3.12.3"
+content-hash = "9b6d2ff3def9898a3e18c3eb804ad9e24f9645e9a449c73cf67bbb76239b9e2b"
diff --git a/pyproject.toml b/pyproject.toml
index 9fc17dc..2d1ad4a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,7 +6,7 @@ authors = [{name = "Jens Broeder", email = "j.broeder@fz-juelich.de"},
{name = "Silke Christine Gerlich", email = "s.gerlich@fz-juelich.de"},
{name = "Volker Hofmann", email = "v.hofmann@fz-juelich.de"}]
readme = "README.md"
-license = {file = "LICENSE.txt"}
+license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
@@ -31,6 +31,8 @@ classifiers = [
keywords = ["dashboard", "data visualization", "survey data", "categorical data",
"interactive visualization", "bokeh", "panel"]
+[project.scripts]
+survey-dashboard = "survey_dashboard.scripts:run_app"
[tool.poetry]
name = "survey-dashboard"
@@ -67,17 +69,20 @@ keywords = ["dashboard", "data visualization", "survey data", "categorical data"
[tool.poetry.dependencies]
-python = "^3.8"
-pandas = "^1.4.1"
-bokeh = "^2.4.3"
-wordcloud = "^1.8.2.2"
-panel = "^0.13.1"
+python = "^3.12.3"
+panel = "^1.7.5"
+watchfiles = "^1.1.0"
+pandas = "^2.3.2"
+wordcloud = "^1.9.4"
+bokeh = "^3.7.3"
+matplotlib = "^3.10.6"
-[tool.poetry.dev-dependencies]
-pre-commit = "^2.17.0"
-pytest = "^7.0.1"
-pytest-cov = "^3.0.0"
-pdoc = "^10.0.3"
+
+[tool.poetry.group.dev.dependencies]
+pre-commit = "^4.3.0"
+pytest = "^8.4.1"
+pytest-cov = "^6.2.1"
+pdoc = "^15.0.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
diff --git a/survey_dashboard/analysis.py b/survey_dashboard/analysis.py
index 2f871d2..9b4be71 100644
--- a/survey_dashboard/analysis.py
+++ b/survey_dashboard/analysis.py
@@ -9,14 +9,23 @@
# For further information on the license, see the LICENSE file #
###############################################################################
"""
-This module contains some function to process survey data in certain way and
+This module contains some function to process survey data in certain way and
prepare the data for visualization
"""
+
import math
import pandas as pd
from typing import List, Tuple
+from .data.hcs_clean_dictionaries import HCS_colnamesDict
+
-def calculate_crosstab(df: pd.DataFrame, data_key1: str, data_key2: str, id_vars: str=None, astype: str="int") -> pd.DataFrame:
+def calculate_crosstab(
+ df: pd.DataFrame,
+ data_key1: str,
+ data_key2: str,
+ id_vars: str = None,
+ astype: str = "int",
+) -> pd.DataFrame:
"""Calulate the cross table for two keys in a given pandas data frame"""
if id_vars is None:
@@ -24,56 +33,90 @@ def calculate_crosstab(df: pd.DataFrame, data_key1: str, data_key2: str, id_vars
cols = [data_key1, data_key2]
- df0 = df[cols].dropna(how = "all", subset = cols).astype("category")
+ df0 = df[cols].dropna(how="all", subset=cols).astype("category")
totals = dict(df0[data_key1].value_counts())
- df_crosstab = pd.crosstab(df[data_key1], df[data_key2],
- margins = False).reset_index().melt(id_vars = [id_vars])
-
+ df_crosstab = (
+ pd.crosstab(df[data_key1], df[data_key2], margins=False)
+ .reset_index()
+ .melt(id_vars=[id_vars])
+ )
+
# include total answers by career level in cross tab
df_crosstab["total"] = df_crosstab[data_key1].map(totals).astype(astype)
-
+
# calculate relative amount of answers by career level
df_crosstab["percentage"] = (df_crosstab["value"] / df_crosstab["total"]) * 100
-
+
return df_crosstab
-def filter_dataframe(df: pd.DataFrame, include: list=None, exclude: List[Tuple[str, list]]=None,
- exclude_nan=True, exclude_anonymized=True, as_type="category") -> pd.DataFrame:
+def filter_dataframe(
+ df: pd.DataFrame,
+ include: List[str] = None,
+ exclude: List[Tuple[str, List]] = None,
+ exclude_nan: bool = True,
+ exclude_anonymized: bool = True,
+ as_type: str = "object",
+) -> pd.DataFrame:
"""
- Filter a pandas dataframe
+ Filter dataframe based on include/exclude criteria
- example:
- ```
- to_exclude = ['Other', 'Undergraduate / Masters student', 'Director (of the institute)']
- df = filter_dataframe(surveydata, include=["careerLevel", "docStructured", "researchArea"], exclude=[("careerLevel", to_exclude)])
+ Args:
+ df: Input dataframe
+ include: List of columns to include
+ exclude: List of tuples (column, values_to_exclude)
+ exclude_nan: Whether to exclude rows with NaN values
+ exclude_anonymized: Whether to replace "Anonymized" with empty string
+ as_type: Data type to convert columns to
- returns a dataFrame with columns ["careerLevel", "docStructured", "researchArea"],
- where rows which contain to_exclude values in the "careerLevel" column are removed
- ```
+ Returns:
+ Filtered dataframe
"""
+ # Check if the DataFrame has already been renamed (has human-readable column names)
+ # If it has renamed columns, don't try to convert back to original names
+ has_renamed_columns = any(col in df.columns for col in ['careerLevel', 'researchArea', 'centerAffiliation'])
+
+ if include is not None:
+ if has_renamed_columns:
+ # DataFrame already has renamed columns, use them directly
+ include_columns = include
+ else:
+ # DataFrame has original column names, convert if needed
+ original_to_renamed = {v: k for k, v in HCS_colnamesDict.items()}
+ include_columns = [original_to_renamed.get(col, col) for col in include]
+
+ df = (
+ df[include_columns]
+ .dropna(how="all", subset=include_columns)
+ .astype(as_type)
+ )
+ if exclude:
+ for key, val in exclude:
+ if has_renamed_columns:
+ # DataFrame already has renamed columns, use them directly
+ key_column = key
+ else:
+ # DataFrame has original column names, convert if needed
+ original_to_renamed = {v: k for k, v in HCS_colnamesDict.items()}
+ key_column = original_to_renamed.get(key, key)
+
+ df = df.loc[~df[key_column].isin(val)]
- if include is not None:
- df = df[include].dropna(how = "all", subset = include).astype(as_type)
-
- for key, val in exclude:
- #print(key, val)
- df = df.loc[~df[key].isin(val)]
-
if exclude_nan:
for key in df.keys():
df = df.loc[~df[key].isna()]
if exclude_anonymized:
- df = df.replace(to_replace="Anonymized", value="")
+ df = df.replace(to_replace="Anonymized", value="")
return df
+
def get_all_values(df: pd.DataFrame, keylist: List[str], display_dict=None) -> dict:
"""
- Count all values of a given key from a key list in a data frame and
+ Count all values of a given key from a key list in a data frame and
return these values in a dictionary sorted.
"""
@@ -81,15 +124,15 @@ def get_all_values(df: pd.DataFrame, keylist: List[str], display_dict=None) -> d
key = keylist[0]
all_areas = df[key].value_counts()
all_areas = all_areas.sort_index()
- data = {'All': all_areas.values, key:list(all_areas.keys())}
- else: # multiple keys now the keys become the xticks
+ data = {"All": all_areas.values, key: list(all_areas.keys())}
+ else: # multiple keys now the keys become the xticks
combined = {}
for key in keylist:
if display_dict is not None:
xtick = display_dict[key]
else:
xtick = key
- xtick = xtick.replace(' \n', '')
+ xtick = xtick.replace(" \n", "")
temp = df[key]
temp.replace(to_replace=True, value=xtick, inplace=True)
temp.replace(to_replace=False, value=None, inplace=True)
@@ -101,26 +144,32 @@ def get_all_values(df: pd.DataFrame, keylist: List[str], display_dict=None) -> d
# there is a problem if df is empty, i.e temp.value_counts() True 0
for i, ke in enumerate(a.keys()):
# because other can contain all... others..
- #ke = ke.lower() # sometimes there are mixed upper and lower case keys...
- #ke = ke.replace(' \n', '') # some are with and without breaks
+ # ke = ke.lower() # sometimes there are mixed upper and lower case keys...
+ # ke = ke.replace(' \n', '') # some are with and without breaks
temp_val = combined.get(ke, 0)
temp_val = temp_val + a.values[i]
combined[ke] = temp_val
- #for i, ke in enumerate(a.keys()):
+ # for i, ke in enumerate(a.keys()):
# ke = ke.lower() # sometimes there are mixed upper and lower case keys...
# ke = ke.replace(' \n', '') # some are with and without breaks
# temp_val = combined.get(ke, 0)
# temp_val = temp_val + a.values[i]
# combined[ke] = temp_val
- data = {'All' : list(combined.values()), key:list(combined.keys())}
+ data = {"All": list(combined.values()), key: list(combined.keys())}
return data
-def prepare_data_research_field(df: pd.DataFrame, keylist:List[str], key2:str='researchArea', sort_as=None, display_dict= None):# -> dict, list:
+def prepare_data_research_field(
+ df: pd.DataFrame,
+ keylist: List[str],
+ key2: str = "researchArea",
+ sort_as=None,
+ display_dict=None,
+): # -> dict, list:
"""Creates a dict dictionary with data in the form needed by the plotting functions
-
- We prepare several outputs, i.e y_keys because they can have different length and one should be able to create a
+
+ We prepare several outputs, i.e y_keys because they can have different length and one should be able to create a
ColumnDataSource by ColumnDataSource(data=data)
:param df: [description]
:type df: pd.DataFrame
@@ -156,13 +205,17 @@ def prepare_data_research_field(df: pd.DataFrame, keylist:List[str], key2:str='r
"""
research_areas = list(df[key2].value_counts().keys())
- y_keys = ['Cum. Sum'] + research_areas
+ y_keys = ["Cum. Sum"] + research_areas
# Multiple columns will be combined. A single column will be treated differently
if len(keylist) == 1:
key = keylist[0]
all_areas = df[key].value_counts()
all_areas = all_areas.sort_index()
- data = {'Cum. Sum': all_areas.values, key:list(all_areas.keys()), 'x_value': list(all_areas.keys())}
+ data = {
+ "Cum. Sum": all_areas.values,
+ key: list(all_areas.keys()),
+ "x_value": list(all_areas.keys()),
+ }
for area in research_areas:
area_counts = df[df[key2] == area][key].value_counts()
area_counts = area_counts.sort_index()
@@ -176,7 +229,7 @@ def prepare_data_research_field(df: pd.DataFrame, keylist:List[str], key2:str='r
xtick = display_dict[key]
else:
xtick = key
- xtick = xtick.replace(' \n', '')
+ xtick = xtick.replace(" \n", "")
temp = df[key]
temp.replace(to_replace=True, value=xtick, inplace=True)
temp.replace(to_replace=False, value=None, inplace=True)
@@ -185,40 +238,41 @@ def prepare_data_research_field(df: pd.DataFrame, keylist:List[str], key2:str='r
# there is a problem if df is empty, i.e temp.value_counts() True 0
if a.empty:
combined[xtick] = 0
- else:
+ else:
for i, ke in enumerate(a.keys()):
# because other can contain all... others..
- #ke = ke.lower() # sometimes there are mixed upper and lower case keys...
- #ke = ke.replace(' \n', '') # some are with and without breaks
+ # ke = ke.lower() # sometimes there are mixed upper and lower case keys...
+ # ke = ke.replace(' \n', '') # some are with and without breaks
temp_val = combined.get(ke, 0)
temp_val = temp_val + a.values[i]
combined[ke] = temp_val
-
+
# now fill research area specifics
for area in research_areas:
- area_counts = df[df[key2] == area][key]
+ area_counts = df[df[key2] == area][key].copy()
area_counts.replace(to_replace=True, value=xtick, inplace=True)
area_counts.replace(to_replace=False, value=None, inplace=True)
area_counts = area_counts.value_counts()
area_counts = area_counts.sort_index()
temp = data.get(area, [])
- #print(area_counts)
+ # print(area_counts)
if area_counts.empty:
temp.append(0)
else:
temp.append(int(area_counts.values[0]))
data[area] = temp
-
- data['Cum. Sum'] = list(combined.values())
- data['x_value'] = list(combined.keys())
+
+ data["Cum. Sum"] = list(combined.values())
+ data["x_value"] = list(combined.keys())
return data, y_keys
+
'''
def prepare_data_research_field(df: pd.DataFrame, key:str, key2:str='researchArea', sort_as=None):# -> dict, list:
"""Creates a dict dictionary with data in the form needed by the plotting functions
-
- We prepare several outputs, i.e y_keys because they can have different length and one should be able to create a
+
+ We prepare several outputs, i.e y_keys because they can have different length and one should be able to create a
ColumnDataSource by ColumnDataSource(data=data)
:param df: [description]
:type df: pd.DataFrame
@@ -262,7 +316,7 @@ def prepare_data_research_field(df: pd.DataFrame, key:str, key2:str='researchAre
area_counts = df[df[key2] == area][key].value_counts()
area_counts = area_counts.sort_index()
data[area] = area_counts.values
-
+
return data, y_keys
'''
'''
@@ -282,16 +336,17 @@ def prepare_data_research_field(df: pd.DataFrame, key:str):
area_counts = df[df["researchArea"] == area][key].value_counts()
area_counts = area_counts.sort_index()
data[area] = {'counts': area_counts.values, 'values': list(area_counts.keys())}
-
+
return data
'''
-def percentage_to_area(data: List[float], scale_m: float=1.0) -> List[float]:
+
+def percentage_to_area(data: List[float], scale_m: float = 1.0) -> List[float]:
"""
- Convert numbers in a given array to a radius,
-
- where a circle of with that radius is proportionate to the circle area
+ Convert numbers in a given array to a radius,
+
+ where a circle of with that radius is proportionate to the circle area
Useful for circle plots where the area should be proportional to the value
"""
- radius_data = [2*math.sqrt(val*scale_m/math.pi) for val in data]
- return radius_data
\ No newline at end of file
+ radius_data = [2 * math.sqrt(val * scale_m / math.pi) for val in data]
+ return radius_data
diff --git a/survey_dashboard/app.py b/survey_dashboard/app.py
new file mode 100644
index 0000000..9eedfd6
--- /dev/null
+++ b/survey_dashboard/app.py
@@ -0,0 +1,143 @@
+# -*- coding: utf-8 -*-
+###############################################################################
+# Copyright (c), Forschungszentrum Jülich GmbH, IAS-9, Germany. #
+# All rights reserved. #
+# This file is part of the survey_dashboard package. #
+# #
+# The code is hosted on GitHub at #
+# https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard #
+# For further information on the license, see the LICENSE file #
+###############################################################################
+"""
+Simplified entry point for the HMC Survey Dashboard.
+This app.py orchestrates the creation of the dashboard using the new modular structure.
+"""
+
+# Import core components
+from survey_dashboard.core.data import DataProcessor
+from survey_dashboard.core.charts import ChartManager
+
+# Import UI components
+from survey_dashboard.ui.widgets import WidgetFactory
+from survey_dashboard.ui.layout import LayoutManager
+from survey_dashboard.ui.callbacks import CallbackManager
+
+# Initialize core components
+data_processor = DataProcessor()
+chart_manager = ChartManager(data_processor)
+
+# Initialize UI components
+widget_factory = WidgetFactory(data_processor)
+layout_manager = LayoutManager()
+callback_manager = CallbackManager(data_processor, chart_manager, widget_factory)
+
+# Create all widgets
+widgets = widget_factory.create_all_widgets()
+control_groups = widget_factory.get_control_groups(widgets)
+
+# Get initial filter values
+data_filters = widgets["global_filters"]["research_area"].value
+data_filters_method = widgets["global_filters"]["method"].value
+
+# Create all visualizations using chart manager
+overview_charts = chart_manager.create_overview_charts(data_filters, data_filters_method)
+exploration_charts = chart_manager.create_exploration_charts(
+ widgets["exploration"]["question1"],
+ widgets["exploration"]["question2"],
+ data_filters,
+ data_filters_method
+)
+correlation_chart = chart_manager.create_correlation_chart(
+ widgets["exploration"]["question1"],
+ widgets["exploration"]["question2"],
+ data_filters,
+ data_filters_method
+)
+methods_tools_tabs, wordcloud_panes = chart_manager.create_wordcloud_tabs(data_filters, data_filters_method)
+
+# Create update callbacks
+callbacks = callback_manager.create_update_callbacks(widgets)
+
+# Bind callbacks to widgets and charts
+def bind_callbacks():
+ """Bind all interactive callbacks to their respective widgets and charts."""
+ # Global filter callbacks for overview charts
+ for i, chart_key in enumerate(['ov1', 'ov2', 'ov3', 'ov4']):
+ widgets["global_filters"]["research_area"].param.watch(
+ lambda event, target=overview_charts[chart_key], callback=callbacks["overview"][i]: callback(target, event),
+ "value"
+ )
+ widgets["global_filters"]["method"].param.watch(
+ lambda event, target=overview_charts[chart_key], callback=callbacks["overview"][i]: callback(target, event),
+ "value"
+ )
+
+ # Exploration chart callbacks
+ for widget_key in ["question1", "question2", "chart_type1", "chart_type2"]:
+ callback_idx = 0 if "1" in widget_key else 1
+ target_chart = exploration_charts[callback_idx]
+ widgets["exploration"][widget_key].param.watch(
+ lambda event, target=target_chart, callback=callbacks["exploration"][callback_idx]: callback(target, event),
+ "value"
+ )
+
+ # Global filter callbacks for exploration charts
+ for i, callback in enumerate(callbacks["exploration"]):
+ target_chart = exploration_charts[i]
+ widgets["global_filters"]["research_area"].param.watch(
+ lambda event, target=target_chart, callback=callback: callback(target, event),
+ "value"
+ )
+ widgets["global_filters"]["method"].param.watch(
+ lambda event, target=target_chart, callback=callback: callback(target, event),
+ "value"
+ )
+
+ # Correlation chart callbacks
+ widgets["exploration"]["question1"].param.watch(
+ lambda event, target=correlation_chart[0], callback=callbacks["correlation"]: callback(target, event),
+ "value"
+ )
+ widgets["exploration"]["question2"].param.watch(
+ lambda event, target=correlation_chart[0], callback=callbacks["correlation"]: callback(target, event),
+ "value"
+ )
+ widgets["global_filters"]["research_area"].param.watch(
+ lambda event, target=correlation_chart[0], callback=callbacks["correlation"]: callback(target, event),
+ "value"
+ )
+ widgets["global_filters"]["method"].param.watch(
+ lambda event, target=correlation_chart[0], callback=callbacks["correlation"]: callback(target, event),
+ "value"
+ )
+
+ # Word cloud callbacks
+ wordcloud_targets = [wordcloud_panes["methods"], wordcloud_panes["software"], wordcloud_panes["repositories"]]
+ for i, callback in enumerate(callbacks["wordclouds"]):
+ target = wordcloud_targets[i]
+ widgets["global_filters"]["research_area"].param.watch(
+ lambda event, target=target, callback=callback: callback(target, event),
+ "value"
+ )
+ widgets["global_filters"]["method"].param.watch(
+ lambda event, target=target, callback=callback: callback(target, event),
+ "value"
+ )
+
+# Create complete layout
+layout = layout_manager.create_complete_layout(
+ control_groups=control_groups,
+ overview_charts=overview_charts,
+ exploration_charts=exploration_charts,
+ correlation_chart=correlation_chart,
+ methods_tools_tabs=methods_tools_tabs
+)
+
+# Wire correlation_row to callbacks for visibility toggling
+correlation_row = layout_manager.get_correlation_row()
+callback_manager.set_correlation_row(correlation_row)
+
+# Setup template and make servable
+template = layout_manager.setup_template_variables(layout)
+bind_callbacks()
+template = layout_manager.make_servable()
\ No newline at end of file
diff --git a/survey_dashboard/core/__init__.py b/survey_dashboard/core/__init__.py
new file mode 100644
index 0000000..c47f08b
--- /dev/null
+++ b/survey_dashboard/core/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+"""
+Core business logic for the survey dashboard.
+"""
\ No newline at end of file
diff --git a/survey_dashboard/core/charts.py b/survey_dashboard/core/charts.py
new file mode 100644
index 0000000..6c9fe56
--- /dev/null
+++ b/survey_dashboard/core/charts.py
@@ -0,0 +1,240 @@
+# -*- coding: utf-8 -*-
+###############################################################################
+# Copyright (c), Forschungszentrum Jülich GmbH, IAS-9, Germany. #
+# All rights reserved. #
+# This file is part of the survey_dashboard package. #
+# #
+# The code is hosted on GitHub at #
+# https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard #
+# For further information on the license, see the LICENSE file #
+###############################################################################
+"""
+Chart creation module for the survey dashboard.
+Handles creation of all chart types and visualizations.
+"""
+
+import panel as pn
+
+from survey_dashboard.plots import (
+ bokeh_barchart,
+ bokeh_piechart,
+ bokeh_corr_plot,
+ create_legend_corr,
+ generate_wordcloud,
+ interactive_wordcloud,
+ DEFAULT_FIGURE_WIDTH,
+ DEFAULT_FIGURE_HEIGHT
+)
+from survey_dashboard.core.config import (
+ DEFAULT_QUESTIONS,
+ ACCORDION_WIDTH,
+ OFFSET_HEIGHT_FOR_TABS,
+ WORDCLOUD_CONTENT,
+ SIZING_MODE,
+ LANGUAGE
+)
+from survey_dashboard.i18n.text_display import (
+ md_text_tools_used,
+ md_text_tools_tabs
+)
+
+
+class ChartManager:
+ """Manages creation of all chart types."""
+
+ def __init__(self, data_processor):
+ """Initialize chart manager with data processor."""
+ self.data_processor = data_processor
+ self.half_width = int(ACCORDION_WIDTH / 2)
+
+ def create_overview_charts(self, data_filters, data_filters_method):
+ """Create all overview charts."""
+ overview_charts = {}
+
+ # Get overview question mappings
+ overview_questions = {
+ 'ov1': self.data_processor.map_qkey_to_question(DEFAULT_QUESTIONS["overview"]["ov1"]),
+ 'ov2': self.data_processor.map_qkey_to_question(DEFAULT_QUESTIONS["overview"]["ov2"]),
+ 'ov3': self.data_processor.map_qkey_to_question(DEFAULT_QUESTIONS["overview"]["ov3"]),
+ 'ov4': self.data_processor.map_qkey_to_question(DEFAULT_QUESTIONS["overview"]["ov4"])
+ }
+
+ # Create each overview chart
+ for key, question in overview_questions.items():
+ start_display_data, ydata_spec, display_options = self.data_processor.select_data(
+ question, data_filters, data_filters_method
+ )
+ y_keys = ydata_spec.data["y_keys"]
+
+ overview_charts[key] = pn.pane.Bokeh(
+ bokeh_barchart(
+ start_display_data,
+ y=y_keys,
+ factors=y_keys,
+ legend_labels=y_keys,
+ fill_color=ydata_spec.data["colors"],
+ orientation="vertical",
+ **display_options,
+ )
+ )
+
+ return overview_charts
+
+ def create_exploration_charts(self, question_select, question_select2, data_filters, data_filters_method):
+ """Create exploration charts."""
+ # First exploration chart
+ start_display_data, ydata_spec, display_options = self.data_processor.select_data(
+ question_select.value, data_filters, data_filters_method
+ )
+ y_keys = ydata_spec.data["y_keys"]
+ fill_colors = ydata_spec.data["colors"]
+
+ fig_exp1 = pn.pane.Bokeh(
+ bokeh_barchart(
+ start_display_data,
+ y=y_keys,
+ factors=y_keys,
+ legend_labels=y_keys,
+ fill_color=fill_colors,
+ orientation="vertical",
+ **display_options,
+ )
+ )
+
+ # Second exploration chart
+ start_display_data, ydata_spec, display_options = self.data_processor.select_data(
+ question_select2.value, data_filters, data_filters_method
+ )
+ y_keys = ydata_spec.data["y_keys"]
+ fill_colors = ydata_spec.data["colors"]
+
+ fig_exp2 = pn.pane.Bokeh(
+ bokeh_barchart(
+ start_display_data,
+ y=y_keys,
+ factors=y_keys,
+ legend_labels=y_keys,
+ fill_color=fill_colors,
+ orientation="vertical",
+ **display_options,
+ )
+ )
+
+ return fig_exp1, fig_exp2
+
+ def create_correlation_chart(self, question_select, question_select2, data_filters, data_filters_method):
+ """Create correlation chart with legend."""
+ start_corr_data, display_options_corr, marker_scale = self.data_processor.select_data_corr(
+ question_select.value, question_select2.value, data_filters, data_filters_method
+ )
+ fig_corr_1 = bokeh_corr_plot(start_corr_data, **display_options_corr)
+ fig_corr = pn.pane.Bokeh(fig_corr_1, align="center")
+
+ leg_corr = pn.pane.Bokeh(
+ create_legend_corr(
+ fig_corr_1, colors=start_corr_data.data["color"], scale_m=marker_scale
+ ),
+ align="center",
+ )
+
+ return fig_corr, leg_corr
+
+ def create_wordcloud_tabs(self, data_filters, data_filters_method):
+ """Create word cloud tabs for methods, software, and repositories."""
+ wordcloud_panes = {}
+
+ # Create word clouds for each content type
+ for content_type, content_fields in WORDCLOUD_CONTENT.items():
+ text_list = self.data_processor.select_data_wordcloud(
+ data_filters, data_filters_method, content=content_fields
+ )
+ wordcloud = generate_wordcloud(
+ text_list, height=DEFAULT_FIGURE_HEIGHT, width=ACCORDION_WIDTH
+ )
+ wordcloud_panes[content_type] = pn.pane.Bokeh(
+ interactive_wordcloud(wordcloud),
+ width=wordcloud.width,
+ height=wordcloud.height + OFFSET_HEIGHT_FOR_TABS,
+ )
+
+ # Create tabs
+ methods_tabs = pn.Column(
+ md_text_tools_used[LANGUAGE],
+ pn.Tabs(
+ (md_text_tools_tabs["methods"][LANGUAGE], wordcloud_panes["methods"]),
+ (md_text_tools_tabs["software"][LANGUAGE], wordcloud_panes["software"]),
+ (md_text_tools_tabs["repositories"][LANGUAGE], wordcloud_panes["repositories"]),
+ ),
+ sizing_mode=SIZING_MODE,
+ )
+
+ return methods_tabs, wordcloud_panes
+
+ def create_chart(self, question, data_filters, data_filters_method, chart_type):
+ """Create a chart of the specified type."""
+ df, ydata_spec, display_options = self.data_processor.select_data(
+ question, data_filters, data_filters_method
+ )
+
+ y_keys = ydata_spec.data["y_keys"]
+ fill_colors = ydata_spec.data["colors"]
+
+ if chart_type == "Vertical Bar chart":
+ fig = bokeh_barchart(
+ df,
+ y=y_keys,
+ factors=y_keys,
+ legend_labels=y_keys,
+ fill_color=fill_colors,
+ orientation="vertical",
+ **display_options,
+ )
+ elif chart_type == "Horizontal Bar chart":
+ # Swap the ranges for horizontal orientation
+ y_range = display_options["y_range"]
+ display_options["y_range"] = display_options["x_range"]
+ display_options["x_range"] = y_range
+
+ # Swap the labels for horizontal orientation
+ display_options["xlabel"] = "" # X axis lays vertically but shows categorical data
+ display_options["ylabel"] = "Number of Answers" # Y axis now lays horizontally but still shows numerical data
+
+ fig = bokeh_barchart(
+ df,
+ y=y_keys,
+ factors=y_keys,
+ legend_labels=y_keys,
+ fill_color=fill_colors,
+ orientation="horizontal",
+ **display_options,
+ )
+ elif chart_type == "Pie chart":
+ display_options.pop("x_range")
+ display_options.pop("y_range")
+ display_options.pop("width")
+ fig = bokeh_piechart(
+ df,
+ y=y_keys,
+ legend_labels=y_keys,
+ fill_color=fill_colors,
+ **display_options,
+ )
+
+ return fig
+
+ def create_correlation_plot(self, question1, question2, data_filters, data_filters_method):
+ """Create correlation plot."""
+ df, display_options, marker_scale = self.data_processor.select_data_corr(
+ question1, question2, data_filters, data_filters_method
+ )
+ return bokeh_corr_plot(df, **display_options)
+
+ def create_wordcloud(self, data_filters, data_filters_method, content):
+ """Create word cloud visualization."""
+ text_list = self.data_processor.select_data_wordcloud(
+ data_filters, data_filters_method, content=content
+ )
+ wordcloud = generate_wordcloud(
+ text_list, height=DEFAULT_FIGURE_HEIGHT, width=DEFAULT_FIGURE_WIDTH
+ )
+ return interactive_wordcloud(wordcloud)
\ No newline at end of file
diff --git a/survey_dashboard/core/config.py b/survey_dashboard/core/config.py
new file mode 100644
index 0000000..06e6a78
--- /dev/null
+++ b/survey_dashboard/core/config.py
@@ -0,0 +1,133 @@
+# -*- coding: utf-8 -*-
+###############################################################################
+# Copyright (c), Forschungszentrum Jülich GmbH, IAS-9, Germany. #
+# All rights reserved. #
+# This file is part of the survey_dashboard package. #
+# #
+# The code is hosted on GitHub at #
+# https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard #
+# For further information on the license, see the LICENSE file #
+###############################################################################
+"""
+Configuration module for the survey dashboard.
+Contains all global constants, paths, and configuration settings.
+"""
+
+import os
+from pathlib import Path
+
+from survey_dashboard.plots import DEFAULT_FIGURE_WIDTH
+from survey_dashboard.data.hcs_clean_dictionaries import (
+ HCSquestions,
+ HCS_colnamesDict,
+ HCS_MCsubquestions,
+)
+from survey_dashboard.hmc_layout.hmc_colordicts import (
+ hubPalette,
+ get_hmc_colors
+)
+
+# Global Configuration
+LANGUAGE = os.environ.get("LANGUAGE_DASHBOARD", "EN")
+ACCORDION_WIDTH = int(DEFAULT_FIGURE_WIDTH * 2)
+SIZING_MODE = "stretch_width"
+
+# Data Configuration
+def get_data_path():
+ """Get the path to the data file relative to this module"""
+ this_folder = Path(__file__).parent.parent
+ return this_folder / "data" / "hmc_survey_2021_data.csv"
+
+DATAFILE_PATH = str(get_data_path())
+
+# Filter Configuration
+FILTER_BY = "researchArea"
+FILTER_BY_2 = "dataGenMethod_"
+
+# Research Fields and Colors
+RESEARCH_FIELDS = [
+ "All",
+ "Cum. Sum",
+ "Chemistry",
+ "Earth Science",
+ "Engineering Science",
+ "Life Science",
+ "Mathematics",
+ "Other",
+ "Physics",
+ "Psychology"
+]
+
+# Generate colors for research fields using HMC palette
+RESEARCH_AREA_COLORS = {
+ field: get_hmc_colors(len(RESEARCH_FIELDS))[i]
+ for i, field in enumerate(RESEARCH_FIELDS)
+}
+
+# HMC Color Configuration
+HMC_CHART_COLORS = get_hmc_colors(10) # Default 10 colors for charts
+HMC_HUB_COLORS = hubPalette # Research field specific colors
+
+# Default Questions for Startup
+DEFAULT_QUESTIONS = {
+ "overview": {
+ "ov1": "fairFamiliarity",
+ "ov2": "yearsInResearch",
+ "ov3": "researchArea",
+ "ov4": "pubAmount"
+ },
+ "exploration": {
+ "bar1": "careerLevel",
+ "bar2": "docStructured",
+ "corr1": "careerLevel",
+ "corr2": "docStructured"
+ }
+}
+
+# Tooltips Configuration
+TOOLTIPS = [("Title", "@title"), ("Answer", "@x"), ("Number of Answers", "@y")]
+
+# Widget Configuration
+# Note: Pie chart removed due to data structure incompatibilities with multiple filters
+CHART_TYPES = ['Vertical Bar chart', 'Horizontal Bar chart']
+
+# Word Cloud Content Configuration
+WORDCLOUD_CONTENT = {
+ "methods": ["dataGenMethodSpec_"],
+ "software": ["software_1", "software_2", "software_3"],
+ "repositories": ["pubRepo_1", "pubRepo_2", "pubRepo_3", "pubRepo_4", "pubRepo_5"]
+}
+
+# Layout Configuration
+HALF_WIDTH_OFFSET = 2 # ACCORDION_WIDTH / 2
+OFFSET_HEIGHT_FOR_TABS = 40
+
+# Create reverse dictionaries for data mapping
+HCS_COLNAMES_REVERT_DICT = {val: key for key, val in HCS_colnamesDict.items()}
+HCS_QUESTIONS_REVERT = {}
+HCS_QUESTIONS_REVERT[LANGUAGE] = {
+ val: key for key, val in HCSquestions[LANGUAGE].items()
+}
+
+# Flatten MC subquestions for easier lookup
+HCS_MCSUBQUESTIONS_FLATTENED = {}
+for key, val in HCS_MCsubquestions.items():
+ for ke, va in val.items():
+ HCS_MCSUBQUESTIONS_FLATTENED[ke] = va
+
+# Panel Configuration
+PANEL_CONFIG = {
+ "loading_spinner": "dots",
+ "loading_color": "#005AA0"
+}
+
+# Template Configuration
+def get_template_path():
+ """Get the path to the template file based on language"""
+ this_folder = Path(__file__).parent.parent
+ return this_folder / f"hmc_layout/{LANGUAGE.lower()}_template.html"
+
+def get_assets_path():
+ """Get the path to the assets folder"""
+ this_folder = Path(__file__).parent.parent
+ return this_folder / "hmc_layout" / "assets"
diff --git a/survey_dashboard/core/data.py b/survey_dashboard/core/data.py
new file mode 100644
index 0000000..09c3b97
--- /dev/null
+++ b/survey_dashboard/core/data.py
@@ -0,0 +1,467 @@
+# -*- coding: utf-8 -*-
+###############################################################################
+# Copyright (c), Forschungszentrum Jülich GmbH, IAS-9, Germany. #
+# All rights reserved. #
+# This file is part of the survey_dashboard package. #
+# #
+# The code is hosted on GitHub at #
+# https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard #
+# For further information on the license, see the LICENSE file #
+###############################################################################
+"""
+Data processing module for the survey dashboard.
+Handles all survey data filtering, transformation, and preparation for visualization.
+"""
+
+import pandas as pd
+import numpy as np
+from bokeh.models import ColumnDataSource
+
+from survey_dashboard.analysis import (
+ calculate_crosstab,
+ prepare_data_research_field,
+ filter_dataframe,
+ percentage_to_area,
+ get_all_values
+)
+from survey_dashboard.data.hcs_clean_dictionaries import (
+ HCSquestions,
+ HCS_orderedCats,
+ HCS_MCsubquestions,
+ HCS_colnamesDict,
+ HCS_MCList,
+ HCS_dtypesWOmc
+)
+from survey_dashboard.core.config import (
+ LANGUAGE,
+ DATAFILE_PATH,
+ FILTER_BY,
+ FILTER_BY_2,
+ RESEARCH_FIELDS,
+ RESEARCH_AREA_COLORS,
+ HCS_COLNAMES_REVERT_DICT,
+ HCS_QUESTIONS_REVERT,
+ HCS_MCSUBQUESTIONS_FLATTENED
+)
+
+
+class DataProcessor:
+ """Handles all survey data operations and transformations."""
+
+ def __init__(self):
+ """Initialize the data processor with survey data."""
+ # Read CSV, skipping comment lines that start with #
+ self.survey_data = pd.read_csv(DATAFILE_PATH, comment='#')
+ # Rename columns to human readable names
+ self.survey_data.rename(columns=HCS_colnamesDict, inplace=True)
+
+ # Create data sources for different uses
+ self.source = ColumnDataSource(self.survey_data)
+ self.source_corr = ColumnDataSource(self.survey_data)
+
+ def map_qkey_to_question(self, key: str, lang: str = LANGUAGE) -> str:
+ """
+ Given a key return the full question to be displayed associated with the key for a given language
+ """
+ mc_key = key
+
+ if key in HCS_MCList:
+ # Multiple choice, all have the same question for now
+ mc_key = list(HCS_MCsubquestions[key].keys())[0]
+ index = HCS_COLNAMES_REVERT_DICT[mc_key].split("/")[0]
+ else:
+ index = HCS_COLNAMES_REVERT_DICT[mc_key]
+
+ return HCSquestions[lang][index]
+
+ def map_question_to_qkey(self, question: str, lang: str = LANGUAGE) -> list:
+ """
+ Map a given question String to the corresponding columns keys in the dataframe
+
+ usually this is one column, but for multiple choice this can be several columns.
+ Handles question strings with or without the ★ correlation indicator prefix.
+ """
+ column_keys = []
+ # Strip the ★ indicator if present (used to mark correlation-compatible questions)
+ clean_question = question.replace("★ ", "")
+ key = HCS_QUESTIONS_REVERT[lang][clean_question]
+ if key in HCS_MCList:
+ # for multiple choice this is a list of subquestions
+ key_s = key + "/"
+ for key in HCS_colnamesDict.keys():
+ if key_s in key:
+ if not "other" in key: # for now, needs to be included in HCS_MCsubquestions
+ column_keys.append(HCS_colnamesDict[key])
+ column_keys.sort() # Wrong sort... _1 _10 _2 ...
+ else:
+ column_keys.append(HCS_colnamesDict[key])
+ return column_keys
+
+ def select_data(self, question, data_filters, data_filters_method, filter_by=FILTER_BY):
+ """Select and transform data for visualization"""
+
+ def get_real_research_areas(data_filters):
+ """
+ Separate pseudo-categories (All, Cum. Sum) from real research area values.
+
+ Args:
+ data_filters: List of selected filter values
+
+ Returns:
+ tuple: (real_research_areas, pseudo_categories)
+ """
+ pseudo_categories = {"All", "Cum. Sum"}
+ real_areas = [area for area in data_filters if area not in pseudo_categories]
+ pseudo_cats = [area for area in data_filters if area in pseudo_categories]
+ return real_areas, pseudo_cats
+
+ q_index = self.map_question_to_qkey(question)
+ q_index_0 = q_index[0]
+ # Strip ★ indicator for cleaner chart titles
+ question_full = question.replace("★ ", "")
+
+ # Clean up missing columns
+ q_index_clean = []
+ keys = list(self.survey_data.keys())
+ for key in q_index:
+ if key in keys:
+ q_index_clean.append(key)
+
+ exclude_nan = True
+ if len(q_index) > 1:
+ exclude_nan = False
+
+ # Process method filters
+ method_include = []
+ method_exclude = []
+ methods_dict = HCS_MCsubquestions[FILTER_BY_2]
+ for method in data_filters_method:
+ for key, val in methods_dict.items():
+ if val == method:
+ method_include.append(key)
+ method_exclude.append((key, [False]))
+
+ include_clean = list(set([FILTER_BY] + q_index_clean + method_include))
+
+ # Filter dataframe
+ df = filter_dataframe(
+ self.survey_data,
+ include=include_clean,
+ exclude=method_exclude,
+ exclude_nan=exclude_nan,
+ )
+
+ data_all = get_all_values(
+ df, q_index_clean, display_dict=HCS_MCSUBQUESTIONS_FLATTENED
+ )
+
+ # Separate real research areas from pseudo-categories
+ real_research_areas, pseudo_categories = get_real_research_areas(data_filters)
+
+ # Handle data filtering based on what's selected
+ if "All" in data_filters and len(data_filters) == 1:
+ # Only "All" is selected - use the aggregated data from all research areas
+ if len(q_index_clean) == 1:
+ key = q_index_clean[0]
+ data = {
+ "All": data_all["All"],
+ key: data_all.get(key, []),
+ "x_value": data_all.get(key, [])
+ }
+ y_keys = ["All"]
+ else:
+ # Multiple columns case (multiple-choice questions)
+ data = data_all.copy()
+ # For multiple-choice, get_all_values returns {All: values, last_key: labels}
+ # We need to add x_value for the plotting code
+ # The last key in q_index_clean contains the x-axis labels
+ last_key = q_index_clean[-1]
+ if last_key in data_all and "x_value" not in data:
+ data["x_value"] = data_all[last_key]
+ y_keys = data_filters
+ else:
+ # Handle filtering based on real research areas (not pseudo-categories)
+ if real_research_areas:
+ # Real research areas are selected - filter the data to include only those
+ exclude = []
+ for field in RESEARCH_FIELDS:
+ # Only exclude fields that are real research areas (not pseudo-categories)
+ if field not in {"All", "Cum. Sum"} and field not in real_research_areas:
+ exclude.append(field)
+
+ for filter_key in exclude:
+ df = df[df[filter_by] != filter_key]
+ # else: Only pseudo-categories selected - df remains unfiltered
+
+ # Special case: if we're querying the research area question itself,
+ # we need different logic to avoid double-grouping by research areas
+ if q_index_0 == filter_by: # This is the research area question
+ # For research area distribution, create data structure directly
+ data = {}
+ # Use the full research area list as x_value for proper positioning
+ data["x_value"] = data_all.get(q_index_0, [])
+
+ # Create arrays for each real research area selected
+ for area in real_research_areas:
+ # Create array with value at correct position, zeros elsewhere
+ area_array = np.zeros(len(data["x_value"]))
+ if area in data["x_value"]:
+ position = data["x_value"].index(area)
+ area_count = len(df[df[filter_by] == area])
+ area_array[position] = area_count
+ data[area] = area_array
+
+ # Handle "Cum. Sum" pseudo-category if selected
+ if "Cum. Sum" in pseudo_categories:
+ # Add cumulative sum data (this will be the total across all areas)
+ data["Cum. Sum"] = data_all.get("All", [])
+
+ # Set y_keys to include both real areas and pseudo-categories
+ y_keys = real_research_areas + [cat for cat in pseudo_categories if cat != "All"]
+ else:
+ # Normal case: use prepare_data_research_field for other questions
+ data, y_keys = prepare_data_research_field(df, q_index)
+
+ # Add "All" data if it's selected in the pseudo-categories
+ if "All" in pseudo_categories:
+ all_data = data_all.get("All", [])
+
+ # Special handling for research area question
+ if q_index_0 == filter_by: # This is the research area question
+ # Add "All" data to our research area structure
+ data["All"] = all_data
+ # Make sure "All" is in y_keys
+ if "All" not in y_keys:
+ y_keys = ["All"] + y_keys
+ elif "researchArea" in data:
+ # When "All" + specific filters are selected, expand to show all research areas
+ # Use full "All" data and expand x_value to all research areas
+ data["All"] = all_data
+ data["x_value"] = data_all["researchArea"]
+
+ # Expand specific research area data to match full x_value length
+ for key in data_filters:
+ if key != "All" and key in data:
+ # Find position of this research area in full x_value
+ try:
+ position = data["x_value"].index(key)
+ # Create array with value at correct position, zeros elsewhere
+ new_array = np.zeros(len(data["x_value"]), dtype=data[key].dtype)
+ new_array[position] = data[key][0] # Use first (and only) value
+ data[key] = new_array
+ except ValueError:
+ # If not found, just pad with zeros
+ padding = [0] * (len(data["x_value"]) - len(data[key]))
+ data[key] = list(data[key]) + padding
+ else:
+ # For other questions: truncate to match x_value length
+ if len(all_data) > len(data["x_value"]):
+ data["All"] = all_data[:len(data["x_value"])]
+ else:
+ data["All"] = all_data
+
+ # Also expand Cum. Sum to match the new x_value length
+ if "Cum. Sum" in data:
+ cum_sum_data = data["Cum. Sum"]
+ if len(cum_sum_data) < len(data["x_value"]):
+ # Pad with zeros to match new length
+ if isinstance(cum_sum_data, np.ndarray):
+ padding = np.zeros(len(data["x_value"]) - len(cum_sum_data), dtype=cum_sum_data.dtype)
+ data["Cum. Sum"] = np.concatenate([cum_sum_data, padding])
+ else:
+ padding = [0] * (len(data["x_value"]) - len(cum_sum_data))
+ data["Cum. Sum"] = list(cum_sum_data) + padding
+
+ # Prepare display specifications
+ ydata_spec = {}
+ colors = []
+ for key in y_keys:
+ colors.append(RESEARCH_AREA_COLORS[key])
+
+ # Determine axis configuration
+ xtype = None
+ if q_index_0 in HCS_dtypesWOmc.keys():
+ xtype = HCS_dtypesWOmc[q_index_0]
+
+ if len(q_index) > 1: # multiple choice case
+ # Defensive: ensure x_value exists, fallback to using q_index_0 data
+ x_range = data.get("x_value", data.get(q_index_0, []))
+ width = 0.1
+ elif xtype == "category":
+ x_range = HCS_orderedCats[q_index_0]
+ width = 0.1
+ else:
+ x_range = None
+ width = 0.6
+ y_range = None
+
+ ydata_spec["y_keys"] = y_keys
+ ydata_spec["colors"] = colors
+ ydata_spec["legend_labels"] = y_keys
+ selected = ColumnDataSource(data=data)
+ ydata_spec = ColumnDataSource(data=ydata_spec)
+
+ display_options = {
+ "x_range": x_range,
+ "y_range": y_range,
+ "title": f"{question_full}",
+ "width": width,
+ }
+
+ return selected, ydata_spec, display_options
+
+ def select_data_corr(self, question, question2, data_filters, data_filters_method):
+ """Select the data to display in the correlation vis"""
+ q1_key = self.map_question_to_qkey(question)
+ q2_key = self.map_question_to_qkey(question2)
+ q1_index_0 = q1_key[0]
+ q2_index_0 = q2_key[0]
+
+ # Determine axis ranges and types
+ xtype = None
+ if q1_index_0 in HCS_dtypesWOmc.keys():
+ xtype = HCS_dtypesWOmc[q1_index_0]
+
+ if xtype == "category":
+ x_range = HCS_orderedCats[q1_index_0]
+ else:
+ x_range = None
+
+ ytype = None
+ if q2_index_0 in HCS_dtypesWOmc.keys():
+ ytype = HCS_dtypesWOmc[q2_index_0]
+ if ytype == "category":
+ y_range = HCS_orderedCats[q2_index_0]
+ else:
+ y_range = None
+
+ # Clean up missing columns
+ q1_key_clean = []
+ keys = list(self.survey_data.keys())
+ for key in q1_key:
+ if key in keys:
+ q1_key_clean.append(key)
+
+ q2_key_clean = []
+ for key in q2_key:
+ if key in keys:
+ q2_key_clean.append(key)
+
+ exclude_nan = True
+ if len(q1_key) > 1:
+ exclude_nan = False
+
+ # Process method filters
+ method_include = []
+ method_exclude = []
+ methods_dict = HCS_MCsubquestions[FILTER_BY_2]
+ for method in data_filters_method:
+ for key, val in methods_dict.items():
+ if val == method:
+ method_include.append(key)
+ method_exclude.append((key, [False]))
+
+ include_clean = list(
+ set([FILTER_BY] + q2_key_clean + q1_key_clean + method_include)
+ )
+
+ # Filter dataframe
+ df = filter_dataframe(
+ self.survey_data,
+ include=include_clean,
+ exclude=method_exclude,
+ exclude_nan=exclude_nan,
+ )
+
+ # Calculate cross-tabulation
+ cross_tab = calculate_crosstab(df, q1_index_0, q2_index_0)
+ marker_scale = 20.0
+ cross_tab["markersize"] = percentage_to_area(
+ cross_tab["percentage"], scale_m=marker_scale
+ )
+ cross_tab["x_values"] = cross_tab[q1_index_0]
+ cross_tab["y_values"] = cross_tab[q2_index_0]
+ cross_tab["color"] = ["#A0235A" for i in cross_tab[q2_index_0]]
+
+ # Configure tooltips
+ tooltips = [
+ (f"{q1_key[0]}", "@x_values"),
+ (f"{q2_key[0]}", "@y_values"),
+ ("total", "@total"),
+ ("percentage", "@percentage"),
+ ]
+
+ title = f""
+ # Strip ★ indicator for cleaner axis labels
+ xlabel = f"{question.replace('★ ', '')}"
+ ylabel = f"{question2.replace('★ ', '')}"
+
+ selected = ColumnDataSource(cross_tab)
+
+ display_options = {
+ "x_range": x_range,
+ "y_range": y_range,
+ "xlabel": xlabel,
+ "ylabel": ylabel,
+ "title": title,
+ "tooltips": tooltips,
+ }
+
+ return selected, display_options, marker_scale
+
+ def select_data_wordcloud(self, data_filters, data_filters_method, content):
+ """Filter data for wordcloud from data filters"""
+ word_list = []
+
+ method_include = []
+ method_exclude = []
+ methods_dict = HCS_MCsubquestions[FILTER_BY_2]
+ method_keys = list(methods_dict.keys())
+ for method in data_filters_method:
+ for key in method_keys:
+ if methods_dict[key] == method:
+ method_include.append(key)
+ method_exclude.append((key, [False]))
+
+ if len(data_filters_method) == 0:
+ method_include = method_keys
+ method_exclude = []
+
+ # Process content specification
+ data_include = []
+ if "dataGenMethodSpec_" in content:
+ for i, method in enumerate(method_include):
+ id_meth = method[-1]
+ if id_meth == "r": # From other
+ id_meth = i + 1
+ data_include.append("dataGenMethodSpec_{}_1".format(id_meth))
+ data_include.append("dataGenMethodSpec_{}_2".format(id_meth))
+ data_include.append("dataGenMethodSpec_{}_3".format(id_meth))
+ else:
+ data_include = content
+
+ # Filter dataframe
+ df = filter_dataframe(
+ self.survey_data,
+ include=[FILTER_BY] + method_include + data_include,
+ exclude=method_exclude,
+ as_type="str",
+ )
+
+ # Filter by research areas
+ exclude = []
+ for field in RESEARCH_FIELDS:
+ if field not in data_filters:
+ exclude.append(field)
+ if "All" in data_filters:
+ exclude = []
+ for area in exclude:
+ df = df[df[FILTER_BY] != area]
+
+ # Prepare word list
+ word_list = []
+ for method in data_include:
+ w_list = [word for word in df[method] if str(word) != "nan"]
+ word_list = word_list + w_list
+
+ return word_list
\ No newline at end of file
diff --git a/survey_dashboard/data/display_specifications/hmc_custom_layout.py b/survey_dashboard/data/display_specifications/hmc_custom_layout.py
deleted file mode 100644
index fa7004a..0000000
--- a/survey_dashboard/data/display_specifications/hmc_custom_layout.py
+++ /dev/null
@@ -1,45 +0,0 @@
-hmc_custom_css_accordion ='''
-.bk.card {
- border: 1px solid rgba(0,0,0,.125);
- border-radius: 0.25rem;
-}
-.bk.accordion {
- border: 1px solid rgba(0,0,0,.125);
-}
-.bk.card-header {
- align-items: center;
- background-color: rgba(0, 0, 0, 0.03);
- border-radius: 0.25rem;
- display: inline-flex;
- justify-content: start;
- width: 100%;
-}
-.bk.accordion-header {
- align-items: center;
- background-color: rgba(0, 0, 0, 0.03);
- border-radius: 0;
- display: flex;
- justify-content: start;
- width: 100%;
-}
-.bk.card-button {
- background-color: transparent;
- margin-left: 0.5em;
-}
-.bk.card-header-row {
- position: relative !important;
-}
-.bk.card-title {
- align-items: left;
- font-size: 1.4em;
- font-weight: bold;
- overflow-wrap: break-word;
-}
-.bk.card-header-row > .bk {
- overflow-wrap: break-word;
- text-align: left;
-}
-'''
-#rgba(0, 0, 0, 0.03);
-#"#005AA0" : rgba(0, 90, 160, 0.53);
-# background-color: rgba(0, 90, 160, 0.53);
diff --git a/survey_dashboard/data/generate_overview.py b/survey_dashboard/data/generate_overview.py
deleted file mode 100644
index f0cf70e..0000000
--- a/survey_dashboard/data/generate_overview.py
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-def generate_overview():
-
-
- data_overview = []
- return
-
-def generate_tools():
-
- return
\ No newline at end of file
diff --git a/survey_dashboard/data/display_specifications/hcs_clean_dictionaries.py b/survey_dashboard/data/hcs_clean_dictionaries.py
similarity index 97%
rename from survey_dashboard/data/display_specifications/hcs_clean_dictionaries.py
rename to survey_dashboard/data/hcs_clean_dictionaries.py
index 1570340..21aafd6 100644
--- a/survey_dashboard/data/display_specifications/hcs_clean_dictionaries.py
+++ b/survey_dashboard/data/hcs_clean_dictionaries.py
@@ -15,9 +15,9 @@
##########################################
############### DICTIONARY ###############
########## RENAME COLUMN NAMES ###########
-##########################################
+##########################################
-# Dictionary to rename columns in df for better readability
+# Dictionary to rename columns in df for better readability
HCS_colnamesDict = {
"PERBG1/_":"centerAffiliation",
@@ -287,7 +287,7 @@
##########################################
############### DICTIONARY ###############
###### DEFINE DATA TYPES OF COLUMNS ######
-##########################################
+##########################################
### for categorical, numerical and string answers
@@ -334,26 +334,26 @@
###############################################
#################### LIST #####################
###### SPECIFY MULTIPLE CHOICE QUESTIONS ######
-###############################################
+###############################################
# List to specify all multiple choice questions
# For MC question cleaning
# List includes common strings of MC question column names
HCS_MCList = [
- "dataGenMethod_",
- "lsfIdent_",
+ "dataGenMethod_",
+ "lsfIdent_",
"dataFormats_",
- "pubMethod_",
- "pubMotivation_",
+ "pubMethod_",
+ "pubMotivation_",
"pubObstaclesA_",
"pubObstaclesB_",
- "pubMetadata_",
- "docMethod_",
- "docMetadata_",
- "docMotivation_",
- "docStandards_",
- "docObstacles_",
+ "pubMetadata_",
+ "docMethod_",
+ "docMetadata_",
+ "docMotivation_",
+ "docStandards_",
+ "docObstacles_",
"servNeeds_sub_",
"RSDP2",
"RSDP1c",
@@ -377,7 +377,7 @@
##########################################
# Dictionary to convert MC answers to dtype = 'boolean'
-# In this case, MC questions were exported with 'Yes'/'No' answers
+# In this case, MC questions were exported with 'Yes'/'No' answers
convertToBoolDict = {
'Y':True,
@@ -439,7 +439,7 @@
#######################################################
# Dictionary specifying the subquestions of multiple choice questions
-
+
HCS_MCsubquestions = {
"dataFormats_":{"dataFormats_1":"archives",
"dataFormats_2":"audiovisual \n formats",
@@ -457,7 +457,7 @@
"dataFormats_14":"structured text",
"dataFormats_15":"binary scientific \n formats"
},
-
+
"dataGenMethod_":{'dataGenMethod_1':"imaging",
'dataGenMethod_2':"analytical methods",
'dataGenMethod_3':"simulations",
@@ -466,13 +466,13 @@
'dataGenMethod_6':"recordings",
'dataGenMethod_other':"other"
},
-
- "dataStorage_":{'dataStorage_0':"I don't know.",
- 'dataStorage_1':"locally",
+
+ "dataStorage_":{'dataStorage_0':"I don't know.",
+ 'dataStorage_1':"locally",
'dataStorage_2':"centrally \n (internal server)",
'dataStorage_3':"externally \n (servers / repositories)"
},
-
+
"docMetadata_":{'docMetadata_2':"contextual information",
'docMetadata_3':"provenance of data",
'docMetadata_4':"information on data collection",
@@ -482,13 +482,13 @@
'docMetadata_8':"information on storage \n and long-term preservation",
'docMetadata_9':"access information"
},
-
- "docMethod_":{'docMethod_0':"no documentation",
- 'docMethod_1':"pen and paper",
- 'docMethod_2':"digital system",
+
+ "docMethod_":{'docMethod_0':"no documentation",
+ 'docMethod_1':"pen and paper",
+ 'docMethod_2':"digital system",
'docMethod_3':"digital text"
},
-
+
"docMotivation_":{'docMotivation_0':"no specific reason",
'docMotivation_1':"improved findability",
'docMotivation_2':"provide research \n data context",
@@ -497,7 +497,7 @@
'docMotivation_5':"scientific community \n recognition",
'docMotivation_6':"administrative guidelines"
},
-
+
"docObstacles_":{'docObstacles_0':"no difficulties",
'docObstacles_1':"lack of resources",
'docObstacles_4':"lack of incentives",
@@ -507,7 +507,7 @@
'docObstacles_8':"no apparent benefits.",
'docObstacles_9':"lack of experience"
},
-
+
"docStandards_":{'docStandards_1':"DataCite",
'docStandards_10':"MiAIRR",
'docStandards_11':"MIBBI",
@@ -535,7 +535,7 @@
'docStandards_8':"MIxS",
'docStandards_9':"Darwin Core"
},
-
+
"lsfIdent_":{'lsfIdent_1':"LHC",
'lsfIdent_10':"SIS18",
'lsfIdent_11':"ESR",
@@ -548,7 +548,7 @@
'lsfIdent_8':"European XFEL",
'lsfIdent_9':"UNILAC"
},
-
+
"pubMetadata_":{'pubMetadata_0':"none",
'pubMetadata_1':"all of them",
'pubMetadata_21':"name of data set",
@@ -575,12 +575,12 @@
'pubMetadata_92':"logs / statistics",
'pubMetadata_93':"registration procedures"
},
-
- "pubMethod_":{'pubMethod_1':"supplementary to \n journal publication",
- 'pubMethod_2':"in repository",
+
+ "pubMethod_":{'pubMethod_1':"supplementary to \n journal publication",
+ 'pubMethod_2':"in repository",
'pubMethod_3':"data journal"
},
-
+
"pubMotivation_":{'pubMotivation_1':"reusability",
'pubMotivation_2':"visibility",
'pubMotivation_3':"publication statistics",
@@ -589,8 +589,8 @@
'pubMotivation_6':"collaboration",
'pubMotivation_7':"financial benefits"
},
-
- "pubObstaclesA_":{'pubObstaclesA_0':"no obstacles",
+
+ "pubObstaclesA_":{'pubObstaclesA_0':"no obstacles",
'pubObstaclesA_1':"costs too high",
'pubObstaclesA_2':"lack of time / personnel",
'pubObstaclesA_3':"lack of incentives",
@@ -599,7 +599,7 @@
'pubObstaclesA_6':"legal / ethical concerns",
'pubObstaclesA_7':"technical support needed"
},
-
+
"pubObstaclesB_":{'pubObstaclesB_0':"no data to publish",
'pubObstaclesB_1':"costs too high",
'pubObstaclesB_2':"lack of time / personnel",
@@ -608,8 +608,8 @@
'pubObstaclesB_5':"technical barriers",
'pubObstaclesB_6':"legal / ethical concerns",
'pubObstaclesB_7':"technical support needed"
- },
-
+ },
+
"servNeeds_sub_":{'servNeeds_sub_0':"no need for support",
'servNeeds_sub_1':"data publication",
'servNeeds_sub_2':"research data reuse",
@@ -631,32 +631,32 @@
#######################################################
HCS_orderedCats = {
- "yearsInResearch":['No degree',
- 'Less than 1 year',
- '1 to 3 years',
- '4 to 6 years',
- '7 to 10 years',
+ "yearsInResearch":['No degree',
+ 'Less than 1 year',
+ '1 to 3 years',
+ '4 to 6 years',
+ '7 to 10 years',
'More than 10 years'],
- "careerLevel":['Student',
- 'PhD candidate', 'Postdoc',
- 'Research Associate',
- 'Principal Investigator',
- 'Technical Staff',
+ "careerLevel":['Student',
+ 'PhD candidate', 'Postdoc',
+ 'Research Associate',
+ 'Principal Investigator',
+ 'Technical Staff',
'Other'],
"dataInPublication":['< 100 MB',
- '100 MB - 1000 MB (1 GB)',
- '1 GB - 10 GB',
- '10 GB - 100 GB',
+ '100 MB - 1000 MB (1 GB)',
+ '1 GB - 10 GB',
+ '10 GB - 100 GB',
'100 GB - 1000 GB (1 TB)',
'> 1 TB',
'I don\'t know'],
- "experimentDuration_sub":['Less',
- 'As much',
- 'More',
+ "experimentDuration_sub":['Less',
+ 'As much',
+ 'More',
'I don\'t know'],
- "dataAnalDuration_sub":['Less',
- 'As much',
- 'More',
+ "dataAnalDuration_sub":['Less',
+ 'As much',
+ 'More',
'I don\'t know'],
'dataAmount_lsf': [0.0, 5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 55.0, 60.0, 65.0,
70.0, 75.0, 80.0, 85.0, 90.0, 95.0, 100.0],
@@ -2193,7 +2193,7 @@
# This what will be displayed in selection widgets and titles
HCSquestions_long = {
- "EN" : {
+ "EN" : {
"PERBG1/_":"Which Helmholtz center do you typically work in?",
"PERBG2/_":"Please select the Helmholtz research field you associate yourself with.",
"PERBG3/_":"Please select your principle research area.",
@@ -2278,7 +2278,7 @@
}
# These are used as displays on selection and for titles
HCSquestions = { # shortened
- "EN" : {
+ "EN" : {
"PERBG1/_":"Helmholtz center participants typically work in",
"PERBG2/_":"Helmholtz research field participants associate with.",
"PERBG3/_":"Principle research area of participants.",
@@ -2406,31 +2406,32 @@
"careerLevel",
"orcid",
"fairFamiliarity",
-"dataAmount_lsf",
"dataInPublication",
-"dataGatherTime",
"experimentDuration_sub",
"dataAnalDuration_sub",
"longtermStorage",
-"pubAmount",
"docStructured",
-"docDefSchema"]
+"docDefSchema",
+]
multi_chart_allowed = [
"dataGenMethod_",
"lsfIdent_",
-"dataFormats_",
-"pubMethod_",
-"pubMotivation_",
-"pubObstacles_",
-"pubMetadata_",
-"pubStorage_",
-"docMethod_",
-"docMetadata_",
-"docMotivation_",
-"docStandards_",
+"dataFormats_",
+"pubMethod_",
+"pubMotivation_",
+"pubObstacles_",
+"pubMetadata_",
+"pubStorage_",
+"docMethod_",
+"docMetadata_",
+"docMotivation_",
+"docStandards_",
"docObstacles_",
"servNeeds_sub_"
+"dataAmount_lsf",
+"dataGatherTime",
+"pubAmount",
]
@@ -2481,11 +2482,11 @@
"Physics",
"Psychology"],
"CareerLevel" :
- ['Student',
- 'PhD candidate',
- 'Postdoc',
- 'Research Associate',
- 'Principal Investigator',
- 'Technical Staff',
+ ['Student',
+ 'PhD candidate',
+ 'Postdoc',
+ 'Research Associate',
+ 'Principal Investigator',
+ 'Technical Staff',
'Other']
}
diff --git a/survey_dashboard/data/hmc_survey_2021_data.csv b/survey_dashboard/data/hmc_survey_2021_data.csv
new file mode 100644
index 0000000..3057e65
--- /dev/null
+++ b/survey_dashboard/data/hmc_survey_2021_data.csv
@@ -0,0 +1,643 @@
+# Dataset: HMC Survey 2021 Data
+# Title: Helmholtz Metadata Collaboration Survey 2021
+# Description: Survey data on research data management practices within the Helmholtz Association
+# Year: 2021
+# Source: Helmholtz Metadata Collaboration
+# License: CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
+# Last Updated: 2021
+# Contact: For questions about this dataset, please refer to the project repository
+# Format: CSV (Comma-Separated Values)
+# Encoding: UTF-8
+# This dataset is identical to the following original publication: Arndt, W., Gerlich, S. C., Hofmann, V., Kubin, M., Kulla, L., Lemster, C., Mannix, O., Nolden, M., Rink, K., Schweikert, J., Shankar, S., Söding, E., Steinmeier, L., & Suess, W. (2022). HMC Community Survey 2021 (Version 1.0.0) [Data set]. GESIS, Cologne. https://doi.org/10.7802/2433.
+"id","DTPUB1b/1","DTPUB1b/2","DTPUB1b/3","DTPUB1b/other","DTPUB3/1","DTPUB3/2","DTPUB3/3","DTPUB3/4","DTPUB3/5","DTPUB3/6","DTPUB3/7","DTPUB3/other","DTPUB4a/0","DTPUB4a/1","DTPUB4a/2","DTPUB4a/3","DTPUB4a/4","DTPUB4a/5","DTPUB4a/6","DTPUB4a/7","DTPUB4a/other","DTPUB4b/0","DTPUB4b/1","DTPUB4b/2","DTPUB4b/3","DTPUB4b/4","DTPUB4b/5","DTPUB4b/6","DTPUB4b/7","DTPUB4b/other","DTPUB5/1","DTPUB5/2","DTPUB5/3","DTPUB5/4","DTPUB5/5","DTPUB6/1","DTPUB7/1","DTPUB7/21","DTPUB7/22","DTPUB7/23","DTPUB7/24","DTPUB7/31","DTPUB7/32","DTPUB7/33","DTPUB7/41","DTPUB7/42","DTPUB7/43","DTPUB7/44","DTPUB7/51","DTPUB7/52","DTPUB7/61","DTPUB7/62","DTPUB7/71","DTPUB7/72","DTPUB7/81","DTPUB7/82","DTPUB7/83","DTPUB7/91","DTPUB7/92","DTPUB7/93","DTPUB7/other","DTPUB7/0","interviewtime/_","lastpage/_","PERBG1/_","PERBG1/other","PERBG2/_","PERBG3/_","PERBG3/other","PERBG3AGRI/_","PERBG3AGRI/other","PERBG3BIO/_","PERBG3BIO/other","PERBG3CHEM/_","PERBG3CHEM/other","PERBG3GEO/_","PERBG3GEO/other","PERBG3ING/_","PERBG3ING/other","PERBG3LIFE/_","PERBG3LIFE/other","PERBG3MATH/_","PERBG3MATH/other","PERBG3MED/_","PERBG3MED/other","PERBG3PHYS/_","PERBG3PHYS/other","PERBG3PSYCH/_","PERBG3PSYCH/other","PERBG4/_","PERBG6/_","PERBG6/other","PERBG7/_","PERBG8/_","RDMPR1/1","RDMPR1/2","RDMPR1/3","RDMPR1/0","RDMPR1/other","RDMPR10/1","RDMPR10/2","RDMPR10/3","RDMPR11/0","RDMPR11/1","RDMPR11/4","RDMPR11/5","RDMPR11/6","RDMPR11/7","RDMPR11/8","RDMPR11/9","RDMPR11/other","RDMPR12/1","RDMPR12/2","RDMPR12/3","RDMPR12/4","RDMPR12/5","RDMPR12/6","RDMPR12/0","RDMPR12/other","RDMPR3/1","RDMPR3/2","RDMPR3/3","RDMPR3/other","RDMPR3/0","RDMPR4/_","RDMPR5/_","RDMPR6/1","RDMPR6/2","RDMPR6/3","RDMPR6/4","RDMPR6/5","RDMPR6/6","RDMPR6/7","RDMPR6/8","RDMPR6/9","RDMPR6/10","RDMPR6/11","RDMPR6/12","RDMPR6/13","RDMPR6/14","RDMPR6/15","RDMPR6/16","RDMPR6/17","RDMPR6/18","RDMPR6/19","RDMPR6/20","RDMPR6/21","RDMPR6/22","RDMPR6/23","RDMPR6/24","RDMPR6/25","RDMPR6/26","RDMPR6/other","RDMPR7/2","RDMPR7/3","RDMPR7/4","RDMPR7/5","RDMPR7/6","RDMPR7/7","RDMPR7/8","RDMPR7/9","RDMPR7/other","RDMPR8/2","RDMPR8/3","RDMPR8/4","RDMPR8/5","RDMPR8/6","RDMPR8/7","RDMPR8/8","RDMPR8/9","RDMPR8/10","RDMPR9/2","RDMPR9/3","RDMPR9/4","RDMPR9/5","RDMPR9/6","RDMPR9/7","RDMPR9/8","RDMPR9/9","RDMPR9/10","RSDP1/1A2","RSDP1/3A4","RSDP10/_","RSDP11/_","RSDP1b/1","RSDP1c/1","RSDP1c/2","RSDP1c/3","RSDP1c/4","RSDP1c/5","RSDP1c/6","RSDP1c/7","RSDP1c/8","RSDP1c/9","RSDP1c/10","RSDP1c/11","RSDP1c/other","RSDP2/1","RSDP2/2","RSDP2/3","RSDP2/4","RSDP2/5","RSDP2/6","RSDP2/other","RSDP2b/1-1","RSDP2b/1-2","RSDP2b/1-3","RSDP2b/2-1","RSDP2b/2-2","RSDP2b/2-3","RSDP2b/3-1","RSDP2b/3-2","RSDP2b/3-3","RSDP2b/4-1","RSDP2b/4-2","RSDP2b/4-3","RSDP2b/5-1","RSDP2b/5-2","RSDP2b/5-3","RSDP2b/6-1","RSDP2b/6-2","RSDP2b/6-3","RSDP2b/7-1","RSDP2b/7-2","RSDP2b/7-3","RSDP3/1","RSDP3/2","RSDP3/3","RSDP3/4","RSDP3/5","RSDP3/6","RSDP3/7","RSDP3/8","RSDP3/9","RSDP3/10","RSDP3/11","RSDP3/12","RSDP3/13","RSDP3/14","RSDP3/15","RSDP3/other","RSDP4/_","RSDP7/_","RSDP8/_","SERVC1/1","SERVC1/2","SERVC1/3","SERVC1/4","SERVC1/5","SERVC1/6","SERVC1/7","SERVC1/8","SERVC1/9","SERVC1/other","SERVC1/0","SERVC2/1","SERVC2/2","SERVC2/3","SERVC2/4","SERVC2/5","SERVC2/6","submitdate/_"
+"2","","True","","","True","","","True","True","","","","","","True","True","","","","True","","","","","","","","","","","Institutional Repository","","","","","75.0","","True","","True","True","True","True","","","","","","","","","","","","","","","","","","","","621.07","Completed the survey","Anonymized","Anonymized","Energy","Mathematics","","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Familiar with FAIR","","","","","Other","R","LaTeX","Office Software (unspecified)","","True","","True","True","","","","","","","","","","","","","","","","Source code and scripts","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","Some of them","Some of them","","","","Some of them","","","","None","None","","","","None","","","","Mostly simulated","Mostly reused","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","True","True","True","","","","","","< 100 MB","","","","","True","True","True","","","True","","","very interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"3","True","","","","True","","","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","","75.0","","True","","","","True","","","","","","","","","","","","","","","","","","","","","1238.44","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","","Radiochemie","","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","True","True","True","","","Anonymized","Anonymized","gnuplot","True","","","","","","","","","","","","","","","","Improved working with data","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","None","None","","","","","","","","Mostly measured","Purely reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","< 100 MB","","","","True","","True","","","","True","","","very interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"4","True","True","","","True","True","","","","True","","","","","True","","","True","","True","","","","","","","","","","","Institutional Repository","","","","","35.0","","True","","True","True","True","","","True","True","","","","","","","","","","","","","","","","","408.27","Completed the survey","Anonymized","Anonymized","Energy","Earth Science","","","","","","","","","Geoanalytik","","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","True","","","","","OriginLab","Anonymized","Anonymized","","True","","True","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","Some of them","Some of them","","","","","","None","None","None","None","","","","","","Mostly measured","Equally generated and reused","Yes","","45.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","True","True","","True","","True","","True","True","","","1 GB - 10 GB","","","True","True","","True","True","","","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"7","True","","","","","True","","","True","True","","","","","","True","","True","True","","","","","","","","","","","","","","","","","5.0","","","","True","True","True","","","True","True","True","","","","","","","","","","","","","","","","496.93","Completed the survey","Anonymized","Anonymized","Energy","Earth Science","","","","","","","","","Geochemie","","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","","True","","","","Anonymized","R","Python","","True","","","","","","","","True","","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","None","None","Some of them","Some of them","","","","","","None","None","None","None","","","","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","True","True","","True","","","","True","","","100 GB - 1000 GB (1 TB)","","True","","","True","True","","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"9","True","True","","","True","True","","","True","","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","","","","","65.0","","","","","","","","","","","","True","","","True","True","","","","","","","","","","","2455.36","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","7 to 10 years","Postdoc","","","Not familiar with FAIR","","True","True","","","MATLAB / Simulink","OpenFOAM","Excel (Spreadsheets)","","True","True","","True","","","","","","","","","","","","","True","","","Other","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","Some of them","Some of them","Some of them","","All","","","","","None","None","None","","None","","","","","Equally measured and simulated","Purely generated","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","","","","","","10 GB - 100 GB","","","","True","True","","","","True","","","","moderately interested","very interested","not interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"10","True","","True","","","","True","True","True","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","25.0","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","468.87","Completed the survey","Anonymized","Anonymized","Energy","","Biowissenschaften","","","","","","","","","","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","","True","","","","Office Software (unspecified)","Anonymized","Anonymized","","True","","True","","","","","","True","True","True","True","","","","Improved collaborations","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","Some of them","Some of them","","","","","","","","Purely measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","","","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","","","","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"12","True","","","In repository","True","True","","","","True","","","","","True","","","","True","True","","","","","","","","","","","","","","","","40.0","","","","True","True","True","","","True","True","True","","","","True","True","","","","","","","","","","","402.71","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Geochemistry","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","True","True","True","","","Database Management System","Anonymized","Anonymized","","True","","","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","All","Some of them","","All","","","","","Some of them","Some of them","None","","Some of them","","","","","Mostly measured","Purely reused","Yes","","5.0","","","","","","","","","","","","Anonymized","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","","True","True","","","True","","","moderately interested","very interested","very interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"14","","True","","","","True","","","True","True","","","","","","True","","","","True","Legal / ethical concerns","","","","","","","","","","Institutional Repository","","","","","15.0","","True","True","True","True","True","","","","","","","True","","","","True","","","","","","","","","","759.6","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","4 to 6 years","Postdoc","","","Familiar with FAIR","","True","","","","OpenFOAM","","","","","","","","","","","Lack of resources","","","","","","","","","","True","","Source code and scripts","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","True","","True","Instructions for reuse","All","All","","All","","All","","All","All","None","None","","None","","None","","","None","Mostly simulated","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","True","","","True","True","","","True","","","","1 GB - 10 GB","","True","","","","","True","","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"16","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","282.9","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Familiar with FAIR","","True","","","","Python","","","","True","True","True","True","","","True","","","","","","","","","","","","","GitLab","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","Some of them","All","","","","","","None","","None","None","","","","","","Mostly measured","Purely generated","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","True","","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","","True","","True","","","","very interested","moderately interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"17","","","","In repository","True","True","","","True","","","","","","True","True","","","","","","","","","","","","","","","","","","","","95.0","","","","","","","","","","","True","","","","","","True","","","","","","","","","","404.09","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Apply FAIR","","True","","","","OpenFOAM","Paraview","Anonymized","","","","True","True","","","","","","","","","","","","","","","","GitLab","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","All","","","All","","","","","","All","","","All","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","","","","","","","10 GB - 100 GB","","","","","","True","True","","","True","","","moderately interested","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"20","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","424.81","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","","Softwareentwicklung","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","","True","","","","Python","Git","","","True","","","True","True","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","Some of them","","","Some of them","","","","","","Some of them","","","Some of them","","","","","Purely simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","True","True","True","","True","True","","","100 MB - 1000 MB (1 GB)","","","","","True","","","True","","True","","","very interested","very interested","moderately interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"21","","True","","","True","True","","True","","","","","","","True","True","","","","","","","","","","","","","","","Institutional Repository","","","","","30.0","","","","True","True","True","True","","True","True","True","True","","True","","","","","","","","","","","","","398.98","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","4 to 6 years","PhD candidate","","","Familiar with FAIR","","","True","","","Anonymized","Anonymized","LaTeX","","","","True","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","Some of them","Some of them","Some of them","Some of them","None","","","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","True","True","True","True","","","","> 1 TB","","","","True","","True","","","True","","","","very interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"23","","True","","","","","","True","True","True","","","","","True","True","True","","","","","","","","","","","","","","Institutional Repository","","","","","100.0","","","","True","True","True","True","True","True","True","True","True","","True","True","True","","","","","","","","","","","336.16","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","4 to 6 years","PhD candidate","","","Familiar with FAIR","","True","True","","","ImageJ","MATLAB / Simulink","Mathematica","","True","True","True","","","","","","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","Some of them","Some of them","None","None","","","","","Purely measured","Mostly generated","Yes","","30.0","","","","","","","","","","","","Anonymized","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","100 GB - 1000 GB (1 TB)","","","True","True","True","","","True","","True","","","very interested","very interested","very interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"25","","","","Other","","","","True","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","10.0","","","","True","True","True","True","True","","","","","","","","","","","","","","","","","","","452.94","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","ANSYS","","","True","","","","","","","","","","True","","","","","Use of Standard","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","Some of them","","","","","","","","None","None","","","","","","","","Equally measured and simulated","Equally generated and reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","True","","","","True","True","True","","","","I don't know","","","","","","","True","","True","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"28","","True","","","","True","","True","","True","","","","","","","","","True","","","","","","","","","","","","Gitlab / GitHub","","","","","10.0","","","","","","","","","","","","","","","","","","","","","","","","","","","800.95","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","","","","Centrally (internal server)","Python","Anonymized","","","","","","","True","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","Some of them","All","All","All","All","","","","None","None","None","None","Some of them","None","","","","","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","True","","","","","True","","","I don't know","","","True","True","True","","","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"31","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","955.93","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","","Umweltwissenschaften","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","","True","","","","Excel (Spreadsheets)","Python","Anonymized","True","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","None","None","","","","","","","","Purely simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","True","","True","","","","100 MB - 1000 MB (1 GB)","","True","","","True","True","","True","True","","","","moderately interested","very interested","not interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"33","True","True","","","","True","","","True","True","","","","","","True","","","","","","","","","","","","","","","OSF","","","","","80.0","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","284.96","Completed the survey","Anonymized","Anonymized","Energy","","Umwelt","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Apply FAIR","True","","","","","R","Python","Java","","True","True","","True","","","","","True","","True","","","","","","","","","Digital text","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","All","None","","","","","","","None","None","None","","","","","","","Purely simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","","","","","True","","","","100 MB - 1000 MB (1 GB)","","True","True","","","","True","","","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"34","True","","","","","","","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","","5.0","","True","True","","","True","","True","","","","","","","True","True","True","","","","","","","","","","665.26","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","Less than 1 year","PhD candidate","","","Familiar with FAIR","","True","","","","Jupyter","LaTeX","QGIS/GDAL","","","","True","","True","","","","","","","","","","","","","","","Source code and scripts","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","None","Some of them","None","None","None","None","","","","Purely simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","True","True","True","","True","","","","I don't know","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"36","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","573.3","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","4 to 6 years","PhD candidate","","","Not familiar with FAIR","True","True","","","","Python","OriginLab","Excel (Spreadsheets)","","True","True","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","","Equally measured and simulated","Mostly generated","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","","","","True","","","","","","moderately interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"37","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","431.07","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","Anonymized","Python","Git","","True","True","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","","","","","","","None","","","","None","","","","","Mostly simulated","Purely reused","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","True","","","","","","1 GB - 10 GB","","","","","","","","","","","","","not interested","very interested","very interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"38","True","True","","","True","","","","True","True","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","","","","","10.0","","True","","True","True","True","","True","","","","","True","","True","","","","","","","","","","","","635.54","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Research Associate","","","Apply FAIR","","True","","","","Anonymized","Anonymized","LabVIEW","True","","","","","","","","","True","True","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","All","All","","None","All","","","","","None","All","","None","None","","","","","Mostly measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","","","","","< 100 MB","","","","","","True","","","True","","","","moderately interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"41","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1644.75","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Excel (Spreadsheets)","OriginLab","Python","","True","","True","","","","","","True","","","","","","","","","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","","True","","","","","","","very interested","very interested","moderately interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"43","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","371.98","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","","","","","","","","True","","","","","True","","True","True","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","All","All","","","All","","","","","Some of them","Some of them","","","Some of them","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","True","","","","","True","","","","","","I don't know","","","","","","","","","","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"44","True","","","","","True","","True","","","","","","True","True","","","True","True","True","","","","","","","","","","","","","","","","10.0","","","","True","True","True","True","","","","","","","","","","","","","","","","","","","","682.57","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","","Batteriematerialien","","","","","","","","","","","More than 10 years","Postdoc","","","Familiar with FAIR","","True","","","","IDL","MATLAB / Simulink","Python","","True","","","True","True","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","None","None","","","","","","","","Mostly measured","Purely generated","Yes","","80.0","","True","True","","","True","","","","","","Anonymized","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","True","True","","","100 GB - 1000 GB (1 TB)","","True","True","","True","","","True","","","","","moderately interested","very interested","moderately interested","moderately interested","not interested","very interested","1980-01-01 00:00:00"
+"46","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","Lack of incentives","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","2872.46","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","OriginLab","IGOR","Office Software (unspecified)","","True","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","Some of them","Some of them","Some of them","","","","","","","Mostly measured","Mostly generated","Yes","","10.0","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","100 MB - 1000 MB (1 GB)","","True","True","","","True","True","","True","True","","","very interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"47","","True","","","","","","","True","","","","","","True","True","","","","","","","","","","","","","","","Institutional Repository","Gitlab / GitHub","","","","15.0","","","","True","True","","","","","","","","","","","","","","","","","","","","","","723.36","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Nanotechnology","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","Anonymized","Python","OriginLab","","True","","True","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","","Equally measured and simulated","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","True","","","","1 GB - 10 GB","","True","","True","True","","True","","True","True","","","moderately interested","moderately interested","moderately interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"49","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","497.41","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Apply FAIR","True","","","","","Python","Anonymized","Anonymized","","","","","True","","","","","","","","","","","","","True","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","Some of them","","Some of them","Some of them","Some of them","","","","","None","","All","None","None","","","","","Mostly measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","True","","","True","True","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","True","","","not interested","very interested","very interested","very interested","not interested","very interested","1980-01-01 00:00:00"
+"50","","True","","","True","True","","","","True","","","","","True","","","","","","","","","","","","","","","","Zenodo","Open Energy Platform","","","","40.0","","","","","","True","","","","","","","","","","","","","","","","","","","","","553.61","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Apply FAIR","","True","","","","Anonymized","Python","Word","","True","True","","","","","","","True","","True","True","","","","","","","","","True","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","Purely simulated","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","1 GB - 10 GB","","","","","True","True","","","","","","","very interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"51","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","3028.66","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Office Software (unspecified)","OriginLab","MATLAB / Simulink","True","","","","","","","","","True","True","True","","","","","","True","True","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","All","","All","","All","","","","","All","","All","","All","","","","","Mostly measured","Equally generated and reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","True","True","True","True","True","","","","1 GB - 10 GB","","","","","","","","","","","","True","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"52","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","261.06","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Apply FAIR","True","","","","","Python","Anonymized","Anonymized","","","True","","True","","","","","True","True","True","","","","","","True","","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","All","Some of them","","","","","Some of them","","Some of them","Some of them","None","","","","","Mostly measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","True","","","True","True","","","100 MB - 1000 MB (1 GB)","","","","","","True","","","","True","","","not interested","very interested","very interested","very interested","not interested","very interested","1980-01-01 00:00:00"
+"53","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","Other","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","447.21","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","7 to 10 years","Postdoc","","","Familiar with FAIR","","True","","","","Linux","Python","Anonymized","","","True","","","","","","","","","","","","","","","","","","GitLab","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","All","","","","","Mostly simulated","","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","moderately interested","not interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"54","","","True","","","True","","","True","","True","","","","True","True","","","","True","","","","","","","","","","","","","","","","10.0","","","","True","True","","","","True","True","","","","True","","","","","","","True","","","","","","639.98","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","True","True","","","","Office Software (unspecified)","MATLAB / Simulink","Python","","True","True","True","True","","True","True","","True","True","True","True","True","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","True","","","All","","All","All","","","All","","","None","","None","None","","","None","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","True","","","","","","1 GB - 10 GB","","True","True","True","True","True","True","","True","True","","","moderately interested","moderately interested","moderately interested","moderately interested","","moderately interested","1980-01-01 00:00:00"
+"56","","","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","25.0","","","","","","True","","","True","True","True","","True","","","","","","","","","","","","","","848.94","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Physical Chemistry","","","","","","","","","","","","","","","","Less than 1 year","PhD candidate","","","Not familiar with FAIR","","","","True","","FactSage","Python","LaTeX","","","True","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","All","Some of them","All","All","","","","","None","None","Some of them","Some of them","None","","","","","Equally measured and simulated","Equally generated and reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","I don't know","","","True","","True","True","True","","","","","","very interested","very interested","not interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"57","True","","","","","True","True","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","25.0","","True","","True","True","True","True","True","True","True","True","","","","","","","","","","","","","","","","636.53","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","Anonymized","Anonymized","IDL","True","","","","","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","None","","","","","","","All","All","None","","","","","","","Purely measured","Purely generated","Yes","","100.0","","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","True","","","10 GB - 100 GB","","","","True","True","True","True","","","True","","","moderately interested","very interested","very interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"59","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","578.68","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","7 to 10 years","Postdoc","","","Apply FAIR","","","","True","","FactSage","Office Software (unspecified)","Python","","","","","","","","True","","","","True","","","","","Provide research data context","True","True","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","No standard","True","True","True","True","True","","","","","All","Some of them","Some of them","Some of them","Some of them","","","","","None","None","None","None","None","","","","","Mostly measured","Mostly generated","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","True","","","","","","< 100 MB","","","","","","","","True","","","","","moderately interested","moderately interested","moderately interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"65","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","321.59","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","","","","","","","","","","","","","","","","","No degree","Student","","","Familiar with FAIR","True","True","","","","","","","","","","","True","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","All","","","","","","","None","","None","","","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","True","","","","I don't know","","True","","True","True","True","True","True","","True","","","moderately interested","very interested","very interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"66","True","","","","True","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","10.0","","","","","True","True","True","True","True","True","True","","","","","","","","","","","","","","","","1028.28","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","","","","","","","","True","","","","","","","","","True","","","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","All","All","","","","","","","Some of them","All","All","","","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","True","True","","","","","moderately interested","very interested","not interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"68","","True","","","True","True","","","True","","","","","","True","","","","True","True","","","","","","","","","","","Open Energy Platform","","","","","75.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","487.52","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","More than 10 years","Postdoc","","","Familiar with FAIR","","True","","","","Python","Git","Excel (Spreadsheets)","","True","True","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","All","Some of them","Some of them","","","","","","None","None","None","None","","","","","","Mostly simulated","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","True","","","","True","True","","True","True","","","1 GB - 10 GB","","","","True","True","","True","True","","","","","moderately interested","moderately interested","very interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"69","","True","","","","","","True","","","","","","","","True","","","","True","","","","","","","","","","","Zenodo","","","","","10.0","","True","","","","","","","True","True","True","","","","True","","","","","","","","","","","","5817.71","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","True","True","","","","IGOR","Office Software (unspecified)","Python","","True","","","True","","","","","","","","","","","","","True","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","True","","All","All","All","Some of them","All","","","All","","Some of them","All","Some of them","All","Some of them","","","All","","Purely measured","Purely generated","Yes","","100.0","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","True","","","","","","1 GB - 10 GB","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"71","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","890.24","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","No degree","Student","","","Not familiar with FAIR","","","True","","","Excel (Spreadsheets)","Anonymized","","True","","","","","","","","","True","True","True","True","","True","","","","True","","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","Some of them","All","","","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","I don't know","","","","","","","","True","True","","","","moderately interested","moderately interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"72","True","","","","True","True","","","True","","","","","","","True","True","","","","","","","","","","","","","","","","","","","100.0","","","","True","True","","","","","","","","","","","","","","","","","","","","","","573.38","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","","Material chemistry","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","","","","FactSage","Anonymized","Anonymized","","True","","","","","","","","","","","","","","","","True","True","True","Digital text","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","Some of them","","","Some of them","Some of them","","","","","Some of them","","","Some of them","Some of them","","","","","Equally measured and simulated","Purely generated","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","True","","True","","","","","","I don't know","","","","","","","","","True","True","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"76","True","","","","True","","","","True","True","","","","","True","","","True","","","","","","","","","","","","","","","","","","40.0","","","","True","True","","True","","","","","","","","","True","","","","","","","","","","","545.48","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Polymer Research","","","","","","","","","","","","","","","","More than 10 years","Postdoc","","","Not familiar with FAIR","True","True","","","","Anonymized","OriginLab","Anonymized","","True","","","","","","","","True","","True","True","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","All","All","","","All","","","","","None","None","","","None","","","","","Purely measured","Purely generated","Yes","","95.0","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","True","True","","","1 GB - 10 GB","","","True","True","","True","","True","","","","","very interested","moderately interested","moderately interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"77","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","404.93","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Physical Chemistry","","","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","IGOR","OriginLab","LabVIEW","","True","True","True","","","","","","True","True","True","","","","","","True","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","None","Some of them","Some of them","","","","","","","None","Some of them","Some of them","","","","","","","Purely measured","Purely generated","Yes","","15.0","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","True","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","","","","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"79","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","467.42","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","Less than 1 year","Research Associate","","","Familiar with FAIR","True","True","","","","Python","Database Management System","Anonymized","","True","True","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely simulated","Purely reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","","","True","","","","100 MB - 1000 MB (1 GB)","","True","True","","","","","","True","","","","very interested","moderately interested","","very interested","","moderately interested","1980-01-01 00:00:00"
+"80","True","True","","","True","True","","","","True","","","True","","","","","","","","","","","","","","","","","","Gitlab / GitHub","Institutional Repository","","","","60.0","","True","","","","","","","","","","","","","","","True","","","","","","True","","","","2568.22","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","4 to 6 years","Postdoc","","","Familiar with FAIR","","True","","","","Visual Studio","Python","Excel (Spreadsheets)","","True","True","True","","","","True","","","","","","","","","","","","","Other","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","True","","All","","","","","All","","All","","None","","","","","None","","Some of them","","Mostly simulated","Equally generated and reused","No","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100 MB - 1000 MB (1 GB)","","","","","True","True","True","","True","True","","","very interested","moderately interested","moderately interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"81","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","458.3","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","True","True","","","","MATLAB / Simulink","Python","","","True","","","","","","True","Lack of resources","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","None","None","None","","","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","True","","","True","","","","1 GB - 10 GB","","","","True","True","True","","True","","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"82","","True","","","","","","True","True","","","","","","True","True","","","True","","","","","","","","","","","","Zenodo","","","","","5.0","","","","","","","","","","","","","True","True","","","","","","","","","","","","","341.35","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","7 to 10 years","Postdoc","","","Apply FAIR","","True","","","","Anonymized","Anonymized","","","True","","","","True","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","True","True","","True","","","","10 GB - 100 GB","","","","","","True","","True","True","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"83","","","True","","","","","True","True","True","","","","","True","True","","","True","","","","","","","","","","","","","","","","","30.0","","True","","True","True","True","True","True","","True","True","","","True","","","","","","","","","","","","","763.09","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","True","","","","","Anonymized","MATLAB / Simulink","Excel (Spreadsheets)","","True","True","","","","True","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","True","","Some of them","Some of them","Some of them","Some of them","","Some of them","","","","None","None","None","None","","None","","None","","Mostly simulated","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","True","True","True","True","True","True","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","","moderately interested","","","moderately interested","","1980-01-01 00:00:00"
+"86","","","","Other","True","True","","True","","","","","","","","True","","","True","","Legal / ethical concerns","","","","","","","","","","","","","","","25.0","","True","True","","","True","True","True","","","","","","","True","","","","","","","True","","","","","840.18","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","True","True","","","","Anonymized","Database Management System","Anonymized","","True","True","True","","True","","","","True","","","True","","True","","","","True","True","","","Yes","Yes","","True","","True","","","","","","","","","","","","True","","True","","","","","","","","","","True","True","","True","True","","","True","","Some of them","Some of them","","Some of them","All","","","All","","None","None","","None","Some of them","","","Some of them","","Mostly measured","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","True","True","True","","","","True","","True","","Structured text","","< 100 MB","","True","","","True","True","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"88","","True","","","True","True","","","","True","","","","","True","","","True","","","","","","","","","","","","","Institutional Repository","","","","","50.0","","","","","True","","","","","","","","True","","","","","","","","","","","","","","457.77","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","","True","True","","","","","","","True","True","True","True","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","Some of them","","","All","","","","","","None","","","Some of them","","","","","","Purely measured","Purely generated","No","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","True","","","True","","","","1 GB - 10 GB","","","","True","True","","True","","True","True","","","not interested","moderately interested","moderately interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"89","","","","","","","","True","","True","","","","","","","","True","True","True","","","","","","","","","","","","","","","","20.0","","","True","True","","","True","True","","","","","","","True","","","","","","","","","","","","527.92","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","1 to 3 years","Research Associate","","","Familiar with FAIR","","True","","","","Anonymized","Database Management System","Anonymized","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","True","","Some of them","Some of them","","","All","","","All","","None","None","","","None","","","Some of them","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","","True","","","","","","","True","True","True","True","True","True","True","","","","very interested","moderately interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"90","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","873.47","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Familiar with FAIR","","True","","","","MATLAB / Simulink","Visual Studio","","","","","","","","","True","","","","","","","","","","","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely simulated","Mostly generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","< 100 MB","","","","","","","","","","","","True","","","","","","","1980-01-01 00:00:00"
+"92","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","8196.33","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Theoretical Chemistry","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Apply FAIR","True","True","","","","Anonymized","Anonymized","Anonymized","","True","True","","","","","","","True","","True","True","","","","","","","","Source code and scripts","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","Some of them","Some of them","","","","","","Purely simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","True","True","True","","","","","","10 GB - 100 GB","","","","","","","True","","True","","","","moderately interested","very interested","moderately interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"95","True","True","","","True","True","","","","True","","","","","True","","","","","","","","","","","","","","","","Zenodo","","","","","25.0","","","","","","True","","","","","","","True","True","","","","","","","","","","","","","498.29","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","","True","","","","Jupyter","Anonymized","Notepad++","","","True","","","","True","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","None","","None","","","","","","Mostly simulated","Purely reused","No","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","10 GB - 100 GB","","","","True","True","","True","","","True","","","moderately interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"96","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1514.97","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","","","","","Tecplot","Python","CFD Software (e.g. TecPlot, ParaView)","","True","","True","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","Some of them","All","","","All","","","","","None","Some of them","","","None","","","","","Equally measured and simulated","Purely generated","Yes","","90.0","","","","","","","","","","","","Anonymized","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","True","True","","","True","","","1 GB - 10 GB","","","","","True","True","True","True","True","True","","","moderately interested","moderately interested","moderately interested","very interested","moderately interested","not interested","1980-01-01 00:00:00"
+"98","True","","True","","True","True","","","True","","","","","","","","","True","True","","","","","","","","","","","","","","","","","90.0","","True","","True","True","True","True","","","","","","","","","","True","","","","","","","","","","450.87","Completed the survey","Anonymized","Anonymized","Energy","","Informatik","","","","","","","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","","","","R","Python","LaTeX","","True","","True","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","All","All","","","","All","","","","None","None","","","","None","","","","Mostly measured","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","100 MB - 1000 MB (1 GB)","","","True","True","True","True","","True","True","","","","moderately interested","moderately interested","very interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"99","True","","","","True","True","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","","","10.0","","","","True","True","","","","True","True","True","True","","True","","","","","","","","","","","","","1049.39","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","Python","LaTeX","Office Software (unspecified)","","True","","","True","","","","","","","","","","","","","True","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","All","","","","","","None","","None","None","","","","","","Mostly measured","Purely generated","Yes","","10.0","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","","","","","","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","True","","","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"101","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","Insufficiently trained","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","832.19","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Physical Chemistry","","","","","","","","","","","","","","","","7 to 10 years","Postdoc","","","Not familiar with FAIR","True","True","","","","COMSOL Multiphysics","MATLAB / Simulink","LabVIEW","","True","","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","Some of them","","Some of them","","","","","","None","Some of them","","None","","","","","","Mostly simulated","Mostly generated","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","","True","True","True","","True","","","","1 GB - 10 GB","","True","","True","True","","True","","","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"104","","","","Other","","True","","","","True","","","","","","","","True","","","Lack of incentives","","","","","","","","","","","","","","","70.0","","","","True","True","","","","True","True","True","","","True","","","","","","","","","","","","","917.99","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Analytical Chemistry","","","","","","","","","","","","","","","","7 to 10 years","Postdoc","","","Not familiar with FAIR","True","True","","","","MATLAB / Simulink","Mathematica","Anonymized","","True","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","Some of them","","","","","","Some of them","","Some of them","Some of them","","","","","","Mostly measured","Purely generated","Not sure","","30.0","","","True","","","True","","","","","","Anonymized","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","True","","","","10 GB - 100 GB","","True","","","True","True","True","","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"105","True","","","","True","","","","True","True","","","","","True","True","","True","True","True","","","","","","","","","","","","","","","","15.0","","True","","","","True","","","","","","","True","","True","True","","","","","","","","","","","445.07","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","","True","","","","Anonymized","","","","True","True","True","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","True","","","","Some of them","Some of them","","Some of them","Some of them","Some of them","","","","None","None","","None","None","None","","","","Purely simulated","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","True","","","True","","True","","True","True","","","100 GB - 1000 GB (1 TB)","","True","True","True","True","True","","True","True","True","","","very interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"107","True","","","","True","True","","","True","","","","","","True","","","","True","True","","","","","","","","","","","","","","","","15.0","","","","","","","","","True","True","True","True","True","True","","","","","","","","","","","","","6548.97","Completed the survey","Anonymized","Anonymized","Energy","","Materials Science","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","OriginLab","Anonymized","Python","","","","True","","","","True","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","All","","","","","","None","","None","None","","","","","","Mostly measured","Purely generated","Yes","","90.0","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","True","","","","","","","100 MB - 1000 MB (1 GB)","","True","","True","","","","","","True","","","moderately interested","very interested","","moderately interested","","very interested","1980-01-01 00:00:00"
+"108","True","True","","","True","","","True","True","","","","","","True","True","","","True","","","","","","","","","","","","Institutional Repository","","","","","10.0","","True","True","","True","True","","","","","","","True","True","True","","","","","","","","","","","","814.9","Completed the survey","Anonymized","Anonymized","Energy","Earth Science","","","","","","","","Geology","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","R","Anonymized","LaTeX","","True","","True","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","True","","True","","All","Some of them","","All","All","Some of them","","Some of them","","None","None","","None","None","None","","None","","Mostly measured","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","True","True","","","","","","","100 MB - 1000 MB (1 GB)","","True","","True","True","True","True","","","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"109","True","","","","True","","","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","True","True","True","","","True","True","True","True","True","True","","","","","","","","","","","","","757.21","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Technical Chemistry","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","True","True","","","","FactSage","Office Software (unspecified)","OriginLab","True","","","","","","","","","True","True","True","True","","","","","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","All","Some of them","Some of them","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","True","","True","","True","True","","","","","I don't know","","","","","","","","","","","","True","","","","","","","1980-01-01 00:00:00"
+"110","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","2457.07","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Technical Chemistry","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","True","True","","","","Python","Python","Python","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","Some of them","Some of them","","","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","True","True","True","","True","True","","","1 GB - 10 GB","","True","","","","True","","","True","","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"111","","True","","","True","","","","True","True","","","","","True","","","","","","Technical barriers","","","","","","","","","","Gitlab / GitHub","Other","","","","5.0","","True","","True","True","True","","True","","","True","","","","","","True","","","","","","","","","","1709.48","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Thermodynamics","","","","7 to 10 years","Research Associate","","","Not familiar with FAIR","","True","True","","","Visual Studio","MATLAB / Simulink","Notepad++","","True","","","","","","","Relevant metadata is missing","","","","","","","","","","","","GitLab","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","True","","","","All","All","All","","","All","","","","None","All","All","","","All","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","True","","","< 100 MB","","","","True","True","","True","True","True","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"113","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","610.52","Completed the survey","Anonymized","Anonymized","Energy","","Informatik","","","","","","","","","","","","","","","","","","","","","4 to 6 years","PhD candidate","","","Familiar with FAIR","","True","","","","Python","Git","","","True","True","","True","True","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","","","","Some of them","Some of them","","","Some of them","Some of them","","","","None","None","","","None","None","","","","Mostly measured","Mostly reused","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","","","True","","","","< 100 MB","","True","True","True","True","","True","True","True","True","","","moderately interested","moderately interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"116","True","","","","True","True","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","","","","","","True","True","","","","","","","","","","","","","","","","","881.63","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Soft Matter Physics","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","True","","","","","OriginLab","MATLAB / Simulink","IGOR","","True","True","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","Purely measured","Purely generated","Yes","","10.0","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","True","","True","","","","moderately interested","very interested","moderately interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"119","True","","True","","True","True","","","","True","","","","","","True","","True","","","","","","","","","","","","","","","","","","25.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","672.91","Completed the survey","Anonymized","Anonymized","Energy","Earth Science","","","","","","","","Geology","","","","","","","","","","","","","","7 to 10 years","Postdoc","","","Apply FAIR","","True","","","","","","","","True","","","True","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","Some of them","Some of them","","Some of them","","","","","Purely measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","True","True","","","","True","","","10 GB - 100 GB","","","","","True","True","","True","","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"122","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","786.3","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Research Associate","","","Apply FAIR","True","True","","","","Python","LaTeX","Git","","True","","","True","","","","","True","True","True","True","","","","","","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","All","","","All","","","","","","None","","","Some of them","","","","","","Mostly measured","Mostly generated","Yes","","90.0","","","","","","","","","","","","Anonymized","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","True","True","","","1 GB - 10 GB","","True","","","True","","True","","True","True","","","moderately interested","very interested","","very interested","","moderately interested","1980-01-01 00:00:00"
+"123","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1149.24","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Apply FAIR","","","","True","","Visual Studio","Python","PyTorch","","True","","True","True","","","","Lack of resources","True","True","","","True","","","","","True","True","","","Yes","Yes","","","","","","","","","","","","","","","True","","","","","","True","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely simulated","Mostly generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","True","","","","True","","","True","","Other","","100 GB - 1000 GB (1 TB)","","","True","","True","True","True","True","True","True","","","very interested","very interested","moderately interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"125","True","","","","","True","True","","True","","","","","","","","","True","","True","","","","","","","","","","","","","","","","95.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","485.59","Completed the survey","Anonymized","Anonymized","Energy","Life Science","","","","","","","","","","","","","","","","","","","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","True","","","","","GraphPad","FlowJo","ImageJ","","","","True","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","All","","","","","","","","None","Some of them","","","","","","Purely measured","Mostly generated","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","True","","","","Binary scientific formats","","< 100 MB","","","","True","","True","","True","","","","","moderately interested","moderately interested","very interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"128","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","413.14","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","Python","","","True","","","True","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","None","","Some of them","Some of them","","","","","None","None","None","None","None","","","","","Mostly measured","Mostly reused","No","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","True","","","","","","True","","True","True","","","","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"129","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","3226.3","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Postdoc","","","Familiar with FAIR","True","True","","","","MATLAB / Simulink","Anonymized","OriginLab","True","","","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","Some of them","Some of them","","","","","","Some of them","Some of them","Some of them","","","","","","","","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","True","","","True","","","","100 MB - 1000 MB (1 GB)","","","","","","","","True","","","","","","","","","very interested","","1980-01-01 00:00:00"
+"130","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","323.14","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","","Radiochemistry","","","","","","","","","","","","","","","7 to 10 years","Postdoc","","","Familiar with FAIR","","True","True","","","OriginLab","Anonymized","MATLAB / Simulink","","","","","","","","True","","True","True","True","True","True","","","","True","","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","True","","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"131","True","True","","","True","True","","","True","","","","True","","","","","","","","","","","","","","","","","","FIZ Karlsruhe","","","","","50.0","","True","True","True","True","True","","","True","True","True","True","","True","True","","","","","","","","","","","","1069.66","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Apply FAIR","True","True","","","","Python","Anonymized","Machine Learning Libraries","","","","","True","True","","","","True","True","True","True","","","","","True","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Equally measured and simulated","Equally generated and reused","Yes","","50.0","","True","","","","","","","","","","Anonymized","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","True","True","True","True","","","True","True","","","100 MB - 1000 MB (1 GB)","","True","True","","","","","True","","True","","","moderately interested","very interested","moderately interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"132","","True","","","","","","","","True","","","","","","","","","","","Technical support needed","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","","981.18","Completed the survey","Anonymized","Anonymized","Energy","Earth Science","","","","","","","","Environmental Science","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","Anonymized","QGIS/GDAL","Anonymized","","","","","","True","","","","","","","","","","","Improved working with data","","True","","","","Yes","Yes","","","","True","","","","","","","","","","","","True","","True","True","True","","","True","","","","No standard","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","True","","Structured text","","> 1 TB","","","","","True","","","True","True","True","","","very interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"133","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1128.46","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Apply FAIR","True","True","True","True","","OriginLab","LabVIEW","Excel (Spreadsheets)","","True","","True","True","","","","Commercial applications complicate standardized solutions","","","","","","","","","","","True","Other","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","All","All","","","","","","","","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","","","","","","","True","","","","very interested","moderately interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"135","True","","","","True","","","","True","","","","","","True","","True","True","","","","","","","","","","","","","","","","","","10.0","","","","True","True","","True","","","","","","True","True","","","","","","","","","","","","","1925.98","Completed the survey","Anonymized","Anonymized","Energy","","materials science","","","","","","","","","","","","","","","","","","","","","More than 10 years","Postdoc","","","Familiar with FAIR","","True","","","","Anonymized","MATLAB / Simulink","OriginLab","","True","","","","","","","Lack of technical solutions","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","All","Some of them","","Some of them","","","","","","All","All","","None","","","","","","Purely measured","Purely generated","Yes","","95.0","","True","True","","","","","","","","","Anonymized","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","True","","","","True","","","10 GB - 100 GB","","True","","True","","","","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"140","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","324.91","Completed the survey","Anonymized","Anonymized","Energy","","Energy system modeling","","","","","","","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","","","","Python","Excel (Spreadsheets)","QGIS/GDAL","","True","","True","","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","All","","","All","","","","","","All","","","All","","","","","Mostly simulated","Mostly generated","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","Binary scientific formats","","> 1 TB","","","","","","","True","True","","","","","moderately interested","moderately interested","moderately interested","very interested","very interested","not interested","1980-01-01 00:00:00"
+"141","","True","","","True","","True","","","True","","","","","True","","","","True","","","","","","","","","","","","Gitlab / GitHub","","","","","10.0","","True","","","","","","","","","True","","","","","","","","","","","","","","","","759.6","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","Python","Anonymized","","","True","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","Some of them","","","","","","None","","None","None","","","","","","Purely simulated","Purely reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","True","","","True","","","","","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"142","True","True","","","True","","","","True","","","","","","True","","","","True","","","","","","","","","","","","Zenodo","Gitlab / GitHub","Gitlab / GitHub","","","55.0","","","","","","True","","True","","","","","","","","","True","","","","","","","","","","630.03","Completed the survey","Anonymized","Anonymized","Energy","","(Energie-)Wirtschaftswissenschaften","","","","","","","","","","","","","","","","","","","","","4 to 6 years","Research Associate","","","Familiar with FAIR","True","True","True","","","Anonymized","Anonymized","Excel (Spreadsheets)","","","","True","","True","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","All","All","","","","","None","","None","None","None","","","","Mostly simulated","Purely reused","No","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","True","True","","True","","","","< 100 MB","","","","True","","","","True","","","","","very interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"143","True","True","","","True","True","","","","True","","","","","True","","True","","","True","","","","","","","","","","","Institutional Repository","","","","","10.0","","True","","","","True","","","","","","","","","","True","True","","","","","","","","","","461.71","Completed the survey","Anonymized","Anonymized","Energy","","Systemanalyse","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","Python","Excel (Spreadsheets)","Anonymized","","True","","True","","True","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","","","","Some of them","Some of them","","","Some of them","Some of them","","","","None","None","","","None","None","","","","Purely simulated","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","True","True","","","True","","","1 GB - 10 GB","","True","","True","True","","","True","","","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"144","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1692.19","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","Less than 1 year","Research Associate","","","Familiar with FAIR","","True","","","","Python","Anonymized","QGIS/GDAL","","True","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","None","None","None","","","","","","Mostly simulated","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","10 GB - 100 GB","","True","True","","True","","","","True","","","","moderately interested","moderately interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"145","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","808.05","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","1 to 3 years","PhD candidate","","","Familiar with FAIR","","True","","","","Python","","","","","","","","","","True","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","None","Some of them","Some of them","","Some of them","","","","","None","Some of them","Some of them","","None","","","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","< 100 MB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"147","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","Insufficiently trained","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1384.99","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","Principal Investigator","","Familiar with FAIR","","True","","","","IGOR","Anonymized","Anonymized","","True","","True","True","","","","","True","","True","True","","","","","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","Some of them","Some of them","Some of them","","","","","","","Equally measured and simulated","Mostly generated","Yes","","10.0","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","True","True","","","True","True","True","","True","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","","True","","True","RDM software & tools","","moderately interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"148","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","578.03","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Industrial Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Not familiar with FAIR","True","","","","","MATLAB / Simulink","Excel (Spreadsheets)","Anonymized","","True","True","","","","True","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","None","","None","","","","","","","Mostly simulated","Mostly generated","No","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","True","True","True","","True","","","","< 100 MB","","","","","","","","","","","","True","not interested","moderately interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"149","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","387.63","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","Python","Aspen Custom Modeler","","","","","","","","True","","True","True","True","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","Some of them","Some of them","","All","","","","","None","Some of them","All","","None","","","","","Mostly measured","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","True","","True","True","","","","< 100 MB","","True","","","","","True","","","True","","","very interested","moderately interested","not interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"151","True","","","","True","True","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","","","25.0","","","","","","","","","","","","","True","","","","","","","","","","","","","","701.59","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","Less than 1 year","PhD candidate","","","Not familiar with FAIR","","True","","","","Python","Anonymized","ANSYS","","","","True","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","Mostly simulated","Mostly generated","Yes","","50.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","True","","","","","I don't know","","","","","","","","True","","","","","moderately interested","moderately interested","not interested","very interested","not interested","not interested","1980-01-01 00:00:00"
+"153","True","","","","True","","","","True","True","","","","","","","True","True","","","","","","","","","","","","","","","","","","70.0","","","","","","True","","","","","True","","","","","","","","","","","","","","","","479.0","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","Less than 1 year","PhD candidate","","","Familiar with FAIR","","True","","","","Aspen Custom Modeler","Python","Excel (Spreadsheets)","","","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","Some of them","","","","","","","None","None","None","","","","","","","Purely simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","","","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"155","True","","","","","","","","True","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","35.0","","","","True","True","True","","","","","True","","","","","","","","","","","","","","","","274.76","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","More than 10 years","Postdoc","","","Not familiar with FAIR","","True","","","","COMSOL Multiphysics","OriginLab","Word","","","True","","","True","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","All","Some of them","","","","","","","None","None","None","","","","","","","Mostly measured","Purely generated","Not sure","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","True","","","","","True","True","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","True","True","True","","","very interested","moderately interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"156","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","25.0","","","","","","","","","","","","","","","","","","","","","","","","","","","329.38","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","Less than 1 year","Student","","","Not familiar with FAIR","","","","True","","Python","Python","Excel (Spreadsheets)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Purely reused","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","","True","True","","","","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"158","True","","","","True","True","","","","True","","","","","True","","","True","True","","","","","","","","","","","","","","","","","15.0","","True","","True","True","True","","","","","","","","True","","True","","","","","","","","","","","760.21","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Familiar with FAIR","True","True","","","","Excel (Spreadsheets)","Anonymized","Anonymized","","True","","True","True","True","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","All","All","","All","All","","","","","None","None","","None","None","","","","","Purely simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","True","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","True","","True","True","True","True","True","True","","","moderately interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"160","True","","","","","True","","","","True","","","","","True","True","True","","","","","","","","","","","","","","","","","","","5.0","","","","","True","","","","","","","","","","","","","","","","","","","","","","517.9","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","Anonymized","Excel (Spreadsheets)","LabVIEW","","","True","True","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","None","","","Some of them","Some of them","","","","","None","","","None","Some of them","","","","","Purely measured","Purely generated","No","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","True","","","","","","< 100 MB","","True","","","","","","True","True","True","","","not interested","moderately interested","moderately interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"162","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","669.35","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","Python","LabVIEW","OriginLab","","True","True","","True","","","","","","","","","","","","","True","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","","","Some of them","","","","","","","Mostly measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","True","True","","","100 MB - 1000 MB (1 GB)","","","","","","","","True","True","True","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","","1980-01-01 00:00:00"
+"164","True","","","","True","True","","","","True","","","","","True","True","","","","","","","","","","","","","","","","","","","","20.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","837.07","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","4 to 6 years","Postdoc","","","Familiar with FAIR","True","True","","","","Python","Excel (Spreadsheets)","OriginLab","True","","","","","","","","","True","True","True","True","","","","","","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","Some of them","Some of them","All","","","","","All","All","All","All","All","","","","","Equally measured and simulated","Purely generated","Yes","","30.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","True","","True","True","True","True","True","","","","1 GB - 10 GB","","True","","True","","True","","True","True","","","","very interested","very interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"166","","","","","","","True","","True","","","","","","","","True","True","","","","","","","","","","","","","","","","","","15.0","","","","","","True","","","True","","","","","","","","","","","","","","","","","","407.08","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Nanotechnology","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","True","True","","","","Anonymized","OriginLab","Anonymized","","","","","","","","","Other","","","","","","","","","True","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","Some of them","All","","","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","1 GB - 10 GB","","","","","","True","","","True","","","","moderately interested","moderately interested","","","moderately interested","moderately interested","1980-01-01 00:00:00"
+"168","True","","","","","","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","10.0","","","","","","","","","","","","","","","","True","","","","","","","","","","","1280.43","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","LabVIEW","Delphi","Anonymized","","","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","All","","","","","Purely measured","Mostly generated","Yes","","95.0","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","100 MB - 1000 MB (1 GB)","","","","","","True","","","","","","","moderately interested","very interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"175","True","","","","","True","","","True","True","","","","","","","True","True","True","True","","","","","","","","","","","","","","","","30.0","","True","","","True","True","True","True","True","True","True","","","","","","","","","","","","","","","","3638.51","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Nanotechnology","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","Anonymized","Anonymized","IGOR","","True","","True","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","Some of them","All","All","","","","","","None","None","None","None","","","","","","Purely measured","Purely generated","Yes","","100.0","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Application-specific formats","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"178","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1940.69","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","Anonymized","MATLAB / Simulink","","True","True","","","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","Some of them","","Some of them","","All","","","","","None","","None","","Some of them","","","","","Mostly simulated","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","True","","","","1 GB - 10 GB","","","","","True","True","","","","True","","","very interested","very interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"179","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","445.47","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","Anonymized","C/C++","Python","","True","True","","","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","True","","","","","","","","","","","","","","","","","","","","","","Mostly simulated","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","True","","","","True","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","moderately interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"181","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","484.43","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","7 to 10 years","Postdoc","","","Familiar with FAIR","True","True","","","","IGOR","OriginLab","Anonymized","","True","True","True","True","","","True","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","None","Some of them","Some of them","","","","","All","All","Some of them","Some of them","All","","","","","Purely measured","Purely generated","Yes","","30.0","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","True","True","","","","True","","","","","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"182","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","486.14","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","","True","","","","Python","Excel (Spreadsheets)","OriginLab","","True","","True","True","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","All","Some of them","","All","","","","","None","None","None","","None","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","","True","","","","1 GB - 10 GB","","","","True","","True","True","True","True","True","","","very interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"183","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","802.15","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","True","True","","","","IGOR","Python","Anonymized","True","","","","","","","","","True","","","","","","","Improved working with data","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","None","Some of them","Some of them","","","","","","","Mostly measured","Mostly generated","Yes","","70.0","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","","","True","True","","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"185","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","606.16","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Familiar with FAIR","","True","","","","Python","MATLAB / Simulink","LabVIEW","","True","","True","","","","","","True","True","True","True","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","All","","All","","","","","","Some of them","Some of them","","All","","","","","Equally measured and simulated","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","True","","","","","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"187","","True","","","","","","True","","","","","","","","True","True","","","","","","","","","","","","","","Institutional Repository","","","","","10.0","","","","","True","","","","True","True","True","","","","","","","","","","","","","","","","1231.91","Completed the survey","Anonymized","Anonymized","Energy","Chemistry","","","","","","Biomimetic Chemistry","","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Familiar with FAIR","","","","True","","Excel (Spreadsheets)","MATLAB / Simulink","","","True","","True","True","","","","","","","","","","","","","","","","","True","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","Some of them","Some of them","None","","Some of them","","","","","All","Some of them","None","","Some of them","","","","","Mostly measured","Purely generated","No","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","True","","","True","True","True","","True","","","","100 MB - 1000 MB (1 GB)","","","True","","","","True","","True","True","","","very interested","moderately interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"188","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1570.2","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","4 to 6 years","PhD candidate","","","Not familiar with FAIR","","True","True","","","OriginLab","R","","","","","","","","","True","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","Some of them","","Some of them","Some of them","","","","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","True","","True","","","","I don't know","","True","","","","","","True","True","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"193","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","993.05","Completed the survey","Anonymized","Anonymized","Information","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","No degree","Student","","No","","True","","","","","Python","R","Command line (scripts)","","","","","","","","True","","True","True","True","True","","","","","","True","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","All","Some of them","Some of them","None","None","","","","","Purely measured","Purely reused","No","I don't know","","","","","","","","","","","","","","","True","","","","","","","","","Next Generation Sequencing","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","","","10.0","10 GB - 100 GB","I don't know","","True","","True","","True","True","True","","","","very interested","very interested","not interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"194","True","True","","","True","","","True","","True","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","Gitlab / GitHub","","","","95.0","","True","True","","","True","True","True","","","","","","","","","True","","","","","","","","Others","","2690.7","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","No degree","Student","","Yes","","","","","True","","","","","True","","","","","","","","","","","","True","","","","","","True","True","","","Yes","Yes","True","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","True","","Some of them","All","","","","All","","All","","None","Some of them","","","","None","","None","","Mostly simulated","Purely generated","Not sure","Less","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","","","True","","","","< 100 MB","I don't know","","","","True","","","","True","","","","moderately interested","not interested","not interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"199","","True","","","True","True","","","","True","","","","","True","","True","True","True","","","","","","","","","","","","Gitlab / GitHub","Gitlab / GitHub","","","","40.0","","True","","True","","True","","","","","True","","","","True","True","","True","","","","True","","","","","1030.24","Completed the survey","Anonymized","Anonymized","Information","Earth Science","","","","","","","","Environmental Science","","","","","","","","","","","","","","4 to 6 years","Research Associate","","No","","","True","True","","","Git","Visual Studio","Anonymized","","True","","","True","True","","","","True","True","True","True","","","","","","","True","Digital text","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","True","","All","All","All","All","All","All","","All","","","","","","","","","","","Mostly measured","Purely reused","No","I don't know","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","True","","","True","","","","< 100 MB","I don't know","","","","","True","","True","True","","","","moderately interested","very interested","","","very interested","moderately interested","1980-01-01 00:00:00"
+"202","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1005.79","Completed the survey","Anonymized","Anonymized","Information","","Informatik","","","","","","","","","","","","","","","","","","","","","Less than 1 year","Research Associate","","No","","","","True","","","Jupyter","","","","True","","True","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","","All","All","All","","","","","None","All","None","Some of them","None","","","","","Purely measured","Mostly generated","Yes","Less","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","Umfrage zu erfahrenen Szenarios einer Studie (Likert Skala)","","","","","","","","","","","True","","","","True","","","","","True","","","","","3.0","< 100 MB","Less","","","True","","True","True","True","True","True","","","very interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"203","","True","","","True","True","","","True","","","","True","","","","","","","","","","","","","","","","","","Zenodo","","","","","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","575.62","Completed the survey","Anonymized","Anonymized","Information","","Computer Science","","","","","","","","","","","","","","","","","","","","","More than 10 years","PhD candidate","","Yes","","","","True","","","Jupyter","Anonymized","Anonymized","","True","","","True","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","True","","All","All","All","All","All","All","","All","","Some of them","Some of them","All","All","All","All","","Some of them","","Purely measured","Mostly generated","Yes","More","","","","","","","","","","","","","","","True","","","True","","","","","","Software repository mining","","","","","","","","","Surveys","","","","","","","","","True","","True","","","","True","","","True","True","","","True","","","9.0","< 100 MB","Less","True","","","True","True","","","","True","","","moderately interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"204","True","","","","True","","","","True","","","","","","","","True","","True","","","","","","","","","","","","","","","","","45.0","","True","","True","True","True","","True","True","True","True","True","True","","","","","","","","","","True","","","","1128.14","Completed the survey","Anonymized","Anonymized","Information","","Informatik","","","","","","","","","","","","","","","","","","","","","7 to 10 years","Research Associate","","Yes","","","True","","","","Anonymized","Python","Linux","","True","True","","","","","","","","","","","","","True","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","True","","All","All","All","All","","","","All","","None","None","None","None","","","","None","","Purely simulated","Purely generated","Yes","As much","","","","","","","","","","","","","","True","True","True","","True","","","Segmentierung","Objekterkennung","Farbanalyse","Aggregation","Mathematische Modelle","Voting","Multi-Agenten-Simulationen","Evolutionäre Algorithmen","Game Engines","","","","Umfragen","Interviews","Voting","","","","","","","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","","12.0","100 MB - 1000 MB (1 GB)","As much","True","","","True","","","True","True","","","","moderately interested","moderately interested","moderately interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"206","","","True","","True","","True","True","","","","","True","","","","","","","","","","","","","","","","","","","","","","","25.0","","","","","True","True","True","True","","","","","","","","True","","","","","","","","","","","1566.49","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","","","True","","","","Anonymized","ANSYS","MATLAB / Simulink","","True","","True","","","","","","True","","True","True","True","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","True","","","Some of them","All","","","Some of them","Some of them","All","","","None","Some of them","","","Some of them","","None","","","Mostly simulated","Purely reused","Yes","More","","","","","","","","","","","","","","","","True","","","","","","","","","","","eigene Skripte","","","","","","","","","","","","","","","True","","True","","","","True","","","","True","","","True","True","","6.0","100 MB - 1000 MB (1 GB)","More","","True","","True","","","True","True","","","","moderately interested","moderately interested","not interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"209","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","4286.03","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","Less than 1 year","PhD candidate","","No","","","True","","","","Python","Anonymized","Anonymized","","","","True","True","","","True","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","Some of them","","","Some of them","Some of them","","","","","None","","None","None","None","","","","","Mostly simulated","Mostly generated","No","I don't know","","","","","","","","","","","","","","","","True","","","True","","","","","","","","Physical models","","","","","","","","","","","","","","","True","","","","","","","","","","","","","True","True","","1.0","10 GB - 100 GB","I don't know","","","True","","True","","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"210","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","750.19","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","4 to 6 years","PhD candidate","","Yes","","","True","","","","Python","Python","Linux","","","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","True","","All","","All","","","","","All","","Some of them","","Some of them","","","","","None","","Mostly measured","Purely generated","Yes","As much","","","","","","","","","","","","","","","","True","","","True","","","","","","","","Monta-Carlo Simulationen","","","","","","","","","","","","","","","","","","True","","","","","","","True","","","True","","Other","18.0","100 GB - 1000 GB (1 TB)","More","","","True","True","","","True","True","True","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"211","","True","True","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","Gitlab / GitHub","","","","","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","507.41","Completed the survey","Anonymized","Anonymized","Information","","Informatik","","","","","","","","","","","","","","","","","","","","","1 to 3 years","Research Associate","","Yes","","True","True","True","","","Anonymized","Python","Machine Learning Libraries","","","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","Some of them","Some of them","Some of them","Some of them","","","","Purely simulated","Mostly generated","Yes","I don't know","","","","","","","","","","","","","","","","True","","","","","","","","","","","BlenderProc","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","3.0","100 GB - 1000 GB (1 TB)","I don't know","True","","","","True","","True","True","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"213","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1356.25","Completed the survey","Anonymized","Anonymized","Information","","Transportation","","","","","","","","","","","","","","","","","","","","","1 to 3 years","Research Associate","","Yes","","True","True","","","","Python","Database Management System","Anonymized","","True","","True","True","","","","","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Mostly simulated","Mostly generated","Not sure","I don't know","","","","","","","","","","","","","","","","True","","","True","","","","","","","","simulation for transport mobility","","","","","","","","","","","","","","","True","","","","","","","","","","True","","","True","True","","8.0","1 GB - 10 GB","I don't know","","True","True","True","True","","","True","","","","very interested","very interested","moderately interested","very interested","moderately interested","not interested","1980-01-01 00:00:00"
+"226","True","","","","True","","","True","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","90.0","","","","","","","","","True","True","True","","","","","","","","","","","","","","","","704.11","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","Yes","","","True","","","","Python","MATLAB / Simulink","Visual Studio","","True","True","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","","","Mostly simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Deep Learning","","","","","","","","","","","","","","","True","","True","","","","True","","","","True","","","","True","","","10 GB - 100 GB","","","","","True","","","","True","","","","moderately interested","moderately interested","moderately interested","moderately interested","not interested","moderately interested","1980-01-01 00:00:00"
+"230","","True","","","True","","","","True","","","Guidelines / policies of publishers","True","","","","","","","","","","","","","","","","","","Zenodo","","","","","80.0","","True","","","","","","","","","","","True","True","True","True","","","","","","","","","","","316.52","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","4 to 6 years","Postdoc","","Yes","","True","","","","","Python","Java","Linux","","","","","True","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","All","All","","All","All","","","","","None","None","","None","None","","","","","Purely simulated","Mostly generated","No","I don't know","","","","","","","","","","","","","","","","True","","","","","","","","","","","Erzeugen von Objekten mit einer Wahrscheinlichkeitsverteilung auf möglichen Parametern","","","","","","","","","","","","","","","True","","True","","","","True","","","","True","","","True","","","3.0","100 MB - 1000 MB (1 GB)","I don't know","","","","True","","","","True","","","","moderately interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"236","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","331.56","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","","True","True","True","","","","","","","","","","","","True","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"237","True","True","","","","","","True","True","True","","","","True","True","True","True","True","True","","","","","","","","","","","","Materials Cloud","Zenodo","","","","60.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","538.71","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","4 to 6 years","Postdoc","","Yes","","True","True","True","","","AiiDA","Anonymized","Python","","True","True","True","","","","True","","","","","","","","","","True","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","True","","","Some of them","All","All","All","Some of them","","None","","","Some of them","All","All","All","Some of them","","None","","","Mostly simulated","Mostly generated","Yes","More","","","","","","","","","","","","","","","","True","","","","","","","","","","","HPC","HTC","density functional theory","","","","","","","","","","","","","True","","True","True","True","","True","","","","True","True","","True","True","","6.0","10 GB - 100 GB","I don't know","","True","True","True","True","True","","True","True","","","very interested","moderately interested","not interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"243","True","True","","","","","","","","","","Other","","","","","","","","True","","","","","","","","","","","Zenodo","","","","","15.0","","True","True","True","True","True","True","True","True","True","True","True","True","","True","","True","True","","","","","True","","","","743.99","Completed the survey","Anonymized","Anonymized","Information","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","1 to 3 years","Research Associate","","Yes","","","","","True","","Python","Git","","True","","","","","","","","","True","True","True","True","True","","","","","True","","","","Yes","Yes","","","","","","","","","","True","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","All","Some of them","Some of them","Some of them","Some of them","","Some of them","All","","Some of them","Some of them","Some of them","All","All","","Some of them","All","","Purely measured","Purely reused","Not sure","I don't know","","","","","","","","","","","","","","","True","","","","","","","","","Flow cytometry","single cell sequencing ","","","","","","","","","","","","","","","","","True","","True","","","","True","","","","True","","","True","True","","12.0","100 MB - 1000 MB (1 GB)","I don't know","","","True","True","","","","True","True","","","very interested","very interested","moderately interested","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"244","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","350.34","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","1 to 3 years","Research Associate","","Yes","","","True","","","","","","","","True","","True","True","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","","","","","","","Mostly simulated","Purely reused","","","","","","","","","","","","","","","","True","","True","","","","","Ptychography","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","","","True","True","","","10 GB - 100 GB","","","","","True","","","","True","True","","","moderately interested","very interested","not interested","moderately interested","moderately interested","","1980-01-01 00:00:00"
+"246","True","","","","","","","","True","True","","","","","","","","True","True","","","","","","","","","","","","","","","","","45.0","","","","","","","","","","","","","","","True","","","","","","","True","True","","","","609.84","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","7 to 10 years","Postdoc","","Yes","","True","True","","","","C/C++","Python","MATLAB / Simulink","","","True","","","True","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","All","","","All","","","","","","Some of them","","","Some of them","","Mostly measured","Purely generated","Yes","As much","","","","","","","","","","","","","","True","","","","True","True","","Kamerabilder","Tiefenbilder ","","","","","","","","","","","standardisierte Fragebögen","","","","","","","","","","","True","","True","","True","","","","True","","","True","","","3.0","100 MB - 1000 MB (1 GB)","As much","","","","","True","","True","True","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"247","True","True","","","","True","","True","True","","","","","True","True","","","","","True","","","","","","","","","","","RCSB PDB","EMDB","EMPIAR","","","80.0","","True","","True","True","True","True","True","True","True","True","True","True","True","","","","","","","","","","","","","1291.98","Completed the survey","Anonymized","Anonymized","Information","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","7 to 10 years","Postdoc","","Yes","","True","True","True","","Centrally (internal server)","Anonymized","Anonymized","Python","","True","True","","","","","","","True","True","True","True","True","True","","","True","True","True","Digital system","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","Mostly measured","Purely generated","Yes","As much","","","","","","","","","","","","","","True","True","True","","","","","Cryoelectron Microscopy","Fluorescence Microscopy","","FPLC","SDS-PAGE","Immunoblotting","Single Particle Analysis","Atomic model building","MD and QM simulations","","","","","","","","","","","","","True","","True","True","True","True","True","","","","True","True","","True","","","24.0","> 1 TB","As much","","","","True","","True","True","","True","","","moderately interested","not interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"251","True","True","","","True","True","","","True","","","","","","True","","","","","","","","","","","","","","","","FAIRDOMHub","","","","","95.0","","","True","","True","True","","","","","","True","True","True","","","True","","","","","","","","","","512.55","Completed the survey","Anonymized","Anonymized","Information","Chemistry","","","","","","Biochemistry","","","","","","","","","","","","","","","","7 to 10 years","Postdoc","","Yes","","","","True","","","Python","Anonymized","","","True","","True","True","","","","","","","","","","","","","True","","True","Source code and scripts","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","","","None","None","None","Some of them","","None","","","","None","None","None","Some of them","","None","","","","Mostly simulated","Purely generated","Yes","More","","","","","","","","","","","","","","","True","True","","","","","","","","UV-Vis Spektrophotometrie","Isothermale Titrationskalorimetrie","NMR","Molecular Dynamics","","","","","","","","","","","","","","","","","","","True","","","","","True","True","True","","True","","","3.0","1 GB - 10 GB","I don't know","","","","","","","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"252","True","","","","","","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","20.0","","","","True","True","","","","True","","","","","","","","","","","","","","","","","","716.89","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","More than 10 years","Postdoc","","Yes","","True","True","","","","ANSYS","Python","ZEMAX","","True","True","","","","","","","","","","","","","","","True","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","None","None","","","","","","","","","No","As much","","","","","","","","","","","","","","True","","True","","","True","","Lichtmikroskopie","Elektronenmikroskopie","Bildverarbeitung von mir vorigen Methoden erfassten Daten","","","","FEm-Simulation (Mechanik/Fluidik)","Optische Simulation","","","","","","","","","","","","","","","","True","","True","","True","","","True","True","True","","","","","2.0","100 MB - 1000 MB (1 GB)","As much","","True","True","True","True","True","","","True","","","moderately interested","moderately interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"255","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","388.47","Completed the survey","Anonymized","Anonymized","Information","Life Science","","","","","","","","","","","","Medicine","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","","","True","","","","Anonymized","Anonymized","MATLAB / Simulink","","True","","True","True","True","","","","True","","True","True","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","None","None","None","None","None","None","","","","Purely measured","Mostly generated","Yes","As much","","","","","","","","","","","","","","True","True","","","True","True","","PET","MRI","","HPLC","","","","","","","","","Survey","","","","","","","","","True","True","True","True","True","","True","True","True","True","True","True","True","True","True","","36.0","10 GB - 100 GB","As much","","True","","","True","True","True","","True","","","moderately interested","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"269","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","904.16","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","","","True","","","","OriginLab","LabVIEW","Word","","True","","","","","","True","","True","","True","","","True","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","None","","None","","","","","","","Purely measured","Purely generated","Yes","Less","","","","","","","","","","","","","","True","True","","","","True","","Bildauswertung","Grauwertkorrelation","","Spektroskopie","Diffraktometrie","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","True","","True","","","6.0","100 MB - 1000 MB (1 GB)","As much","","True","","True","","","","True","True","","","moderately interested","moderately interested","not interested","","","","1980-01-01 00:00:00"
+"274","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","870.73","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","1 to 3 years","Research Associate","","Yes","","True","True","","","","Anonymized","Python","Excel (Spreadsheets)","","","True","","","","","","","True","True","True","","","","","","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","All","All","All","Some of them","Some of them","All","All","All","","Some of them","Some of them","Some of them","None","None","None","None","Some of them","","Mostly measured","Purely reused","No","","","","","","","","","","","","","","","True","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","True","","","True","True","True","","True","","","","","","","True","True","","","","True","True","","","","very interested","moderately interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"275","True","True","","","True","True","","True","","","","","","","True","","","","","","","","","","","","","","","","ProteomeXchange","ProteomeXchange","","","","30.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","702.19","Completed the survey","Anonymized","Anonymized","Information","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","More than 10 years","Postdoc","","Yes","","","True","","","","Anonymized","Anonymized","Anonymized","","True","","True","True","","","","","True","","","True","","True","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","Some of them","","","","","","None","","Some of them","Some of them","","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","True","True","","","","","","Microscopy","","","Mass Spectrometry","Flow Cytometry","","","","","","","","","","","","","","","","","True","True","","","True","True","","True","","","","True","","","","","12.0","> 1 TB","","","True","True","True","","True","","","True","","","moderately interested","very interested","moderately interested","","","moderately interested","1980-01-01 00:00:00"
+"276","True","True","","","","True","","True","True","","","","","","True","","","True","","","","","","","","","","","","","Institutional Repository","ePrints Soton","","","","30.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","659.8","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","Yes","","True","True","","","","MATLAB / Simulink","Anonymized","COMSOL Multiphysics","","True","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","All","All","","","","","None","","Some of them","None","None","","","","","Equally measured and simulated","Purely generated","Yes","I don't know","","","","","","","","","","","","","","True","","True","","","True","","Synchrotron microCT","Synchrotron nanoCT","Neutron microCT","","","","FE modelling","Machine learning models","","","","","","","","","","","","","","True","","","","True","","","","","True","True","True","True","True","True","","12.0","10 GB - 100 GB","As much","True","True","True","True","True","True","","","","","","very interested","moderately interested","moderately interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"278","","True","","","","","","","","","","Guidelines/policies of institute/funder","","","True","","","","","","","","","","","","","","","","figshare","","","","","20.0","","True","","True","True","True","","","True","True","True","","","True","","","","","","","","","","","","","1200.02","Completed the survey","Anonymized","Anonymized","Information","Chemistry","","","","","","","Electrochemistry","","","","","","","","","","","","","","","4 to 6 years","Postdoc","","Yes","","True","","","","","OriginLab","Anonymized","Word","","","","","","","","","Lack of resources","","","","","","","","","True","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","None","Some of them","None","","","","","","Purely measured","Purely generated","Not sure","Less","","","","","","","","","","","","","","True","True","","","","True","","Microscopy","","","Spectroscopy","","","","","","","","","","","","","","","","","","True","True","True","","True","True","True","","","","","True","","","","","18.0","1 GB - 10 GB","Less","","","True","","True","True","True","","True","","","moderately interested","moderately interested","moderately interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"279","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","True","True","True","True","True","True","True","True","True","True","True","","","","","","","","","","","","","5595.69","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","","True","True","True","","","Word","Excel (Spreadsheets)","PowerPoint","","True","","True","True","","","","","True","True","True","True","","True","","","True","True","True","","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","None","None","None","None","","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","True","True","True","","","True","","yes","","","numerous","","","limited","","","","","","","","","","","","","","","True","True","True","True","True","","True","","True","True","","True","True","True","","","","","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"283","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1363.32","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Polymer Physics","","","","7 to 10 years","Research Associate","","Yes","","","True","","","","Anonymized","Anonymized","Anonymized","","True","","True","True","","","","","True","True","True","","","","","","True","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","Some of them","All","","","","","","","None","None","None","","","","","","","Purely measured","Mostly generated","Yes","Less","","","","","","","","","","","","","","True","","","","","","","REM","TEM","AFM","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","1.0","1 GB - 10 GB","Less","","","","True","","True","","True","True","","","very interested","very interested","very interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"288","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","944.28","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","4 to 6 years","Postdoc","","No","","True","True","","","","Python","PyTorch","Jupyter","","True","","","","","","","Lack of technical solutions","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","All","All","","","","","None","","Some of them","Some of them","Some of them","","","","","Equally measured and simulated","Purely reused","Yes","I don't know","","","","","","","","","","","","","","True","","True","","","","","Tomographie (CT/MR)","Histologie","XRD, SAXS","","","","Deep Learning Modelle","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","True","True","","18.0","10 GB - 100 GB","More","","","","","","","","True","","","","","moderately interested","","","","","1980-01-01 00:00:00"
+"292","True","","","","","True","","","True","True","","","","","True","True","","True","","True","","","","","","","","","","","","","","","","5.0","","True","","True","","True","True","True","","","","","True","","","","True","True","","","","","","","","","989.06","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","","","Yes","","","True","","True","","Anonymized","PyTorch","Anonymized","","True","True","True","True","","","True","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","True","","","","None","All","","Some of them","","None","","","","None","All","","All","","None","","","","Purely measured","Purely generated","Not sure","Less","","","","","","","","","","","","","","True","True","","","","True","","Tomography","","","Spectroscopy","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","True","True","","","True","True","","18.0","10 GB - 100 GB","As much","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"303","","","True","","","","True","","True","True","","","","","True","","","","","","","","","","","","","","","","","","","","","50.0","","","","True","True","","","","","True","","","True","","","","","","","","","","","","","","793.09","Completed the survey","Anonymized","Anonymized","Information","Chemistry","","","","","","","Radiation Chemistry","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","Not sure","","True","True","","","","Anonymized","","","","","","True","True","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","Some of them","Some of them","All","All","","","","","","Equally measured and simulated","Mostly generated","Not sure","As much","","","","","","","","","","","","","","","True","","","","","","","","","GC/MS ","HPLC","LSC","","","","","","","","","","","","","","","","True","True","","","True","","","","","","","True","","","","","","> 1 TB","More","","","True","","True","","","","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"304","True","","","","","","","","True","","","","","","True","True","","","","","","","","","","","","","","","","","","","","20.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","628.81","Completed the survey","Anonymized","Anonymized","Information","Chemistry","","","","","","Polymer Research","","","","","","","","","","","","","","","","7 to 10 years","Research Associate","","No","","","True","","","","Excel (Spreadsheets)","Word","PowerPoint","","","","","True","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","None","","None","","","","","","","Mostly measured","Mostly generated","Yes","As much","","","","","","","","","","","","","","True","True","True","","","True","","Mikroskopie","","","Spektroskopie","","","CFD","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","","","","12.0","1 GB - 10 GB","As much","","","True","","","","","","","","","very interested","very interested","very interested","very interested","not interested","not interested","1980-01-01 00:00:00"
+"305","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Other","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","532.67","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","","True","True","","","","MATLAB / Simulink","Mathematica","C/C++","","","","","","","","True","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mostly simulated","Purely generated","Yes","Less","","","","","","","","","","","","","","","True","True","","","","","","","","From analytical model trace is generated","","","Simulating a system with relevant effects is then used to generate the trace","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","True","","1.0","< 100 MB","Less","True","","True","","True","True","","","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"309","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","732.23","Completed the survey","Anonymized","Anonymized","Information","Psychology","","","","","","","","","","","","","","","","","","","","","Kognitive Psychologie","4 to 6 years","Postdoc","","Yes","","","True","","","","Anonymized","Anonymized","Office Software (unspecified)","","True","","","","","","True","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","None","","None","Some of them","","","","","","None","","None","None","","","","","","Purely measured","Purely reused","Yes","I don't know","","","","","","","","","","","","","","True","","","","","","Cohort studies","Strukturelle Magnetresonanztomographie (MRT)","Computertomographie (CT)","","","","","","","","","","","","","","Neuropsychologische Tests","Klinische Tests","Experimente","","","","","","","True","","","","True","True","","","True","","","","","12.0","I don't know","I don't know","","","True","True","True","","True","True","True","","","very interested","moderately interested","very interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"310","","","True","","True","True","","","","True","","","True","","","","","","","","","","","","","","","","","","","","","","","70.0","","","","","True","","","","","","","","","","","","","","","","","","","","","","1497.93","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","7 to 10 years","Research Associate","Research Associate","","","","","","","","FLUKA","Anonymized","","","","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","","","","","","","","","","Mostly simulated","Purely generated","No","More","","","","","","","","","","","","","","","True","True","","","","","","","","Analytical code","","","Monte Carlo simulation","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","","3.0","100 MB - 1000 MB (1 GB)","More","True","","","True","True","","","","","","","very interested","very interested","","moderately interested","","moderately interested","1980-01-01 00:00:00"
+"313","True","","","","","","","","True","","","","","","True","True","","True","","True","","","","","","","","","","","","","","","","10.0","","","","True","True","","","","True","True","","","","","","","","","","","","","","","","","685.04","Completed the survey","Anonymized","Anonymized","Information","Chemistry","","","","","","Polymer Research","","","","","","","","","","","","","","","","7 to 10 years","Postdoc","","No","","","True","","","","Python","Office Software (unspecified)","OriginLab","","True","True","True","True","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","All","","","","","","","None","None","All","","","","","","","Purely measured","Mostly generated","Yes","More","","","","","","","","","","","","","","True","True","","","","","","REM","","","IR Spektroskopie","Strömungspotential-Messungen","Permeationsmessungen","","","","","","","","","","","","","","","","","","","","True","","True","","","","","True","","","","","12.0","100 MB - 1000 MB (1 GB)","As much","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"315","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","645.95","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Nanotechnology","","","","More than 10 years","Postdoc","","Yes","","","True","","","","Python","IDL","Office Software (unspecified)","","True","True","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","All","All","","","","","","","Some of them","All","All","","","","","","","Equally measured and simulated","Purely generated","Yes","More","","","","","","","","","","","","","","True","True","True","","","","","Mikroskopie","","","Röntgenfluoreszenz","Röntgenreflekotmetrie","","Finite-Elemente Methoden","Monte-Carlo Simulationen","","","","","","","","","","","","","","True","","","","True","True","","","","","True","True","","","True","","3.0","1 GB - 10 GB","More","True","True","True","","True","","True","True","","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"318","True","","","","","","","","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","20.0","","","","True","True","","","","","","","True","","","","","","","","","","","","","","","934.3","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","7 to 10 years","Research Associate","","Yes","","True","True","","","","Python","Mathematica","LaTeX","","","True","","True","","","True","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","Some of them","","Some of them","","","","","","","Mostly simulated","Mostly generated","Not sure","As much","","","","","","","","","","","","","","","","True","","","","","","","","","","","Optimierung","HPC","","","","","","","","","","","","","","","","True","","","","","","","","True","","","","True","Other","12.0","1 GB - 10 GB","More","True","","True","True","True","","","True","","","","very interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"321","True","True","","","True","True","","","True","","","","","","True","","True","","","","","","","","","","","","","","Zenodo","","","","","5.0","","True","True","True","True","","","","True","True","True","True","True","True","","","","","","","","","","","","","547.01","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Postdoc","","Yes","","","True","","","","Anonymized","","","","True","","True","True","","","","","True","","True","True","True","","","","","True","True","","","Yes","Yes","","","","","True","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","Some of them","","Some of them","Some of them","Some of them","","","","","Some of them","","Some of them","Some of them","None","","","","","Mostly measured","Mostly generated","Yes","As much","","","","","","","","","","","","","","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","True","True","","24.0","10 GB - 100 GB","As much","","True","","","True","True","","","","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"324","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","802.49","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Postdoc","","Yes","","","True","","","Most data is lost","","","","","","True","","True","","","True","","","","","","","","","","","","True","Source code and scripts","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","Some of them","","Some of them","","","","","Purely simulated","Purely generated","No","More","","","","","","","","","","","","","","","","True","","","","","","","","","","","HPC","","","","","","","","","","","","","","","","","True","","","","","","","True","True","","","","True","","24.0","10 GB - 100 GB","As much","","","True","","True","","","","","","","very interested","very interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"326","True","","","","","","","True","","True","","","","","","True","True","True","","True","","","","","","","","","","","","","","","","15.0","","","","","","","","","","","","","","","","","","","","","","","","","","","273.68","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","","","True","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","True","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mostly simulated","Mostly generated","No","I don't know","","","","","","","","","","","","","","True","","True","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","True","","True","","2.0","100 MB - 1000 MB (1 GB)","I don't know","","","True","True","True","True","","","True","","","very interested","moderately interested","","","moderately interested","","1980-01-01 00:00:00"
+"327","True","","","","True","True","","","True","","","","","","","","","","True","","","","","","","","","","","","","","","","","55.0","","","","True","True","True","","True","True","","True","True","","True","","True","","","","","","","","","","","1467.91","Completed the survey","Anonymized","Anonymized","Information","","Informatik","","","","","","","","","","","","","","","","","","","","","7 to 10 years","Research Associate","","Yes","","True","True","","","","","","","","True","True","","True","True","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","None","None","None","None","None","None","","","","Mostly measured","","","I don't know","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","Interviews (Audio, schriftliche Notizen)","Fragebögen (Online-Umfrage-tools wie Lime-Survey, Papierfragebögen, E-Mail-Fragebögen)","Videoaufzeichnungen","","","","","","","True","True","","","True","True","True","","True","","True","True","","True","","","","","I don't know","True","True","","","True","","True","True","","","","very interested","very interested","","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"328","True","","","","True","True","","True","","","","","","","True","","","","","True","","","","","","","","","","","","","","","","55.0","","","","","True","","","","True","True","True","","","True","","","","","","","","","","","","","1264.2","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","","","True","","","","Office Software (unspecified)","OriginLab","Aspen Custom Modeler","","True","","True","","","","","","True","","True","True","","True","","","True","","True","","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","All","All","All","Some of them","","","","","None","All","Some of them","Some of them","Some of them","","","","","Equally measured and simulated","Mostly generated","Yes","More","","","","","","","","","","","","","","True","True","True","","","True","","Mikroskpie","","","Spektoskopie","Chromatographie","","Theoretische Modelle","Numerische Modelle","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","","True","","","10.0","1 GB - 10 GB","More","","","","","True","True","True","","True","","","moderately interested","moderately interested","","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"329","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","291.9","Completed the survey","Anonymized","Anonymized","Information","","Data Science","","","","","","","","","","","","","","","","","","","","","1 to 3 years","Research Associate","","Yes","","True","True","","","","Python","Excel (Spreadsheets)","Notepad++","","True","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","","","","","Equally measured and simulated","Equally generated and reused","Not sure","I don't know","","","","","","","","","","","","","","","","","","","","Simulations","","","","","","","","","","","","","","","","Algorithmically","","","","","","","","","","True","","","","","","","True","","","","Other","12.0","100 MB - 1000 MB (1 GB)","I don't know","True","","","True","","","True","True","","","","moderately interested","moderately interested","not interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"330","True","","","","True","","","","True","True","","","","","True","True","","","True","","","","","","","","","","","","","","","","","70.0","","","","","","True","","True","","","","","True","True","","True","","","","","","","","","","","812.27","Completed the survey","Anonymized","Anonymized","Information","Mathematics","","","","","","","","","","","","","","Statistics","","","","","","","","4 to 6 years","Postdoc","","Yes","","True","True","","","","R","Python","Excel (Spreadsheets)","","True","","","","","","","","","","","","","","","","","","","Source code and scripts","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","None","None","","","","","Mostly simulated","Purely reused","","I don't know","","","","","","","","","","","","","","","True","True","","True","","","","","","RNA Sequencing","","","Simulations on R","","","","","","Food Frequency Questionnaire","","","","","","","","","","","","","","","True","","","","True","True","","","","","","100 MB - 1000 MB (1 GB)","Less","True","","True","","True","","True","True","","","","moderately interested","very interested","very interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"333","True","","","","True","True","","","True","","","","","","True","True","","","True","","","","","","","","","","","","","","","","","60.0","","True","True","","","","","","","","","True","True","True","True","True","","","","","","","","","","","532.49","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","4 to 6 years","Research Associate","","Yes","","True","True","","","","Python","Visual Studio","Git","","True","True","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","True","","Some of them","","Some of them","All","Some of them","","","None","","Some of them","","Some of them","All","None","","","None","","Equally measured and simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","True","","","True","","","True","","","","","","","","","True","True","True","True","True","","","","very interested","very interested","not interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"340","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","514.81","Completed the survey","Anonymized","Anonymized","Information","","Data Science","","","","","","","","","","","","","","","","","","","","","Less than 1 year","Research Associate","","No","","True","True","","","","Python","Anonymized","","","","","","","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","All","All","","All","","","","","None","None","None","","None","","","","","Mostly simulated","","Yes","I don't know","","","","","","","","","","","","","","","","True","","","True","","","","","","","","Flight simulation software","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","3.0","100 MB - 1000 MB (1 GB)","I don't know","True","True","","True","True","True","True","True","True","","","very interested","moderately interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"341","True","","True","","","","","True","True","True","","","","","True","True","","","","","","","","","","","","","","","","","","","","20.0","","True","True","","","True","","True","","","","True","","","","True","","","","","","","","","","","980.37","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","","Materialwissenschaften","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","","","True","","","","Anonymized","Anonymized","","True","","","","","","","","","True","True","True","True","True","True","","","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","True","","All","All","All","All","All","","","All","","All","All","All","All","None","","","All","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","True","True","","True","True","","","6.0","10 GB - 100 GB","","","","True","","","True","","True","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"343","","","","","","True","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","426.74","Completed the survey","Anonymized","Anonymized","Information","","Bioinformatics","","","","","","","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","No","","True","True","","","","Command line (scripts)","R","Python","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","Some of them","","","","","","Mostly measured","Mostly generated","Not sure","As much","","","","","","","","","","","","","","","","","","","","Analytical methods","","","","","","","","","","","","","","","","Tomo-Seq","","","","","","True","","True","","","","True","","","","True","","","","","","12.0","10 GB - 100 GB","As much","True","","True","","True","","","","True","","","","moderately interested","moderately interested","","moderately interested","very interested","1980-01-01 00:00:00"
+"350","True","True","","","True","True","","","True","","","","","True","","True","","True","","","","","","","","","","","","","Zenodo","","","","","100.0","","True","True","True","","True","True","True","True","","","","","","True","True","True","","","","","","","","","","365.98","Completed the survey","Anonymized","Anonymized","Information","Earth Science","","","","","","","","","Remote Sensing","","","","","","","","","","","","","1 to 3 years","PhD candidate","","Yes","","","True","True","","","Python","QGIS/GDAL","Google Earth Engine","","True","True","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","None","All","All","None","None","None","","","","Purely simulated","Mostly reused","Yes","Less","","","","","","","","","","","","","","True","","","","","","","Satellite","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","","","","","True","True","","3.0","10 GB - 100 GB","As much","True","","","","","","True","","","","","not interested","very interested","moderately interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"352","True","","","","","","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","True","","","","","True","","","","","","","","","","","","","2114.86","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","","Quanteninformation","","","More than 10 years","Postdoc","","Yes","","","True","","","","Anonymized","Git","","","True","","","","","","","","","","","","","","","","","True","","GitLab","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","Some of them","Some of them","Some of them","","","","","","Mostly measured","Purely generated","No","","","","","","","","","","","","","","","","","True","","","True","","","","","","","","qutip","c3 (PGI-FZJ)","juqcs (JSC-FZJ)","","","","","","","","","","","","","","","","True","","","","","","","True","","","","True","","6.0","1 GB - 10 GB","","","","True","","True","","","","","","","moderately interested","very interested","not interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"353","","","True","","","","True","True","","","","","","","True","","True","","","True","","","","","","","","","","","","","","","","75.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","294.45","Completed the survey","Anonymized","Anonymized","Information","Psychology","","","","","","","","","","","","","","","","","","","","","Engineering Psychology / Human Factors","1 to 3 years","PhD candidate","","Yes","","True","True","","","","SPSS","R","","","True","","True","","True","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","","All","","","","","","","All","","All","","","","","","","All","","Mostly measured","Mostly generated","No","As much","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","Online survey","Laboratory studies in Virtual Reality","Neurophysical measurements","","","","","","","","","True","","","","","","True","","","","","","","","12.0","100 MB - 1000 MB (1 GB)","More","","","","","True","True","","True","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"363","","True","","","True","","","True","True","","","","","","","","True","","","True","","","","","","","","","","","Institutional Repository","","","","","100.0","","True","True","True","True","True","","True","True","True","True","True","True","True","True","True","","","","","","","","","","","471.36","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Industrial Engineering","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","True","","","MATLAB / Simulink","","","","True","True","True","","","","","","","True","","True","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","Some of them","All","All","All","","","","","None","None","None","None","None","None","","","","Mostly measured","Purely generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","","","I don't know","","True","True","True","True","True","","True","","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"364","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","613.09","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Anonymized","Anonymized","MATLAB / Simulink","","True","True","True","","","True","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","","","","","","","","","","Purely simulated","Mostly generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","I don't know","","","True","","","","True","","","","","","moderately interested","very interested","not interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"365","True","True","","","True","True","","","True","","","","","True","True","","","True","","","","","","","","","","","","","Institutional Repository","","","","","5.0","","","","","","","","","True","True","True","True","","","","","","","","","","","","","","","355.08","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Mathematics","","","","","","","","","","","","","","Applied Mathematics","","","","","","","","7 to 10 years","Postdoc","","","Familiar with FAIR","True","","True","","","Paraview","LaTeX","Visual Studio","","True","","","True","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","","","Purely simulated","Purely generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","True","","","True","True","","True","True","True","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","True","","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"366","True","","","","","","","True","","","","","","","True","True","","True","True","True","","","","","","","","","","","","","","","","10.0","","","","True","True","True","True","True","True","True","True","True","","True","","","","","","","","","","","","","2597.89","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","Python","Anonymized","","True","True","True","True","True","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","Some of them","None","None","None","","","","","Equally measured and simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","True","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","","True","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"367","","True","","","True","True","","","","True","","","","","True","True","","","","","","","","","","","","","","","Institutional Repository","Institutional Repository","ESA Data Archive","TERENO","","85.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","1452.98","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","Centrally (internal server)","","","","","True","","","","","","","","True","True","","True","","","","","","","True","","","Yes","Yes","","True","","True","","","","","","","","","","","","","","","","","","","","","True","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","Some of them","All","All","All","All","All","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","","","True","","True","True","","","10 GB - 100 GB","","","","","","","","","","","","True","moderately interested","moderately interested","not interested","very interested","very interested","not interested","1980-01-01 00:00:00"
+"368","True","True","","","True","","","","True","True","","","","","True","True","","True","","","","","","","","","","","","","Zenodo","Gitlab / GitHub","","","","25.0","","True","True","","","","","","","","","","True","True","","","True","","","","","True","","","","","1523.25","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","","True","True","","","Git","Python","Python","","True","True","","","True","","","","","","","","","","","","True","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","True","","True","","All","","Some of them","Some of them","","All","","Some of them","","","","Some of them","Some of them","","Some of them","","Some of them","","Mostly measured","Equally generated and reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","True","","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","True","","","","True","True","","","very interested","very interested","very interested","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"369","","","","Other","True","True","","","True","","","","","","","","","","","","Legal / ethical concerns","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","","808.73","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Apply FAIR","","True","","","","Python","Anonymized","","","","","","","","","True","","","","","","","","","","","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","Some of them","Some of them","All","","","","","","","","","","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","","","True","","","","10 GB - 100 GB","","","True","","","","","True","True","","","","very interested","not interested","very interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"370","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","6556.1","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Familiar with FAIR","True","","","","","Anonymized","OpenCV","Excel (Spreadsheets)","","True","True","","True","","","","Heterogeneous workflows complicate standardized solutions","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","Description of data structure","Some of them","","","","","","","","All","None","","","","","","","","Some of them","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","True","True","True","True","True","True","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","not interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"373","","","True","","","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","10.0","","","","","","True","True","True","","","","","","","True","","","","","","","","","","","","934.71","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Astrophysics and Astronomy","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","Anonymized","Anonymized","","True","","","","","","","","","True","True","True","True","","True","","","","True","True","","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","","","","","","Others","","True","True","True","True","","","","","","All","All","All","All","","","","","","All","All","All","All","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","True","","","True","True","","","True","","","","> 1 TB","","","","","","","","","","","","True","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"374","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","Legal / ethical concerns","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","992.82","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Principal Investigator","","","Not familiar with FAIR","","True","True","","","","Jupyter","Office Software (unspecified)","","True","True","True","True","True","","","","","","","","","True","","","","True","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","","","","All","All","","","Some of them","All","","","","None","None","","","None","None","","","","Mostly simulated","Equally generated and reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","True","True","","","","","100 MB - 1000 MB (1 GB)","","","True","True","","","","True","True","True","","","moderately interested","very interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"375","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","520.2","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","Materialwissenschaften","","","","","","","","","","","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","ImageJ","OriginLab","Anonymized","","True","","True","","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","None","None","None","","","","","","","None","Some of them","None","","","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","","True","","","","10 GB - 100 GB","","","","True","True","True","","","True","True","","","moderately interested","very interested","not interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"377","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","475.82","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Linux","Visual Studio","Office Software (unspecified)","","True","","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","None","Some of them","All","All","","","","","","None","None","","Some of them","","","","","","Mostly simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","True","True","True","True","","","100 GB - 1000 GB (1 TB)","","True","","True","True","","True","True","True","True","","","very interested","very interested","not interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"379","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","635.72","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","Transportation","","","","","","","","","","","","","","","","","","","","","More than 10 years","Postdoc","","","Not familiar with FAIR","","True","","","","Python","","","","True","","","","","","","","True","","True","","","True","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","All","All","","All","","","","","","None","None","","All","","","","","","Purely measured","Purely reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","","","","","","","","","very interested","very interested","","","very interested","","1980-01-01 00:00:00"
+"381","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","382.16","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","True","","","","","Python","LabVIEW","Anonymized","","True","True","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","None","None","","","","","","","Purely measured","Mostly generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","","","True","","","","","","","I don't know","","","","","","","","","","","","","very interested","very interested","not interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"384","True","","","","","True","True","","True","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","75.0","","","","True","True","","","","","","","","True","True","","","","","","","","","","","","","722.17","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","Less than 1 year","Research Associate","","","Not familiar with FAIR","","True","","","","Python","Excel (Spreadsheets)","SPSS","","","True","","","True","","","","True","True","True","","True","","","","","","True","","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","Some of them","Some of them","","Some of them","Some of them","","","","","None","None","","","","","","","","Equally measured and simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","< 100 MB","","","","","","","","","","","","True","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"385","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","435.97","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","","","","True","","Tecplot","TRACE","","","","","","True","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","","All","All","","","","","","","None","None","None","","","","","","Mostly simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","","","True","","","10 GB - 100 GB","","","True","True","","True","True","","True","True","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"386","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","634.86","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","Robotik","","","","","","","","","","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","Anonymized","C/C++","Python","","","True","","","","","","","","","True","","","","","","","","True","","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","True","","","","All","All","","","","All","","","","","All","","","","","","","","Mostly simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","10 GB - 100 GB","","","","","","","","","True","","","","moderately interested","very interested","very interested","","","moderately interested","1980-01-01 00:00:00"
+"387","True","True","","In repository","True","","","True","True","","","","","","True","True","True","True","","True","","","","","","","","","","","Zenodo","WDCC","","","","5.0","","True","True","True","","True","","","","","True","","","","","","","","","","","","","","","","2162.23","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","","","","","Centrally (internal server)","Anonymized","cdo","Python","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","Some of them","All","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","True","","","","True","","","> 1 TB","","True","","True","True","True","True","","","True","","","moderately interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"388","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","443.37","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","Dymola","Python","MATLAB / Simulink","","True","","True","True","True","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","None","None","","","","","","Equally measured and simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","True","","True","True","","","1 GB - 10 GB","","","","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"389","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","749.86","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","","","","","LabVIEW","Tecplot","Fortran","","True","","True","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","Some of them","Some of them","All","Some of them","","","","","None","Some of them","Some of them","Some of them","None","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","True","","","","","True","","","True","","","100 MB - 1000 MB (1 GB)","","True","True","","True","True","True","","","","","","moderately interested","very interested","moderately interested","","moderately interested","not interested","1980-01-01 00:00:00"
+"390","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","415.2","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Familiar with FAIR","","True","","","","Python","Excel (Spreadsheets)","Database Management System","","True","","True","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","Some of them","Some of them","Some of them","","","","","","","Purely measured","Purely generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","True","True","","True","","","","< 100 MB","","","","","","True","True","","","","","","very interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"393","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","375.87","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","True","True","","","","MATLAB / Simulink","Python","Office Software (unspecified)","","True","True","True","True","","","","","","","","","","","","","True","","True","Digital system","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","","","","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","True","True","","True","True","Binary non-scientific formats","","10 GB - 100 GB","","","True","True","True","","True","","True","True","","","very interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"394","","","","","","True","","","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","5.0","","","","True","True","","","","True","True","","True","","True","","","","","","","","","","","","","479.91","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","","True","","","","ZEMAX","Altium Designer","Anonymized","","True","","","True","","","","","True","","True","","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","Some of them","Some of them","","","","","","Purely measured","Purely generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","True","True","True","","","","","10 GB - 100 GB","","","","","","","","","","True","","","very interested","very interested","moderately interested","moderately interested","not interested","very interested","1980-01-01 00:00:00"
+"395","","True","","","","","","True","True","True","","","","","True","","True","True","","","","","","","","","","","","","","","","","","5.0","","True","","","","","","","True","","","","","","","","","","","","","","","","","","367.04","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","","","","","True","","True","True","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","","","Some of them","","","","","","","","","","","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","","True","True","","True","","","","10 GB - 100 GB","","True","True","True","","","True","True","","","","","very interested","very interested","moderately interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"396","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","293.73","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","MATLAB / Simulink","LabVIEW","","","True","","True","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","All","All","","","","","Some of them","","Some of them","Some of them","Some of them","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","","","True","","","True","True","","","100 GB - 1000 GB (1 TB)","","True","","True","True","True","","True","True","True","","","moderately interested","moderately interested","not interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"397","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","386.03","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","Python","Anonymized","","","True","","True","","","True","","","","","","","","","","True","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","None","None","","","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","","","","","True","","Binary non-scientific formats","","1 GB - 10 GB","","True","","True","True","True","","","True","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"398","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","2731.22","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","LaTeX","","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","None","None","None","","","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","10 GB - 100 GB","","","","","","","","","","","","True","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"400","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","416.39","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","Python","MATLAB / Simulink","LaTeX","","True","","","True","","","","","True","True","True","","","True","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","None","None","","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","True","","","","","","1 GB - 10 GB","","","","True","","True","","True","True","True","","","moderately interested","very interested","very interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"403","","True","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","25.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","220.69","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","C/C++","Python","","True","","","","","","","","","","","","","","","","True","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","","","","","","","","Equally measured and simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","True","","","","True","True","","","","","","1 GB - 10 GB","","","","","","","True","True","True","True","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"404","","True","","","True","True","","","True","","","","","","","","","","","","Other","","","","","","","","","","Gitlab / GitHub","","","","","10.0","","True","","True","True","True","","","","","True","","","","","","True","","","","","","","","","","540.36","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Anonymized","Anonymized","Anonymized","","","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","True","","","","Some of them","All","Some of them","","","All","","","","None","None","None","","","None","","","","Purely simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","True","True","True","True","True","True","","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"405","","","","In repository","True","True","","","True","","","","","True","True","True","True","True","True","True","Legal / ethical concerns","","","","","","","","","","","","","","","80.0","","","","","","","","","","","","","","","","","","","","","","","","","Others","","2212.37","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Geophysics","","","","","","","","","","","","","","More than 10 years","Research Associate","","","","True","True","","","","MATLAB / Simulink","Excel (Spreadsheets)","","","True","True","True","True","True","","","Heterogeneous workflows complicate standardized solutions","","","","","","","","","True","","True","Digital text","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","","","","","","","","","","None","None","None","","None","","","","","Equally measured and simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","True","","","True","True","True","","True","True","Other","","1 GB - 10 GB","","True","","True","True","True","True","True","","True","","","not interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"406","","True","","","True","","","","","True","","","","","True","","","True","","","","","","","","","","","","","Institutional Repository","Institutional Repository","","","","10.0","","","","True","","","","","True","","","True","","True","True","True","","","","","","","","","","","682.96","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Fortran","Excel (Spreadsheets)","","","True","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","Some of them","All","","","","","None","","None","None","None","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","True","True","","","True","","","< 100 MB","","True","True","True","","True","","True","","True","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"408","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","807.53","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","","","","","","","","","","","","","Less than 1 year","PhD candidate","","","Not familiar with FAIR","True","True","","","","MATLAB / Simulink","Excel (Spreadsheets)","Anonymized","","True","","","","","","True","","","True","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Equally measured and simulated","Mostly reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","True","True","","True","","","","I don't know","","","","True","True","True","True","True","","","","","very interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"409","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","752.26","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Systems Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","True","","","Anonymized","Python","Excel (Spreadsheets)","","","True","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","None","None","","","","","","","","Mostly simulated","Purely reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","100 MB - 1000 MB (1 GB)","","True","","","","","","","True","","","","moderately interested","not interested","not interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"415","True","","","","True","True","","","True","","","","","","True","True","","","","True","","","","","","","","","","","","","","","","10.0","","","","True","True","True","True","True","True","True","True","","","","","True","","","","","","","","","","","714.12","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","","Ingenieurpsychologie","More than 10 years","Principal Investigator","","","Familiar with FAIR","True","True","","","","SPSS","Anonymized","Anonymized","","True","","True","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","None","Some of them","None","Some of them","Some of them","","","","","None","None","None","None","None","","","","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","True","","True","","","","","Other","","10 GB - 100 GB","","True","","True","","True","","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"419","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","437.06","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Familiar with FAIR","","True","","","","MATLAB / Simulink","Python","","","True","","","True","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","All","","All","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","True","","","1 GB - 10 GB","","","","True","True","","","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","","1980-01-01 00:00:00"
+"420","True","","","","","","","True","True","True","","","","","","True","True","","True","","","","","","","","","","","","","","","","","10.0","","","","","True","","","","","True","True","True","","","","","","","","","","","","","","","471.71","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","MATLAB / Simulink","Paraview","Anonymized","","True","True","","True","True","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","All","All","","All","","","","","Some of them","All","Some of them","","Some of them","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","True","True","","","Binary scientific formats","","1 GB - 10 GB","","True","","True","","","","True","","","","","very interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"421","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","196.12","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Altium Designer","MATLAB / Simulink","","","","","","","","","True","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","Some of them","","","","","","","","None","None","None","","","","","","","Purely measured","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","True","","","","","","","","","","moderately interested","moderately interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"422","","True","","","True","","","","","","","Good scientific practice","","True","True","","","","","","","","","","","","","","","","Institutional Repository","","","","","35.0","","","True","True","True","True","","","","","","","True","True","","","","","","","","","","","Others","","729.52","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","","","","","Fortran","Python","Excel (Spreadsheets)","","True","","True","","","","","Relevant metadata is missing","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","All","All","","All","All","","","","","None","None","","None","None","","","","","Equally measured and simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","","","True","True","True","True","","","","100 MB - 1000 MB (1 GB)","","True","","","","","","","","","","","very interested","moderately interested","very interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"423","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","380.46","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Tecplot","TRACE","","","","","","True","","","True","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","Some of them","","","","","","None","","Some of them","Some of them","","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","True","","","","True","","","10 GB - 100 GB","","","True","True","True","True","","","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"425","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","312.95","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","","","","Python","MATLAB / Simulink","LaTeX","","True","","True","True","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","Some of them","Some of them","Some of them","","All","","","","","None","None","Some of them","","Some of them","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","True","True","","","True","","","","1 GB - 10 GB","","True","True","True","","","","","True","","","","very interested","moderately interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"426","True","","","","True","True","","","True","","","","","","","","","True","","","","","","","","","","","","","","","","","","25.0","","True","","True","","","","","","","True","True","","","True","True","","","","","","","","","","","363.56","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","Python","MATLAB / Simulink","","True","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","All","","All","","All","","","","","None","","Some of them","","Some of them","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","True","","","True","","","","< 100 MB","","True","True","True","","","","True","True","True","","","moderately interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"427","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","665.75","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Not familiar with FAIR","True","","","","","TRACE","Tecplot","Anonymized","","True","True","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","","","","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","True","","","100 GB - 1000 GB (1 TB)","","True","True","True","True","True","True","True","True","True","","","","","","","","","1980-01-01 00:00:00"
+"429","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","580.98","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","","Ingenieurspsychologie","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","SPSS","Excel (Spreadsheets)","Anonymized","","True","","","","","","","","True","True","","True","","True","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","Some of them","None","Some of them","None","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","True","","","","","","< 100 MB","","","","True","True","","","","True","","","","very interested","not interested","moderately interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"430","True","","","","True","","","","True","","","","","","True","","","","True","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","","366.12","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","","","","","","","","","","","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","","","","","","","","","True","","","True","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Mostly generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","","","< 100 MB","","True","True","","","","","True","","","","","very interested","very interested","moderately interested","moderately interested","not interested","moderately interested","1980-01-01 00:00:00"
+"431","","True","","","True","","","","True","","","","","True","True","True","","True","True","True","","","","","","","","","","","CDDIS","Other","BKG","","","20.0","","","","","","True","True","True","True","","","","","","","","","","","","","","","","","","1702.06","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","","Geodäsie","","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","","","","","Anonymized","Anonymized","MATLAB / Simulink","","True","True","","True","","","","","","","","","","","","","","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","","","","","","","","","All","All","","","","","","","Purely measured","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","","","True","","","","True","","","> 1 TB","","","","","","","","","","","Technical aspects of RDM","","moderately interested","very interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"434","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","512.11","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","","","","","","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","All","Some of them","Some of them","All","","","","","None","None","None","None","Some of them","","","","","Mostly measured","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","1 GB - 10 GB","","","True","","","True","","","True","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"435","True","","","","","True","","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","True","True","True","","","True","True","True","","","","","True","","","","","","","","","","","585.88","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","No degree","Student","","","Familiar with FAIR","","True","","","","OriginLab","Excel (Spreadsheets)","ImageJ","","","","True","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","Some of them","All","Some of them","","All","","","","","None","None","None","","Some of them","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","True","","True","","","","I don't know","","","","","","True","","","","","","","moderately interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"441","","","","","True","True","","","","True","","","","","","","","","True","True","","","","","","","","","","","","","","","","10.0","","","","","","","","","","","","","","","","","","","","","","","","","","","483.09","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","","True","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","Mostly simulated","Mostly reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","True","True","True","","True","True","","","","","True","True","","","","","True","True","","","","moderately interested","moderately interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"446","","True","True","","True","True","","","True","","","","","","True","True","","","","","","","","","","","","","","","Zenodo","Gitlab / GitHub","","","","35.0","","","","True","True","","","","","","","","True","","","","","","","","","","","","","","758.57","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Postdoc","","","Not familiar with FAIR","","True","","","","Anonymized","Python","ANSYS","","True","True","","","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","Some of them","","","Some of them","Some of them","","","","","None","","","None","Some of them","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","","","True","True","","","1 GB - 10 GB","","","","True","True","True","","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"448","","","","","","","","","","","","","","","","","","","","","","True","","True","","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","509.41","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Apply FAIR","","True","","","","Git","","Python","","True","","True","True","True","","True","","","","","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","Some of them","All","","","All","","","","","None","Some of them","","","Some of them","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","True","True","","True","True","True","","True","","","","I don't know","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"449","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","547.11","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","","True","","","","","","","","True","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","None","None","None","","","","","","","Equally measured and simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","","","","","True","","","True","","","","moderately interested","moderately interested","not interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"450","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","446.59","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","Industrial and Organisational Psychology","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","R","Python","Anonymized","","","True","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","All","","","","","None","Some of them","None","None","None","","","","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","True","","True","","True","True","","True","","","","10 GB - 100 GB","","","","","","True","True","","","True","","","very interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"451","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","987.28","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","","True","","","","MATLAB / Simulink","C/C++","","","True","True","","True","True","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","Some of them","","Some of them","","Some of them","","","","","None","","Some of them","","Some of them","","","","","Purely simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","","","< 100 MB","","True","True","","True","True","True","True","True","True","","","moderately interested","moderately interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"452","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","394.47","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","Office Software (unspecified)","Anonymized","","True","","","","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","Some of them","","Some of them","","","","","","None","None","","None","","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","Other","","I don't know","","","","","","","","True","True","True","","","moderately interested","very interested","moderately interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"454","True","","","","","","","True","True","","","","","","True","True","","","True","","","","","","","","","","","","","","","","","15.0","","","","True","True","","","","","","","","","","True","True","","","","","","","","","","","3134.61","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Anonymized","gcc","Anonymized","True","","","","","","","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","Some of them","","","","All","","","","","None","","","","None","","","","","Mostly simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","True","True","True","","","True","","","I don't know","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"458","True","","","","","True","True","","True","","","","","True","","True","True","True","","","","","","","","","","","","","","","","","","30.0","","","","","True","","","","","","","","True","","","True","","","","","","","","","","","570.44","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","","True","True","","","Paraview","CFD Software (e.g. TecPlot, ParaView)","Anonymized","","","True","","True","","","","","True","True","True","True","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","All","","","Some of them","All","","","","","","","","","","","","","","Purely simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","True","","True","","","","","> 1 TB","","True","True","","","","","","","","","","moderately interested","very interested","very interested","very interested","very interested","","1980-01-01 00:00:00"
+"459","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","479.06","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","","","","Most data is lost","gcc","Visual Studio","Anonymized","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","All","All","","","","","","","Mostly measured","Purely generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","","","","1 GB - 10 GB","","","","","","","","","","","","True","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"461","True","True","","","True","","","","True","","","","","True","True","True","True","True","","","","","","","","","","","","","Gitlab / GitHub","Gitlab / GitHub","","","","5.0","","","","","","","","","True","True","True","True","","","True","True","","","","","","","","","","","1571.26","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Postdoc","","","Not familiar with FAIR","True","True","","","","Anonymized","Anonymized","Paraview","","True","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","Some of them","","Some of them","","Some of them","","","","","None","","None","","None","","","","","Mostly measured","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","True","","","True","True","True","","True","True","","","100 MB - 1000 MB (1 GB)","","","","","","","","True","True","True","","","very interested","very interested","not interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"462","True","","","","True","","","True","","True","","","","True","","","","True","True","","","","","","","","","","","","","","","","","30.0","","","","True","","","","","","","","","","","","","","","","","","","","","","","505.9","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Mathematics","","","","","","","","","","","","","","Applied Mathematics","","","","","","","","More than 10 years","Postdoc","","","Not familiar with FAIR","","","","True","","MATLAB / Simulink","Python","C/C++","","True","","","","","True","","","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","None","Some of them","","","","","","","","Mostly simulated","Equally generated and reused","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","","","True","","","","","","","","","","","True","","","","","moderately interested","moderately interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"463","True","True","","In repository","True","True","","","","True","","","","","True","True","","","","","","","","","","","","","","","Gitlab / GitHub","","","","","10.0","","True","","","","True","True","True","","","","","","","","","True","True","","","","True","","","","","4307.58","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","QGIS/GDAL","Database Management System","Java","","True","True","","","","","","Lack of technical solutions","True","True","True","","True","","","","","True","True","","","Yes","Yes","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","True","","All","All","","","","All","","All","","None","None","","","","None","","None","","Mostly measured","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","True","","True","True","True","","","< 100 MB","","True","","True","True","","","True","True","","","","very interested","not interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"466","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10.0","","","","","","","","","","","","","","","","","","","","","","","","","","","530.17","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Astrophysics and Astronomy","","","","More than 10 years","Research Associate","","","Familiar with FAIR","","","","True","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Purely generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"469","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1051.25","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","","True","","","","C/C++","Tecplot","Python","","","True","True","True","","","","","True","","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","None","None","","","","","","Purely simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","","True","","","True","True","","","10 GB - 100 GB","","True","","","True","True","","True","True","True","","","very interested","very interested","moderately interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"470","True","True","","","True","True","","","True","","","","True","","","","","","","","","","","","","","","","","","Zenodo","","","","","10.0","","","","","","True","","True","","","","","True","","","","True","","","","","","","","","","333.96","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","Informatik","","","","","","","","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","Anonymized","Python","Anonymized","","True","","","","","","","","","","","","","","","","True","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","All","","All","","Some of them","","","","","Some of them","","All","","None","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","True","True","True","True","True","True","","","1 GB - 10 GB","","","","","","","","","","","","True","not interested","very interested","not interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"471","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","652.49","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Apply FAIR","True","True","","","","","","","","True","","","","","","","","True","True","True","True","","True","","","","","True","","","Yes","Yes","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","","","","","Some of them","","","Some of them","Some of them","","","","","","","","","","","","","Mostly measured","Purely generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","< 100 MB","","True","True","True","True","","True","True","True","True","","","moderately interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"472","True","","","","","","","","","True","","","","","","","","True","","","Legal / ethical concerns","","","","","","","","","","","","","","","35.0","","True","","True","True","True","True","True","True","True","","","","True","","","True","","","","","","","","","","556.38","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","True","","","MATLAB / Simulink","Anonymized","Anonymized","","True","","True","True","","","","","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","","","Some of them","All","Some of them","Some of them","","Some of them","","","","None","None","None","None","","None","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","True","","","True","True","True","","True","","","","1 GB - 10 GB","","","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"474","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","2595.99","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Apply FAIR","True","True","True","","","Jupyter","Anonymized","Anonymized","","True","","True","True","","","","","True","True","True","True","True","True","","Improved working with data","True","True","True","","","Yes","Yes","True","True","","True","","","","","","","","","","","","","","","","","","","","","","","PubData","True","True","True","True","True","","","True","","All","All","All","All","All","","","All","","None","Some of them","Some of them","Some of them","Some of them","","","Some of them","","Equally measured and simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","True","","","True","True","True","","True","","","","10 GB - 100 GB","","","True","","","True","","","","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"475","True","","","","","","","","True","","","","","","True","","","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","1015.01","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Systems Engineering","","","","","","","","","","","","1 to 3 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","COMSOL Multiphysics","LabVIEW","MATLAB / Simulink","","","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","All","Some of them","Some of them","All","","","","","None","None","None","None","None","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","True","True","True","True","","","","","1 GB - 10 GB","","","","True","True","","","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"476","","","True","","","","","","","","","Reusability","","","True","","","True","","","Legal / ethical concerns","","","","","","","","","","","","","","","15.0","","True","","True","","","","","","","","","","","True","True","","","","","","","","","","","402.67","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","","Robotik","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","","True","True","","","Python","Anonymized","","True","","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","All","","","","All","","","","","","","","","","","","","","Equally measured and simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","True","","","","True","","","10 GB - 100 GB","","","","","","","","","True","True","","","moderately interested","moderately interested","not interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"477","","","","Other","","True","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","573.69","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","More than 10 years","Postdoc","","","Familiar with FAIR","","","","True","","Python","LabVIEW","Anonymized","","True","","","True","","","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","Equally measured and simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","True","","","","True","","","","True","","","10 GB - 100 GB","","True","True","True","True","True","True","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"482","","True","","","True","","","","True","True","","","","True","True","","","True","","True","","","","","","","","","","","WDCC","Zenodo","","","","20.0","","True","True","True","True","","","","","","True","","","","True","True","","","","","","","","","","","476.25","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Apply FAIR","","","True","","","emacs","Anonymized","cdo","","True","","","True","","","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","None","Some of them","Some of them","Some of them","Some of them","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","True","True","","","","True","","","> 1 TB","","True","","True","True","True","True","","True","True","","","moderately interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"483","","True","","","","True","","","True","True","","","","","True","","","True","True","","","","","","","","","","","","","","","","","50.0","","","","","","","","","","","","","","","","True","","","","","","","","","","","2554.45","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Chemistry","","","","","","","","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","","","","","","","","","","True","","True","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","Some of them","","","","Some of them","","","","","Some of them","","","","Some of them","","","","","Mostly simulated","Mostly reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","< 100 MB","","","","","","","","True","True","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"485","True","","","","","","","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","","90.0","","","","","","","","True","True","True","","","","","","","","","","","","","","","","","346.56","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","","","","Python","Fortran","LaTeX","","True","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","","","","","","","","","None","All","","","","","","","Purely simulated","Purely generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","True","","","","True","","","> 1 TB","","","True","","True","","","","","","","","moderately interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"486","","True","","","True","True","","","True","","","","","","","True","","True","","","","","","","","","","","","","Zenodo","Gitlab / GitHub","","","","30.0","","True","","","","True","","","","","True","","","","True","True","","","","","","","","","","","443.33","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Python","Fortran","Office Software (unspecified)","","True","True","","","","","","","True","True","True","True","","","","","","","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","True","","","","","CF Metadata Conventions","True","True","True","","True","","","","","Some of them","All","All","","All","","","","","Some of them","Some of them","All","","All","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","True","True","","True","True","","","100 GB - 1000 GB (1 TB)","","","","","","","","True","","","","","moderately interested","moderately interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"487","","True","","","True","","","","True","","","Guidelines / policies of publishers","","","True","","","True","","True","","","","","","","","","","","","","","","","20.0","","","","","","True","","","","","","","","","","","","","","","","","","","","","1109.26","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","","True","True","","","Fortran","Anonymized","Anonymized","","True","","True","True","","","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","None","","","","","","","","","None","","","","","","","","Mostly simulated","Mostly generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","100 GB - 1000 GB (1 TB)","","True","","","","True","","","True","True","","","moderately interested","","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"489","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","604.5","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","No degree","Student","","","Not familiar with FAIR","","True","","","","Python","Command line (scripts)","","","","","","","","","True","","","True","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","None","","","","","","","","None","None","","","","","","","","Purely simulated","Purely reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","I don't know","","","","","","","","","","","","","moderately interested","very interested","very interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"491","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","25.0","","","","","","","","","","","","","","","","","","","","","","","","","","","485.4","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","More than 10 years","Postdoc","","","Familiar with FAIR","True","True","","","","Fortran","Anonymized","","","True","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","True","","","","10 GB - 100 GB","","True","","","","","","True","True","","","","moderately interested","moderately interested","not interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"492","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","651.56","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","True","","","Fortran","Git","Python","","True","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","All","All","All","","","","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","True","","","","True","","","> 1 TB","","True","","","","True","","","True","","","","moderately interested","very interested","very interested","moderately interested","very interested","","1980-01-01 00:00:00"
+"493","True","","","","True","","","","True","","","Guidelines / policies of publishers","","","True","True","","True","","","","","","","","","","","","","","","","","","10.0","","True","","True","True","","True","True","","","","","","","","","","","","","","","","","","","790.7","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","7 to 10 years","Postdoc","","","Not familiar with FAIR","True","True","","","","Python","Notepad++","ZEMAX","","True","True","","","","","","","","","","","","","","","","","","Source code and scripts","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","All","Some of them","","","","","","","None","All","Some of them","","","","","","","Equally measured and simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","True","","","True","True","True","","True","True","Other","","> 1 TB","","True","","","","True","","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"494","","True","","","True","True","","","True","","","","","","True","","","True","True","","","","","","","","","","","","WDCC","","","","","30.0","","","","","","True","","True","","","","","","","","","","","","","","","","","","","978.28","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","","True","","","","","","","","True","True","","","","","","","","","","","","","","","True","","True","Other","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","All","","Some of them","","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","> 1 TB","","True","","True","True","True","True","","","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"495","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","580.58","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","","True","","","","Anonymized","Anonymized","Python","","True","","True","","","","","","True","","True","True","True","","","","","","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","True","","True","","","","","All","Some of them","Some of them","","All","","","","","All","Some of them","Some of them","","All","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","100 GB - 1000 GB (1 TB)","","True","","True","","","","","True","","","","very interested","very interested","not interested","","very interested","moderately interested","1980-01-01 00:00:00"
+"496","True","","","","True","","","","True","","","Guidelines / policies of publishers","","","True","","","True","","","","","","","","","","","","","","","","","","20.0","","True","","True","True","","","","","","","","","","","","","","","","","","","","","","974.56","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","","True","","","","cdo","Python","","","True","","","True","True","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","All","","","All","","","All","","","Some of them","","","Some of them","","","None","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","","","True","","","10 GB - 100 GB","","True","","True","","","","True","True","","","","very interested","very interested","moderately interested","very interested","very interested","not interested","1980-01-01 00:00:00"
+"498","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","726.38","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Python","Anonymized","Excel (Spreadsheets)","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","Some of them","Some of them","","","","","","Purely simulated","Purely generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","","","","","True","True","","","very interested","moderately interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"499","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Competition","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","902.64","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Life Science","","","","","","","","","","","","Medicine","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Familiar with FAIR","","True","","","","Excel (Spreadsheets)","SAS","PowerPoint","True","","","","","","","","","True","True","","True","","","","Improved collaborations","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","All","All","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","10 GB - 100 GB","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"500","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","561.54","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","","True","","","","Anonymized","","","","","True","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","True","","","Some of them","Some of them","","Some of them","Some of them","","Some of them","","","None","None","","None","Some of them","","Some of them","","Purely simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","< 100 MB","","True","True","True","True","True","True","True","True","True","","","not interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"501","True","True","","","","","","","True","True","","","","","","True","","True","True","","","","","","","","","","","","Gitlab / GitHub","Zenodo","","","","90.0","","True","True","True","","","","","","","","","True","","","True","True","","","","","","","","","","430.94","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","","","True","","","Anonymized","","","","","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","True","","","","All","","","Some of them","All","All","","","","None","","","Some of them","None","None","","","","Equally measured and simulated","Purely reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","True","","","","< 100 MB","","","","","","","","True","","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"502","True","","","","","","","","True","True","","","","","","True","","True","","True","","","","","","","","","","","","","","","","10.0","","","","True","True","","","","","","","","","","","","","","","","","","","","","","2088.62","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","True","","","","","Anonymized","Paraview","ANSYS","","True","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","","Purely simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","True","True","True","True","True","","","> 1 TB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"503","","","","Supplementary to journal publication","True","","","","True","","","","","","True","","","True","","","","","","","","","","","","","","","","","","10.0","","","","","","True","True","","True","True","","","","","","","","","","","","","","","","","605.66","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Soft Matter Physics","","","","More than 10 years","Research Associate","","","Familiar with FAIR","","True","","","","IDL","Python","Anonymized","","True","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","True","","","","Some of them","Some of them","All","","","All","","","","None","Some of them","None","","","None","","","Mostly measured","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","True","","","","","","","","10 GB - 100 GB","","True","","","True","","True","","True","","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"507","","True","","","","","","","","","","Guidelines / policies of publishers","","","True","True","True","True","True","True","","","","","","","","","","","Institutional Repository","","","","","50.0","","","","","","","","","","","","","","","","True","","","","","","","","","","","1312.49","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Postdoc","","","Not familiar with FAIR","True","True","True","","","Python","Anonymized","LabVIEW","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","Mostly measured","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","","< 100 MB","","True","True","True","True","True","True","True","","True","","","moderately interested","very interested","moderately interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"509","True","True","","","True","","","","True","","","","","True","True","True","True","True","","","","","","","","","","","","","Zenodo","","","","","10.0","","True","","","True","","","","","","","","","","","","","","","","","","","","","","360.19","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","7 to 10 years","Postdoc","","","Not familiar with FAIR","","True","True","","","Anonymized","Python","Anonymized","","True","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","All","All","Some of them","Some of them","","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","> 1 TB","","True","","True","True","","","","","","","","moderately interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"510","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","455.95","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","TRACE","Tecplot","Anonymized","","True","","","True","","","","","True","","True","","","","","Improved working with data","","True","","Source code and scripts","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","All","All","","","","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","True","","","10 GB - 100 GB","","True","","True","True","True","","","True","","","","very interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"511","","True","","","True","True","","","True","","","","","True","True","True","","","","","","","","","","","","","","","","","","","","10.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","496.6","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","C/C++","","","True","True","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","< 100 MB","","True","","","","True","","","True","","","","moderately interested","","","","","","1980-01-01 00:00:00"
+"513","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","413.9","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","","","","","","","","","","True","True","True","","","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","Some of them","","","","Some of them","","","","","None","","","","None","","","","","Equally measured and simulated","Purely generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","","I don't know","","","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","","very interested","moderately interested","1980-01-01 00:00:00"
+"514","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","487.72","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Industrial Engineering","","","","","","","","","","","","More than 10 years","PhD candidate","","","Familiar with FAIR","","True","True","","","Python","Database Management System","Anonymized","","True","","True","","True","","","","True","True","True","","","","","","","","True","","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","True","True","True","True","True","True","","","1 GB - 10 GB","","True","True","","True","True","True","","","True","","","moderately interested","moderately interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"515","True","","","","True","True","","","True","","","","","True","True","True","","True","","True","","","","","","","","","","","","","","","","20.0","","","","True","True","True","","","True","True","","","True","","","","","","","","","","","","","","903.67","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Postdoc","","","Not familiar with FAIR","","True","","","","Office Software (unspecified)","Python","","","True","True","True","True","","","","","","","","","","","","","True","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","True","","","Some of them","Some of them","Some of them","Some of them","","","","","","None","None","None","None","","","None","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","True","True","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"516","True","","","","True","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","10.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","596.33","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Python","Office Software (unspecified)","CFD Software (e.g. TecPlot, ParaView)","","True","","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","All","Some of them","Some of them","","","","","None","None","Some of them","Some of them","None","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","True","","","","True","True","True","True","True","","","1 GB - 10 GB","","","","","True","","","","","","","","","moderately interested","","","","","1980-01-01 00:00:00"
+"517","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1193.75","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Anonymized","Anonymized","Python","","True","True","","True","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","True","True","True","","True","True","","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","not interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"518","","","True","","","True","True","","True","","","","","","True","","True","","","","","","","","","","","","","","","","","","","25.0","","True","True","True","True","True","True","True","True","True","True","True","","","True","True","","","","","True","","","","","","578.95","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","Less than 1 year","Research Associate","","","Not familiar with FAIR","","True","","","","Anonymized","CATIA CAD-software","Excel (Spreadsheets)","","","","True","","","True","True","","True","True","","","","","","","","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","True","","","All","All","All","","All","","All","","","","","","","","","","","","Mostly simulated","Mostly reused","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","True","True","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","True","True","","","moderately interested","not interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"519","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","30.0","","True","","True","","True","True","True","","True","True","","","","","","","","","","","","","","","","779.08","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Familiar with FAIR","True","True","","","","MATLAB / Simulink","LabVIEW","Python","","True","True","True","","","","","","True","","True","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","Some of them","Some of them","Some of them","","","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","Other","","1 GB - 10 GB","","","","True","","True","","","True","","","","very interested","very interested","not interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"520","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","437.23","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","Python","Git","","","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","All","","","All","","","","","","None","","","None","","","","","","Mostly simulated","Equally generated and reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","True","","True","","","","100 MB - 1000 MB (1 GB)","","True","","True","True","","","True","True","","","","very interested","moderately interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"521","","True","","","","True","True","True","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","25.0","","","","True","True","","","","True","True","True","","","","","","","","","","","","","","","","621.55","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","Word","PowerPoint","","","True","","","","","","","","","","","","True","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","None","None","","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","very interested","very interested","not interested","1980-01-01 00:00:00"
+"522","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","507.48","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","","Fahrzeugtechnik","","","","","","","","","","","Less than 1 year","Research Associate","","","Not familiar with FAIR","","True","","","","Python","Excel (Spreadsheets)","PowerPoint","","True","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","All","All","","","","","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","True","","True","True","","","","","","","","very interested","very interested","moderately interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"523","True","","","","","True","","True","True","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","70.0","","","","True","True","True","True","True","","","","","True","True","","","","","","","","","","","","","356.17","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","Technology Assessment","","","","","","","","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","","True","","","","Office Software (unspecified)","Python","Database Management System","","True","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","Some of them","None","","","","","Mostly simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","True","True","","True","","","","< 100 MB","","True","","","True","True","True","","True","","","","very interested","not interested","not interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"524","","True","","","True","","","True","True","","","","","","","True","","","True","","","","","","","","","","","","WDCC","","","","","10.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","1819.67","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","","","True","","","Python","Anonymized","emacs","","","","","","","","","Lack of technical solutions","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","All","All","","All","","","","","All","All","All","","All","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","True","","","True","True","","","> 1 TB","","True","","","","True","","True","","True","","","moderately interested","very interested","very interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"526","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","640.92","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Anonymized","Tecplot","ANSYS","","True","True","","","","","","","True","True","True","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","All","All","","","All","","","","","Some of them","Some of them","","","Some of them","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","True","True","","","True","True","","","> 1 TB","","","","True","True","True","","","True","","","","moderately interested","moderately interested","not interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"527","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","Legal / ethical concerns","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","649.25","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Life Science","","","","","","","","","","","","","Verkehrsforschung","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","R","Python","","","","","","","","","True","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","All","","","All","","","","","","Some of them","","","Some of them","","","","","","Purely simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","1 GB - 10 GB","","","","","True","","","True","","","","","moderately interested","moderately interested","very interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"528","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","673.85","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","PhD candidate","","","Not familiar with FAIR","True","True","","","","Python","LaTeX","Anonymized","","","True","True","","","","True","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","All","All","","","","","","None","","None","None","","","","","","Mostly measured","Equally generated and reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","< 100 MB","","True","","","","True","True","True","True","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"529","True","","","","True","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","True","True","","","","True","True","True","","True","True","","","","","","","","","","","","","274.34","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","Less than 1 year","Research Associate","","","Not familiar with FAIR","True","","","","","","","","","","","","True","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","Some of them","","Some of them","Some of them","Some of them","","","","","All","","All","Some of them","None","","","","","Mostly measured","Equally generated and reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","True","True","","True","","","","I don't know","","True","True","","True","True","","","","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"530","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","333.23","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","Less than 1 year","PhD candidate","","","Not familiar with FAIR","","True","","","","Dymola","ANSYS","CATIA CAD-software","","","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","","","","","Equally measured and simulated","Equally generated and reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","True","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"531","","","","","","","","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","","15.0","","True","","True","True","","True","","","","","","True","","","True","","","","","","","","","","","675.48","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","ANSYS","CATIA CAD-software","Excel (Spreadsheets)","","True","True","","","True","","True","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","Some of them","Some of them","","Some of them","Some of them","","","","","None","None","","None","None","","","","","Equally measured and simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","","","True","True","True","True","","","","10 GB - 100 GB","","True","","True","True","True","True","True","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"532","","True","","","True","True","","","","","","","","","True","","","","","","","","","","","","","","","","GLIMS","","","","","90.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","562.65","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Earth Science","","","","","","","","Geography","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","True","","","","","Python","MATLAB / Simulink","ArcGIS","","True","","True","","","","","","True","","True","True","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","True","","","All","All","All","All","All","","All","","","None","None","None","None","None","","None","","","Equally measured and simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","10 GB - 100 GB","","","","True","","True","","","","True","","","very interested","very interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"535","","","","Supplementary to journal publication","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10.0","","","","","","","","","","","","","","","","","","","","","","","","","","","333.81","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Industrial Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Excel (Spreadsheets)","Python","","","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","","","","All","All","","","All","All","","","","Some of them","Some of them","","","None","None","","","","Mostly simulated","Mostly reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","True","","","","True","True","","True","","","","< 100 MB","","","","","True","True","True","True","True","","","","moderately interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"537","True","True","","","True","True","","","True","","","","True","","","","","","","","","","","","","","","","","","Zenodo","","","","","95.0","","True","","","","","","","","","","","","","","","","","","","","","","","","","1211.02","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","","space physics","","","7 to 10 years","Postdoc","","","Familiar with FAIR","","True","","","","Python","","","","True","True","","True","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","","","","","","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","True","","","True","True","","","100 MB - 1000 MB (1 GB)","","True","","","","","","","","","","","moderately interested","moderately interested","","","","","1980-01-01 00:00:00"
+"538","True","","True","","","True","","True","","","","Guidelines / policies of publishers","","","","","","True","","True","","","","","","","","","","","","","","","","75.0","","","","","","","","","","True","True","","True","True","True","True","","","","","","","","","","","800.45","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","","Space Weather","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","Python","C/C++","Office Software (unspecified)","","True","","","","","","","","True","True","","","","True","","","","","True","GitLab","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","True","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","All","","","","","","","Some of them","All","All","","","","","Mostly measured","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","","True","True","","True","True","","","10 GB - 100 GB","","True","True","","","","","True","","","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"543","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10.0","","True","","True","True","","","","","","","","","","","True","","","","","","","","","","","319.03","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","Less than 1 year","Student","","","Not familiar with FAIR","","True","","","","CATIA CAD-software","Anonymized","Tecplot","","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","All","","","","All","","","","","All","","","","Some of them","","","","","Purely simulated","Mostly generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","10 GB - 100 GB","","","True","","","","","","True","","","","very interested","moderately interested","not interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"544","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","642.02","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","Visual Studio","Anonymized","Excel (Spreadsheets)","","","","","","","","True","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","All","","","","","","","","Purely simulated","Purely generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","True","","True","True","","","moderately interested","very interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"547","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","316.93","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","Python","Tecplot","Anonymized","","","True","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","True","","","All","","Some of them","Some of them","","","","","","Some of them","","None","None","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","","True","","","True","","","100 GB - 1000 GB (1 TB)","","","","True","True","","","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"548","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","873.84","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Python","Anonymized","Anonymized","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","All","All","","All","All","","","","","None","Some of them","","All","None","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","True","True","True","True","","","10 GB - 100 GB","","True","","","","True","","True","True","","","","very interested","very interested","moderately interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"550","True","","","","","True","","","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","35.0","","True","","True","True","True","","True","","","","True","","","","","","","","","","","","","","","1233.01","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Industrial Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","Word","Excel (Spreadsheets)","Anonymized","","","","","","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","","","","","","","","","","","","","","","","","","","","","Equally measured and simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","< 100 MB","","","","True","","","","True","True","","","","very interested","moderately interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"551","True","","","","","","True","True","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","5.0","","","","True","True","True","True","","True","True","True","","","True","","","","","","","","","","","","","1031.77","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Not familiar with FAIR","True","True","","","","Anonymized","Python","Excel (Spreadsheets)","","True","True","","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","None","Some of them","Some of them","Some of them","Some of them","","","","","","Some of them","Some of them","","","","","","","Mostly simulated","Mostly generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","True","","","","","","1 GB - 10 GB","","True","True","True","","True","True","","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"553","","True","","","True","True","","","","","","","","","True","True","","","","","","","","","","","","","","","Gitlab / GitHub","","","","","10.0","","","","","","","","","","","True","True","True","True","","","","","","","","","","","","","417.76","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Not familiar with FAIR","","True","True","","","Python","Anonymized","","","","True","True","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","Some of them","","Some of them","All","","","","","","Purely simulated","Mostly generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","1 GB - 10 GB","","","","","True","True","","","","True","","","very interested","moderately interested","moderately interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"555","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","433.29","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","Excel (Spreadsheets)","Anonymized","","True","True","","True","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","None","","None","","","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","","","","","","","","","","1 GB - 10 GB","","True","","True","True","","","True","True","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"560","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","661.8","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","PhD candidate","","","Not familiar with FAIR","True","True","","","","ANSYS","MATLAB / Simulink","Word","True","","","","","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","True","","","All","All","All","All","All","","All","","","None","None","None","Some of them","None","","Some of them","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","True","True","True","True","True","","","","1 GB - 10 GB","","True","True","True","True","True","","True","True","True","","","moderately interested","moderately interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"561","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","793.78","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Apply FAIR","","True","","","","Anonymized","Anonymized","Anonymized","","True","","","","True","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","All","All","","All","","","","","Some of them","Some of them","Some of them","","Some of them","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","True","True","True","True","True","True","","","100 MB - 1000 MB (1 GB)","","True","","","","","True","True","","","","","moderately interested","","","moderately interested","","","1980-01-01 00:00:00"
+"564","","","","In repository","True","True","","","","","","","","","True","True","True","","True","","","","","","","","","","","","","","","","","80.0","","","","True","True","","","","True","True","","True","","","True","","","","","","","","","","","","504.94","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Principal Investigator","","","Not familiar with FAIR","True","","","","","Anonymized","Anonymized","Tecplot","True","","","","","","","","","True","True","True","True","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","All","","All","","All","","","","","None","","All","","All","","","","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","True","True","","","True","True","True","True","True","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","True","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"565","","","","","","","","","","True","","","True","","","","","","","","","","","","","","","","","","","","","","","60.0","","","","True","True","","True","True","True","True","","","","","","","","","","","","","","","","","561.95","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Familiar with FAIR","","True","","","","MATLAB / Simulink","Python","Office Software (unspecified)","","True","True","","","","","","","True","True","True","True","","True","","","","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","Some of them","","","","","","","Some of them","All","Some of them","","","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","","","True","","","","1 GB - 10 GB","","","","True","","","","","","","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"567","","","","Other","True","True","","","","True","","","","","True","","True","","True","","","","","","","","","","","","","","","","","5.0","","True","True","True","True","True","True","True","True","True","True","True","","","","","","True","","","","","True","","","","1393.94","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Apply FAIR","","True","","","","Python","C/C++","MATLAB / Simulink","","True","","","True","True","","","","True","True","","","","","","","","","True","","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","True","","True","","All","All","Some of them","","","All","","Some of them","","None","None","None","","","None","","None","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","","True","True","","True","","","","100 GB - 1000 GB (1 TB)","","","","True","","True","","True","True","True","","","moderately interested","very interested","","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"568","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","Legal / ethical concerns","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","638.34","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","Python","Anonymized","True","","","","","","","","","True","True","True","True","","True","","","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","All","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","","True","True","True","","True","","","","10 GB - 100 GB","","","","","","","","True","","","","","very interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"569","True","","","","True","","","","","True","","Guidelines / policies of publishers","","True","True","","","True","","","","","","","","","","","","","","","","","","10.0","","","","True","True","","","","True","True","","","","","","True","","","","","","","","","","","760.58","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","PhD candidate","","","Not familiar with FAIR","True","True","","","","CATIA CAD-software","Office Software (unspecified)","Anonymized","","True","","True","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","Some of them","Some of them","","Some of them","","","","","Some of them","Some of them","None","","Some of them","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","True","True","","","","True","True","True","","","","100 MB - 1000 MB (1 GB)","","True","","","True","True","","","","","","","very interested","moderately interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"570","True","","","","True","","","","True","True","","","","","True","True","","True","","True","","","","","","","","","","","","","","","","10.0","","True","True","True","True","True","True","True","True","True","True","True","","True","True","True","","","","","","","","","","","759.78","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","R","Anonymized","Python","","","True","","True","","","","","True","True","True","True","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","Some of them","","","","Some of them","Some of them","Some of them","None","Some of them","None","","","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","True","True","True","True","True","","True","True","","","100 GB - 1000 GB (1 TB)","","True","","True","True","True","","","True","","","","moderately interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"574","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","645.69","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","Less than 1 year","Student","","","Not familiar with FAIR","True","True","","","","Python","Anonymized","LabVIEW","","True","True","True","True","","","True","","True","True","True","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","None","Some of them","","","","","","","","Equally measured and simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","True","","","True","True","","","True","","","","moderately interested","moderately interested","not interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"576","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","357.65","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Mathematics","","","","","","","","","","","","","","","Data Science","","","","","","","Less than 1 year","Research Associate","","","Not familiar with FAIR","","True","","","","Python","Git","Anonymized","","","","","True","","","","","","","","","","True","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","All","All","","","","All","","","","None","None","","","","None","","","","Purely measured","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","True","True","","","","","","","","","True","True","True","True","True","","","very interested","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"577","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1181.02","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","Verkehrswissenschaften","","","","","","","","","","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Python","Visual Studio","Database Management System","True","","","","","","","","","","","","","","","","","","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","All","","All","","","","","","Purely measured","Mostly reused","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","","","True","","","True","True","","","1 GB - 10 GB","","True","True","True","","","","True","True","True","","","very interested","very interested","very interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"578","","True","","","","","","","True","","","Guidelines / policies of publishers","","","True","True","","True","True","True","","","","","","","","","","","Zenodo","","","","","50.0","","","","","","","","","","","True","True","True","True","","","","","","","","","","","","","812.26","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","More than 10 years","Research Associate","","","Apply FAIR","","True","","","","","","","","True","True","True","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","None","None","","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","True","","","True","Binary non-scientific formats","","> 1 TB","","True","True","True","True","True","True","True","True","","","","very interested","moderately interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"579","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","329.92","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Systems Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","","Familiar with FAIR","","","","True","","Python","QGIS/GDAL","Visual Studio","","","True","True","True","","","","","","","","","","","","","True","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","Mostly measured","Mostly reused","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","10 GB - 100 GB","","True","True","True","","True","","","","","","","moderately interested","very interested","not interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"580","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","568.68","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Industrial Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","Anonymized","Word","","True","","True","","True","","","","True","","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","All","All","","","","All","","","","None","None","","","","None","","","","Equally measured and simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","True","","","","I don't know","","","","","","","","","","","","True","not interested","not interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"581","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","338.03","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","","Human Factors","More than 10 years","Principal Investigator","Principal Investigator","","Not familiar with FAIR","","True","","","","","","","","True","True","","","True","","","","","True","True","True","True","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","","","True","","True","","","","1 GB - 10 GB","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"588","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","520.38","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","True","","","","MATLAB / Simulink","Python","Excel (Spreadsheets)","","True","True","","True","True","","True","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","Some of them","Some of them","","","All","","","","","None","None","","","None","","","","","Mostly measured","Purely generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","True","","","True","","","1 GB - 10 GB","","True","True","True","","","","True","True","True","","","moderately interested","very interested","moderately interested","very interested","not interested","moderately interested","1980-01-01 00:00:00"
+"590","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","420.62","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","","Logistik/Verkehr","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Python","Anonymized","Anonymized","","True","True","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","All","None","None","","","","","","Purely simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","True","","True","","","","1 GB - 10 GB","","True","","","True","True","True","True","True","","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"591","","","","","","","","","","","","","","","","","","","","","","True","","True","","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","331.1","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","CATIA CAD-software","Python","ANSYS","True","","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","Some of them","Some of them","","","","","","","","Equally measured and simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","True","True","True","","","","","1 GB - 10 GB","","True","True","","","","","","","","","","moderately interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"595","True","","","","True","","True","","True","","","","","True","True","True","","","","","Technical support needed","","","","","","","","","","","","","","","10.0","","","","","True","True","","","","","","","","","","","","","","","","","","","","","521.88","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","Industrial and Organisational Psychology","","More than 10 years","Principal Investigator","Principal Investigator","","Not familiar with FAIR","","True","","","","R","Python","SPSS","","True","True","True","","","","","","","","","","","","","","True","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","Some of them","","Some of them","","","","","","Some of them","Some of them","","Some of them","","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","True","","","","","","","10 GB - 100 GB","","True","True","True","True","","True","True","True","","","","very interested","very interested","very interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"596","True","","","","","","","True","True","True","","","","","True","True","","","","","","","","","","","","","","","","","","","","85.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","605.52","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","","","","","","","","","","True","True","True","","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","True","","True","True","True","True","","","","1 GB - 10 GB","","","","","","","","","","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"597","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1816.81","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","True","True","","","","","","","","","","True","True","","","","","True","True","True","","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","Some of them","Some of them","","","","","","","","Mostly measured","Equally generated and reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","","","","","","True","True","True","","","True","True","True","","","","very interested","very interested","very interested","very interested","very interested","","1980-01-01 00:00:00"
+"599","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1876.88","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","Anonymized","Anonymized","","True","","","True","","","","","True","","True","True","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","All","All","","All","","","","","Some of them","Some of them","Some of them","","Some of them","","","","","Equally measured and simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","True","True","True","","","True","","","100 MB - 1000 MB (1 GB)","","","True","True","","True","","True","True","","","","not interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"600","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","617.02","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","True","True","","","","MATLAB / Simulink","","","True","","","","","","","","","True","True","True","True","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","Some of them","","Some of them","","","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","moderately interested","moderately interested","not interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"601","True","","","","True","True","","","","True","","","","","True","","","True","","True","","","","","","","","","","","","","","","","10.0","","","","","","","True","True","","True","","","","","","","","","","","","","","","","","913.81","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","4 to 6 years","Research Associate","","","Familiar with FAIR","True","True","","","","Python","MATLAB / Simulink","C/C++","","True","","","True","","","","","True","True","True","True","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","True","","","All","All","","All","","","All","","","All","All","","All","","","All","","Equally measured and simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","True","True","","True","True","","","10 GB - 100 GB","","","True","","","","","","","True","","","not interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"602","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","344.9","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","PhD candidate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","Anonymized","Anonymized","","True","","","","","","","","","","","","","","","","True","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","None","","","","Some of them","","","","","Some of them","","Some of them","","None","","","","","Mostly simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","True","True","True","","","","100 MB - 1000 MB (1 GB)","","","","","","","","True","True","","","","not interested","not interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"605","True","True","","","True","True","","","True","","","","","True","","","","True","","","","","","","","","","","","","","","","","","100.0","","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","","","True","","","","","","","","619.07","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","","","","True","True","","","Anonymized","","","","True","","","True","","","","","True","True","True","True","","","","","True","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","True","","","All","All","All","All","All","","All","","","All","All","","All","All","","All","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","","moderately interested","moderately interested","not interested","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"606","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","Legal / ethical concerns","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","499.52","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","","Verkehrswesen","","","","","","","","","","","More than 10 years","Research Associate","","","Apply FAIR","True","","","","","R","Python","C/C++","","","","","","","True","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","All","All","","All","All","","","","","None","Some of them","","None","Some of them","","","","","Mostly simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","True","","True","True","","True","True","","","1 GB - 10 GB","","True","","","","","","","","","","","moderately interested","very interested","not interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"615","","","","","","","","","","","","","","","","True","","True","True","True","","","","","","","","","","","","","","","","10.0","","","","","","","","","","","","","","","","","","","","","","","","","","","482.36","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Not familiar with FAIR","","True","True","","","Anonymized","Java","Word","","True","True","","True","True","","","","","","True","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mostly measured","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","Other","","< 100 MB","","","","","","","","True","True","True","","","not interested","moderately interested","very interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"616","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","321.25","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","","Verkehrspsychologie","Less than 1 year","Research Associate","","","Not familiar with FAIR","","True","","","","R","Excel (Spreadsheets)","SPSS","","True","True","","True","True","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","None","None","","","","","","","","Mostly measured","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","","True","True","","","","","","100 MB - 1000 MB (1 GB)","","True","","True","True","","True","True","True","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"617","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","586.22","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","","Experimentelle Psychologie","More than 10 years","Postdoc","","","Not familiar with FAIR","","True","","","","R","Notepad++","Anonymized","","True","True","","True","True","","True","","","","","","","","","","","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","Some of them","All","","","","Some of them","","","","None","None","","","","None","","","","Purely measured","Purely generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","1 GB - 10 GB","","True","True","True","True","","True","True","True","","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"618","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","498.1","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","MATLAB / Simulink","MATLAB / Simulink","Excel (Spreadsheets)","","True","True","True","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","None","None","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","True","True","","True","","Other","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"619","True","","","","True","","","","True","True","","","","","","","","","True","True","","","","","","","","","","","","","","","","100.0","","","","","","","","","","","","","","","","","","","","","","","","","Others","","624.83","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","True","","True","","","MATLAB / Simulink","Anonymized","Anonymized","True","","","","","","","","","","","","","","","","","","","","","True","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","","","","","","","","","","","","","","","","","","","Equally measured and simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","True","","True","","","","","> 1 TB","","","","","","","","True","","","","","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"620","True","","","","","True","","","True","True","","","","","True","True","True","","True","","","","","","","","","","","","","","","","","20.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","382.72","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Systems Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Familiar with FAIR","True","True","","","","Anonymized","Anonymized","PowerPoint","","True","True","","","True","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","","","Some of them","","","Some of them","","Some of them","","","","None","","","None","","None","","","","Equally measured and simulated","Purely reused","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","True","True","True","","True","True","True","","True","True","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","","True","True","","","","moderately interested","very interested","very interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"621","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","557.01","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Psychology","","","","","","","","","","","","","","","","","","","","","Human Factors","4 to 6 years","Research Associate","","","Not familiar with FAIR","True","True","","","","SPSS","Office Software (unspecified)","R","","True","","True","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","< 100 MB","","","True","True","","True","","True","True","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"622","True","","","","True","True","","","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","30.0","","True","","True","","True","","","","","","","","","","","","","","","","","","","","","434.95","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","Astrophysics and Astronomy","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","","","","","MATLAB / Simulink","Word","Anonymized","","","","","","","","True","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","All","","","","","","","","None","None","","","","","","","","Equally measured and simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","","","","< 100 MB","","","","","","","","","","True","","","not interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"627","True","True","","","True","","","True","True","","","","True","","","","","","","","","","","","","","","","","","ProteomeXchange","","","","","80.0","","True","True","True","True","","","","True","True","True","True","","True","","True","","","","","","","","","","","560.23","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","4 to 6 years","Postdoc","","Yes","","","True","","","","","","","","","","True","","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","Some of them","All","","","","","None","","Some of them","Some of them","Some of them","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","True","True","True","","","","","Microscopy","","","MS","","","Speciation calculations","","","","","","","","","","","","","","","","","","","True","","True","","","","","True","","","","","","< 100 MB","","True","","True","","True","","","","","","","very interested","moderately interested","moderately interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"628","True","","","","True","","","True","True","","","","","","","True","","True","","","","","","","","","","","","","","","","","","10.0","","","","","","","True","True","","","","True","True","","","","","","","","","","","","","","800.02","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geology","","","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","Apply FAIR","True","True","","","","Python","","","","","True","True","True","","","","","","","","","","","","","","","","Source code and scripts","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","None","None","None","","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","True","","","","","","","digital processing","Machine learning","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","","","1 GB - 10 GB","","True","","","True","True","","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"630","","True","","","True","","True","","","True","","","","","","True","","True","True","","","","","","","","","","","","PANGAEA","","","","","90.0","","True","True","","True","True","True","True","True","True","True","True","True","True","","","True","True","","","","","True","","Scope of data set","","615.87","Completed the survey","Anonymized","Anonymized","Earth and Environment","","Computer Science","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","True","","","","","OpenCV","Jupyter","QGIS/GDAL","","True","True","","True","True","","","","True","True","True","","True","","","","","","True","","","Yes","Yes","","True","","True","","","","","True","","","","","","","","","","","","","","","","","","iFDO","True","True","True","True","","True","","True","","Some of them","Some of them","Some of them","Some of them","","Some of them","","Some of them","","Some of them","Some of them","Some of them","Some of them","","Some of them","","Some of them","","Purely measured","Mostly generated","No","","","","","","","","","","","","","","","True","","","","","","","Underwater photo / video by marine robots","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","True","","","","True","","","True","","","","> 1 TB","","","","True","True","True","","True","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"632","True","","","","","True","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","85.0","","","","True","True","","","","True","","True","","","","","","","","","","","","","","","","608.74","Completed the survey","Anonymized","Anonymized","Earth and Environment","","Biologie","","","","","","","","","","","","","","","","","","","","","4 to 6 years","Postdoc","","Yes","Familiar with FAIR","True","","","","","Office Software (unspecified)","R","","","","","True","","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","None","","None","","","","","","","Purely measured","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","Other","","","","","","","","","","","","","","","","Fangnetze","GIS","","","","","","","","","","","","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","True","","True","","","","","","","","","very interested","moderately interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"634","","True","","","True","","","","True","","","","","","","","","","","True","","","","","","","","","","","DataONE","","","","","75.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","917.82","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Postdoc","","Yes","Apply FAIR","","","True","","","R","Office Software (unspecified)","","","","","","True","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","All","All","","","All","","","","","All","All","","","All","","","","","Mostly measured","Purely reused","Yes","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","field-based monitoring","environemntal data from GIS, shared field-based environmental data","","","","","","","","","True","","","True","True","True","","","","","","","True","","","","I don't know","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"635","True","True","","","True","","","True","True","","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","","","","","40.0","","","","True","True","True","True","","True","True","True","True","True","True","","True","","","","","","","","","","","965.31","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","True","True","True","","","Office Software (unspecified)","Anonymized","Anonymized","True","","","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","All","None","None","All","","","","","Mostly measured","Mostly reused","Yes","","","","","","","","","","","","","","","True","True","","","","","","(Fluoreszenz)mikroskopie","Elektronenmikroskopie","Heliumionenmikroskopie","UV/VIS-Spektroskopie","Elementanalytik","Massenspektrometrie","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","","True","","True","","","","1 GB - 10 GB","","","","True","","True","","","","True","","","very interested","very interested","very interested","very interested","very interested","","1980-01-01 00:00:00"
+"637","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","423.36","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Environmental Science","","","","","","","","","","","","","","Less than 1 year","PhD candidate","","No","Not familiar with FAIR","","","","True","","Python","Google Earth Engine","","","True","","","","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","","Purely measured","Purely reused","","","","","","","","","","","","","","","","True","","","","","","","synthetic aperture radar signal processing","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Other","","100 GB - 1000 GB (1 TB)","","","","","","","","True","True","","","","moderately interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"639","","True","","","","","","True","True","","","Guidelines / policies of publishers","","","True","","","","","True","","","","","","","","","","","Zenodo","PANGAEA","","","","90.0","","True","","True","True","True","True","True","True","","","","","","","True","","","","","","","","","","","581.39","Completed the survey","Anonymized","Anonymized","Earth and Environment","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","7 to 10 years","Postdoc","","Yes","Not familiar with FAIR","True","","True","","","MATLAB / Simulink","Python","Word","","","","","True","","True","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","Some of them","All","Some of them","","All","","","","","None","None","None","","None","","","","","Mostly measured","Mostly generated","No","","","","","","","","","","","","","","","","True","","","","","","","","","Spektroskopie","Massenspektrometrie","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","True","","","100 MB - 1000 MB (1 GB)","","","True","","True","","","","True","True","","","moderately interested","very interested","not interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"640","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1621.58","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geography","","","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","","True","","","","Anonymized","Python","Anonymized","","True","True","","True","True","","","","","","","","","","","","True","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","Some of them","Some of them","","","","","","All","","Some of them","Some of them","","","","","Mostly measured","Mostly reused","Yes","","","","","","","","","","","","","","","True","","True","","","","","Satellitenbilder","Luftbilder","","","","","Wasserverteilung in Geländemodellen","Sichtbarkeit/Abschattung in Geländemodellen","Temperaturverläufe Tag/Monat/Jahr","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","1 GB - 10 GB","","True","True","","True","","True","True","True","True","","","moderately interested","moderately interested","not interested","very interested","moderately interested","not interested","1980-01-01 00:00:00"
+"641","True","True","","","True","","","True","","True","","","","","True","","","True","","True","","","","","","","","","","","Copernicus Open Access Hub","","","","","50.0","","True","","","True","True","True","True","","","True","True","True","True","","True","True","","","","","","","","","","446.03","Completed the survey","Anonymized","Anonymized","Earth and Environment","","Energieforschung","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","True","","","Fortran","IDL","Python","","","","","True","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","True","","All","All","All","All","All","All","","All","","All","All","All","All","All","All","","None","","","Mostly reused","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","numerische Modelle","","","","","","","","","","","","","","","True","","True","","True","","","","","","True","","","True","True","","","> 1 TB","","","","True","","","True","True","True","True","","","not interested","moderately interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"642","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65.0","","","","","","","","","","","","","","","","","","","","","","","","","","","142.54","Completed the survey","Anonymized","Anonymized","Earth and Environment","Psychology","","","","","","","","","","","","","","","","","","","","","","7 to 10 years","","","","Apply FAIR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"645","","True","","","True","","","","","True","","","","","","True","","","","","","","","","","","","","","","Institutional Repository","","","","","30.0","","True","","","True","True","","","","","","","","","True","True","","","","","","","","","","","944.92","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Postdoc","","","Familiar with FAIR","","True","","","","Python","Fortran","","","","","True","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","Some of them","Some of them","","","All","","","","","None","None","","","None","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","True","True","","","","","","","","Preprocessing Remote sensing data","","","RTM","","","","","","","","","","","","","","","","","","","True","","True","","","True","True","True","","","True","","","","","","True","True","True","True","True","","True","True","","","very interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"647","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","70.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","784.58","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","Apply FAIR","True","True","True","","","Jupyter","Command line (scripts)","Fortran","","True","","True","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","All","All","","All","","","","","","All","All","","All","","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Verwendung von Wettermodellen","Lagrangesche Transportmodelle","Machine Learning und Klimadaten","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","True","","","> 1 TB","","","","","True","True","True","","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"650","","True","True","","True","True","","","True","","","","","","True","","","True","","","","","","","","","","","","","OSF","figshare","","","","50.0","","","","","","","","","","","","","","","","","","","","","","","","","","","782.05","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","","Klimatologie","","","","","","","","","","","","","More than 10 years","Postdoc","Postdoc","Yes","Apply FAIR","True","","True","True","","R","Command line (scripts)","Excel (Spreadsheets)","","True","True","True","True","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","None","Purely simulated","Mostly reused","Not sure","","","","","","","","","","","","","","","","","True","","","","Other","","","","","","","Klimasimulation","Statistische Modelle","Empirische Modelle","","","","","","","Statistische Analysen","","","","","","","","True","True","","","True","","True","True","True","True","","True","True","","","1 GB - 10 GB","","","True","True","True","True","True","True","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"651","True","","","","","","","","","","","Guidelines / policies of publishers","","","","True","","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","","880.17","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","True","True","","","","","","","","","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mostly measured","Mostly reused","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","True","","","10 GB - 100 GB","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"652","","True","","","","","","True","True","","","","","","True","","","True","","","","","","","","","","","","","PANGAEA","Institutional Repository","","","","30.0","","True","True","True","True","True","True","True","True","True","","","","","True","True","True","","","","","","","","","","944.13","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geophysics","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","True","","","Python","Anonymized","Command line (scripts)","","True","","","True","","","","","","","","True","","True","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","True","","","","All","All","Some of them","","All","All","","","","None","None","None","","None","None","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","Analytical methods","","","","","","","","","","","","","","","","Geophysikalische Messungen","","","","","","","","True","","","","True","True","","","True","","","","True","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","True","","","","","","","1980-01-01 00:00:00"
+"653","True","True","True","","True","True","True","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","50.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","411.28","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Soil Science","","","","","","","","","","","","","","7 to 10 years","Postdoc","","Yes","Apply FAIR","","True","","","","Office Software (unspecified)","R","","True","","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","","","","","","","","","","","","","","","","","","","","","Equally measured and simulated","Equally generated and reused","No","","","","","","","","","","","","","","","","","True","","","","Other","","","","","","","Modeling","","","","","","","","","Sensors","","","","","","","","","","True","","True","","","True","","True","","True","True","","","1 GB - 10 GB","","","","","","","","","","","","True","","","","","","","1980-01-01 00:00:00"
+"654","True","True","","","True","","","","True","","","","","","True","True","","True","","","","","","","","","","","","","ENA","SRA","PANGAEA","","","90.0","","True","True","","","True","","True","","","","","","","","","","","","","","","","","","","1556.37","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Environmental Science","","","","","","","","","","","","","","7 to 10 years","Postdoc","","Yes","Apply FAIR","True","True","","","","","","","","True","","","True","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","None","None","","","","","","","","Mostly measured","Equally generated and reused","Yes","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","True","","","True","","True","","True","True","","","1 GB - 10 GB","","True","True","True","True","True","True","True","","","","","very interested","moderately interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"655","True","True","","","True","True","","","","True","","","","","True","","True","","","","","","","","","","","","","","Institutional Repository","","","","","15.0","","True","True","","","True","","","","","","","","","","True","","","","","","","","","","","681.85","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geography","","","","","","","","","","","","","","4 to 6 years","Research Associate","","Yes","Familiar with FAIR","True","","","","","R","QGIS/GDAL","QGIS/GDAL","","","","True","True","","","True","","","","","","","","","","","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","Some of them","Some of them","","","Some of them","","","","","None","None","","","None","","","","","Equally measured and simulated","Equally generated and reused","Not sure","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Geoinformationsverarbeitumg","Statistische Modellierungen ","","","","","","","","","","","","","","","","True","","True","True","True","","","True","True","","","","","","","10 GB - 100 GB","","","","","True","True","True","","","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"657","True","","True","","True","","","True","","True","","","","","True","","","True","","True","","","","","","","","","","","","","","","","10.0","","","","","","","","","True","True","","","","","True","","","","","","","","","","","","851.15","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","True","","True","","","Fortran","Python","C/C++","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","All","","All","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","True","True","","","","","","Wetterradar","Niederschlagsverteilung","","Spektralanalyse Dopplerspektrum","Polarimetrie","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","True","True","","","100 MB - 1000 MB (1 GB)","","True","","","","","","","","True","","","moderately interested","very interested","very interested","moderately interested","not interested","moderately interested","1980-01-01 00:00:00"
+"659","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1057.65","Completed the survey","Anonymized","Anonymized","Earth and Environment","Chemistry","","","","","","","","","","","","","","","","","","","","","","No degree","Student","","No","Familiar with FAIR","","True","","","","Anonymized","Anonymized","","","","","","True","","","","","True","True","True","","","","","","True","","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","True","True","","True","","","","AFM","","","XRD","Cyclic voltammetry","Chronopotntiometry","","","","PLD","","","","","","","","","","","","","","","","True","","True","","","","","","","","","Plain text","","","","True","True","True","True","True","True","True","","True","","","very interested","very interested","very interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"661","True","True","","","True","","","True","True","","","","","","True","True","","","","","","","","","","","","","","","Institutional Repository","Zenodo","B2SHARE","","","10.0","","True","True","True","True","True","","True","True","True","","","","","True","True","","","","","","","","","","","1097.7","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","Database Management System","Python","OpenCV","","True","True","","","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","","All","Some of them","Some of them","Some of them","","","","","Mostly measured","Mostly reused","Yes","","","","","","","","","","","","","","","True","True","","","","","","RGB-Kameras","PAM-Fluorometer","NMR-System","Sequencing","Feinwaagen","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","True","","","True","","","","1 GB - 10 GB","","","","","True","True","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"662","True","True","","","True","","","True","","True","","","","","","True","","True","","","","","","","","","","","","","Institutional Repository","","","","","90.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","1047.61","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","","","","","cdo","Anonymized","","True","","","","","","","","True","","","True","True","True","","","","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","True","","","","Some of them","Some of them","Some of them","","All","All","","","","Some of them","Some of them","Some of them","","All","Some of them","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","Reanalysis data","NWP model data","Climate model data","","","","script-based postprocessing ","manipulation of netCDF and grib data","","","","","","","","True","","True","True","True","True","True","","","","True","True","","True","True","","","> 1 TB","","True","","","","True","","True","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"663","True","True","","","True","True","","","True","","","","","","True","","","True","","True","","","","","","","","","","","Institutional Repository","","","","","50.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","583.84","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","True","True","","","","Anonymized","Anonymized","","","","","","True","","","","","True","","True","","True","","","","","","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","","True","True","","","","","","Some of them","","All","All","","","","","","Some of them","","Some of them","Some of them","","","","","Equally measured and simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","chemistry transport models","","","","","","regression analysis","","","","","","","","","","","","","True","True","True","","","","True","","","","True","","","> 1 TB","","True","","","","True","","True","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"666","","True","","","True","","","True","","True","","","","True","True","","","True","","True","","","","","","","","","","","","","","","","95.0","","True","","","True","True","True","True","True","","","","True","","True","True","True","True","","","","","","","","","496.08","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Environmental Science","","","","","","","","","","","","","","More than 10 years","Postdoc","","Yes","Apply FAIR","","","","True","","Python","QGIS/GDAL","PowerPoint","","True","","","True","True","","","","","","True","","","","","","","","True","","","Yes","Yes","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","Some of them","All","Some of them","Some of them","All","All","","","","None","None","None","None","None","None","","","","Purely measured","Purely reused","No","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","","","","","","","","","","","","","True","","","moderately interested","very interested","not interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"667","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","Legal / ethical concerns","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","499.74","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Postdoc","","No","Familiar with FAIR","","True","","","","MATLAB / Simulink","Command line (scripts)","Python","","True","True","True","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","Some of them","","Some of them","","","","","","None","None","","None","","","","","","Equally measured and simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","True","","","","Other","","","","","","","Risikomodelle","Wettermodelle","","","","","","","","Radarmessungen","","","","","","","","","","True","","True","","","","True","","","True","True","","","10 GB - 100 GB","","True","","","True","True","","True","True","","","","very interested","very interested","not interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"675","","","","Other","","","","True","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","1046.5","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Oceanography","","","","","","","","","","","","","","More than 10 years","Other","Other","Yes","Familiar with FAIR","","","True","","","","Database Management System","Anonymized","","True","","","","","","","","True","True","","","True","","","","","","","Digital system","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","All","All","","All","","","","","","Some of them","Some of them","","Some of them","","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","True","","","","","Recordings","","","","HF radar","satellite spectroscopy","","","","","","","","","","","FerryBox","Under water nodes","","","","","","","","True","","","","","","","","","","","True","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","True","not interested","not interested","not interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"681","","True","","","True","True","","","","True","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","Institutional Repository","","","","100.0","","","True","","","","","","","","","","","","","","","","","","","","","","","","785.68","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geophysics","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","","True","","","Anonymized","Anonymized","","True","","","","","","","","","","","","","","","True","","","","True","","","Yes","Yes","True","","","","","","","","","","","","","","","","","","","","","","","","","","Others","True","True","True","","","True","","","","All","Some of them","All","","","All","","","","All","Some of them","All","","","All","","","","Mostly simulated","Mostly reused","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","True","","","","True","True","","","1 GB - 10 GB","","","","","","True","","True","","","Best practices","","very interested","not interested","not interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"687","True","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","60.0","","","","","True","","","","True","True","","True","","","","","","","","","","","","","","","3757.31","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","1 to 3 years","PhD candidate","","No","Not familiar with FAIR","True","True","","","","Anonymized","ImageJ","OriginLab","True","","","","","","","","","True","","","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","Some of them","","Some of them","","","","","","","Purely measured","Purely generated","Not sure","","","","","","","","","","","","","","","True","True","","","","","","Fluorescence Microscopy","","","Colorimetric methods (ELISA, MTT)","Atomic Absorption Spectrscopy","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","","True","","","","","","1 GB - 10 GB","","","","True","True","True","","True","","","","","moderately interested","very interested","","not interested","very interested","not interested","1980-01-01 00:00:00"
+"688","True","","","","True","True","","","True","","","","","True","True","","True","","","True","","","","","","","","","","","","","","","","30.0","","","","True","True","","","True","True","True","True","","True","True","","True","","","","","","","","","","","849.98","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","Plant Breeding","","","","","","","","","","Agriculture","","","","","","","","","","7 to 10 years","Postdoc","","Yes","Apply FAIR","True","","","","","Excel (Spreadsheets)","R","ImageJ","","True","True","True","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","All","All","Some of them","Some of them","","","","","None","None","None","None","None","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","True","True","","","True","","","Image analysis of photographs","","","NIRS","TD-NMR","RNAseq","","","","","","","Manual measurements/observations in the field","Interviews with target consumers","","","","","","","","True","","","","True","","","","","","","True","","","","","","< 100 MB","","True","True","True","True","True","True","True","","True","","","very interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"689","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","416.13","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Environmental Science","","","","","","","","","","","","","","No degree","Student","","No","Familiar with FAIR","","True","","","","Excel (Spreadsheets)","Anonymized","R","","","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","None","None","","","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","","True","","","","","","","","","ICP-MS/MS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","I don't know","","","","","","","True","","","True","","","moderately interested","moderately interested","not interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"690","","True","","","True","","","True","","True","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","","","","","75.0","","True","True","True","True","True","","True","True","True","","","","","","True","True","True","","","","","","","","","472.18","Completed the survey","Anonymized","Anonymized","Earth and Environment","Chemistry","","","","","","Analytical Chemistry","","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","No","Familiar with FAIR","","True","","","","Excel (Spreadsheets)","OriginLab","Anonymized","True","","","","","","","","","True","","","True","","True","","","True","","","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","True","","","","All","All","All","","All","All","","","","None","None","None","","None","None","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","True","","","","","","","","","ICP-MS","Titration","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","","","","True","True","","","","","very interested","moderately interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"691","","True","","","","","","True","True","","","","","","True","True","True","True","True","","","","","","","","","","","","Gitlab / GitHub","","","","","15.0","","","","","","True","True","True","","","","","True","","","","","","","","","","","","","","12489.4","Completed the survey","Anonymized","Anonymized","Earth and Environment","","Ecologie","","","","","","","","","","","","","","","","","","","","","1 to 3 years","PhD candidate","","Not sure","Familiar with FAIR","","True","","","","MATLAB / Simulink","Anonymized","Excel (Spreadsheets)","","True","","True","True","True","True","True","","","","","","","","","","","","True","Source code and scripts","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","Some of them","","All","","","","","","None","None","","None","","","","","","","Mostly reused","Not sure","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","Szenario-Berechungen","","","","","","","","","","","","","","","True","","True","","True","","True","","","True","True","True","","True","True","","","> 1 TB","","","","","True","True","","","","True","","","not interested","moderately interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"692","True","","","","True","True","","","","True","","","","","","","True","True","","","Competition","","","","","","","","","","","","","","","5.0","","","","True","","","","","True","","","","","","","True","","","","","","","","","","","859.55","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","True","True","","","","Python","IDL","Fortran","","","True","True","True","","","True","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","Some of them","","Some of them","","Some of them","","","","","None","","None","","None","","","","","Equally measured and simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","True","","","","Recordings","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","True","","","10 GB - 100 GB","","True","","True","True","True","True","","True","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"693","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","415.44","Completed the survey","Anonymized","Anonymized","Earth and Environment","Engineering Science","","","","","","","","","","Industrial Engineering","","","","","","","","","","","","No degree","Student","","No","Not familiar with FAIR","True","","","","","Excel (Spreadsheets)","Python","ArcGIS","","","True","True","","","","","","True","True","True","","","","","","True","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","","","","","","I don't know","","","","","","True","","","","","","","moderately interested","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"695","","True","","","","","","True","","","","","","","","","True","","","","","","","","","","","","","","Institutional Repository","","","","","30.0","","","","","True","True","","","True","","","","","","True","","","","","","","","","","","","458.02","Completed the survey","Anonymized","Anonymized","Earth and Environment","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","1 to 3 years","PhD candidate","","Yes","Not familiar with FAIR","","True","","","","Python","","","True","","","","","","","","","","","","","","","","","True","","","Source code and scripts","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Equally measured and simulated","Mostly reused","Not sure","","","","","","","","","","","","","","","","True","True","","","","","","","","Lidar","","","Reanalyse","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","","","10 GB - 100 GB","","","","","","","","","","","","True","moderately interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"698","True","True","","","True","True","","","","True","","","","","True","True","","True","True","","","","","","","","","","","","Gitlab / GitHub","","","","","80.0","","","","","","","","","True","","True","","","","","","","","","","","","","","","","557.3","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Water Research","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","","","","Python","Command line (scripts)","Google Earth Engine","","True","True","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","Mostly reused","Yes","","","","","","","","","","","","","","","True","","True","","","","Other","Satellitendaten","UAV Daten","","","","","Hydrologische Modelle","Klimamodelle","","","","","","","","Stationsdaten","Smartphone Daten","","","","","","","","True","","","","","","","True","","","True","True","","","1 GB - 10 GB","","","","","","True","","","","True","","","","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"699","True","True","","","True","","","","True","True","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","NSSDC","","","","10.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","609.62","Completed the survey","Anonymized","Anonymized","Earth and Environment","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","7 to 10 years","Postdoc","","Yes","Apply FAIR","","True","","","","IDL","Linux","LaTeX","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","All","All","","","","","","","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","True","","","","","","","Lidar","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","100 MB - 1000 MB (1 GB)","","","","True","","True","","","True","","","","very interested","moderately interested","not interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"700","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","4865.31","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Water Research","","","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","","","True","","QGIS/GDAL","Python","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mostly simulated","Equally generated and reused","","","","","","","","","","","","","","","","True","","True","","","","","Satellitendaten(Höhenmodelle, Landuse etc.)","","","","","","Automatisierte Planungsunterstützung für Abwassernetzwerke","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","True","True","Application-specific formats","","","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"703","","True","","","","","","","True","True","","","","","","","True","","","","","","","","","","","","","","Institutional Repository","","","","","10.0","","True","","","True","True","True","True","True","","True","True","True","","","True","","","","","","","","","","","593.26","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","7 to 10 years","Research Associate","","Yes","Familiar with FAIR","True","True","","","","Python","","","","","","True","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","All","All","All","All","All","","","","","Purely measured","Purely reused","Yes","","","","","","","","","","","","","","","True","","","","","","Other","Tomographie","","","","","","","","","","","","","","","LIDAR","IR Interferometrie","","","","","","","","","","","","","","","","","","","True","","","100 GB - 1000 GB (1 TB)","","","","True","True","True","","True","","","","","very interested","very interested","not interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"708","True","","","","","","","","","","","Guidelines / policies of publishers","","","","","","","True","","","","","","","","","","","","","","","","","25.0","","True","","True","True","True","True","True","","","True","","","","","","","","","","","","","","","","831.32","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","R","Excel (Spreadsheets)","Database Management System","","True","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","","","","All","","","","","","None","None","None","None","","","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","True","","","","Other","","","","","","","numerische Modelle","weitere Statistische Modelle","","","","","","","","","","","","","","","","","True","","","True","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","","","","","True","True","","","","moderately interested","moderately interested","moderately interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"709","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1199.29","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","","Biotechnology + Automation","","","","","","","","","1 to 3 years","PhD candidate","","Not sure","Familiar with FAIR","True","True","","","Externally (servers / repositories)","Anonymized","Excel (Spreadsheets)","Anonymized","","","","","","","True","True","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","Some of them","Some of them","None","","","","","","Purely measured","Purely generated","Not sure","","","","","","","","","","","","","","","True","True","","","","","Other","Microscopy","Fotography","","Enzymatic Assays (determine enzyme activity or sugar concentration)","Gravimetry (cell dry weight determination)","chromatography ","","","","","","","","","","scattered light measurement (measure for biomass development)","pH and dissolved oxygen measurement via optodes","","","","","True","","True","","True","True","","","","True","True","True","","True","True","","","10 GB - 100 GB","","","","","","","True","","True","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"710","True","","","In repository","","True","","","True","True","","","","","True","True","","True","","","","","","","","","","","","","","","","","","40.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","1041.29","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geology","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","","","","Anonymized","MATLAB / Simulink","R","","True","","","","","","","Relevant metadata is missing","True","True","True","True","True","","","","","","True","","","Yes","Yes","","True","","True","","","","","","","","","","","","","","","","","","","True","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","All","Some of them","All","","","","","","Equally measured and simulated","Purely reused","No","","","","","","","","","","","","","","","True","","True","","","","","remote sensing, air borne, satellite","","","","","","modelling","","","","","","","","","","","","","","","True","","True","True","True","","","","True","True","","True","","True","True","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","","True","","","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"712","","True","","","","True","","","","True","","","","","True","","","","","True","","","","","","","","","","","Institutional Repository","","","","","25.0","","","","","","","","","","","True","","True","True","True","True","","","","","","","","","","","1642.48","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Oceanography","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","True","True","True","","","Fortran","MATLAB / Simulink","","","True","","True","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","All","All","","","","","None","","None","None","None","","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","numersches Modell","statistisch-analytische Methoden","","","","","","","","","","","","","","","","True","","True","","","","","True","True","True","","True","True","","","10 GB - 100 GB","","True","True","True","","True","True","","","True","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"713","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","912.35","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","R","ArcGIS","Database Management System","","","","","True","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","True","","All","All","All","Some of them","All","","","All","","None","All","None","None","None","","","Some of them","","Purely measured","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","Cohort studies","","","","","","","","","","","","","","","","standardisierte Zählmethoden (Biodiversitätserhebungen)","passive Fallen (Biodiversitätserhebungen)","","","","","True","","","True","","","True","","","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","True","","","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"714","","True","","","True","","","","True","True","","","","","True","","","True","","True","","","","","","","","","","","Zenodo","PANGAEA","WDCC","","","100.0","","True","","","","True","","True","","","","","","","","True","True","","","","","","","","","","1083.49","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","4 to 6 years","Research Associate","","Yes","Apply FAIR","","True","","","","Python","Anonymized","Command line (scripts)","","True","True","True","True","","","","","True","True","True","True","True","","","","","","","GitLab","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","True","","True","True","","","","All","All","None","","Some of them","All","","","","Some of them","All","None","","All","All","","","","Mostly simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Regionale Klimamodelle","Globale Erdsystem-Modelle (ESM)","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","10 GB - 100 GB","","True","","True","True","True","True","True","True","True","","","moderately interested","very interested","very interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"717","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","309.72","Completed the survey","Anonymized","Anonymized","Earth and Environment","Physics","","","","","","","","","","","","","","","","","","Astrophysics and Astronomy","","","","Less than 1 year","PhD candidate","","Not sure","Not familiar with FAIR","","","","","","Python","Anonymized","Jupyter","","","","","","","","True","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","Some of them","Some of them","All","","","","","None","","None","None","None","","","","","Mostly simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Numeric models","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","True","","","I don't know","","True","","True","True","True","","","","","","","very interested","moderately interested","not interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"719","True","","True","","True","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","30.0","","","True","","True","True","True","True","True","True","","True","True","","","","","","","","","","","","","","582.35","Completed the survey","Anonymized","Anonymized","Earth and Environment","Chemistry","","","","","","Analytical Chemistry","","","","","","","","","","","","","","","","4 to 6 years","PhD candidate","","Yes","Apply FAIR","","True","True","","","Excel (Spreadsheets)","Word","OriginLab","True","","","","","","","","","True","True","True","","","True","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","All","All","Some of them","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","","True","","","True","","","","","","ICP-MS/MS","MC ICP MS","","","","","","","","Multivariate cluster analysis","","","","","","","","","","","","","True","","","","","","","True","","","","","","< 100 MB","","True","","","","True","","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"720","","True","","","True","True","","","True","","","","","","True","","","","","","","","","","","","","","","","PANGAEA","","","","","90.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","704.03","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Research Associate","","Yes","Apply FAIR","","True","","","","Office Software (unspecified)","R","Anonymized","True","","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","True","","","","All","All","All","","All","All","","","","None","None","None","","None","None","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","Other","","","","","","","","","","","","","","","","kombinierte Flugfallen (Insekten; jährlich)","Vogelerfassung (Punkt-Stopp-methode; alle 3 Jahre)","","","","","","","","True","","","","","","","","True","","True","","","","< 100 MB","","","","","True","","","True","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"722","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","449.72","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","4 to 6 years","PhD candidate","","Yes","Not familiar with FAIR","True","True","","","","","","","","True","","True","True","True","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","True","","","All","All","All","","","","Some of them","","","","","","","","","","","","Purely simulated","Equally generated and reused","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","","True","True","","","True","","","10 GB - 100 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"723","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Legal / ethical concerns","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","541.39","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","","Fernerkundung","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Not familiar with FAIR","","True","","","","Python","Anonymized","C/C++","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","Some of them","None","","","","","","","","Yes","","","","","","","","","","","","","","","True","","True","","","","","Fernerkundungssensoren","","","","","","Renderverfahren","","","","","","","","","","","","","","","True","","","","True","","","","","","","","True","True","","","","1 GB - 10 GB","","","","","","","","True","","","","","very interested","very interested","moderately interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"726","True","True","True","","True","","","","True","True","","","","","True","","","","","","","","","","","","","","","","Zenodo","","","","","40.0","","True","","True","True","True","True","True","True","","","","True","True","True","True","","","","","","","","","","","1337.05","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","Yes","Familiar with FAIR","True","True","","","","R","Database Management System","","","True","","","","","","","","","","","","","","","","","","","Source code and scripts","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Mostly measured","","Yes","","","","","","","","","","","","","","","","","","","","","Other","","","","","","","","","","","","","","","","Ich gehe raus","Ich schaue","Ich schreibe auf (OK, es gibt eine Reihe von Standards und Methoden, für die der Platz nicht reicht)","","","","","","","True","","","","","","","True","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","True","","","","","","","","very interested","moderately interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"727","True","True","","","True","True","","","True","","","","","","","","","","","","Lack of time / personnel","","","","","","","","","","WDCC","","","","","40.0","","","","","","True","","","","","","","","","","","","","","","","","","","","","1477.46","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Oceanography","","","","","","","","","","","","","","More than 10 years","Research Associate","Research Associate","Yes","Apply FAIR","True","True","True","","","Fortran","R","Command line (scripts)","","True","","","","True","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","Mostly simulated","","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Modellrechnungen","","","","","","","","","","","","","","","True","True","","","True","","","","","","","","","","True","","","> 1 TB","","","","","","","","True","True","True","","","","","","","","very interested","1980-01-01 00:00:00"
+"728","True","","","In repository","True","True","","","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","25.0","","True","True","True","True","True","True","True","True","True","","","","","True","","True","","","","","","","","","","1207.8","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","","Erdbeobachtung","","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","No","Apply FAIR","","True","","","","","","","","True","","","True","","","","","True","","True","True","","","","","","True","","","","Yes","Yes","True","True","","True","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","True","","Some of them","All","","","All","All","","All","","","All","Some of them","","Some of them","Some of them","","Some of them","","Purely measured","Purely reused","Yes","","","","","","","","","","","","","","","True","","","","","","","Satellitendaten","aus Satellitendaten abgeleitete Daten","OpenStreetMap (Crowd-source)","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","","","True","","","","","","","True","","True","True","","","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"729","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","455.78","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geography","","","","","","","","","","","","","","7 to 10 years","Postdoc","","Yes","Not familiar with FAIR","True","True","","","","R","ArcGIS","QGIS/GDAL","","True","True","","","","True","True","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","All","Some of them","Some of them","Some of them","","","","","None","Some of them","None","None","None","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","True","","True","","","","","satellitengestützte Erdbeobachtung","Luftbilddaten","terrestrische Bilddaten","","","","maschinelle Lernverfahren","statistische Modelle","","","","","","","","","","","","","","True","","","","True","","","","","","True","","","True","","","","10 GB - 100 GB","","","True","","","","","True","True","","","","moderately interested","not interested","not interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"730","","True","","In repository","True","True","","","True","","","","","","","","","True","","","","","","","","","","","","","figshare","Institutional Repository","","","","70.0","","","","","","True","True","True","","","","","","True","True","True","","","","","","","","","","","2945.73","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geography","","","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","","True","","","","QGIS/GDAL","Command line (scripts)","Anonymized","","True","","","True","","","","","","","","","","","","","","True","True","GitLab","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","Some of them","","","","","","All","Some of them","Some of them","None","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","Other","","","","","","","","","","","","","","","","sateliite aquisitions","airial photography","","","","","","","","","True","","True","","","","True","","","True","True","","","> 1 TB","","","","","True","True","","","","True","","","moderately interested","very interested","not interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"733","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","838.26","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geography","","","","","","","","","","","","","","Less than 1 year","PhD candidate","","Yes","Not familiar with FAIR","True","True","","","","QGIS/GDAL","Python","Office Software (unspecified)","True","","","","","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","None","None","None","","","","","","Purely measured","Equally generated and reused","No","","","","","","","","","","","","","","","True","","","","","","","satellite-based imaging","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","True","True","","","True","","","","","","","","","","","True","True","True","","","moderately interested","very interested","not interested","","very interested","moderately interested","1980-01-01 00:00:00"
+"737","","","","In repository","","True","","True","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","20.0","","True","True","True","True","True","True","True","","","","","","","True","","","","","","","","","","","","1297.35","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Environmental Science","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","No","Familiar with FAIR","","True","","","","R","Google Earth Engine","Anonymized","","True","","","","","","","","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","True","Others","All","All","All","All","All","","","","Some of them","None","None","None","None","None","","","None","None","Mostly measured","","Yes","","","","","","","","","","","","","","","True","","","","","","","SAR Satellitendaten","Multispektrale Satellitendaten","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","True","","","","True","True","","True","True","","","10 GB - 100 GB","","","","","","True","","","","","","","not interested","very interested","not interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"738","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","414.4","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Geography","","","","","","","","","","","","","","More than 10 years","Research Associate","","No","Not familiar with FAIR","True","","","","","C/C++","R","IDL","","True","","True","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","","Purely measured","Equally generated and reused","Yes","","","","","","","","","","","","","","","True","","","","","","","remote sensing","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","True","","","100 GB - 1000 GB (1 TB)","","True","","","","","True","True","","","","","moderately interested","very interested","very interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"742","True","","","","","True","True","","True","","","","","","","","","True","","","","","","","","","","","","","","","","","","10.0","","","","True","True","","","","True","","","True","","True","","","","","","","","","","","","","539.21","Completed the survey","Anonymized","Anonymized","Earth and Environment","Physics","","","","","","","","","","","","","","","","","","","Atmosphere","","","7 to 10 years","Postdoc","","No","Familiar with FAIR","True","True","True","","","R","C/C++","OpenCV","","True","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","All","","All","All","","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","True","","","","","","","Instrument","Image Processing","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","","","True","","","","> 1 TB","","","","","","","","","True","True","","","moderately interested","not interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"744","True","True","True","","True","True","","","","True","","","True","","","","","","","","","","","","","","","","","","PANGAEA","Zenodo","Other","","","95.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","568.6","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Environmental Science","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","True","","","Anonymized","Anonymized","Python","True","","","","","","","","","True","True","True","","","","","","","True","True","","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","True","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","None","Some of them","Some of them","All","All","Some of them","","","","Mostly simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Numerical models","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","True","True","","","> 1 TB","","","","","","","","True","True","","","","not interested","moderately interested","not interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"745","True","","","","True","True","","","True","","","","","","True","","","","","True","","","","","","","","","","","","","","","","85.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","473.18","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","","Planetenforschung","","","","","","","","","","","","","More than 10 years","Postdoc","","Yes","Familiar with FAIR","True","","","","","Anonymized","Database Management System","","","True","","True","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","All","","","","All","","","","","None","","","","None","","","","","Equally measured and simulated","Purely reused","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","True","","Structured text","","< 100 MB","","","","True","True","","True","True","","","","","very interested","very interested","not interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"747","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","4207.46","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","","Erdbeobachtung","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","","","","Anonymized","","","","","True","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","True","","All","All","","Some of them","","","","Some of them","","","Some of them","","None","","","","None","","Mostly measured","Purely reused","Yes","","","","","","","","","","","","","","","True","","","","True","","","Statistische Verfahren","","","","","","","","","","","","Statistische Verfahren","","","","","","","","","True","","","","True","True","","","","","","","","","","","","I don't know","","True","","","True","True","True","","","","","","moderately interested","moderately interested","","very interested","","","1980-01-01 00:00:00"
+"748","","","","Other","True","True","","","","True","","","","","True","True","","","","","","","","","","","","","","","","","","","","10.0","","","","","","","True","True","True","True","","","","","","","","","","","","","","","","","776.59","Completed the survey","Anonymized","Anonymized","Earth and Environment","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","7 to 10 years","Research Associate","","Yes","Not familiar with FAIR","","True","","","","Python","Anonymized","Git","","True","","","","","","","","","","","","","","","","","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","","","","","","","","","Equally measured and simulated","Mostly generated","Yes","","","","","","","","","","","","","","","True","","True","","","","","Satellite images processing","","","","","","Heliosat Method for solar irradiance forecast","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","True","","","10 GB - 100 GB","","True","","True","True","True","","True","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"749","True","","","","True","","","","","True","","","","","True","","","","","True","","","","","","","","","","","","","","","","5.0","","","","","True","","True","True","True","True","","","","","","","","","","","","","","","","","937.03","Completed the survey","Anonymized","Anonymized","Earth and Environment","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","4 to 6 years","Research Associate","","No","","True","True","","","","Python","MATLAB / Simulink","C/C++","","True","","","True","","","","","True","True","True","True","","","","","True","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","All","None","None","None","All","","","","","Equally measured and simulated","Purely generated","Yes","","","","","","","","","","","","","","","True","True","True","","","","","IR Tomographie","","","UV/vis/IR Spektroskopie","","","Monte-Carlo Verfahren","Strahlungstransportmodelle","","","","","","","","","","","","","","","","True","True","True","True","True","","","","True","True","","True","True","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","True","","","not interested","very interested","very interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"751","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","697.43","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","1 to 3 years","Research Associate","","Yes","Not familiar with FAIR","True","True","","","","Jupyter","Anonymized","PowerPoint","","True","","True","","True","","","","","","True","True","True","","","","","","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","","True","True","","","","","All","All","","Some of them","Some of them","","","","","None","None","","None","None","","","","","","Purely reused","Yes","","","","","","","","","","","","","","","True","","True","","","","","Remote sensing","","","","","","Chemical transport modellling","","","","","","","","","","","","","","","","","","","True","","","","","","","","","True","True","","","1 GB - 10 GB","","True","True","True","","","","True","True","","","","very interested","","","","very interested","very interested","1980-01-01 00:00:00"
+"752","True","True","True","","True","True","","","True","","","","","","","","","","","","Technical barriers","","","","","","","","","","Zenodo","MetaboLights","","","","25.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","805.55","Completed the survey","Anonymized","Anonymized","Earth and Environment","Chemistry","","","","","","Cheminformatics","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","True","","","R","Anonymized","Anonymized","True","","","","","","","","","True","True","True","True","True","","","","True","True","True","","","Yes","Yes","True","True","","","","","","","True","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","","","Some of them","Some of them","Some of them","All","","All","","","","None","Some of them","None","All","","All","","","","Purely measured","","Yes","","","","","","","","","","","","","","","","True","","","","","","","","","High Resolution Mass Spectrometry","Low Resolution Mass Spectrometry","","","","","","","","","","","","","","","","","True","","","","","","True","","","True","True","True","","True","","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","","very interested","not interested","1980-01-01 00:00:00"
+"753","","True","","","True","","","True","True","","","","","","True","","","","","","","","","","","","","","","","Copernicus Open Access Hub","","","","","50.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","684.92","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","Atmospheric Science","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Not familiar with FAIR","","True","","","","emacs","Jupyter","Anonymized","True","","","","","","","","","","","True","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","Some of them","","","All","","","","","","Some of them","","","All","","","","","","Purely measured","Mostly generated","Yes","","","","","","","","","","","","","","","","True","","","","","","","","","Optimal estimation","Non-linear fitting","Radiative Transfer Models","","","","","","","","","","","","","","","","True","","","True","","","True","","","","True","","","True","True","","","I don't know","","","","","True","","True","","","True","","","moderately interested","moderately interested","not interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"759","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","391.45","Completed the survey","Anonymized","Anonymized","Earth and Environment","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","1 to 3 years","PhD candidate","","No","Not familiar with FAIR","","True","","","","","","","","True","True","","","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","Some of them","Some of them","","","","","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","","True","","","","1 GB - 10 GB","","","True","","True","","True","","True","","","","moderately interested","very interested","moderately interested","not interested","moderately interested","","1980-01-01 00:00:00"
+"760","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","839.8","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Chemical Biology","","","","","","","","Biology","","","","","","","","","","","Principal Investigator","Principal Investigator","","Familiar with FAIR","True","True","","","","Excel (Spreadsheets)","GraphPad","","True","","","","","","","","","","","","","","","","","True","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","","","","Fluoreszenz-Mikroskopie","Western Blot","","optische Messungen: Absorption, Fluoreszenz, Lumineszenz","Durchflusszytometrie","PCR-Methoden","","","","","","","","","","","","","","","","","True","","","True","","","True","","","","True","","","","","","< 100 MB","","","","True","","True","","","True","True","","","very interested","moderately interested","moderately interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"763","","True","","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","100.0","","","","","","","","","","","True","","True","","","","","","","","","","","","","","340.76","Completed the survey","Anonymized","Anonymized","Health","Physics","","","","","","","","","","","","","","","","","","","Medical physics","","","","Student","","","Not familiar with FAIR","","True","","","","Python","Anonymized","FLUKA","True","","","","","","","","","","","","","","","","","","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","None","None","","","","","","Equally measured and simulated","Purely generated","","","","","","","","","","","","","","","","True","","True","","","","","CCD camera","","","","","","TOPAS ","Fluka","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","1 GB - 10 GB","","","","True","","True","True","","","","","","very interested","very interested","","","","very interested","1980-01-01 00:00:00"
+"765","","True","","","","","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","416.9","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Research Associate","","","Not familiar with FAIR","True","True","","","","","","","True","","","","","","","","","True","True","True","True","","","","","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","None","None","","None","","","","","","Purely measured","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","True","","","","","","I don't know","","","","","","","","","True","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"768","True","","","","","","","True","","","","","","","","True","","True","True","","","","","","","","","","","","","","","","","75.0","","","","True","True","","","","True","True","True","","","","","","","","","","","","","","","","503.08","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Research Associate","","","Not familiar with FAIR","","True","","","","GraphPad","Excel (Spreadsheets)","AiiDA","","True","True","","","","True","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","Some of them","","","","","","None","","None","None","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","True","","","","Fluoreszenzmikroskopie","PET","","Massenspektrometrie","Zellstudien","","","","","Radiomarkierung","","","","","","","","","","","","","","","","True","","","True","","","","True","","","","","","1 GB - 10 GB","","","","","","","","","","","","True","very interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"769","True","","","","","True","","","True","","","","","","","True","","True","True","","","","","","","","","","","","","","","","","10.0","","","","","True","","","","True","True","True","True","True","True","","","","","","","","","","","","","6888.24","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Chemical Biology","","","","","","","","Biology","","","","","","","","","","","Research Associate","","","Not familiar with FAIR","","True","","","","Anonymized","Excel (Spreadsheets)","Anonymized","","","True","","","","","","","True","","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","None","Some of them","None","None","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","","","","MRI","Optical Imaging ","Microscopy","Photometrie ","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","True","","","","","","100 MB - 1000 MB (1 GB)","","","","","","True","","","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"771","True","","","","","","","True","","","","","","","True","","","True","","True","","","","","","","","","","","","","","","","40.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","444.05","Completed the survey","Anonymized","Anonymized","Health","Chemistry","","","","","","","","","","","","","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","","True","","","","","","","","True","","True","True","","","","","","","True","","","","","","True","","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","None","","","","","","","","","None","","","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","True","","","","True","True","","","","","1 GB - 10 GB","","","","","","True","","","","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"772","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","454.61","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Research Associate","","","Not familiar with FAIR","","True","","","","R","Python","Anonymized","","True","","","True","True","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","Some of them","","Some of them","","","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","True","","","","True","","","pQCT","DEXA","Ultraschall","","","","","","","","","","Leitfrageninterview","Fragebögen","","","","","","","","","","","","","","True","True","","","","","True","True","","","","< 100 MB","","","True","True","True","True","","True","","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"773","True","","","","True","True","","","","True","","","","","True","","","True","","True","","","","","","","","","","","","","","","","90.0","","","","True","True","True","True","True","True","True","True","True","True","True","","","","","","","","","","","","","1187.47","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Cardiology","","","","","","","Principal Investigator","Principal Investigator","","Familiar with FAIR","","True","","","","Anonymized","Anonymized","Python","","True","","True","","True","","","","True","True","True","True","True","True","","","","True","","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","True","True","","All","Some of them","Some of them","Some of them","","","Some of them","Some of them","","All","Some of them","Some of them","Some of them","","","Some of them","Some of them","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","","","","","","Other","MRT","Ultraschall","PET","","","","","","","","","","","","","EKG","Blutdruck","Mikroneurographie","","","","","","","","","","","True","","","","","","True","","","","10 GB - 100 GB","","","","True","True","True","True","","","","","","moderately interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"775","True","","","","True","","","","True","True","","","","","True","True","","True","","","","","","","","","","","","","","","","","","20.0","","True","","True","True","True","True","","True","True","True","True","True","","","","","","","","","","","","","","906.4","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Biochemistry","","","","","","","","Biology","","","","","","","","","","","Principal Investigator","Principal Investigator","","Not familiar with FAIR","","True","True","","","Anonymized","Anonymized","ImageJ","","True","","","True","","","","","True","True","True","True","True","","","","True","True","True","","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","","","","True","","","True","True","True","True","","","","True","","Some of them","Some of them","Some of them","All","","","","Some of them","","Some of them","All","Some of them","All","","","","Some of them","","Mostly measured","Mostly reused","","","","","","","","","","","","","","","","True","True","True","","","","","Röntgendiffraktion","cryo-EM","Lichtmikroskopie","Massenspktrometrie","Plasmonresonanzspektroskopie","UV-vis Spektroskopie","AlphaFold","Phoenix","Rosetta","","","","","","","","","","","","","True","True","True","True","True","","","True","","True","True","True","","True","","","","10 GB - 100 GB","","","","True","","","","","","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"779","True","","","","","","","","True","","","Guidelines / policies of publishers","","","True","","","","True","","Insufficiently trained","","","","","","","","","","","","","","","50.0","","","","","","","","","","","","","","","","True","","","","","","","","","","","1281.56","Completed the survey","Anonymized","Anonymized","Health","Psychology","","","","","","","","","","","","","","","","","","","","","","","Research Associate","","","Familiar with FAIR","","True","","","","Anonymized","SPSS","Anonymized","","True","","True","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","Befragungen (Online-Umfragen, Fragebogenstudien, Interviews)","Verhaltensexperimente","Beobachtungen","","","","","","","","","","","","","","","True","","","True","","True","","","","< 100 MB","","True","True","True","True","True","","True","","True","","","very interested","moderately interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"780","","True","","","True","True","","","","True","","","","","","","","","True","","","","","","","","","","","","Zenodo","Gitlab / GitHub","","","","60.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","569.68","Completed the survey","Anonymized","Anonymized","Health","Psychology","","","","","","","","","","","","","","","","","","","","","","","PhD candidate","","","Familiar with FAIR","","True","True","","","R","MATLAB / Simulink","Anonymized","","","","True","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","True","","","","All","","All","All","All","All","","","","Some of them","","Some of them","Some of them","Some of them","Some of them","","","","Mostly simulated","Purely reused","","","","","","","","","","","","","","","","True","","","","","","","MRI","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","True","","","True","True","","True","","","","1 GB - 10 GB","","","","True","","True","","True","","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"782","","True","","","True","True","","","True","","","","","","","","","True","","","","","","","","","","","","","OSF","Zenodo","figshare","Institutional Repository","GIN","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","397.01","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","PhD candidate","","","Apply FAIR","True","True","True","","","Git","Anonymized","Python","","","","","True","","","","","","","True","True","","","","","","True","True","GitLab","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","BIDS","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","None","All","All","All","Some of them","None","","","","Mostly measured","Equally generated and reused","","","","","","","","","","","","","","","","True","","","","True","","","fMRI","MEG","eyetracking","","","","","","","","","","Statistical analyses","","","","","","","","","True","True","True","","True","","True","True","","True","True","","","True","True","","","100 GB - 1000 GB (1 TB)","","","","","","","True","","","","","","","very interested","","","","","1980-01-01 00:00:00"
+"783","","True","","","","True","","","True","True","","","","","True","","","","","True","Lack of time / personnel","","","","","","","","","","Zenodo","iReceptor","Gitlab / GitHub","","","90.0","","True","True","","","True","","True","True","True","","True","True","True","","","True","True","","","","","","","","","1544.52","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","Immunology","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Apply FAIR","","True","True","","","Database Management System","Python","","","True","","","True","","","","","","True","True","","True","","","","","","True","","","Yes","Yes","","","","","","","True","True","","True","","","","","","","","","","","","","","True","","","MIFlowCyt","True","True","True","True","","True","","True","","All","All","All","All","","All","","Some of them","","None","Some of them","All","All","","All","","Some of them","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","True","","","","","","","","","DNA sequencing","cytometry","","","","","","","","","","","","","","","","","True","","True","True","True","True","True","True","","","True","True","","True","True","","","10 GB - 100 GB","","","","","","","","","True","","","","moderately interested","moderately interested","not interested","very interested","not interested","moderately interested","1980-01-01 00:00:00"
+"784","True","True","","","","True","","","True","True","","","","","True","","","","","True","Lack of time / personnel","","","","","","","","","","Zenodo","iReceptor","Gitlab / GitHub","","","90.0","","True","True","","","True","","True","True","True","","True","True","","","","True","True","","","","","","","","","419.83","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","Immunology","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Apply FAIR","","True","True","","","Database Management System","Python","","","True","","","","","","","","","True","True","","True","","","","","True","True","","","Yes","Yes","","","","","","","True","True","","True","","","","","","","","","","","","","","True","","","MIFlowCyt","True","True","True","True","","True","","True","","All","All","All","All","","All","","All","","None","Some of them","All","All","","All","","Some of them","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","True","","","","","","","","","DNA sequencing ","Cytometry","","","","","","","","","","","","","","","","","True","","True","True","True","True","True","","","","True","True","","True","True","","","10 GB - 100 GB","","","","","","","","","True","","","","moderately interested","moderately interested","not interested","very interested","not interested","moderately interested","1980-01-01 00:00:00"
+"785","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1266.4","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Medical Informatics","","","","","","","Technical Staff","Technical Staff","","Not familiar with FAIR","","True","","","","SAS","Python","Anonymized","","","","","","","","True","","True","True","True","","","","","","","","True","","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","All","","All","","All","","","","","None","","None","","None","","","Purely measured","Purely reused","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","Befragung im Interview, selbstauszufüllende Fragebögen","Messungen am TeilnehmerIn, Messstationen","Beauftragen von Drfittinstituten","","","","","","","True","","","True","True","","True","","True","True","","True","","","","","","I don't know","","","","","","","","","True","","","","moderately interested","moderately interested","not interested","moderately interested","not interested","not interested","1980-01-01 00:00:00"
+"789","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","","","","","","","","","","","True","","","","","","","","","","","","","297.26","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","","True","","","","R","","","","","","True","True","","","","","True","True","True","","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","All","","","","","","Equally measured and simulated","Equally generated and reused","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","True","True","","","","","","1 GB - 10 GB","","","True","","True","True","True","","","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"790","","True","","","True","True","","","True","","","","","","True","","","True","","","","","","","","","","","","","","","","","","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","593.72","Completed the survey","Anonymized","Anonymized","Health","Psychology","","","","","","","","","","","","","","","","","","","","","","","PhD candidate","","","Apply FAIR","","True","","","","Python","Anonymized","Anonymized","True","","","","","","","","","True","True","True","True","","","","","True","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","Some of them","Some of them","Some of them","Some of them","Some of them","Some of them","","","","Purely measured","Equally generated and reused","","","","","","","","","","","","","","","","True","","","","True","","","MRI","","","","","","","","","","","","Questionnaires","Tests","","","","","","","","","True","True","","","","","True","","","True","True","","True","","","","100 GB - 1000 GB (1 TB)","","True","","","","","True","True","","","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"798","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","356.12","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Psychiatry","","","","","","","PhD candidate","","","Familiar with FAIR","","","True","","","Python","Anonymized","Anonymized","","","","","","","","","Relevant metadata is missing","","","","","","","","","","","True","Source code and scripts","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","All","All","","","","","","","Some of them","All","All","","","","","Purely measured","Purely reused","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","","","","1 GB - 10 GB","","","","","","","","True","","","","","moderately interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"807","","True","True","","","True","","","True","True","","","","","","True","","","True","","","","","","","","","","","","ENA","SRA","Zenodo","AIRR Data Commons (ADC)","","35.0","","True","","True","","True","","True","True","","","","True","True","","","","","","","","","","","","","607.27","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","Immunology","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Apply FAIR","True","True","True","","","R","Python","Database Management System","","True","","","True","","","","","","True","","","True","","","","True","","True","","","Yes","Yes","","","","","","True","True","True","","True","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","All","All","All","","","","","","None","None","All","All","","","","","","Mostly measured","Mostly reused","","","","","","","","","","","","","","","","","True","","","","","","","","","High-throughput sequencing","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","","True","","","True","True","","","1 GB - 10 GB","","","True","","","","","True","True","","","","very interested","moderately interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"808","","True","","","","","","","","","","Guidelines / policies of publishers","","","True","True","","","True","","","","","","","","","","","","Zenodo","","","","","5.0","","","","True","True","True","True","True","","True","True","True","","","","True","","","","","","","","","","","845.56","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Neurology","","","","","","","Principal Investigator","Principal Investigator","","Not familiar with FAIR","True","True","","","","Anonymized","MATLAB / Simulink","SPSS","","True","True","","","True","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","","","","","","","","","","None","None","None","","None","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","","","","True","","","MR-Tomographie","PET","","","","","","","","","","","Fragebögen, Scores","","","","","","","","","","True","","True","","","True","True","True","","True","True","","","","","","1 GB - 10 GB","","","True","","","","True","True","","True","","","moderately interested","moderately interested","","","moderately interested","moderately interested","1980-01-01 00:00:00"
+"817","True","","","","True","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","90.0","","","","","","","","","","","","","","","","","","","","","","","","","","","436.35","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Microbiology","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Familiar with FAIR","","True","","","","Office Software (unspecified)","GraphPad","Anonymized","","True","","","True","","","","","True","True","True","","","","","","True","","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","True","","","","True","True","","True","","","","","","True","","","","True","True","","","","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"825","True","","","","","True","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","25.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","554.35","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Infectious Disease Medicine","","","","","","","Principal Investigator","","","Not familiar with FAIR","","True","","","","Word","GraphPad","","","","","","True","","","","","True","","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","","Purely measured","Equally generated and reused","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","","","","True","","True","","","","1 GB - 10 GB","","","","True","","True","","True","","","","","very interested","moderately interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"830","","True","","","True","True","","True","","","","","","","","","","","","","","","","","","","","","","","Other","","","","","50.0","","","","","","","","","","","","","True","","","","","","","","","","","","","","434.72","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","","True","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","All","","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","True","","","","True","True","","True","True","","","1 GB - 10 GB","","","","True","True","","True","True","True","True","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"831","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","2545.06","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Infectious Disease Medicine","","","","","","","","","","Familiar with FAIR","","True","","","","Anonymized","Anonymized","Office Software (unspecified)","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","None","None","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","","","","True","","Other","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","True","","True","True","","True","","","","I don't know","","True","True","True","True","True","True","True","True","True","","","moderately interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"832","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","215.13","Completed the survey","Anonymized","Anonymized","Health","Mathematics","","","","","","","","","","","","","","","","","","","","","","","Research Associate","","","Familiar with FAIR","True","","","","","R","","","","","","","","","","True","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Mostly reused","","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","100 MB - 1000 MB (1 GB)","","","","True","","True","","True","True","True","","","moderately interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"833","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","70.0","","","","","","","","","","","","","","","","","","","","","","","","","","","387.29","Completed the survey","Anonymized","Anonymized","Health","","Epidemiology","","","","","","","","","","","","","","","","","","","","","","Research Associate","","","Familiar with FAIR","","","","","","Anonymized","R","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mostly measured","Mostly generated","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","digital long-term surveys","","","","","","","","","","","True","","True","True","","","True","","","True","","True","","","","I don't know","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"834","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","832.12","Completed the survey","Anonymized","Anonymized","Health","","Epidemiologie","","","","","","","","","","","","","","","","","","","","","","Principal Investigator","","","Familiar with FAIR","","True","","","","R","QGIS/GDAL","Office Software (unspecified)","","True","True","True","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","Some of them","Some of them","","","","Some of them","","","","None","None","","","","None","","","","Mostly measured","Purely reused","","","","","","","","","","","","","","","","","","","","True","","Other","","","","","","","","","","","","","Interview","Selbstausfüller","Probandenuntersuchungen","Landnutzungsmodelle ","","","","","","True","","","","True","","True","","True","","","True","","True","","","","10 GB - 100 GB","","True","","","","","True","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"835","True","True","","","True","True","","","True","","","","","","True","True","","","","True","","","","","","","","","","","","","","","","20.0","","True","","True","True","","","","True","","True","True","True","True","","","","","","","","","","","","","673.64","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Human Biology","","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Apply FAIR","","True","","","","FlowJo","R","Anonymized","","True","True","True","","True","","","","True","True","True","True","True","","","","True","True","","","","Yes","Yes","","","","","","","","","","True","","","","","","","","","","","","","","","","","","True","","True","True","True","True","","","","Some of them","","Some of them","Some of them","Some of them","Some of them","","","","","","","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","","","","microscopy","","","sequence data","adaptative immune receptor repertoire data","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","< 100 MB","","","True","","True","","True","True","","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"840","True","","","","True","","","","True","","","","","","","","","","","True","","","","","","","","","","","","","","","","50.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","1011.75","Completed the survey","Anonymized","Anonymized","Health","Chemistry","","","","","","","","","","","","","","","","","","","","","","","Postdoc","","","Not familiar with FAIR","","True","","","","Anonymized","Anonymized","Anonymized","","","","True","True","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","","","","","","","","","","Equally measured and simulated","Equally generated and reused","","","","","","","","","","","","","","","","","True","","True","","","","","","","HPLC","NMR","","","","","Extraction","","","","","","","","","","","","True","","","True","True","","","","","","","True","","True","","","","I don't know","","","","True","","True","True","True","True","","","","very interested","very interested","very interested","very interested","not interested","very interested","1980-01-01 00:00:00"
+"841","True","","","","True","","","True","","True","","","","","True","True","","","","","","","","","","","","","","","","","","","","30.0","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","1376.22","Completed the survey","Anonymized","Anonymized","Health","","","","","","","","","","","","","","","","","","","","","","","","Postdoc","","","Apply FAIR","","True","","","","R","QGIS/GDAL","Database Management System","","True","","True","","","","","Relevant metadata is missing","","","","","","","","","","","True","Digital text","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","","","","All","All","","","All","All","","","","None","None","","","None","None","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Land use regression model","Other regression-based hybrid model","","","","","","","","","","","","","","","","","","True","","","","","","","","","","True","Other","","1 GB - 10 GB","","","","","","","","","True","True","","","very interested","moderately interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"845","True","True","","","True","True","True","","","","","","True","","","","","","","","","","","","","","","","","","GEO","","","","","25.0","","","","True","True","True","","","True","True","True","True","True","True","","","","","","","","","","","","","1154.16","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Research Associate","Research Associate","","Not familiar with FAIR","","True","","","","R","Excel (Spreadsheets)","Word","","","","","","True","","","","True","","True","True","","","","","True","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","","","","","","None","None","Some of them","Some of them","Some of them","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","","True","","","","","","","","","Molekularbiologische Analysen","Sequenzierung","Bioinformatik","","","","","","","","","","","","","","","","True","","","True","True","True","True","True","True","","True","True","","True","","","","100 GB - 1000 GB (1 TB)","","","","","","","","True","","","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"847","True","True","","","True","True","","","True","","","","","","","","","True","True","True","","","","","","","","","","","GEO","ArrayExpress","","","","70.0","","True","True","True","True","True","","True","True","True","True","True","True","True","True","True","","","","","","","","","","","632.0","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Computational Biology","","","","","","","","Biology","","","","","","","","","","","Postdoc","","","Familiar with FAIR","","True","True","","","R","Command line (scripts)","Office Software (unspecified)","","True","","","True","","","","","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","True","","","All","All","All","All","All","","All","","","Some of them","Some of them","Some of them","Some of them","Some of them","","None","","","Mostly measured","Equally generated and reused","","","","","","","","","","","","","","","","True","True","","","True","","","Microscopy","","","RNA/DNA sequencing","Mass spectrometry proteomics","","","","","","","","Cohort analysis","","","","","","","","","True","","True","","True","True","True","","","","True","True","","True","True","","","10 GB - 100 GB","","","","True","True","","","","","","","","moderately interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"848","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","428.08","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Molecular Biology","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","","True","","","","ImageJ","GraphPad","Office Software (unspecified)","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","Some of them","Some of them","","","","","","None","","None","None","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","","","","Fluoreszenzmikroskopie","","","Affinitätschromatographie","Größenausschlusschromatographie","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","","","True","","","","","","","","True","True","True","","","","True","","","very interested","very interested","not interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"852","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","580.18","Completed the survey","Anonymized","Anonymized","Health","","Datenwissenschaften","","","","","","","","","","","","","","","","","","","","","","Postdoc","","","Familiar with FAIR","","True","","","","Python","Machine Learning Libraries","Python","","True","True","","","","","","","True","","True","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","","Purely measured","Purely reused","","","","","","","","","","","","","","","","True","","","","","","","Fluoreszenzmikroskopie","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","True","moderately interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"853","","True","","","True","True","True","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","15.0","","","True","True","True","","","","True","","True","","","","","","","","","","","","","","","","13818.4","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Oncology","","","","","","","Principal Investigator","","","Familiar with FAIR","","True","","","","FlowJo","Excel (Spreadsheets)","GraphPad","","","True","","True","","","","","","","","","","","","","","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","None","None","","","","","","Mostly measured","Purely generated","","","","","","","","","","","","","","","","True","True","","True","","","","FACS","Mikroskopie","","PCR","Western Blotting","HPLC-MS","","","","Synthese von Peptiden","","","","","","","","","","","","","","","True","True","True","","","True","","","True","True","","","","","100 MB - 1000 MB (1 GB)","","True","","True","True","True","","","","True","","","moderately interested","very interested","very interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"855","True","","","","True","True","","","","","","Good scientific practice","","","","True","","True","","","","","","","","","","","","","","","","","","25.0","","","","","","","","","","","","","True","","","","","","","","","","","","","","535.59","Completed the survey","Anonymized","Anonymized","Health","Physics","","","","","","","","","","","","","","","","","","","Medical","","","","Postdoc","","","Not familiar with FAIR","True","","","","","Anonymized","Python","Anonymized","","","True","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","Some of them","","","All","","","","","","None","","","None","","","","","","Mostly simulated","Purely generated","","","","","","","","","","","","","","","","True","","True","","","","","MRI","","","","","","Commercial electromagnetic solvers","","","","","","","","","","","","","","","","","True","","","","True","True","","True","True","True","True","","True","","","1 GB - 10 GB","","True","","","","","","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"856","True","True","True","","True","","","","True","True","","","","","","","","True","True","","","","","","","","","","","","","","","","","25.0","","","","","True","True","","True","","","True","True","True","True","True","True","","True","","","True","","","","","","362.88","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Computational Biology","","","","","","","","Biology","","","","","","","","","","","Student","","","Not familiar with FAIR","","True","True","","","R","Visual Studio","Anonymized","","","","","","True","","","","True","True","True","True","","","","","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","","","","","","","","","","","","None","None","None","None","None","None","None","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","True","","","","","","","","","NGS Sequencing","Methylation Array","RNA Sequencing","","","","","","","","","","","","","","","","True","","","","","","True","","","True","True","True","","True","True","","","> 1 TB","","","","","","","","True","","True","","","very interested","not interested","moderately interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"857","True","","","","True","True","True","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","60.0","","True","","True","True","True","True","True","","","","","","True","","","","","","","","","","","","","1447.89","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Postdoc","","","Not familiar with FAIR","True","True","","","","Anonymized","Excel (Spreadsheets)","Word","","True","","","","","","","Lack of technical solutions","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","All","Some of them","","Some of them","","","","","","","","","","","","","","","Mostly measured","Purely reused","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","statistical testing","survival analysis","","","","","","","","","","True","True","True","","True","","True","","","True","","True","","","","100 MB - 1000 MB (1 GB)","","","","True","","","","","","","","","very interested","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"867","","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","","454.09","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Cell Biology","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Apply FAIR","","True","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","","","","western blot, microscopy","","","mass spectrometry","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","","True","","","","","","10 GB - 100 GB","","","","True","True","","","","True","True","","","very interested","very interested","not interested","","moderately interested","moderately interested","1980-01-01 00:00:00"
+"873","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","547.08","Completed the survey","Anonymized","Anonymized","Health","","Medizin","","","","","","","","","","","","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","","True","","","","Anonymized","Excel (Spreadsheets)","GraphPad","","","","","","","","True","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","None","None","","","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","Sample synthesis and preparation","Mikroskopie","Fotografie","","Säulenchromatographie","","","","","","","","","","","","Western Blot","RNA-Sequencing","PCR","","","","True","","","","True","","","True","","","","True","","","","","","I don't know","","","","","","","","","True","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"874","True","","","","","True","","True","True","","","","","","True","True","","True","True","","","","","","","","","","","","","","","","","10.0","","","","","True","","","","True","True","True","True","","","","","","","","","","","","","","","323.49","Completed the survey","Anonymized","Anonymized","Health","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","","PhD candidate","","","Familiar with FAIR","True","True","","","","","","","","True","True","","True","True","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","Some of them","","","","","","None","","None","None","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","","","","","1 GB - 10 GB","","","True","True","True","","","","True","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"875","True","True","","","True","","","","True","True","","","","","True","True","True","True","True","","","","","","","","","","","","","","","","","20.0","","","","True","True","","","","True","True","True","True","True","","True","True","","","","","","","","","","","580.52","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Biomedical Science","","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Familiar with FAIR","True","True","","","","","","","","True","True","","True","True","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","None","None","None","None","None","","","","","Mostly measured","Equally generated and reused","","","","","","","","","","","","","","","","","True","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","1 GB - 10 GB","","True","True","","","True","","True","True","","","","moderately interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"876","","","","Other","True","","","","True","True","","","","","","","","","True","","","","","","","","","","","","","","","","","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","1233.42","Completed the survey","Anonymized","Anonymized","Health","","Medizininformatik","","","","","","","","","","","","","","","","","","","","","","PhD candidate","","","Apply FAIR","","True","","","","emacs","Anonymized","Anonymized","","True","","","","","","","","","","True","","","","","","","","True","GitLab","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","True","","All","All","All","All","All","","","All","","None","All","None","None","None","","","None","","Mostly measured","Purely reused","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","Sortierung durch statische, nicht-lernende Algorithmen (z.B. string matching mit regexp)","Manuelles Annotieren von Freitextdaten nach Ontologien, um diese maschinenlesbar zu machen","","","","","","","","","","","True","","True","True","","","","True","","","True","","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","RDM software & tools","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"878","True","True","","","True","","","True","True","","","","","","True","","","","True","","","","","","","","","","","","ENA","","","","","10.0","","True","True","True","True","True","True","True","True","True","True","","True","True","","","","","","","","","","","","","1189.49","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Ecology","","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Familiar with FAIR","True","","","","","R","Anonymized","Anonymized","","","","True","True","","","","","","","","","","","","","True","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","True","","","None","All","None","All","","","All","","","None","None","None","All","","","None","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","","","","Mikroskopie","MRT","","Spektroskopie","Chromatographie","","","","","","","","","","","","","","","","","True","","","","True","","True","True","True","","","True","True","True","","","","> 1 TB","","True","","True","True","True","","True","","True","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"881","True","True","","","","","","True","","True","","","","","True","True","","","True","","","","","","","","","","","","EGA","dbGAP","","","","10.0","","","","","True","","True","True","True","True","True","True","True","True","","","","","","","","","","","","","744.71","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Genetics","","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Familiar with FAIR","True","True","","","","Anonymized","Anonymized","R","","True","","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","All","All","All","","","","","","None","None","None","None","","","","","","Mostly measured","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Genotyping","Sequencing","","Polygenic risk scores","","","","","","Statistical techniques for association analysis","","","","","","","","","True","","","","True","True","True","","","True","","True","","True","True","","","100 MB - 1000 MB (1 GB)","","","","","True","","","True","","","","","very interested","moderately interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"886","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","","146.1","Completed the survey","Anonymized","Anonymized","Health","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"891","True","","","","True","True","True","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","20.0","","True","True","True","True","","","","True","","True","True","True","True","","","","","","","","","","","","","1338.29","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","Genomik","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Apply FAIR","","True","","","","Excel (Spreadsheets)","Anonymized","ImageJ","","","","True","True","","","","","True","True","True","True","","","","","True","True","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","None","Some of them","","","","","","Mostly measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","Other","Hochdurchsatz-Mikroskopie von fixierten Zellen","Mikroskopie von Geweben","Mikroskopie von Drosophila (in vivo)","Hochdurchsatz-Screening: Auslesen von Lumineszenz","RNA- und DNA-Sequenzierung","Molekularbiologische Methoden wie Western Blot, qPCR","","","","","","","","","","in vivo Screening von Drosophila (Auszählen / Beobachten von Drosophila)","CRISPR Screening (Sequenzierung und Datenauswertung)","Bioinformatische Datenanalyse von Hochdurchsatz-Experimenten","","","","","","True","True","True","","True","","","","True","True","","True","","","","10 GB - 100 GB","","","","True","True","True","","True","True","True","","","very interested","very interested","","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"893","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1142.7","Completed the survey","Anonymized","Anonymized","Health","","Epidemiology","","","","","","","","","","","","","","","","","","","","","","Postdoc","","","Familiar with FAIR","","True","","","","SAS","R","Office Software (unspecified)","","","","","","","","","","True","True","True","True","","","","","","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","","","All","All","All","All","All","All","All","","","None","None","None","None","None","None","None","","","Purely measured","Purely reused","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","Interviews and questionnaires","Examinations","Laboratory measurements","","","","","","","","","","","","","","","True","","","True","","","","","","","","","","True","True","True","True","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"896","True","True","","","True","","","","True","True","","","","","","","","True","","True","","","","","","","","","","","EGA","GEO","","","","60.0","","True","True","True","True","True","True","True","True","True","True","True","True","True","True","","","","","","","","","","","","714.56","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Pediatrics","","","","","","","Postdoc","","","Familiar with FAIR","","True","","","","R","Adobe Illustrator","Excel (Spreadsheets)","","True","","","","True","","","","True","","True","True","","","","","","","True","","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","","","","","","","","","","","","","","","","","","","Mostly measured","Mostly reused","","","","","","","","","","","","","","","","","True","","","","","","","","","Illumina EPIC DNA Methylation Array","NGS","Krankenhausinformationssysteme","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","100 GB - 1000 GB (1 TB)","","","True","True","True","","","True","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"897","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","494.88","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Oncology","","","","","","","Research Associate","","","Not familiar with FAIR","","True","","","","Machine Learning Libraries","PyTorch","Anonymized","","","","","","","","","Lack of technical solutions","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","All","All","All","","","","","","","Equally measured and simulated","Mostly reused","","","","","","","","","","","","","","","","True","","","","","","","MRT","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","","","10 GB - 100 GB","","","","","","","","","","","","True","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"900","True","","","","True","","","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","80.0","","","","True","True","","","","True","True","True","True","True","True","","","","","","","","","","","","","2485.29","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Molecular Biology","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","True","True","","","","R","Excel (Spreadsheets)","ImageJ","","","","","","","","True","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","None","Some of them","Some of them","","","","","","None","Some of them","Some of them","None","","","","","","Mostly measured","Equally generated and reused","","","","","","","","","","","","","","","","True","","","","True","","Other","Mikroskopie","","","","","","","","","","","","statistische Analyse von Messwerten","","","Sequenzierung & bioinformatische Auswertung","qPCR","Zellkultur","","","","","","","","True","","","","","","True","","","True","","","","I don't know","","True","True","True","True","","","","","","","","very interested","moderately interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"902","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","427.02","Completed the survey","Anonymized","Anonymized","Health","Physics","","","","","","","","","","","","","","","","","","","Medizinische Physik","","","","Postdoc","","","Not familiar with FAIR","","True","","","","Python","R","","","True","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Mostly measured","","","","","","","","","","","","","","","","","True","","","","","","","MRT","PET","CT","","","","","","","","","","","","","","","","","","","True","","","","","","","True","","","","","","","","","","10 GB - 100 GB","","","True","True","True","True","","","","","","","very interested","moderately interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"904","True","","","","","True","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","671.29","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Pharmacy","","","","","","","Research Associate","","","","True","True","","","","Anonymized","Excel (Spreadsheets)","Word","","True","","","","","","","","True","True","True","True","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","True","","","","PET","","","HPLC","GC","TLC","","","","Radiochemie","organische Chemie","Peptidsynthese","","","","","","","","","","","","","","True","","","True","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","","True","True","True","","","","","","","very interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"908","","True","","","","True","","True","True","","","","True","","","","","","","","","","","","","","","","","","ArrayExpress","ENA","Zenodo","","","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","757.1","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Principal Investigator","","","Apply FAIR","","True","True","","","R","Anonymized","Adobe Illustrator","","True","True","True","","","","","","","","","True","","True","","","","True","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","MIAME","True","True","True","","True","True","","","","All","All","All","","All","All","","","","Some of them","Some of them","Some of them","","Some of them","Some of them","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","","Microscopy","","","Genomic sequencing","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","True","","","True","True","Binary scientific formats","","10 GB - 100 GB","","True","","","","","","","","","","","not interested","moderately interested","not interested","moderately interested","not interested","not interested","1980-01-01 00:00:00"
+"910","","True","","","True","","","True","True","","","","","","True","","","","","","","","","","","","","","","","GEO","ENA","ProteomeXchange","","","40.0","","True","True","","","","","","True","","True","True","True","True","","","","","","","","","","","","","641.71","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Bioinformatics","","","","","","","","Biology","","","","","","","","","","","Postdoc","","","Not familiar with FAIR","","True","True","","","R","Office Software (unspecified)","Python","","True","True","True","","","","","","True","True","True","True","True","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","None","","Some of them","Some of them","","","","","","Mostly simulated","Mostly reused","","","","","","","","","","","","","","","","","True","","","","","","","","","Next Generation Sequencing","Massenspektrometrie","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","","","","10 GB - 100 GB","","","","True","True","","","","","","","","very interested","very interested","moderately interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"911","True","True","","","","True","","True","True","","","","","","True","True","","","","","Competition","","","","","","","","","","","","","","","100.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","546.7","Completed the survey","Anonymized","Anonymized","Health","","Biomedical Engineering","","","","","","","","","","","","","","","","","","","","","","Principal Investigator","","","Familiar with FAIR","","True","","","","Python","Git","LaTeX","","True","True","True","True","True","","","Relevant metadata is missing","True","True","True","","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","Some of them","Some of them","Some of them","All","Some of them","Some of them","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","True","","","Reflectance imaging","Fluorescence imaging","Multispectral fluorescence","Optical absorbance spectroscopy","Fluoresence spectroscopy","Excitation spectroscopy","","","","","","","User experience surveys","","","","","","","","","","True","True","","True","","","True","","","True","True","","True","","","","100 MB - 1000 MB (1 GB)","","True","","","","True","","True","","True","","","moderately interested","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"914","True","","","","True","","","True","True","","","","","","","","","","True","","Legal / ethical concerns","","","","","","","","","","","","","","","20.0","","","","","","","","","","","","","","","","","","","","","","","","","","","848.39","Completed the survey","Anonymized","Anonymized","Health","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","","Principal Investigator","","","Familiar with FAIR","","True","","","","Python","Anonymized","MITK","","True","True","","True","","","","","","True","True","","","","","","","True","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","DICOM","True","True","True","True","","True","","","","Some of them","Some of them","Some of them","Some of them","","Some of them","","","","Some of them","Some of them","Some of them","Some of them","","None","","","","Mostly measured","Mostly reused","","","","","","","","","","","","","","","","True","","True","","","","","MRI","CT","US","","","","Monte Carlo","","","","","","","","","","","","","","","True","True","True","","","","","True","","True","True","","","True","True","","","100 GB - 1000 GB (1 TB)","","","True","","True","","","","True","True","","","moderately interested","moderately interested","very interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"916","True","True","","","True","True","","","","True","","","","","True","True","","","","","Lack of time / personnel","","","","","","","","","","Institutional Repository","","","","","40.0","","True","True","","","","","","","","","","True","True","","","True","True","","","","","","","","","496.39","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Radiobiology","","","","","","","Postdoc","","","Familiar with FAIR","","True","True","","","Fiji","Excel (Spreadsheets)","MITK","","True","True","True","True","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","True","","Some of them","","","All","","All","","All","","None","","","None","","None","","Some of them","","Mostly measured","Purely generated","","","","","","","","","","","","","","","","True","","","","","","","Mikroskopie","MRT","CT","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","True","","True","","","","10 GB - 100 GB","","True","True","True","True","True","True","","","True","","","very interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"917","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","659.93","Completed the survey","Anonymized","Anonymized","Health","","","","","","","","","","","","","","","","","","","","","","","","","","","Familiar with FAIR","","True","True","","","","","","True","","","","","","","","","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","Some of them","All","All","Some of them","","","","","None","None","None","None","None","","","","","Mostly generated","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","True","","True","True","","","True","","True","","","","","","","True","True","","True","","True","","True","","","very interested","moderately interested","","","moderately interested","very interested","1980-01-01 00:00:00"
+"918","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","383.86","Completed the survey","Anonymized","Anonymized","Health","","Computer Science","","","","","","","","","","","","","","","","","","","","","","PhD candidate","","","Familiar with FAIR","True","True","True","","","MITK","Python","","True","","True","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","Some of them","","All","","","","","","Some of them","All","","Some of them","","","","","","Purely measured","Purely reused","","","","","","","","","","","","","","","","True","","","","","","","CT","MRT","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","","","","","100 GB - 1000 GB (1 TB)","","","True","","","True","True","","True","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"922","True","","","","","","","","True","","","","","","True","True","True","True","","True","","","","","","","","","","","","","","","","30.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","395.74","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Oncology","","","","","","","PhD candidate","","","Familiar with FAIR","True","True","","","","Excel (Spreadsheets)","GraphPad","FlowJo","","True","True","True","","","","","","","","","","","","","","True","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","All","None","","","","","","","None","None","None","","","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","True","","","","","","","","","FACS","qPCR","Deep sequencing","","","","","","","","","","","","","","","","True","","","","True","","","","","True","","True","","True","","","","I don't know","","True","True","True","","","True","","","","","","very interested","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"924","True","","","","","True","","True","","True","","","True","","","","","","","","","","","","","","","","","","","","","","","40.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","421.93","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Molecular Biology","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","True","True","","","","Anonymized","Anonymized","Excel (Spreadsheets)","","","","True","","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","","Mostly measured","Mostly generated","","","","","","","","","","","","","","","","","True","","True","","","","","","","Mass spectrometry","","","","","","Cloning","","","","","","","","","","","","","","","","True","","True","True","True","","","True","","True","","","","1 GB - 10 GB","","True","","True","","True","True","","True","True","","","very interested","very interested","very interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"927","True","","","","","True","","","True","True","","","","","True","True","","","","True","","","","","","","","","","","","","","","","5.0","","","","","","True","","","","","","","","","","","","","","","","","","","","","416.66","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Structural Biology","","","","","","","","Biology","","","","","","","","","","","Technical Staff","Technical Staff","","Not familiar with FAIR","True","True","","","","Anonymized","Excel (Spreadsheets)","Fiji","","","True","True","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","True","","","None","Some of them","","","","","All","","","","","","","","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","","confokale Mikroskopie","","","Spektroskopie","Chromatographie","","","","","","","","","","","","","","","","","True","True","","","True","True","True","","","","True","True","","True","","","","> 1 TB","","","","True","","True","","","True","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"930","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1635.11","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Neurology","","","","","","","Postdoc","","","Not familiar with FAIR","","True","","","","SPSS","GraphPad","","","True","True","","True","True","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","","","","","","","","","","","","None","","","","","None","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","True","","","","","","","","","Immunoassays","Proteomics","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","< 100 MB","","","","True","True","True","","True","","True","Financial resources for RDM","","not interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"931","True","True","","","True","True","","True","","","","","","","","","","True","","","","","","","","","","","","","BMRB","","","","","80.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","734.97","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Biophysics","","","","","","","","Biology","","","","","","","","","","","Postdoc","","","Not familiar with FAIR","True","True","","","","Excel (Spreadsheets)","IGOR","Anonymized","","","","","","","","True","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","All","None","","","","","","Mostly measured","Purely generated","","","","","","","","","","","","","","","","","True","","","","","","","","","Plate reader","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","< 100 MB","","True","True","","","","","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"932","True","True","","","True","","","","True","","","Guidelines / policies of publishers","","","","","","True","True","","","","","","","","","","","","GEO","figshare","Zenodo","","","95.0","","True","","True","True","True","","","True","True","True","","True","True","True","","","","","","","","","","","","603.4","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Bioinformatics","","","","","","","","Biology","","","","","","","","","","","Postdoc","","","Familiar with FAIR","","True","True","","","Python","Office Software (unspecified)","Adobe Illustrator","","","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","Some of them","","","","","None","All","Some of them","None","None","","","","","Mostly measured","Mostly reused","","","","","","","","","","","","","","","","","True","True","","","","","","","","single-cell RNA-sequencing","cell sorting","","custom Python scripts","","","","","","","","","","","","","","","True","","","","","","","","","","True","True","","","True","","","10 GB - 100 GB","","","True","","True","True","","","","","","","very interested","very interested","not interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"933","True","True","","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","25.0","","","","True","True","","","","","True","True","","","","","","","","","","","","","","","","420.82","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Cell Biology","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","","True","","","","Fiji","Excel (Spreadsheets)","Anonymized","True","","","","","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","None","All","","","","","","All","","All","All","","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","","Fluorescence Microscopy","Light microscopy","Live cell microscopy","Mass spectrometry","RNAseq","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","True","","","","","> 1 TB","","","","","","","","","","","","True","moderately interested","moderately interested","not interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"938","True","True","","","True","","","True","True","","","","","","","","","True","","True","","","","","","","","","","","","","","","","30.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","504.2","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","Neurobiologie","","","","","","","Biology","","","","","","","","","","","","","","Apply FAIR","","True","True","","","","","","","","","True","True","","","","","True","True","True","True","True","","","","","True","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","","","","Some of them","","Some of them","","All","Some of them","","","","Some of them","","Some of them","","Some of them","","","","","Mostly measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","True","","","True","","","> 1 TB","","True","","True","","True","","True","","True","","","moderately interested","very interested","very interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"939","True","","","","True","","True","True","","","","","True","","","","","","","","","","","","","","","","","","","","","","","40.0","","","","","","True","True","True","True","True","True","True","","","","","","","","","","","","","","","587.91","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Technical Staff","Technical Staff","","Not familiar with FAIR","","True","True","","","Anonymized","Anonymized","Anonymized","","","","True","","","","True","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","Some of them","","","","","","","None","None","None","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","Library preparation","DNA sequencing","qPCR","","","","","","","","","","True","","","","True","","","","","","","True","","","","","","> 1 TB","","","","","","True","True","","True","","","","very interested","very interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"940","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","","134.39","Completed the survey","Anonymized","Anonymized","Health","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"944","","True","","","","","","True","","","","","","True","True","True","","True","True","True","","","","","","","","","","","EudraCT","ClinicalTrials.gov","","","","5.0","","","","True","True","","True","True","True","True","True","","","True","","","","","","","","","","","","","861.9","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Neurology","","","","","","","Principal Investigator","","","Familiar with FAIR","","True","","","","Excel (Spreadsheets)","GraphPad","R","","True","True","True","","True","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","Some of them","Some of them","Some of them","","","","","","None","Some of them","Some of them","Some of them","","","","","","Mostly measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","True","","","MRT","PET","","ELISA","Mass Spectrometry","","","","","","","","Clinician Ratings","Patient/Caregiver Questionnairs","Neuropsychology","","","","","","","","True","","","True","True","","True","True","","True","True","","","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","True","True","True","True","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"946","","True","","","","","","True","True","","","","","","True","","","True","","","","","","","","","","","","","Gitlab / GitHub","","","","","50.0","","","","","","","","","","","","","","","","","","","","","","","","","","","860.4","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Physiology","","","","","","","","Biology","","","","","","","","","","","Postdoc","","","Not familiar with FAIR","True","True","","","","Python","MATLAB / Simulink","Anonymized","","","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","All","Some of them","","","Some of them","","","","","","","","","","","","","","Purely measured","Mostly reused","","","","","","","","","","","","","","","","True","","","","","","Recordings","electron microscopy","confocal microscopy","","","","","","","","","","","","","","in vivo recordings (for example with silicon probes)","patch clamp and field recording in vitro","","","","","","","","","True","","","","","","True","","","True","","","","1 GB - 10 GB","","","","","","","","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"947","True","","","","","True","","True","True","","","","","","True","True","","","True","","","","","","","","","","","","","","","","","15.0","","","","","True","","True","True","","True","True","","True","True","","","","","","","","","","","","","387.91","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Research Associate","","","Apply FAIR","","True","","","","Anonymized","R","Anonymized","","","True","","","True","","","","True","","True","True","","","","","","True","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","Some of them","Some of them","Some of them","","","","","Mostly measured","Mostly reused","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","Regressionsmodelle","","","","","","LimeSurvey","","","","","","","","","","","","True","","","","","True","","True","","","","","","","1 GB - 10 GB","","True","","True","True","","","True","True","","","","moderately interested","very interested","not interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"953","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","318.09","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Gynecology","","","","","","","Postdoc","","","Familiar with FAIR","True","","","","","Office Software (unspecified)","","","","","","","True","True","","","","True","","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","Standardized interviews","","","","","","","","","","","","","","","True","","","","","","","","","","","< 100 MB","","","","","","","","True","","","","","not interested","moderately interested","not interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"954","True","","","","True","True","","True","","","","","","","","True","","True","","True","","","","","","","","","","","","","","","","15.0","True","","","","","","","","","","","","","","","","","","","","","","","","","","451.43","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Physiology","","","","","","","","Biology","","","","","","","","","","","Postdoc","","","Familiar with FAIR","","True","","","","Python","MATLAB / Simulink","Fiji","","True","True","True","","","","","","","","True","","True","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","All","All","","","","","Mostly measured","","","","","","","","","","","","","","","","","True","","","","","","","2P calcium imaging","behaviour","1P calcium imaging","","","","","","","","","","","","","","","","","","","","True","","","True","","","True","","","True","True","","True","True","","","> 1 TB","","","","True","True","","","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","not interested","very interested","1980-01-01 00:00:00"
+"955","True","","","","","","","","True","","","Guidelines / policies of publishers","","True","True","","","True","","True","","","","","","","","","","","","","","","","5.0","","","","True","True","","","","True","True","True","True","True","True","","","","","","","","","","","","","1209.13","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Physiology","","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Apply FAIR","","True","","","","Anonymized","Python","MATLAB / Simulink","","True","","True","True","","","","","True","True","","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","All","All","","","","","","None","None","Some of them","None","","","","","","Mostly measured","Purely generated","","","","","","","","","","","","","","","","True","","","","","","","Multiphotonen Mikroskopie","Elektrophysiologie","Super-resolution Microscopy","","","","","","","","","","","","","","","","","","","True","True","","","True","","","True","","","True","","","True","","","","100 GB - 1000 GB (1 TB)","","True","True","True","","True","True","","","True","","","moderately interested","very interested","moderately interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"961","","True","","","True","","","True","True","","","","","","True","","","True","","","","","","","","","","","","","GEO","","","","","90.0","","","True","True","True","","","","True","True","True","True","True","True","","","","","","","","","","","","","682.37","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Systems Biology","","","","","","","","Biology","","","","","","","","","","","Postdoc","","","Not familiar with FAIR","","True","True","","","R","Python","Anonymized","","True","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","All","All","","","","","None","None","None","Some of them","All","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","","True","","","","","","","","","Sequencing","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","","","> 1 TB","","True","","","True","","","","","","","","moderately interested","moderately interested","not interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"963","True","","","","","","","True","","","","","","","","","","True","","","","","","","","","","","","","","","","","","50.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","353.76","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Hematology","","","","","","","PhD candidate","","","Apply FAIR","","True","","","","","","","","","","True","True","","","","","","","","","","","","","","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","","","","","","","","","","Mostly measured","Purely generated","","","","","","","","","","","","","","","","","True","","","","","","","","","scATAC-seq","RNA-seq ","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","","True","","","","I don't know","","","True","True","True","","True","True","","True","","","very interested","very interested","very interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"964","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","541.02","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","PhD candidate","","","Familiar with FAIR","True","True","True","","","Adobe Illustrator","GraphPad","R","","","","True","","True","","","","True","True","True","True","","","","","","True","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","True","","All","All","All","All","","","","All","","Some of them","All","All","All","","","","All","","Mostly measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","","microscopy","","","","Size exclussion chromatography","Sequencing ","","","","","","","","","","","","","","","","True","","","","True","True","True","","","","True","True","","","True","","","100 GB - 1000 GB (1 TB)","","True","","True","","","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"965","","True","","","True","True","","","True","","","","","","","","","True","","","","","","","","","","","","","","","","","","100.0","","True","","","True","","","","","","","True","True","True","","","","True","","","","True","","","","","513.7","Completed the survey","Anonymized","Anonymized","Health","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","","Research Associate","","","Familiar with FAIR","","True","","","","Fiji","Anonymized","Anonymized","","True","","","","","","","","True","","True","","True","","","","","","","GitLab","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","True","","All","None","Some of them","Some of them","","All","","All","","Some of them","Some of them","Some of them","Some of them","","Some of them","","Some of them","","Purely simulated","Mostly reused","","","","","","","","","","","","","","","","True","","","","","","","microscopy","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","True","True","True","","True","True","True","","True","True","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","True","moderately interested","moderately interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"968","True","True","","","True","","","True","","True","","","True","","","","","","","","","","","","","","","","","","GEO","4DN","","","","90.0","","","","","","True","","","","","","","True","True","True","True","","","","","","","","","","","665.73","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Systems Biology","","","","","","","","Biology","","","","","","","","","","","Research Associate","","","Familiar with FAIR","","True","","","","","","","True","","","","","","","","","True","","True","True","","True","","","True","True","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","All","","All","All","","","","","","All","","Some of them","Some of them","","","","","Mostly measured","Mostly generated","","","","","","","","","","","","","","","","True","","","True","","","","Confocal microscopy","Flurescent microscopy","","","","","","","","Illumina sequencing","PCR","","","","","","","","","","","True","","","","","","","","","","True","True","","True","","","","1 GB - 10 GB","","","True","","","","","","","True","","","very interested","very interested","","moderately interested","not interested","moderately interested","1980-01-01 00:00:00"
+"971","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","24949.6","Completed the survey","Anonymized","Anonymized","Health","","Data management","","","","","","","","","","","","","","","","","","","","","","Research Associate","","","Familiar with FAIR","","","","True","","Visual Studio","MITK","Anonymized","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equally measured and simulated","Purely reused","","","","","","","","","","","","","","","","True","True","True","","","","","MRI","CT","X-ray","Single-cell sequencing","Whole genome sequencing","","Pytorch models","Custom deep learning models","","","","","","","","","","","","","","True","","True","True","True","True","True","True","","True","True","True","","True","","","","I don't know","","True","True","","","True","True","True","","","","","moderately interested","very interested","very interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"972","","","True","","","True","","","True","","","","","","","","","","","True","","","","","","","","","","","","","","","","50.0","","","","True","True","","","","","","","","","","","","","","","","","","","","","","349.62","Completed the survey","Anonymized","Anonymized","Health","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","","Research Associate","","","","True","","","","","MATLAB / Simulink","Git","","","","","","","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","All","","Some of them","","Some of them","","","","","Some of them","","Some of them","","Some of them","","","","","Equally measured and simulated","Mostly reused","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","True","","","","","","1 GB - 10 GB","","","","","","","","","True","","","","moderately interested","very interested","very interested","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"973","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","464.94","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Medicine","","","","Neurology","","","","","","","Postdoc","","","Familiar with FAIR","","True","","","","MATLAB / Simulink","SPSS","Python","","True","","True","","","","True","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","Some of them","Some of them","All","","","","","None","","None","None","None","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","True","","","","","","","PET","MRT","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","True","","","","","","1 GB - 10 GB","","","","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"976","True","True","True","","True","","","True","True","","","","","","True","","","True","","","","","","","","","","","","","PUBLISSO","","Gitlab / GitHub","","","90.0","","","","","","True","","True","","","","","True","True","","","","","","","","","","","","","6080.4","Completed the survey","Anonymized","Anonymized","Health","","Bioinformatics","","","","","","","","","","","","","","","","","","","","","","PhD candidate","","","Apply FAIR","","True","","","","Anonymized","Command line (scripts)","Anonymized","","True","True","","True","","","","","","True","True","","","True","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","Some of them","","All","","","","","","Equally measured and simulated","Mostly reused","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Metagenomic read simulation","","","","","","","","","","","","","","","True","","True","","","","True","","","","True","True","","True","","","","100 GB - 1000 GB (1 TB)","","True","","","True","","","True","","","","","moderately interested","not interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"983","True","","","","True","True","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","10.0","","","","","True","True","","","True","True","True","True","","","","","","","","","","","","","","","664.9","Completed the survey","Anonymized","Anonymized","Health","Chemistry","","","","","","","","","","","","","","","","","","","","","","","Postdoc","","","Not familiar with FAIR","True","True","","","","Office Software (unspecified)","Anonymized","Anonymized","","True","","","True","","","","Lack of technical knowledge","True","True","True","True","True","","","Provide research data context","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","None","","","","","","","Some of them","Some of them","All","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","True","","","","MRT","CT","Photoakkustik","NMR","MS","HPLC","","","","Organische Chemie","Anorganische Chemie","","","","","","","","","","","","","","","True","True","","True","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"984","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","520.35","Completed the survey","Anonymized","Anonymized","Health","Physics","","","","","","","","","","","","","","","","","","","medical physics","","","","Principal Investigator","","","Familiar with FAIR","","True","","","","","","","","True","","","","True","","","","","","","","","","","","True","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","Some of them","","Some of them","Some of them","Some of them","","","","","None","","None","None","None","","","","","Equally measured and simulated","Mostly generated","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","","","","","","","","","","","","","","","","very interested","moderately interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"987","True","","","","True","True","True","","","","","","","","","True","True","","","True","","","","","","","","","","","","","","","","25.0","","","","","","","","True","","","","","","True","","True","","","","","","","","","","","837.88","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Biomedical Science","","","","","","","","Biology","","","","","","","","","","","Principal Investigator","","","Familiar with FAIR","True","","","","","Anonymized","Anonymized","Anonymized","","True","True","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","All","Some of them","","","","","","None","","Some of them","Some of them","","","","","Purely measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","","Immunfluorescence microscopy","X-ray","histo-morphology","gene expression","genotyping","proteomics, mass-spectroscopy","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","","True","","True","","Plain text","","100 MB - 1000 MB (1 GB)","","","True","True","","True","","","","","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"988","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","435.22","Completed the survey","Anonymized","Anonymized","Health","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","","True","True","","","","","","","","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Purely reused","","","","","","","","","","","","","","","","True","","","","","","","MRI","X-ray","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","True","","","True","","Plain text","","1 GB - 10 GB","","","","","","","","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"989","True","True","","","True","True","","","True","","","","","","","True","True","","","","","","","","","","","","","","GEO","Gitlab / GitHub","UCSC Genome Browser","","","80.0","","True","","","True","True","","","True","","True","True","True","True","True","","","","","","","","","","","","2259.29","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Bioinformatics","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Not familiar with FAIR","","True","","","","R","Adobe Illustrator","","","","True","","","","","","","True","","True","True","","","","","","True","","Digital system","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","Others","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","Some of them","Some of them","None","None","","","","","Mostly measured","Purely reused","","","","","","","","","","","","","","","","True","True","True","","","","","Microscopy","","","Next generation sequencing","","","Polymer modeling","","","","","","","","","","","","","","","True","","True","","True","True","True","","","","True","True","","","","","","100 GB - 1000 GB (1 TB)","","","","","","","","True","","","","","moderately interested","moderately interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"992","","True","","","True","True","","True","","","","","","","True","","","","","","","","","","","","","","","","IMPC","GenTaR","","","","75.0","","True","True","True","True","True","True","True","True","True","True","True","","","True","","","","","","","","","","","","1883.74","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Postdoc","","","Familiar with FAIR","True","True","True","","","Database Management System","Excel (Spreadsheets)","Python","","","True","True","True","","","","","True","True","True","True","True","True","","","True","True","","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","Some of them","","","","","","Some of them","Some of them","Some of them","None","","","","","Mostly measured","Mostly reused","","","","","","","","","","","","","","","","True","True","","","","","Other","µCT","OCT","DXA","Chemische Analysen von Blutproben","","","","","","","","","","","","EKG","Histopathologie","Verhaltens- und Neurologische Tests","","","","True","True","","True","True","True","True","True","","True","True","True","True","True","","","","10 GB - 100 GB","","","True","True","True","True","True","","True","True","","","moderately interested","very interested","very interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"993","True","True","","","True","True","","","","True","","","","","","","","True","","True","","","","","","","","","","","OpenOrganelle","","","","","70.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","392.28","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Cell Biology","","","","","","","","Biology","","","","","","","","","","","Postdoc","","","Familiar with FAIR","True","","","","","Fiji","Anonymized","Anonymized","","True","","True","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","","","","","","","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","","","","","","","Transmissionselektronenmikroskopie","Focused ion beam electron microscopy","Fluoreszenzmikroskopie","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","","True","","","100 GB - 1000 GB (1 TB)","","True","True","True","True","True","True","","True","","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"994","True","","","","True","","","","True","True","","","","","","","","","","","Insufficiently trained","","","","","","","","","","","","","","","20.0","","","","True","True","","","","True","True","True","True","True","True","","","","","","","","","","","","","543.25","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","Radiobiology","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","Familiar with FAIR","True","True","","","","Excel (Spreadsheets)","GraphPad","Fiji","","","","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","True","","","All","","Some of them","Some of them","","","All","","","None","","Some of them","None","","","None","","","Mostly measured","Mostly generated","","","","","","","","","","","","","","","","True","True","","","","","","phase-contrast","Immunofluorescence","","qPCR","viability assays","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","","","","","","10 GB - 100 GB","","","","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"997","True","True","","","True","True","","","","True","","","","","","","True","True","","True","","","","","","","","","","","Institutional Repository","Institutional Repository","Institutional Repository","","","25.0","","","","","","","True","True","True","True","","True","","","True","True","","","","","","","","","","","3490.49","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","","True","True","","","ROOT framework","Database Management System","LabVIEW","","","","","True","","","","","True","True","True","True","","","","","","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","All","All","","All","","","","","","Some of them","Some of them","","Some of them","","","","","Equally measured and simulated","Mostly generated","Yes","","100.0","","","","","","","","","","True","","","","True","True","","","","","","","","calorimeters ","spectrometers","counters","transport models","","","","","","","","","","","","","","","","","True","True","True","True","True","","","True","True","","True","True","True","","","100 GB - 1000 GB (1 TB)","","","","","","True","","","","True","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"998","True","True","","","True","","","","True","True","","","","","True","","","True","","","","","","","","","","","","","Zenodo","HEASARC","","","","25.0","","True","True","True","","True","","True","True","","","","True","","True","","True","","","","","","","","","","568.88","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Astrophysics and Astronomy","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","","True","","","Anonymized","ROOT framework","Anonymized","","True","","True","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","Some of them","Some of them","All","Some of them","","","","Some of them","Some of them","Some of them","Some of them","Some of them","None","","","","Equally measured and simulated","Equally generated and reused","Yes","","95.0","","","","","","","","","","","","Anonymized","","True","True","","","","","","","","Likelihood methods applying spatial, temporal, and spectral models","Machine learning methods for signal/background separation","Machine learning methods for regression","MC Event Generators for instrument development","Toy MC for evaluation of statistical uncertainties for time series and spectral analysis","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","> 1 TB","","True","","","","","","True","","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1000","True","True","","","True","","","","True","True","","","","","True","True","","True","","","","","","","","","","","","","Institutional Repository","","","","","25.0","","True","","","","True","True","True","True","True","True","","","","","","","","","","","","","","","","1654.76","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Research Associate","","No","Apply FAIR","","True","True","","","Anonymized","Anonymized","MATLAB / Simulink","","True","","","True","","","","","True","","True","","","","","","","","True","Source code and scripts","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","No standard","True","True","True","True","True","","","","","All","All","All","All","All","","","","","Some of them","All","All","Some of them","All","","","","","Mostly simulated","","Yes","","80.0","","","","","","","","","","","","Anonymized","","","True","","","","","","","","","","","Markov Chain Monte Carlo","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Binary non-scientific formats","","> 1 TB","","","True","True","True","True","True","","True","True","","","very interested","very interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1001","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","528.87","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","","","","","","","","","","True","","True","True","True","True","True","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","All","All","","","","","","None","Some of them","None","Some of them","","","","","","Purely measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","True","","","True","","","","Mikroskopie","REM","Weißlichtchromatigrafie","","","","","","","PVD","","","","","","","","","","","","","","","True","True","","","True","","","","","","","","","","< 100 MB","","","","","","","","","","","","True","moderately interested","not interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1002","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10.0","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","1018.9","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","","","","Not familiar with FAIR","True","True","","","","C/C++","ROOT framework","LaTeX","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","True","","","All","All","","","All","","Some of them","","","","","","","","","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Quantenmolekulardynamik","Analytische Berechnungen","","","","","","","","","","","","","","True","","True","","True","","True","","","True","True","","","","","","","100 MB - 1000 MB (1 GB)","","True","","True","","True","","True","","True","","","very interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"1004","True","","","","True","","","True","True","","","","","","True","True","","True","","True","","","","","","","","","","","","","","","","10.0","","","","","","","","","True","True","","","","","","","","","","","","","","","","","405.18","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","7 to 10 years","Postdoc","","Yes","Familiar with FAIR","True","True","","","","","","","","True","True","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","None","Some of them","Some of them","","","","","","","None","Some of them","Some of them","","","","","","","Mostly measured","Purely generated","Yes","","90.0","","","","","","","","","","","","Anonymized","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","True","","","","100 MB - 1000 MB (1 GB)","","","","","True","","","","","","","","not interested","moderately interested","moderately interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"1008","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","105.7","Completed the survey","Anonymized","Anonymized","Matter","Psychology","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"1009","True","","","","","True","","True","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","15.0","","","","","","","","","","","True","","","","","","","","","","","","","","","","476.56","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","1 to 3 years","PhD candidate","","Not sure","Not familiar with FAIR","","True","","","","Anonymized","Anonymized","Anonymized","","True","True","","","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","None","","Some of them","","","","","","","Mostly simulated","Purely generated","Yes","","15.0","","","","","True","","","True","","","","","","","True","","","","","","","","","","","Particle-In-Cell (PIC)","Magnetohydrodynamics (MHD)","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","> 1 TB","","","","","","","","True","True","","","","moderately interested","not interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1013","","True","","","True","","","True","True","","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","","","","","40.0","","True","","True","True","","","","","","","","","","","","","","","","","","","","","","2004.01","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","True","True","","","OriginLab","MATLAB / Simulink","Python","","","","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","Some of them","","All","","Some of them","","","","","None","","Some of them","","None","","","","","Mostly measured","Mostly generated","Yes","","15.0","","","","","True","","","","","","","","","True","True","","","","","","","","optical pump-probe spectroscopy","time-domain THz spectroscopy","FTIR spectroscopy and Raman","Matlab","Comsol","NextNano","","","","","","","","","","","","","True","","","","True","","","","","True","True","","","","","","","< 100 MB","","","","","","True","","","True","True","","","moderately interested","very interested","very interested","moderately interested","not interested","not interested","1980-01-01 00:00:00"
+"1015","","","","In repository","","","","True","True","True","","","","True","True","True","True","True","True","True","","","","","","","","","","","","","","","","15.0","","True","","","","True","","True","","","","","","","True","True","","","","","","","","","","","1754.54","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","4 to 6 years","Postdoc","","Yes","Familiar with FAIR","True","True","True","","","LabVIEW","Anonymized","","","True","True","True","True","True","True","True","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","None","Some of them","Some of them","Some of them","None","","","","","Mostly measured","Mostly generated","Not sure","","70.0","","","","","True","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","","True","","","True","","","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"1017","True","True","","","True","","","","True","True","","","","","True","True","True","","","","Other","","","","","","","","","","Institutional Repository","","","","","30.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","850.89","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Research Associate","","Yes","Apply FAIR","","True","True","","","FLUKA","ROOT framework","","","True","True","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","True","","Some of them","","Some of them","Some of them","","","","Some of them","","None","","None","Some of them","","","","None","","Mostly simulated","Equally generated and reused","Yes","","100.0","","","","","True","","","","","","","Anonymized","","","True","","","","Analytical methods","","","","","","","Monte-Carlo","","","","","","","","","Typische DAQ-Systeme (NIM, Digitizer, etc.)","","","","","","True","","","","","","True","","","True","True","","","","True","Other","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1018","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","771.77","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Materialanalyse","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","Anonymized","Anonymized","Anonymized","","True","","","True","","","","","True","True","True","","","","","","True","","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","Some of them","","","Some of them","","","","","","None","","","None","","","","","","Purely measured","Purely generated","Yes","","100.0","","","","","","","","","","","","Anonymized","","True","","","","","","","","","Ion Beam Analysis","","","","","","","","","","","","","","","","","","","","True","","","","","True","","True","","True","","","","","","< 100 MB","","","","","True","True","","","","True","","","very interested","moderately interested","not interested","","very interested","moderately interested","1980-01-01 00:00:00"
+"1019","","True","","","True","","","True","","","","","","","True","","","","","True","","","","","","","","","","","Institutional Repository","","","","","15.0","","","","","True","","","","True","True","True","","True","","","","","","","","","","","","","","420.0","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","1 to 3 years","PhD candidate","","Yes","Not familiar with FAIR","","True","True","","","Anonymized","Jupyter","Anonymized","","","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","True","","Some of them","","All","All","","","","Some of them","","None","","All","None","","","","None","","Mostly measured","Purely generated","Not sure","","0.0","","","","","","","","","","","","","","True","True","","","","","","","","Brillouin Lichtstreuung","","","Mikromagnetische Simulationen (Mumax3)","","","","","","","","","","","","","","","","","True","","True","","","","","","True","","","","True","Other","","10 GB - 100 GB","","","","True","True","True","","True","True","True","","","moderately interested","very interested","moderately interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"1022","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","Lack of incentives","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","578.32","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","True","","","","MATLAB / Simulink","OriginLab","Anonymized","","True","","True","True","","","","Lack of technical solutions","True","True","True","","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","True","","","All","All","All","","","","All","","","Some of them","All","All","","","","All","","","Mostly measured","Mostly generated","Yes","","5.0","","","","","","","","","","","","Anonymized","","True","True","","","","","","","","Ferromagnetische Resonanz","SQUID/VSM","XRD/XRR","Mikromagnetische Simulationen","","","","","","","","","","","","","","","True","","True","","True","","True","","","True","","","","","","","","1 GB - 10 GB","","True","","True","","True","","True","True","True","","","very interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1023","","True","","","","","","True","True","","","","","","","","","","","","No value to others","","","","","","","","","","Institutional Repository","","","","","20.0","","","","True","True","True","","","True","True","True","","True","True","","","","","","","","","","","","","1209.7","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Postdoc","","Yes","Not familiar with FAIR","","True","","","","OriginLab","Anonymized","MATLAB / Simulink","True","","","","","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","Some of them","Some of them","All","","","","","","None","Some of them","None","Some of them","","","","","","Equally measured and simulated","Purely generated","Yes","","25.0","","True","True","","","","","","","","","Anonymized","True","","True","True","","","","AFM","SEM","GISAXS","","","","numerische Integration","","","Oberflächenmodifikation mit Ionenstrahlen","Dünnschichtabscheidung","","","","","","","","","","","","","True","","True","","True","True","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","","","True","","True","","","","True","","","very interested","moderately interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1024","True","","","","","","","True","True","","","","","","","","","True","","","","","","","","","","","","","","","","","","5.0","","","","","True","","","","","","","","","","","","","","","","","","","","","","627.87","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","True","","","","OriginLab","MATLAB / Simulink","COMSOL Multiphysics","","True","True","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","Some of them","Some of them","","","","","","","","Mostly measured","Equally generated and reused","Yes","","10.0","","True","","","","","","","","","","","True","True","","True","","","","SEM","TEM","EBSD","XRD","Reciprocal Space Mapping","VSM","","","","Sputterdeposition","PLD","","","","","","","","","","","","","","","True","","","","True","","","","","True","","","","100 MB - 1000 MB (1 GB)","","True","","True","","True","","True","True","","","","very interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1025","","True","","","True","","","True","True","","","","","","","","","","True","","","","","","","","","","","","Institutional Repository","","","","","40.0","","","","True","True","True","True","True","True","","True","","True","True","","","","","","","","","","","","","1309.22","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Not familiar with FAIR","","True","","","","LabVIEW","OriginLab","Office Software (unspecified)","","True","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","Some of them","None","Some of them","Some of them","Some of them","","","","","Mostly measured","Purely generated","Yes","","95.0","","","","","True","","","","","","","","","True","True","","","","","","","","pump-probe","spectroscopy","various optical and electrical measurements","simulation and fitting of measured data","","","","","","","","","","","","","","","True","","True","","True","","True","True","","True","True","True","True","True","True","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","True","True","True","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1026","True","","","","True","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","","804.02","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","Less than 1 year","PhD candidate","","Not sure","Not familiar with FAIR","True","","","","","Anonymized","Anonymized","Anonymized","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Density functional theory","Molecular dynamics","","","","","","","","","","","","","","","True","True","","True","","True","","","","True","","","","","","","100 MB - 1000 MB (1 GB)","","True","","","","","","","","","","","very interested","very interested","moderately interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"1027","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","939.39","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","More than 10 years","","","No","Not familiar with FAIR","","True","","","","LabVIEW","Excel (Spreadsheets)","Git","","","","","","","","","","","","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","Some of them","","","","","","","","None","Some of them","","","","","","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","Other","","","","","","","","","","","","","","","","A/D-Wandlung","Schnittstellen (Busse, Geräte)","","","","","","","True","","","","True","","","","","","","True","","","","","","","","","True","","","","","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"1028","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","737.65","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","True","True","","","","C/C++","Anonymized","OriginLab","True","","","","","","","","","True","True","True","","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","Some of them","None","Some of them","None","Some of them","","","","","Mostly measured","Purely generated","Yes","","95.0","","","","","True","","","","","","","","","True","True","","","","","","","","Aufnahme von List-Mode-Daten","Aufnahme von Signalformen","","Monte Carlo Simulationen","","","","","","","","","","","","","","","","","True","","","","","","","True","True","","","","","Binary non-scientific formats","","100 GB - 1000 GB (1 TB)","","","","","","True","True","","","","","","very interested","moderately interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1029","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","496.43","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","1 to 3 years","PhD candidate","","Yes","Not familiar with FAIR","True","","","","","LabVIEW","OriginLab","Anonymized","","","","","","","","True","","True","True","True","","","","","","True","","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","None","None","None","","","","","","","None","None","None","","","","","","","Purely measured","Purely generated","Not sure","","20.0","","True","","","","","","","","","","","True","","","True","","","","Scanning Electron Microscopy","Optical Microscopy","Process cameras","","","","","","","3D-printing","","","","","","","","","","","","","","","","True","","True","","","","","","","True","","","","100 MB - 1000 MB (1 GB)","","","","","True","True","True","True","","True","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1039","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","3159.0","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Nanotechnology","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","Anonymized","MATLAB / Simulink","OriginLab","","True","","True","True","True","","","","True","True","True","","","True","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","Some of them","","","","","","None","","None","None","","","","","","Mostly measured","Mostly reused","Yes","","5.0","","","True","","","","","","","","","","True","True","","","","","","AFM","Mikroskopie","REM","Reflektometrie","Beugungssimulation","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","","","","Other","","I don't know","","","True","True","True","True","","","","True","","","moderately interested","very interested","moderately interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"1040","True","","True","","","True","","True","True","","","","","True","True","","","True","","","","","","","","","","","","","","","","","","20.0","","","","True","True","True","True","","True","True","True","True","True","True","","","","","","","","","","","","","477.84","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Energy Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","Yes","Apply FAIR","","True","","","","","","","","True","","","True","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","Some of them","None","None","","","","","","Purely measured","Purely generated","Yes","","90.0","","True","True","","","True","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","True","","","True","","","100 GB - 1000 GB (1 TB)","","True","True","","","","","","","True","","","very interested","moderately interested","moderately interested","very interested","not interested","moderately interested","1980-01-01 00:00:00"
+"1041","True","","","","True","","","True","True","","","","","True","True","","","True","","","","","","","","","","","","","","","","","","50.0","","","","True","True","True","True","True","True","True","","","True","","","","","","","","","","","","","","429.35","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","True","True","","","","OriginLab","Python","ImageJ","","True","True","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","Some of them","Some of them","","","","","","None","None","None","None","","","","","","Mostly measured","Equally generated and reused","Yes","","25.0","","","True","","","","","","","","","","True","True","","","","","","Mikroskopie","Tomographie","","Fluoreszenzspektroskopie","Absorptionsspektrokopie","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","True","True","","","True","","","10 GB - 100 GB","","True","","","","","","True","True","True","","","moderately interested","very interested","very interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1043","","True","","","True","","","","","True","","","","","","True","","","","","","","","","","","","","","","Gitlab / GitHub","Zenodo","","","","30.0","","","","","True","True","","True","","","","","","","","","True","","","","","","","","","","622.02","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","7 to 10 years","Postdoc","","Yes","","True","True","True","","","emacs","Git","Jupyter","","","","","","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","Some of them","Some of them","","","","All","","","","None","None","","","","All","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Numerical analysis","Finite element method","Mesoscopic simulation","","","","","","","","","","","","","","","True","","","","True","","","","True","","","","True","","","1 GB - 10 GB","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1044","True","True","","","","","","True","","","","","","","","True","True","","True","","","","","","","","","","","","Zenodo","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","774.7","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Soft Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","True","","","","","Anonymized","OriginLab","Delphi","","","","","","","","True","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","None","None","None","","","","","","","None","None","None","","","","","","","Mostly measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","Analytical methods","","","","","","","","","","","","","","","","Statische und dynamische Lichtstreuung ","Evaneszente Lichtstreuung","","","","","","","","","","","True","","","","","","","","","","","< 100 MB","","True","","","True","True","","","True","","","","","very interested","","","","","1980-01-01 00:00:00"
+"1046","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Other","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","601.98","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","4 to 6 years","PhD candidate","","Yes","Familiar with FAIR","","True","","","Locally","Python","Anonymized","gnuplot","","","","True","True","","","","","","","","","","","","","","","True","GitLab","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","All","","","","All","","","","","None","","","","None","","","","","Mostly simulated","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","","","","","100 MB - 1000 MB (1 GB)","","True","True","","True","True","","True","True","True","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1047","True","","","","True","","","True","True","","","","","","","True","True","","True","","","","","","","","","","","","","","","","","40.0","","","","True","True","","","","True","True","","","","","","","","","","","","","","","","","1387.01","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","True","True","","","","OriginLab","Anonymized","Python","","True","True","True","","","","","","","","","","","","","","True","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","None","","None","","","","","","","Purely measured","Mostly generated","Yes","","65.0","","","","","","True","","","","","","Anonymized","","True","","","","","Analytical methods","","","","individual measurements","bulk measurements: magnetization","","","","","","","","","","","individual or large area scans","elastic or inelastic measurements","","","","","True","","","","","True","True","","","","","","","","True","","","100 MB - 1000 MB (1 GB)","","","","True","","","","True","","True","","","moderately interested","moderately interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"1048","","","True","","","","","","True","","","","","","True","","True","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","1148.93","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","Yes","Apply FAIR","","True","","","","Anonymized","Anonymized","Anonymized","","True","","","True","","","","","True","","True","True","","","","","True","True","True","","","Yes","Yes","","","","","True","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","True","True","","Some of them","All","Some of them","Some of them","All","","All","All","","Some of them","Some of them","Some of them","Some of them","All","","All","All","","Purely measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","True","","True","","True","True","","","1 GB - 10 GB","","","","","","","","True","","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1050","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","70.0","","","","True","True","True","","","True","","True","","True","","","","","","","","","","","","","","667.25","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","4 to 6 years","Research Associate","","No","Not familiar with FAIR","True","True","True","","","OriginLab","MATLAB / Simulink","Anonymized","","","","","","","","","","","True","True","","","","","","","","True","","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","True","","","","","","Some of them","","All","All","","","","","","Some of them","","All","All","","","","","","","Mostly generated","Yes","","","","","","","","","","","","","","","True","True","True","","True","","","SEM","LSM","","Nanoindentation","","","Monte Carlo","","","","","","Weibull statistics","","","","","","","","","","","True","","True","True","","","","True","True","True","","","","","","100 MB - 1000 MB (1 GB)","","True","True","","True","True","True","","","","","","very interested","moderately interested","moderately interested","moderately interested","very interested","","1980-01-01 00:00:00"
+"1051","True","","","","","True","","","True","","","","","","","True","","True","","","","","","","","","","","","","","","","","","5.0","","","","True","True","","True","","True","True","True","True","","True","","","","","","","True","","","","","","1847.39","Completed the survey","Anonymized","Anonymized","Matter","Chemistry","","","","","","Physical Chemistry","","","","","","","","","","","","","","","","More than 10 years","Postdoc","","Yes","Familiar with FAIR","","True","","","","MATLAB / Simulink","Anonymized","OriginLab","","","","","True","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","True","","","All","All","All","All","","","All","","","Some of them","Some of them","All","All","","","None","","","Mostly measured","Mostly generated","Yes","","95.0","","","True","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","True","True","","","","","","","100 MB - 1000 MB (1 GB)","","","","","True","True","","","","True","","","moderately interested","very interested","moderately interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"1052","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Other","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1154.85","Completed the survey","Anonymized","Anonymized","Matter","","Beschleunigerphysik","","","","","","","","","","","","","","","","","","","","","More than 10 years","Research Associate","","No","Familiar with FAIR","True","True","","","","Anonymized","Jupyter","","","","True","True","True","","","True","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","None","","","None","","","","","","None","","","None","","","","","","Equally measured and simulated","Purely generated","Yes","","30.0","","","True","","","","","","","","","Anonymized","True","","True","","","","Other","Kameras","","","","","","Tracking Rechnungen","","","","","","","","","Strahlmessungen wie Größe, Länge ect","","","","","","True","","True","True","True","","","","","True","True","","True","","","","","100 MB - 1000 MB (1 GB)","","","","","True","True","","","True","True","","","moderately interested","very interested","moderately interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1053","True","True","","","","True","","","True","True","","","","","True","True","","","","","","","","","","","","","","","Materials Cloud","","","","","85.0","","True","True","","True","True","True","","","True","True","True","","","","","True","","","","","","","","","","10957.7","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","4 to 6 years","Postdoc","","Yes","Apply FAIR","","True","True","","","Anonymized","Anonymized","AiiDA","","True","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","True","","","","Some of them","All","All","","","Some of them","","","","Some of them","All","All","","","Some of them","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","density functional theory","Spin dynamics","","","","","","","","","","","","","","True","","True","True","","","True","","","True","True","","","True","True","","","100 MB - 1000 MB (1 GB)","","","True","True","","","","True","True","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1058","True","","True","","","","True","","True","True","","","","","","","True","True","True","","","","","","","","","","","","","","","","","25.0","","","","True","True","","","","True","True","","","True","True","","","","","","","","","","","","","665.75","Completed the survey","Anonymized","Anonymized","Matter","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","True","True","","","","Office Software (unspecified)","Anonymized","Anonymized","","","","","","True","","True","","True","","True","True","","True","","","True","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","All","All","","","","","","Some of them","","All","All","","","","","","Purely measured","Purely generated","Yes","","100.0","","","","","","","","","","","","Anonymized","True","","","","","","Analytical methods","transmission electron microscopy","","","","","","","","","","","","","","","small angle neutron scattering","quasielastic neutron scattering","","","","","True","","True","","True","True","True","True","","","True","True","","","True","","","100 MB - 1000 MB (1 GB)","","","True","","","","","True","True","","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"1059","","","True","","","True","True","","","","","","","","True","","","True","","","","","","","","","","","","","","","","","","60.0","","","","True","True","","","","True","","True","","","","","","","","","","","","","","","","777.5","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","True","True","","","","MATLAB / Simulink","OriginLab","","","True","","","","","","","","True","","","True","","","","","True","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","Some of them","","Some of them","All","Some of them","","","","","None","","All","None","None","","","","","Purely measured","","Yes","","80.0","","","True","","","","","","","","","","True","True","","","","","","Photoemissionsmkroskopie","Rasterkraftmikroskopie","","Spektroskopie","","","","","","","","","","","","","","","","","","True","","","","True","","True","True","","","True","True","","","","","","100 GB - 1000 GB (1 TB)","","True","","","","","","","","","","","moderately interested","moderately interested","","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"1061","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","6434.83","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","True","True","","","","IGOR","Python","Anonymized","","","","","","","True","True","","","","","","","","","","True","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","","Mostly measured","Purely generated","Yes","","90.0","","True","True","","","","","","","","","Anonymized","True","True","True","","","","","Photoemissionsmikroskopie (PEEM)","","","Photoelektronen-Spektroskopie (PES)","Röntgenabsorbtionsspektroskopie (XAS)","","SESSA","","","","","","","","","","","","","","","","","True","","True","","True","","","","","","","","","","","1 GB - 10 GB","","True","","","","True","","","True","True","","","very interested","very interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"1062","","","True","","","","","True","True","True","","","","","True","","True","","","","","","","","","","","","","","","","","","","25.0","","True","","True","True","True","True","True","","","","","True","True","True","True","","","","","","","","","","","983.9","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Soft Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","True","True","","","","Office Software (unspecified)","Anonymized","Anonymized","","","True","","","","","","","","","","","","","","","True","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","All","Some of them","","Some of them","All","","","","","Some of them","Some of them","","Some of them","Some of them","","","","","","Purely generated","Yes","","","","","","","","","","","","","","","True","True","True","True","","","","Light microscope","Transmission Electron Microscope","","Small Angle Neutron Scattering ","Neutron Spin Echo Spectroscopy","Neutron Backscattering","Analytic Models with Numeric Solutions","Ray Tracing Neutron Instrumentation","Molecular Dynamics Simulations","Mixing / Cleaning Chemicals","Lipid extraction","","","","","","","","","","","True","True","True","","True","True","True","","","","True","True","","","","","","< 100 MB","","True","","","","","","True","","True","","","moderately interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"1063","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","780.32","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Polymer Physics","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","Fortran","","","True","","","","","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","None","None","None","","","","","","","None","None","None","","","","","","","Purely measured","Purely generated","Yes","","80.0","","","","","","","","","","","","Anonymized","","","","","","","Analytical methods","","","","","","","","","","","","","","","","neutronenstreruung","roentgenstreiing","rheologie","","","","","","","","True","","True","","","","","","","","True","","","10 GB - 100 GB","","","","","","","","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1065","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","949.43","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Soft Matter Physics","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","True","True","True","","","Anonymized","Anonymized","Anonymized","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","All","All","All","Some of them","","","","","","Mostly measured","","Yes","","100.0","","","","","","","","","","","","Anonymized","","True","","","","","Analytical methods","","","","NMR","","","","","","","","","","","","NSE","SANS","","","","","","","","","","","True","","","","","","","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","True","","","not interested","moderately interested","moderately interested","moderately interested","very interested","","1980-01-01 00:00:00"
+"1067","","","","In repository","","","","True","True","","","","","","","","True","","","","","","","","","","","","","","","","","","","5.0","","","","","True","True","True","","True","","","","","","","","","","","","","","","","","","833.29","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","True","True","","","","Anonymized","","","","","","","","","","","","True","","","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","All","All","All","","","","","","","Mostly measured","Purely generated","Yes","","95.0","","True","","","","","","","","","","Anonymized","","","","","","","Analytical methods","","","","","","","","","","","","","","","","small-angle scattering","total scattering","diffraction","","","","True","","","","","","","","","True","","","","","True","","","100 MB - 1000 MB (1 GB)","","","","True","True","True","","","","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"1068","True","True","","","","","","","","","","Guidelines / policies of publishers","","","True","","","True","True","True","","","","","","","","","","","","","","","","20.0","","True","","","","True","","","","True","True","True","","","True","","","","","","","","","","","","1069.52","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Biophysics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","True","","","","","Anonymized","gnuplot","Adobe Illustrator","","True","","True","True","","","","Other","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","All","All","All","","All","","","","","Some of them","Some of them","All","","None","","","","","Purely simulated","Purely generated","No","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Molecular Dynamics","Brownian Dynamics","Monte Carlo","","","","","","","","","","","","","True","","True","","True","","True","","","","True","","","True","","","","> 1 TB","","True","","True","True","True","True","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"1069","True","True","","","True","","","","True","True","","","","","","","","True","","","","","","","","","","","","","Institutional Repository","Zenodo","","","","10.0","","True","True","","","True","True","","","","True","True","True","","True","True","True","","","","","","","","","","1528.1","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","4 to 6 years","PhD candidate","","Yes","Apply FAIR","","True","","","Centrally (internal server)","Anonymized","Jupyter","Anonymized","","True","","","True","","","","","","True","True","","True","","","","True","True","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","openPMD","True","True","True","True","True","True","","","","All","Some of them","Some of them","Some of them","Some of them","Some of them","","","","Some of them","Some of them","None","None","Some of them","Some of them","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Particle-in-Cell","","","","","","","","","","","","","","","","","True","","True","","","","","","True","True","","True","True","","","> 1 TB","","True","","True","","True","","","","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1070","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Technical support needed","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1466.79","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","7 to 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","IGOR","","","","True","","","True","","","","Lack of technical solutions","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Information on data collection","","","","","","","","","Some of them","","","","","","","","","Some of them","Purely measured","Purely generated","Yes","","100.0","","","True","","","","","","","","","","","True","","","","","","","","","Photoelektronenspektroskopie","NEXAFS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Binary non-scientific formats","","1 GB - 10 GB","","","","","","","","","","","Metadata enrichment of research data","","not interested","very interested","moderately interested","moderately interested","not interested","moderately interested","1980-01-01 00:00:00"
+"1072","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","921.58","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","True","True","","","Anonymized","LabVIEW","Delphi","","","","","True","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","All","","","","","","","","None","Some of them","","","","","","","","Purely measured","Purely generated","Yes","","95.0","","True","True","","","True","","","","","","","","True","","True","","","","","","","Photonenstrueung","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","moderately interested","very interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"1073","","True","","","","","","True","True","","","","","","True","True","","","","","","","","","","","","","","","Institutional Repository","","","","","5.0","","","","","","","","True","","","","","","","True","True","","","","","","","","","","","840.48","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","True","True","","","","Anonymized","Python","Anonymized","","","","","True","","","","","","","","","","","","","True","","True","Source code and scripts","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","Some of them","","","Some of them","","","","","","Some of them","","","Some of them","","","","","Purely measured","Purely generated","Yes","","95.0","","True","True","","","","True","True","","","","Anonymized","","True","","","","","","","","","Röntgenabsorptionsspektroskopie","Resonante Beugung","Reflektometrie","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","True","True","","","1 GB - 10 GB","","True","True","True","True","True","True","True","","True","","","moderately interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"1074","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1390.78","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","","Student","","Not sure","Familiar with FAIR","","True","","","","AiiDA","AiiDA","Git","","","","","","","","","","True","","True","","","True","","","","True","","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","","","Purely simulated","Purely generated","Not sure","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Density Functional Theory","","","","","","","","","","","","","","","","","","True","","","","","","True","True","","","True","","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","","very interested","","","","","very interested","1980-01-01 00:00:00"
+"1078","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","836.16","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","True","","","","Jupyter","Anonymized","gnuplot","True","","","","","","","","","True","True","True","True","","","","","True","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","Some of them","All","","","","","","","Some of them","None","Some of them","","","","","","","","Mostly reused","Yes","","","","","","","","","","","","","","","","True","True","","","","","","","","Neutronen Spektroskopie","Physikalische Eigenschaften","Röntgen und Neutronen-Diffraktion","Mont Carlo Simulationen","","","","","","","","","","","","","","","True","","","","","","True","","","","True","","True","True","True","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","","","True","True","","","very interested","very interested","very interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1080","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1024.11","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","1 to 3 years","Postdoc","","Yes","Not familiar with FAIR","True","","","","","Mathematica","Fortran","gnuplot","","","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","Purely simulated","Purely generated","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Tight binding model","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","","","","True","moderately interested","moderately interested","moderately interested","","","","1980-01-01 00:00:00"
+"1081","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1203.18","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","7 to 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","ROOT framework","R","Excel (Spreadsheets)","","True","","","True","","","","","True","True","","True","","","","","True","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","All","Some of them","Some of them","Some of them","","","","","None","All","Some of them","None","Some of them","","","","","Mostly measured","Mostly generated","Yes","","90.0","","","","","","","","","","True","","","","True","","","","","","","","","Beschleunigerspektometrie","Massenspektrometie","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","True","","","","1 GB - 10 GB","","","","","","True","","True","","True","","","moderately interested","moderately interested","moderately interested","not interested","very interested","very interested","1980-01-01 00:00:00"
+"1083","True","","","","","True","","True","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","10.0","","","","True","True","","","","True","","","","True","True","","","","","","","","","","","","","610.76","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","True","","","","","OriginLab","","","","True","True","","","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","Some of them","Some of them","","","","","","Some of them","","Some of them","Some of them","","","","","","Mostly measured","Purely generated","Yes","","90.0","","","","","","True","","","","","","Anonymized","","True","","","","","","","","","small angel scattering","reflectometry","neutron spectroscopy","","","","","","","","","","","","","","","","True","","","","True","","","","","","","True","","","True","","","1 GB - 10 GB","","True","True","","True","True","True","","","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1086","True","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","True","True","","","","","","","","","","","","","","","","","","","","","","465.62","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Postdoc","","Yes","Familiar with FAIR","","True","","","","LabVIEW","IGOR","LaTeX","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","Some of them","Some of them","Some of them","","","","","","","Purely measured","Purely generated","Yes","","100.0","","","True","","","","","","","","","","","True","","","","","","","","","Spektroskopie","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","1 GB - 10 GB","","","","","","","","","","","","","not interested","very interested","very interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1087","","True","","","","","","","","True","","","","True","True","","","True","","True","","","","","","","","","","","IRRMC","","","","","5.0","","","","","","","","True","True","","","","True","","","","","","","","","","","","","","442.45","Completed the survey","Anonymized","Anonymized","Matter","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","7 to 10 years","Postdoc","","Yes","Not familiar with FAIR","True","True","","","","Anonymized","Anonymized","Anonymized","","True","","True","True","","True","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","Some of them","","","","","","","Some of them","Some of them","Some of them","","","","","","Purely measured","Purely generated","","","100.0","","","True","","","","","","","","","","True","","","","","","","Proteinkristallographie","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","100 GB - 1000 GB (1 TB)","","True","","","","","","True","","","","","moderately interested","moderately interested","very interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1088","True","","","","","","True","","True","True","","","","","True","","","True","","","","","","","","","","","","","","","","","","75.0","","","","True","True","True","True","","True","True","True","","True","True","","","","","","","","","","","","","739.42","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Nanotechnology","","","","More than 10 years","Postdoc","","Yes","Not familiar with FAIR","True","","","","","Anonymized","Python","OriginLab","","True","True","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","Some of them","None","None","Some of them","Some of them","","","","","Purely measured","Purely generated","Yes","","100.0","","True","","","","","","","","","","Anonymized","","True","","True","","","","","","","SAXS","GISAXS","GIWAXS","","","","Spray","Spattering","Colloid preparation","","","","","","","","","","True","","","","True","","True","","","","True","True","","","True","","","1 GB - 10 GB","","","","True","","True","True","","True","","","","moderately interested","very interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1089","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","433.09","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","1 to 3 years","PhD candidate","","Yes","Not familiar with FAIR","True","","","","","","","","True","","","","","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Equally measured and simulated","Purely generated","Yes","","0.0","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","True","","","","True","","","I don't know","","","","","","","","","","","","True","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"1094","True","","","","","True","","","","True","","","True","","","","","","","","","","","","","","","","","","","","","","","85.0","","","","","","True","","","True","True","","","","","","","","","","","","","","","","","547.43","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Biophysics","","","","1 to 3 years","PhD candidate","","No","Familiar with FAIR","True","","","","","Python","Anonymized","Fiji","","","","True","True","","","","","","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","All","","","","","","","","None","None","","","","","","","Mostly measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","True","True","","True","","","","Confocal Microscopy","TIRF","Ultrafast imaging 2000 fps","PIV ","Own python codes (cross corolation)","Image proccessing using sci py skiimage ","","","","SLE","CAD/CAM","","","","","","","","","","","","","","","True","","","","","","True","True","True","","True","","","100 GB - 1000 GB (1 TB)","","","","","True","True","True","","","True","","","moderately interested","very interested","very interested","moderately interested","","moderately interested","1980-01-01 00:00:00"
+"1096","True","","","","","","","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","True","True","","","","","","","","","","","True","","","","","","","","","","","551.1","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","X-ray Imaging","","","Less than 1 year","PhD candidate","","No","Not familiar with FAIR","","True","","","","Anonymized","Anonymized","Anonymized","","","","","True","","","","","","","","","","","","","","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","All","","","","All","","","","","Some of them","","","","Some of them","","","","","Mostly measured","Equally generated and reused","Yes","","100.0","","True","","","","","","","","","","","True","","","","","","","Three-Dimensional X-ray Diffraction","Ptychography","Tomography","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","100 GB - 1000 GB (1 TB)","","","True","","True","","True","","","","","","moderately interested","moderately interested","moderately interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1098","True","","","","True","","","","","True","","","","","True","True","True","","","","","","","","","","","","","","","","","","","5.0","","","","True","True","True","True","True","True","True","","True","","True","","","","","","","","","","","","","1721.4","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","7 to 10 years","Research Associate","","Yes","Familiar with FAIR","True","True","","","","LabVIEW","Anonymized","Python","","True","","True","","","","","","True","True","True","True","","","","","True","","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","Mostly measured","Mostly generated","Yes","","95.0","","","True","","","","","","","","","","","True","True","True","","","","","","","Röntgenabsorptionsspektroskopie","Massenspektroskopie","","quantenchemische Rechnungen - ORCA","","","Probenpräparation durch Magnetronsputtering","Probenpräparation durch Electrospray Ionisation","","","","","","","","","","","","","","","","","True","","","","","","","","","","","10 GB - 100 GB","","","","","True","True","","","","True","","","not interested","very interested","moderately interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"1099","True","","","","True","True","","","","True","","","","","True","","","","","","","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","729.61","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Accelerator physics","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","","","True","","MATLAB / Simulink","Excel (Spreadsheets)","Mathematica","","True","","","","","","","","True","True","","","","","","","","True","True","Digital system","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","","","","","","","","","","","","","","","","","","","Equally measured and simulated","Mostly generated","Yes","","5.0","","","","","","","True","True","","","","","True","","True","","","","","Filtering","Deconvolution","","","","","ODE","","","","","","","","","","","","","","","","","","","True","","","","","True","True","True","","","","","","100 MB - 1000 MB (1 GB)","","","","","","","","","True","","","","moderately interested","very interested","moderately interested","","","","1980-01-01 00:00:00"
+"1101","","True","","","True","","","","True","True","","","","","","True","","True","","","","","","","","","","","","","","","","","","90.0","","True","True","True","True","True","","True","True","True","True","True","True","True","True","","True","","","","","","","","","","534.78","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","7 to 10 years","Postdoc","","No","Not familiar with FAIR","True","True","","","","","","","True","","","","","","","","","True","","True","True","True","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","Some of them","","","","None","None","None","None","None","None","","","","Purely simulated","Purely reused","Not sure","","","","","","","","","","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","","","True","True","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","True","","True","True","","","very interested","very interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"1104","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1746.06","Completed the survey","Anonymized","Anonymized","Matter","Chemistry","","","","","","Physical Chemistry","","","","","","","","","","","","","","","","More than 10 years","Postdoc","","Yes","Familiar with FAIR","True","","","","","Anonymized","OriginLab","","","","","","","","","True","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","Some of them","","Some of them","","All","","","","","None","","Some of them","","Some of them","","","","","Purely measured","Purely generated","Yes","","90.0","","","True","","","","","","","","","","","True","","","","","","","","","Resonant inelastic X-ray spectroscoy","X-ray absorption spectroscopy","X-ray photoemission spectroscopy","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","True","","","","10 GB - 100 GB","","","","True","","True","","","True","True","","","very interested","moderately interested","moderately interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"1107","True","","","","True","True","","","","","","Reusability","","","","","True","","True","","","","","","","","","","","","","","","","","60.0","","","","True","True","True","","","True","True","True","","True","True","","","","","","","","","","","","","2032.21","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Materials Engineering","","","","","","","","","","","","1 to 3 years","PhD candidate","","Yes","Not familiar with FAIR","True","True","","","","OriginLab","Word","Excel (Spreadsheets)","","","","","","","","","","True","True","","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","None","None","None","None","None","","","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","True","True","","","","","","SEM","Laser Microscopy","AFM","Indentation","Bendingtest","FIB","","","","","","","","","","","","","","","","","","","","True","","True","","","","","True","True","True","","","","I don't know","","","True","True","","True","","True","","True","","","very interested","very interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"1110","True","","","","","","","True","True","True","","","","","","True","","","True","","","","","","","","","","","","","","","","","10.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","950.66","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Quantum Information","","","1 to 3 years","Research Associate","","Yes","Familiar with FAIR","True","True","","","","Python","Anonymized","Java","","","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","Some of them","None","","","","","","","Equally measured and simulated","Purely generated","Not sure","","0.0","","","","","","","","","","","","","","True","True","","","","","","","","Spectroscopy","RF measurements","","Numeric models","","","","","","","","","","","","","","","","","True","True","True","","","","","","True","","","","True","","","100 MB - 1000 MB (1 GB)","","","","","","","True","True","True","True","","","very interested","moderately interested","moderately interested","very interested","very interested","not interested","1980-01-01 00:00:00"
+"1111","True","","","","","","","","True","","","","","","","","","True","","","","","","","","","","","","","","","","","","40.0","","","","True","True","","","","True","True","True","","True","","","","","","","","","","","","","","1022.67","Completed the survey","Anonymized","Anonymized","Matter","Chemistry","","","","","","","","","","","","","","","","","","","","","","7 to 10 years","Technical Staff","Technical Staff","Yes","Not familiar with FAIR","True","True","","","","Anonymized","Office Software (unspecified)","","","","","True","True","","","","","True","True","True","True","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","None","None","None","None","","","","","","Purely measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","True","True","","","","","","Rasterelektronenmikroskopie","Lichtmikroskopie","Transmissionselektronenmikroskopie","Energiedispersive Röntgenspektroskopie","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","True","","","","","","1 GB - 10 GB","","","","","","","","","","True","","","moderately interested","very interested","very interested","","","","1980-01-01 00:00:00"
+"1112","True","","","","","True","","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","","True","True","","","True","","","","True","","","","","","","","","","","","","","654.52","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Not familiar with FAIR","","True","","","","COMSOL Multiphysics","OpenFOAM","","True","","","","","","","","","True","True","True","","","","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","All","All","All","","","","","","","","","","","","","","Purely simulated","","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","CFD","","","","","","","","","","","","","","","","","True","","","","True","","","","True","","","","True","","","1 GB - 10 GB","","True","","","","","","","","","","","moderately interested","moderately interested","moderately interested","","very interested","moderately interested","1980-01-01 00:00:00"
+"1113","","True","","","True","","","True","True","","","","","","True","","True","True","True","True","","","","","","","","","","","Institutional Repository","","","","","40.0","","","","True","True","","","","","","","","","","","","","","","","","","","","","","817.1","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Angewandte Kernphysik","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","True","","","Excel (Spreadsheets)","Anonymized","Anonymized","","True","","True","True","True","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","","","","","","","","","","","","None","","","","","None","","","","Purely measured","Mostly generated","Yes","","100.0","","","","","","","","","","","","Anonymized","","True","","","","","","","","","Accelerator Mass Spectrometry","","","","","","","","","","","","","","","","","","","","True","","","","True","True","","","","True","","","","","","1 GB - 10 GB","","","True","","True","True","True","True","","True","","","","moderately interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"1116","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1031.28","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Beschleuniger","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","ZEMAX","Excel (Spreadsheets)","OriginLab","","","True","True","","","","","","","","","","","","","","True","True","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","Some of them","","","Some of them","","","","","","None","","","Some of them","","","","","","Mostly measured","Purely generated","Yes","","5.0","","","","","","","True","True","","","","","True","","True","","","","Recordings","Kamera snapshots","","","","","","Ray tracing","","","","","","","","","Aufnahme von Messreihen","","","","","","","","True","","True","","True","","","True","","True","","True","","","","1 GB - 10 GB","","True","","","True","True","True","","True","True","","","very interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1118","","","True","","","True","True","","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","80.0","","","","True","True","","","","True","True","","True","","","","","","","","","","","","","","","501.08","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Biophysics","","","","1 to 3 years","PhD candidate","","Yes","Not familiar with FAIR","True","","","","","Python","Excel (Spreadsheets)","FLUKA","","","","True","","","","","","","","","","","","","","True","","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","Some of them","","","","","","","","","","","","","","","","Equally measured and simulated","Purely generated","Not sure","","0.0","","","","","","","","","","","","","","","True","True","","","","","","","","","","FLUKA","","","Excel","","","","","","","","","","","","","","","","True","True","","","","","True","True","True","","","","","I don't know","","","","","","True","","","","True","","","not interested","very interested","very interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"1119","","","","","","","","","","","","","","","True","True","True","","","","","","","","","","","","","","","","","","","10.0","","","","","","","True","True","","","","","","","","True","","","","","","","","","","","685.01","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","4 to 6 years","PhD candidate","","No","Not familiar with FAIR","","True","","","","Anonymized","ROOT framework","","","True","True","True","","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","Some of them","","","All","","","","","","Some of them","","","Some of them","","","","","Mostly simulated","Purely generated","Not sure","","0.0","","","","","","","","","","","","","","True","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","True","","","","1 GB - 10 GB","","","","","True","True","","","True","True","","","very interested","moderately interested","moderately interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"1120","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","2133.5","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","7 to 10 years","Postdoc","","Yes","","True","True","","","","gcc","Python","Anonymized","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","Some of them","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","","","","","","","","","Purely simulated","Purely generated","No","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Output from numerical simulations","Postprocessing of the results of the numerical simulations","Plots of the final results","","","","","","","","","","","","","True","","True","","True","True","True","","","True","True","","True","True","True","","","> 1 TB","","True","","","","","","True","","","","","moderately interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1123","True","True","","","True","True","","","","True","","","","True","True","True","","True","True","","","","","","","","","","","","Gitlab / GitHub","Gitlab / GitHub","","","","10.0","","True","","True","True","True","True","True","True","True","True","True","True","True","","","","","","","","","","","","","946.09","Completed the survey","Anonymized","Anonymized","Matter","Chemistry","","","","","","Physical Chemistry","","","","","","","","","","","","","","","","7 to 10 years","Postdoc","","Yes","Not familiar with FAIR","","True","","","","Python","OriginLab","LabVIEW","","True","","True","True","True","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","True","","Some of them","Some of them","Some of them","Some of them","Some of them","","","Some of them","","Some of them","Some of them","Some of them","Some of them","Some of them","","","Some of them","","Purely measured","Purely generated","Yes","","95.0","","True","True","","","True","","","","","","","True","True","True","True","","","","STXM","TEM","SEM","SAXS","SANS","XAS","DFT (ORCA)","","","Nasschemische Mikrowellensynthese","Sputtering","","","","","","","","","","","True","","","","True","","True","True","","","True","","True","","True","","","10 GB - 100 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","moderately interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"1126","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","True","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","432.26","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","True","","","Linux","Anonymized","LaTeX","","True","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","All","","All","","All","","","","","None","","None","","None","","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Monte Carlo Modelle","Numerische Lösungen","","","","","","","","","","","","","","","","True","","True","True","True","","","","True","True","","","True","","","100 GB - 1000 GB (1 TB)","","","","","True","True","True","","True","","","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1127","","True","","","","","","True","True","","","","True","","","","","","","","","","","","","","","","","","Institutional Repository","","","","","20.0","","True","","","True","True","","True","True","True","","","","","","","","","","","","","","","","","462.05","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Nanotechnology","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","True","True","","","","Fiji","Anonymized","Python","","True","","","True","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","Some of them","None","None","","","","","","","Purely measured","Mostly generated","Yes","","90.0","","","","","","","","","","","","Anonymized","True","True","","","","","","Helium Ionen Mikroskopie","Elektronenmikroskopie","Rasterkraftmethoden","SIMS","SAM","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","True","","","","< 100 MB","","True","","True","True","True","","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1128","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","","","","","","","","","","True","True","","","","","","","","","","","","","1978.29","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Soft Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","True","True","True","","","Anonymized","Anonymized","OriginLab","","True","","","True","","","True","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","Purely measured","Mostly generated","Yes","","75.0","","","","","","","","","","","","Anonymized","","True","","","","","","","","","neutron scattering spectroscopy","PFG NMR","small angle X-ray scattering","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","< 100 MB","","","","","True","","True","True","","True","","","very interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1130","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.0","","","","","","","True","True","","","","","True","","","","","","","","","","","","","","441.54","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Multiple areas crossing over physics, biology and material science","","","More than 10 years","Principal Investigator","","No","Familiar with FAIR","True","True","True","","","gcc","Python","IDL","","","","","","","","","Lack of technical solutions","","","","","","","","","","True","True","Digital text","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","Mostly measured","Equally generated and reused","","","100.0","","True","","","","","","True","","","","Anonymized","True","True","","","","","","Crystallography/diffraction/MX","Coherent imaging/diffraction","Tomography/ptychography","XES","XAS","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","","","> 1 TB","","True","","True","True","True","True","True","","","","","","","","","","","1980-01-01 00:00:00"
+"1132","True","","","","True","True","","","True","","","","","","True","True","","","","","","","","","","","","","","","","","","","","5.0","","","","True","True","True","True","True","True","","","","","","","","","","","","","","","","","","875.78","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","4 to 6 years","Postdoc","","Yes","Not familiar with FAIR","","True","","","","Python","ImageJ","Anonymized","","","True","","","","","","","","","","","","","","","","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","All","Some of them","Some of them","","","","","","Some of them","All","None","None","","","","","","","Mostly generated","Yes","","","","","","","","","","","","","","","True","","True","","","","","X-ray Coherent Imaging","Ptychography","X-ray Scanning Microscopy","","","","Wavepropagation","Raytracing","","","","","","","","","","","","","","","","True","","True","True","","","","","True","","","True","True","","","100 GB - 1000 GB (1 TB)","","","","","","","","True","True","True","","","very interested","moderately interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1134","","True","","","True","True","","","True","","","","True","","","","","","","","","","","","","","","","","","RCSB PDB","","","","","50.0","","True","True","True","True","True","True","True","True","True","True","True","True","","","","","","","","","","","","","","1259.3","Completed the survey","Anonymized","Anonymized","Matter","Life Science","","","","","","","","","","","","","Biochemie","","","","","","","","","More than 10 years","Postdoc","","Yes","Apply FAIR","True","True","","","","Anonymized","Anonymized","Anonymized","","","","","True","","","","","","","","","","","","","True","","True","Digital system","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","None","Some of them","Some of them","Some of them","","","","","","Purely measured","Mostly generated","Not sure","","100.0","","True","","","","","","True","","","","","True","","","","","","","Röntgendiffraktion","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","","","","True","Plain text","","I don't know","","","","","True","","","","True","","","","moderately interested","","moderately interested","very interested","","","1980-01-01 00:00:00"
+"1136","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","650.26","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","True","","","","MATLAB / Simulink","Python","","","True","","","True","","True","","Heterogeneous workflows complicate standardized solutions","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Purely generated","Yes","","95.0","","True","","","","","","","","","","","","True","","","","","","","","","x-ray diffraction","x-ray photoelecectron spectroscopy","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","True","","","1 GB - 10 GB","","True","","True","True","True","","True","","True","","","moderately interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"1138","","True","","","True","True","","","","True","","","","","","True","","True","","","","","","","","","","","","","Institutional Repository","CDMS","","","","30.0","","True","","True","True","True","True","","True","True","","","","","","","","","","","","","","","","","1077.08","Completed the survey","Anonymized","Anonymized","Matter","Chemistry","","","","","","Physical Chemistry","","","","","","","","","","","","","","","","4 to 6 years","Postdoc","","","Not familiar with FAIR","True","True","","","","Anonymized","Anonymized","OriginLab","True","","","","","","","","","","","","","","","","","True","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","Some of them","","","","","","","All","Some of them","None","","","","","","","Mostly measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","","True","True","","","","","","","","spectroscopy","","","quantum chemical calculations","","","","","","","","","","","","","","","True","","","","True","","True","","","","True","True","","True","","","","< 100 MB","","","","","","","","","","","","True","not interested","moderately interested","moderately interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"1143","True","","","","","True","","True","True","","","","","","True","True","True","True","True","True","","","","","","","","","","","","","","","","25.0","","","True","","","True","True","","True","True","","","","","","","","","","","","","","","","","1226.33","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Postdoc","","Yes","Not familiar with FAIR","","True","","","","Python","OriginLab","ROOT framework","","True","True","True","True","","","","","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","Some of them","Some of them","Some of them","","","","","","","Mostly measured","Mostly generated","Yes","","90.0","","","","","","","True","True","","","","Anonymized","True","True","","","","","","coherent diffraction imaging (CDI)","optical microscopy","","Ion and electron time of flight (TOF)","Velocity map imaging (VMI)","COLTRIMS / REMI","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","True","True","True","True","","","> 1 TB","","","","True","True","True","True","","True","True","","","moderately interested","very interested","moderately interested","very interested","very interested","","1980-01-01 00:00:00"
+"1144","","","","Other","True","","","","","True","","","","","True","True","True","","","True","","","","","","","","","","","","","","","","5.0","","","","","True","","","","True","True","","True","","True","","","","","","","","","","","","","967.93","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","4 to 6 years","PhD candidate","","Yes","Familiar with FAIR","","True","","","","OriginLab","LabVIEW","Python","","","True","","","","","","","","","","","","","","","","True","","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","All","Some of them","None","","","","","","Mostly measured","Purely generated","Yes","","0.0","","","","","","","","","","","","","True","True","True","","","","","Beam-characterization of electron-sources using screens & cameras","THz source characterization","Home-built electron energy spectrometers","Pump-probe experiments","Home-built optical spectrometers","Home-built electron energy spectrometers","Self-developed Python code","CST","ASTRA","","","","","","","","","","","","","","","True","","True","True","True","","","True","True","","","","","","","100 MB - 1000 MB (1 GB)","","True","","","True","True","","","True","","","","very interested","very interested","very interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1146","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1990.34","Completed the survey","Anonymized","Anonymized","Matter","","material science","","","","","","","","","","","","","","","","","","","","","More than 10 years","Research Associate","Research Associate","Yes","Not familiar with FAIR","","True","","","","Python","Office Software (unspecified)","","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","Some of them","Some of them","None","","","","","Mostly measured","Mostly generated","Yes","","80.0","","True","","","","","","","","","","","","True","","True","","","","","","","scattereing and diffraction","spectroscopy","","","","","thin film deposition","wet chemistry","","","","","","","","","","","","","True","","True","","True","","","","True","True","","","","","","10 GB - 100 GB","","","","True","True","True","","","True","True","","","very interested","very interested","very interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1147","True","","","","True","True","","","True","","","","","","","","True","True","True","True","","","","","","","","","","","","","","","","30.0","","","","True","True","","True","","","","","","","True","","","","","","","","","","","","","443.33","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","True","","","","Jupyter","IGOR","Python","","True","","","True","","","","","","True","True","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","Some of them","All","All","","","","","","Some of them","Some of them","Some of them","All","","","","","","Purely measured","Purely generated","Yes","","100.0","","True","True","","","","True","True","","","","","","True","True","","","","","","","","XAS","RIXS","XPS","Numeric model","Quantum chemistry","","","","","","","","","","","","","","","","True","","","","","","","True","True","","","","True","","","10 GB - 100 GB","","True","","True","True","True","","True","True","True","","","very interested","very interested","moderately interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1150","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","10596.1","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","7 to 10 years","Postdoc","","Yes","Familiar with FAIR","True","True","","","","Anonymized","Python","MATLAB / Simulink","","True","True","","True","","","","Heterogeneous workflows complicate standardized solutions","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","Data processing and analysis","Some of them","All","All","All","All","","","","All","None","All","Some of them","Some of them","Some of them","","","","Some of them","Mostly measured","Purely generated","Yes","","10.0","","","","","","","True","","","","","Anonymized","True","True","True","","","","","Velocity map imaging (VMI)","Computing the covariance images/maps between VMI and mass spectrum","","Photoelectron spectroscopy","Mass spectrometry","Time resolved by pump--probe delay (electron and mass spectroscopies)","Electron or ion trajectories for design/evaluation of electrostatic spectrometers","Fitting/comparing analytic curve models to pump--probe scan data","","","","","","","","","","","","","","","","True","","True","","True","","","","True","True","","True","True","Image formats","","10 GB - 100 GB","","","","True","","True","","","True","True","Financial resources for RDM","","moderately interested","very interested","moderately interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1151","","True","","","True","True","True","","","","","","","","True","True","","True","","","","","","","","","","","","","Zenodo","","","","","10.0","","","","","True","True","True","True","True","True","","","","","","","","","","","","","","","","","605.18","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","True","","","","","Anonymized","Anonymized","Anonymized","","True","True","True","True","","","True","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","Some of them","Some of them","","","","","","","Equally measured and simulated","Mostly generated","Yes","","95.0","","True","","","","","","","","","","Anonymized","","True","True","","","","","","","","Quasielastic Neutron Scattering","Diffraction","","Molecular Dynamics","Monte Carlo","","","","","","","","","","","","","","","","True","","True","","True","","","True","True","","","","True","","","1 GB - 10 GB","","True","True","","True","","","","","","","","not interested","moderately interested","very interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1152","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","441.32","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Soft Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","","","","MATLAB / Simulink","Python","","","True","True","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","Some of them","","Some of them","","","","","","","Mostly measured","Purely generated","Yes","","95.0","","True","","","","","","True","","","","Anonymized","True","True","","","","","","CDI","","","XPCS","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","True","True","","","100 GB - 1000 GB (1 TB)","","","","True","True","","","","","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1153","True","","","","","True","","","","True","","","","","True","True","","True","","","","","","","","","","","","","","","","","","80.0","","","","","","","","","True","True","True","","True","True","","","","","","","","","","","","","790.65","Completed the survey","Anonymized","Anonymized","Matter","Earth Science","","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Not familiar with FAIR","True","True","","","","Anonymized","Anonymized","","","True","","","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","None","None","None","","","","","Purely measured","Purely generated","Yes","","100.0","","True","","","","","","True","","","","","True","","","","","","Analytical methods","PCI","CDI","","","","","","","","","","","","","","single crystal","powder","PDF","","","","","","True","","True","","","","","","","True","","True","True","","","100 GB - 1000 GB (1 TB)","","True","True","True","True","True","True","","","True","","","","very interested","moderately interested","not interested","not interested","very interested","1980-01-01 00:00:00"
+"1154","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","482.47","Completed the survey","Anonymized","Anonymized","Matter","Chemistry","","","","","","Physical Chemistry","","","","","","","","","","","","","","","","More than 10 years","Research Associate","Research Associate","Yes","Not familiar with FAIR","True","","True","","","Python","Anonymized","LaTeX","","True","True","True","True","","","True","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","Some of them","Some of them","","","","","","","Purely measured","Purely generated","Yes","","100.0","","","True","","","","","","","","","","","True","","","","","","","","","NEXAFS","RIXS","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","100 MB - 1000 MB (1 GB)","","","","True","","","","True","True","True","","","very interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1155","True","","","","True","","","True","True","","","","","","","","","True","","True","","","","","","","","","","","","","","","","5.0","","True","","True","","True","True","","","","","","True","True","","","","","","","","","","","","","360.27","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","7 to 10 years","Postdoc","","Yes","Familiar with FAIR","","True","","","","Python","Anonymized","Anonymized","","","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","All","All","","All","","","","","","All","All","","All","","","","","","Purely measured","Mostly reused","Yes","","100.0","","True","","","","","","","","","","Anonymized","True","","","","","","","Full-field X-ray tomography","Transmission X-ray microscopy","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","True","True","","","100 GB - 1000 GB (1 TB)","","True","True","True","","True","","True","","","","","moderately interested","very interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1156","True","","","","True","","","","True","True","","","True","","","","","","","","","","","","","","","","","","","","","","","30.0","","","","True","True","True","","","","","","","True","True","","True","","","","","","","","","","","980.62","Completed the survey","Anonymized","Anonymized","Matter","Earth Science","","","","","","","","","","","","","","","","","","","","","","7 to 10 years","Postdoc","","Yes","Familiar with FAIR","True","","","","","Python","Anonymized","Anonymized","","True","True","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","","","","All","All","","All","All","","","","","None","Some of them","","Some of them","Some of them","","","","","Equally measured and simulated","Equally generated and reused","Yes","","0.0","","","","","","","","","","","","","","","True","","","","","","","","","","","numerische Modelle","thermodynamische Berechnungen ","","","","","","","","","","","","","","","","True","","True","","True","","","","True","True","","","","","","100 MB - 1000 MB (1 GB)","","","","","","True","","","True","True","","","moderately interested","moderately interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1159","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","4501.73","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Accelerator physics","","","1 to 3 years","PhD candidate","","Yes","Familiar with FAIR","","True","","","","Anonymized","Anonymized","","","True","","","","","","","","","","","","","","","","True","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","Some of them","","Some of them","","","","","","All","Some of them","","None","","","","","Mostly measured","Mostly generated","Not sure","","35.0","","","","","","","","","","","","Anonymized","True","","True","","","","","Electron imaging on screen","","","","","","ASTRA simulations","Geneis 1.3 simulations","","","","","","","","","","","","","","","","True","","True","","True","","","","True","","","True","True","","","100 MB - 1000 MB (1 GB)","","True","","True","","True","","True","True","","","","moderately interested","very interested","moderately interested","","very interested","moderately interested","1980-01-01 00:00:00"
+"1161","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","375.06","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","4 to 6 years","","","","Familiar with FAIR","True","True","","","","IGOR","","","","True","","True","True","","","","","","","","","","","","","True","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","None","All","Some of them","","","","","","","None","None","Some of them","","","","","","","Purely measured","Purely generated","Yes","","100.0","","","True","","","","","","","","","","","True","","","","","","","","","XPS","ARPES","NEXAFS","","","","","","","","","","","","","","","","True","","","","True","","True","","","","","","","","True","","","10 GB - 100 GB","","","","True","True","True","True","","","","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1165","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","30.0","","","","","","","","","","","","","","","","","","","","","","","","","","","150.66","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","4 to 6 years","Postdoc","","Yes","Apply FAIR","","","","","","Python","Python","ROOT framework","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equally measured and simulated","Mostly generated","","","95.0","True","","","","","","","","","","","","True","","True","","","","","ATLAS detector","","","","","","MC simulation","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","True","Other","","> 1 TB","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"1166","True","True","","","True","","","","True","True","","","","","True","","","True","True","","","","","","","","","","","","","","","","","10.0","","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","","","","","","","","","","","388.86","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Astrophysics and Astronomy","","","","More than 10 years","Postdoc","","Yes","Apply FAIR","","True","True","","","Python","ROOT framework","Anonymized","","True","","","True","","","","","True","True","","","","","","","","True","","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","","","Yes","","","","","","","","","","","","","","","True","True","True","True","True","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","True","True","","","","True","","","True","True","","","1 GB - 10 GB","","True","True","True","","","","","True","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1167","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","547.43","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Postdoc","","Yes","Not familiar with FAIR","","True","True","","","Git","LabVIEW","Anonymized","","","","","","","","True","","","","True","","","","","","","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","True","","All","All","All","All","All","All","","All","","None","None","None","None","None","None","","None","","Mostly measured","Mostly reused","Yes","","95.0","True","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","True","","True","","","","> 1 TB","","True","","True","","True","","True","","","","","moderately interested","moderately interested","very interested","moderately interested","not interested","not interested","1980-01-01 00:00:00"
+"1168","True","","","","True","True","","","","","","","","","","","True","True","","","Legal / ethical concerns","","","","","","","","","","","","","","","5.0","","","","","","","","","","","","","","","","","","","","","","","","","","True","1334.89","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","7 to 10 years","Postdoc","","Yes","Not familiar with FAIR","","True","","","","ROOT framework","Anonymized","Python","","True","True","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","All","All","All","All","","","","","","Mostly measured","Mostly reused","Yes","","95.0","True","","","","","","","","","","","","","True","True","","","","","","","","Particle Detectors","","","Monte Carlo Simulations","","","","","","","","","","","","","","","","","True","","","","True","","","True","True","","","True","True","","","> 1 TB","","True","","","","","","True","True","","","","not interested","not interested","very interested","very interested","not interested","very interested","1980-01-01 00:00:00"
+"1169","True","True","","","True","","","True","True","","","","","","True","","","","","","","","","","","","","","","","HEPData","","","","","50.0","","","","","","True","True","True","True","True","","","True","","","","","","","","","","","","","","468.42","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","7 to 10 years","Postdoc","","Yes","Familiar with FAIR","True","True","","","","ROOT framework","Python","Anonymized","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","Some of them","","","","","","","All","All","Some of them","","","","","","Mostly simulated","Equally generated and reused","Not sure","","100.0","True","","","","","","","","","","","","","","True","","","","","","","","","","","Particle collisions","Monte Carlo simulations","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","Other","","> 1 TB","","True","True","True","","","","","","","","","not interested","moderately interested","not interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"1172","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","No value to others","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","581.03","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","4 to 6 years","Postdoc","","Yes","Not familiar with FAIR","True","True","","","","ROOT framework","Anonymized","Anonymized","","True","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","True","","Some of them","","All","All","All","","","Some of them","","Some of them","","None","None","Some of them","","","Some of them","","Equally measured and simulated","Purely generated","Not sure","","10.0","","","","","","","","","","","","Anonymized","","True","True","","","","","","","","Particle interactions in sensors","","","GEANT4-based simulations of particle interactions","MOnte Carlo methods","","","","","","","","","","","","","","","","True","","True","","True","","","True","True","True","","True","True","","","100 GB - 1000 GB (1 TB)","","True","","True","True","True","True","","True","True","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1175","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","447.84","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Postdoc","","Yes","Not familiar with FAIR","True","True","","","","Python","","","","","True","","","","","","","","","","","","","","","","","","","True","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mostly measured","Purely generated","Yes","","100.0","","True","True","","","","","","","","","","","True","","","","","","","","","Röntgenspektroskopie","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","True","","","","10 GB - 100 GB","","","","","","","True","","","","","","moderately interested","moderately interested","moderately interested","moderately interested","very interested","not interested","1980-01-01 00:00:00"
+"1177","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","Legal / ethical concerns","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","918.39","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","4 to 6 years","Postdoc","","No","Not familiar with FAIR","","","True","","","ROOT framework","Python","Anonymized","","","","","","","","True","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equally measured and simulated","Purely reused","Yes","","100.0","","","","","","","","","","","","Anonymized","","","","","","","Other","","","","","","","","","","","","","","","","Electron positron collision","Simulation","","","","","","","","","","","","","","","","","","","","Other","","> 1 TB","","","","","","","","","","","Technical aspects of RDM","","moderately interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1178","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","594.21","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Familiar with FAIR","","True","","","","IGOR","Anonymized","Anonymized","","True","","","","","","","Lack of technical solutions","","","","","","","","","","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","Information on data collection","Some of them","Some of them","Some of them","","","","","","All","Some of them","Some of them","Some of them","","","","","","All","Mostly measured","Purely generated","Yes","","100.0","","","True","","","","","","","","","","","True","","","","","","","","","XPS","NEXAFS","time resolved XPS","","","","","","","","","","","","","","","","True","","True","","","","True","","","True","","","","","","","","100 GB - 1000 GB (1 TB)","","True","","True","True","True","","True","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"1180","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1637.55","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","Apply FAIR","","True","","","","IGOR","Python","","","True","True","","True","True","True","True","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","None","Some of them","All","All","All","","","","","None","Some of them","All","All","All","","","","","Mostly measured","Purely generated","Yes","","95.0","","","True","","","","","","","","","","True","","True","","","","","Photoemissions Elektronen Mikroskopie","","","","","","Boris computational spintronics","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","True","","","10 GB - 100 GB","","True","","","","True","","True","","True","","","moderately interested","very interested","not interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1183","","","","Other","True","","","True","","True","","","","","True","","True","True","","True","Lack of time / personnel","","","","","","","","","","","","","","","5.0","","","","","","True","True","True","True","True","True","","True","","True","","","","","","","","","","","","664.62","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Principal Investigator","","No","Familiar with FAIR","","True","True","","Locally","ROOT framework","Anonymized","Anonymized","","True","True","","True","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","Some of them","Some of them","All","All","","","","","Mostly measured","Mostly generated","Yes","","100.0","","","","","","","","","","True","","","","True","","","","","","","","","Spektroskopie","Teilchenverfolgung","Simulation der Daten","","","","","","","","","","","","","","","","","","True","","","True","True","","","","True","","","","","Other","","> 1 TB","","","","","True","True","","True","","True","","","moderately interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"1184","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1357.88","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","True","True","True","","","Delphi","Anonymized","LabVIEW","","","","","","","","","Lack of technical solutions","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","True","","","","","Some of them","Some of them","None","","All","","","","","Some of them","Some of them","None","","All","","","","","Purely measured","Mostly generated","Yes","","10.0","","","True","","","True","","","","","","Anonymized","","True","","","","","","","","","Wärmekapazität","Magnetokalorischer Effekt","Neutronenstreuung","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","","","","< 100 MB","","True","","True","True","True","True","True","True","True","","","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1185","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","2511.89","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Accelerator Physics","","","More than 10 years","Postdoc","","Not sure","Familiar with FAIR","True","","","","","Python","LabVIEW","","","","True","True","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","None","Some of them","None","","","","","","","None","None","None","","","","","","","Equally measured and simulated","Mostly generated","Yes","","100.0","","","True","","","","","","","","","","","","True","","","","Other","","","","","","","Python Models","","","","","","","","","Magnetic Field Measurement 2D and 3D","","","","","","","","","","","","True","","","","True","","","True","True","","","10 GB - 100 GB","","True","","True","True","True","","True","","","","","moderately interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1186","True","","","","","True","True","True","","","","","","","True","True","","","","True","","","","","","","","","","","","","","","","20.0","","","","","True","","","","True","True","True","","","True","","","","","","","","","","","","","4119.5","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","True","","","","","LabVIEW","ROOT framework","Anonymized","","True","","True","True","","","True","","True","True","True","True","","","","","True","","True","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","Some of them","","All","All","Some of them","","","","","","","All","Some of them","","","","","","Mostly measured","Mostly generated","Yes","","5.0","","","","","","","","","","True","True","","","True","True","","","","","","","","Spektroskopie","","","Monte Carlo","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","1 GB - 10 GB","","True","","","","True","","","","","","","","very interested","moderately interested","","","moderately interested","1980-01-01 00:00:00"
+"1187","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","603.01","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Research Associate","Research Associate","Yes","Not familiar with FAIR","True","","","","","ROOT framework","Anonymized","","","","","","","","","True","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","Some of them","","Some of them","","","","","","","None","","None","","","","","Purely measured","Purely generated","Not sure","","0.0","","","","","","","","","","","","","","","","","","","Other","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","I don't know","","","","","","","","","","","","True","not interested","not interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"1191","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","374.35","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Electrical Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","","","True","","","","","","","","","","","","","","True","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","1980-01-01 00:00:00"
+"1192","","True","","","True","True","True","","","","","","","","","","","True","","True","","","","","","","","","","","RCSB PDB","","","","","25.0","","","","","True","True","True","True","True","True","True","","True","","True","","","","","","","","","","","","688.64","Completed the survey","Anonymized","Anonymized","Matter","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","Anonymized","Anonymized","","","True","","","True","","","","","","True","","True","","","","","","","True","","","Yes","Yes","","","","","","","","","","","","","","","","","","","","","","","","","True","","PDBx/mmCIF","True","True","True","True","True","","","","","All","All","All","All","All","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","Purely measured","Purely generated","No","","100.0","","","True","","","","","","","","","","","True","","","","","","","","","Röntgendiffraktion","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","100 GB - 1000 GB (1 TB)","","","","","","","True","","","True","","","moderately interested","very interested","very interested","","","","1980-01-01 00:00:00"
+"1197","True","","","","","True","","","","True","","","","","True","","True","","","","","","","","","","","","","","","","","","","40.0","","","","","","","","","","","","","","","","True","","","","","","","","","","","886.44","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","Not familiar with FAIR","True","","","","","Excel (Spreadsheets)","Mathematica","OriginLab","","True","","","True","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","Mostly measured","","","","80.0","","","","","","","","","True","True","True","","True","","","","","","","screencopy","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","True","","","","1 GB - 10 GB","","True","","","","","True","","","","","","moderately interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1198","True","","","","","","","True","True","","","","True","","","","","","","","","","","","","","","","","","","","","","","5.0","","","","","True","True","","","True","True","True","","True","","","","","","","","","","","","","","1192.53","Completed the survey","Anonymized","Anonymized","Matter","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","More than 10 years","Research Associate","","Yes","Not familiar with FAIR","","True","","","","Excel (Spreadsheets)","ImageJ","Anonymized","True","","","","","","","","","True","","True","","","","","","True","","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","True","","","","Some of them","Some of them","Some of them","Some of them","","All","","","","None","None","None","None","","None","","","","Purely measured","Mostly generated","Yes","","100.0","","","","","","","","","True","True","","","True","True","","","","","","Flluoreszenz-Mikroskopie, Lebendzellmikroskopie","Durchflusszytometrie","","Immunoblotting","Immunopräzipitation","Überlebenskurven","","","","","","","","","","","","","","","","","","","","True","","","True","","","","True","","True","","","","10 GB - 100 GB","","","","","","True","","True","","","","","very interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"1200","","True","","","","True","","True","","","","","","","True","","True","True","","True","","","","","","","","","","","Institutional Repository","","","","","10.0","","","","","","","","","True","True","","","True","","True","True","","","","","","","","","","","750.85","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","More than 10 years","Principal Investigator","Principal Investigator","Yes","Apply FAIR","","","True","","","ROOT framework","Machine Learning Libraries","Python","","True","","","True","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","Some of them","Some of them","Some of them","","","","","Equally measured and simulated","Purely reused","Yes","","100.0","True","","","","","","","","","","","","","","True","","","","Analytical methods","","","","","","","Physics generators (PYTHIA, HIJING, etc): event-by-event computer intensive computation on HPC","Fast simulation employing simplified models","","","","","","","","Experiment raw data are calibrated and reconstructed on the GRID (WLCG)","Analysis level data are produced by user code running on the GRID and extracting smaller samples for end analysis","Machine learning and neural network techniques on local farm (or laptop, sometimes)","","","","","","","","","","","","","","True","","","","","Other","","> 1 TB","","True","","","","True","True","","True","","","","moderately interested","moderately interested","not interested","moderately interested","","moderately interested","1980-01-01 00:00:00"
+"1202","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","531.06","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","4 to 6 years","Postdoc","","No","Not familiar with FAIR","True","True","True","","","ROOT framework","Anonymized","Python","","","","True","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","All","","","","","","","","Some of them","All","","","","","","Equally measured and simulated","Equally generated and reused","Yes","","90.0","True","","","","","","","","","","","","","","True","","","","","","","","","","","State-of-the-art event generators","Specific numerical model calculations","","","","","","","","","","","","","","","","","","","","True","","","True","True","","","True","","","","100 GB - 1000 GB (1 TB)","","True","","","","","","","","","","","not interested","moderately interested","not interested","not interested","moderately interested","not interested","1980-01-01 00:00:00"
+"1204","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","Legal / ethical concerns","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","790.4","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","7 to 10 years","Postdoc","","Yes","Not familiar with FAIR","True","True","","","","Anonymized","Python","","","","","","","","","True","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","All","","","All","","","","","","None","","","None","","","","","","Equally measured and simulated","Purely reused","Yes","","100.0","True","","","","","","","","","","","","","True","True","","","","","","","","Teilchenspur-Rekonstruktion","machinelles Lernen","","Monte Carlo Teilchensimulationen (z.B. PYTHIA)","","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","Other","","> 1 TB","","","","","True","","","","True","","","","not interested","moderately interested","moderately interested","very interested","very interested","not interested","1980-01-01 00:00:00"
+"1208","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","615.23","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","","True","","","","Python","MATLAB / Simulink","","","True","","","True","","","","","True","","True","","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","Some of them","Some of them","","","","","","","Some of them","Some of them","Some of them","","","","","Mostly measured","Mostly generated","Yes","","100.0","","","","","","","True","","","","","","","True","True","","","","","","","","Photoelektronenspektroskopie","","","FEL Simulationen","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","10 GB - 100 GB","","","","","","","True","","","","","","moderately interested","very interested","moderately interested","not interested","moderately interested","","1980-01-01 00:00:00"
+"13","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","22964.8","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","No degree","Technical Staff","Technical Staff","","Familiar with FAIR","True","True","","","","PTC Creo","Altium Designer","EPLAN","","True","","","True","","","","","True","True","True","","","True","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","All","All","All","All","All","All","All","All","","","","","","","","","","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","","","","True","True","True","True","","","","> 1 TB","","","True","True","True","True","True","True","","True","","","very interested","very interested","not interested","","","very interested","1980-01-01 00:00:00"
+"26","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","3302.71","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Meteorology","","","","More than 10 years","Principal Investigator","","","Not familiar with FAIR","","True","","","","Anonymized","","","","True","","","","","","","","","","","","","","","","","True","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","Some of them","Some of them","","","","","","","","Some of them","Some of them","","","","","","Mostly measured","Mostly reused","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","","","> 1 TB","","True","True","True","True","True","","","","","","","moderately interested","moderately interested","","not interested","","","1980-01-01 00:00:00"
+"67","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","2192.73","Completed the survey","Anonymized","Anonymized","Energy","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Research Associate","","","Apply FAIR","True","","","","","Anonymized","OriginLab","MATLAB / Simulink","","True","","","","","","","","True","True","True","True","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","Equally measured and simulated","Purely generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","True","","","","True","True","","","1 GB - 10 GB","","","True","True","True","True","True","","","","Best practices","","very interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"186","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","387.36","Completed the survey","Anonymized","Anonymized","Energy","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","More than 10 years","Postdoc","","","Not familiar with FAIR","","True","","","","Anonymized","Excel (Spreadsheets)","LabVIEW","","True","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","None","Some of them","None","None","None","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","True","","True","","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","","True","","True","True","","True","","","","very interested","very interested","very interested","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"192","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","23094.7","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","No degree","Technical Staff","Technical Staff","No","","True","True","","","","PTC Creo","Altium Designer","EPLAN","","True","","","True","","","","","True","True","True","","","True","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","All","All","All","All","All","All","All","All","","All","All","Some of them","Some of them","Some of them","None","None","Some of them","","Purely simulated","Mostly generated","Yes","As much","","","","","","","","","","","","","","","","True","","","","","","","","","","","Finite Element Analysis","Computational Fluid Dynamics","Fluid-Structure Interaction","","","","","","","","","","","","","True","True","True","True","True","","True","","","","True","True","True","True","","","48.0","> 1 TB","As much","","True","True","True","True","True","True","","True","","","very interested","very interested","not interested","","","very interested","1980-01-01 00:00:00"
+"196","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","776.23","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","1 to 3 years","PhD candidate","","Yes","","","","","","Externally (servers / repositories)","Anonymized","Git","Visual Studio","","","True","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","All","All","","","","","","","","None","Some of them","","","","","","Purely simulated","Purely generated","Not sure","Less","","","","","","","","","","","","","","","","True","","","","","","","","","","","laufzeitmessungen","nsight compute","","","","","","","","","","","","","","","","True","","","","True","","","True","True","","","","","","1.0","< 100 MB","Less","","","","","","","","True","","","","moderately interested","moderately interested","not interested","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"224","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1838.54","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Soft Matter Physics","","","","More than 10 years","Principal Investigator","","Yes","","True","","","","","Anonymized","OriginLab","Anonymized","True","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","","","","","","","","","","Purely measured","Purely generated","Yes","As much","","","","","","","","","","","","","","True","True","","","","","","konfokales Mikroskop","","","Erzwungene Streumethoden","Isotherme Titrationskalorimetrie","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","","","","True","","9.0","100 GB - 1000 GB (1 TB)","As much","True","","","","","True","True","","","","","moderately interested","very interested","moderately interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"253","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","786.04","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","Yes","","","True","","","","Mathematica","Anonymized","ANSYS","","True","","","True","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","None","None","None","Some of them","","","","","","Mostly simulated","Mostly generated","Yes","Less","","","","","","","","","","","","","","True","","True","","","","","Mikroskopie","taktil","Interferometrie","","","","Numerisch","physikalisch/theoretisch","","","","","","","","","","","","","","","","","","True","","","True","","True","True","","","","","","6.0","1 GB - 10 GB","I don't know","","","","","","","","","","","True","moderately interested","very interested","moderately interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"286","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","880.29","Completed the survey","Anonymized","Anonymized","Information","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","","Not sure","","","True","","","","Aspen Custom Modeler","Excel (Spreadsheets)","LabVIEW","","True","","True","True","","","","","","","","","","","","","True","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","Some of them","","All","All","","","","","","None","","None","None","","","","","","Equally measured and simulated","Mostly generated","Yes","More","","","","","","","","","","","","","","","True","True","","","True","","","","","Gas chromatography","Scanning elctron microscopy","","Numerical models (solution of PDAE systems)","","","","","","","","","","","","","","","","","True","","True","","True","","","True","True","True","True","","","","3.0","1 GB - 10 GB","More","","","True","True","","True","","","","","","very interested","moderately interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"351","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1775.7","Completed the survey","Anonymized","Anonymized","Information","Physics","","","","","","","","","","","","","","","","","","Particles, Nuclei and Fields","","","","4 to 6 years","PhD candidate","","Not sure","","True","True","True","","","Anonymized","Anonymized","Anonymized","","","","","","","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","All","All","Some of them","All","All","","","","","","","","","","","","","","","Equally generated and reused","Yes","I don't know","","","","","","","","","","","","","","","","True","","","True","","","","","","","","Programm zur Verfügung gestellt von E.F.","neue Analyse der Daten von F.S.","","","","","","","","","","","","","","True","","True","","True","","True","","","","True","","True","","","","12.0","I don't know","I don't know","True","","True","True","True","","","True","","","","moderately interested","moderately interested","not interested","moderately interested","moderately interested","not interested","1980-01-01 00:00:00"
+"382","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","455.48","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","Less than 1 year","PhD candidate","","","Not familiar with FAIR","","","","True","","CFD Software (e.g. TecPlot, ParaView)","Machine Learning Libraries","CFD Software (e.g. TecPlot, ParaView)","","True","True","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","True","","","","All","","All","","","All","","","","All","","None","","","All","","Purely simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","True","True","True","True","True","True","","","1 GB - 10 GB","","","","True","True","True","True","True","True","True","","","moderately interested","very interested","moderately interested","very interested","very interested","moderately interested","1980-01-01 00:00:00"
+"392","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1375.6","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Computer Science","","","","","","","","","","","","More than 10 years","Research Associate","","","Familiar with FAIR","","True","","","","Anonymized","Git","PowerPoint","","","","","","True","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","All","","All","","Some of them","","","","","None","","None","","Some of them","","","","Mostly simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","True","","","","","","","True","True","","","100 MB - 1000 MB (1 GB)","","","","","","","","True","True","","","","moderately interested","moderately interested","very interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"407","","","","","","","","","","","","","","","","","","","","","","","","True","","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","732.69","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","","","","","","","","","","","","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","True","","","","MATLAB / Simulink","LabVIEW","Python","","","","","","","","True","","","","","","","","","","True","True","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","Some of them","Some of them","Some of them","","","","","","","None","Some of them","None","","","","","","","Mostly measured","Mostly reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","True","","True","True","","","1 GB - 10 GB","","","","","True","True","True","True","True","True","","","moderately interested","moderately interested","very interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"410","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","817.5","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Principal Investigator","Principal Investigator","","Familiar with FAIR","True","True","","","","Anonymized","Anonymized","Tecplot","","","","","True","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","","","","","Mostly simulated","Purely generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","True","True","","","True","","","10 GB - 100 GB","","","True","True","True","True","","","","True","","","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"444","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","635.95","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","Principal Investigator","","","Not familiar with FAIR","True","True","","","","LabVIEW","Python","Excel (Spreadsheets)","","True","","True","True","True","","True","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","","","","","All","All","","","All","","","","","Some of them","Some of them","","","Some of them","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","True","","","","","1 GB - 10 GB","","","","True","","True","","True","","","","","moderately interested","moderately interested","not interested","not interested","moderately interested","very interested","1980-01-01 00:00:00"
+"481","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","629.16","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Systems Engineering","","","","","","","","","","","","7 to 10 years","Research Associate","","","Not familiar with FAIR","","True","","","","Dymola","MATLAB / Simulink","MATLAB / Simulink","","True","","","","","","","","","","","","","","","","True","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","Some of them","","","","Some of them","","","","","None","","","","None","","","","","Mostly simulated","Mostly generated","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","True","True","","True","","","","1 GB - 10 GB","","True","True","True","True","True","True","True","True","True","","","very interested","very interested","very interested","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"484","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1110.64","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Physics","","","","","","","","","","","","","","","","","","","","","","4 to 6 years","Research Associate","","","Not familiar with FAIR","","","","True","","","","","True","","","","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","Purely simulated","Purely reused","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","True","","","","True","","","","True","","","I don't know","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"497","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","425.95","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","","Not familiar with FAIR","","True","","","","Anonymized","Anonymized","Anonymized","","","True","","","","","True","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","All","","All","","","","","","","None","","None","","","","","","","Mostly measured","Mostly generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","","True","","","","","10 GB - 100 GB","","","","","","","","","","","","True","very interested","very interested","moderately interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"533","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1481.79","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","7 to 10 years","PhD candidate","","","Not familiar with FAIR","True","True","","","","CATIA CAD-software","Anonymized","Excel (Spreadsheets)","","True","","","","","","","","True","","True","","","","","","","","","","True","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","","","","","Mostly measured","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","True","True","True","True","","","","1 GB - 10 GB","","","True","","True","True","True","","","","","","not interested","moderately interested","not interested","not interested","not interested","not interested","1980-01-01 00:00:00"
+"542","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","634.84","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","More than 10 years","Research Associate","","","Not familiar with FAIR","True","True","","","","Anonymized","Anonymized","Tecplot","","True","","","","","","","","True","","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","Some of them","","","","","","","","","Purely simulated","Purely generated","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","True","","","True","True","","True","","","","","100 GB - 1000 GB (1 TB)","","","","","","","","","","","","","very interested","moderately interested","moderately interested","not interested","very interested","not interested","1980-01-01 00:00:00"
+"557","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","984.18","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Mathematics","","","","","","","","","","","","","","Applied Mathematics","","","","","","","","7 to 10 years","Postdoc","","","Not familiar with FAIR","True","True","","","","Anonymized","LaTeX","Anonymized","","","True","","","True","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","All","All","All","All","","","","","","All","All","All","All","","","","","","Equally measured and simulated","Purely reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","True","True","","","True","True","True","","True","True","","","1 GB - 10 GB","","","","","True","True","True","True","True","","","","very interested","moderately interested","moderately interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"558","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","877.33","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","No degree","Research Associate","","","Not familiar with FAIR","","True","","","","CATIA CAD-software","","","True","","","","","","","","","True","True","","","","","","","True","","","","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","None","","","","","","","","Mostly simulated","Equally generated and reused","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","","","","True","True","","","","","1 GB - 10 GB","","","","","","True","","","True","","","","very interested","very interested","moderately interested","not interested","not interested","moderately interested","1980-01-01 00:00:00"
+"612","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","498.14","Completed the survey","Anonymized","Anonymized","Aeronautics, Space and Transportation","Engineering Science","","","","","","","","","","Aerospace Engineering","","","","","","","","","","","","4 to 6 years","PhD candidate","","","Not familiar with FAIR","True","","","","","Dymola","MATLAB / Simulink","Python","","","","True","","","","","","","","","","","","","","","","True","","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","Some of them","","","","","","","","","None","","","","","Mostly simulated","Mostly generated","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","1 GB - 10 GB","","","","True","","True","","","","","","","moderately interested","very interested","very interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"743","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","441.64","Completed the survey","Anonymized","Anonymized","Earth and Environment","Earth Science","","","","","","","","","Urban","","","","","","","","","","","","","4 to 6 years","PhD candidate","","Yes","Not familiar with FAIR","","True","","","","ArcGIS","QGIS/GDAL","QGIS/GDAL","","True","","True","","","","","","","True","True","True","True","","","","","","True","","","Yes","Yes","","","","True","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","True","","","","","All","","All","All","All","","","","","None","","None","None","Some of them","","","","","Mostly simulated","Mostly reused","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Manually","Collection from 3rd Party resources","Automatic straction with no validation","","","","","","","","","","","","","True","","","True","True","","True","","","True","True","True","","True","","","","100 GB - 1000 GB (1 TB)","","True","","","","","","True","","","","","very interested","moderately interested","moderately interested","very interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"766","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","23065.8","Completed the survey","Anonymized","Anonymized","Health","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","","Technical Staff","Technical Staff","","Familiar with FAIR","True","True","","","","PTC Creo","Altium Designer","EPLAN","","True","","","True","","","","","True","True","True","","","True","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","All","All","All","All","All","All","All","All","","All","All","Some of them","Some of them","Some of them","None","None","Some of them","","Purely simulated","Mostly generated","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Finite Element Analysis","Computational Fluid Dynamics","Fluid-Structure Interaction","","","","","","","","","","","","","True","True","True","True","True","True","True","","","","","True","True","True","","","","> 1 TB","","","True","True","True","True","True","True","","True","","","very interested","very interested","not interested","","","very interested","1980-01-01 00:00:00"
+"836","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","931.13","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Research Associate","","","Familiar with FAIR","","True","","","","Anonymized","","","True","","","","","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","","","","All","All","All","All","All","All","","","","None","None","None","None","None","None","","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","Erhebung mit Applikation","","","","","","","","","","","","","True","","","","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","","True","True","True","","","True","","","","very interested","very interested","moderately interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
+"839","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","662.62","Completed the survey","Anonymized","Anonymized","Health","","MTRA","","","","","","","","","","","","","","","","","","","","","","Technical Staff","Technical Staff","","Not familiar with FAIR","","","True","","","MATLAB / Simulink","Linux","","","","","True","","","","","","","True","","","","","","","","True","","","","Yes","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","All","","","","","","","","","Some of them","","","","","","","Mostly measured","Equally generated and reused","","","","","","","","","","","","","","","","True","","","","","","","matlap","Linux","","","","","","","","","","","","","","","","","","","","True","","True","","","","","True","","","","","","","","","","1 GB - 10 GB","","","","","","True","","","","","","","very interested","very interested","very interested","moderately interested","very interested","moderately interested","1980-01-01 00:00:00"
+"844","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","511.26","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Biology","","","","","","","","","","","PhD candidate","","","","True","True","","","","Anonymized","Anonymized","Anonymized","True","","","","","","","","","","","","","","","","","True","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","True","","","All","Some of them","All","","","","Some of them","","","None","None","None","","","","None","","","Purely measured","Purely generated","","","","","","","","","","","","","","","","True","True","","","","","","Bright field color & fluorescent","","","Genomics tools","Sequencing","Standard molecular & cell biology tools","","","","","","","","","","","","","","","","","","True","","True","True","","True","","","","True","","True","","","","100 GB - 1000 GB (1 TB)","","","True","","","","","","","","","","not interested","moderately interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"978","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1231.89","Completed the survey","Anonymized","Anonymized","Health","Life Science","","","","","","","","","","","","Health Science","","","","","","","","","","","Postdoc","","","Familiar with FAIR","","True","","","","SAS","R","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","True","","","","","","","","","","","","","","","","","","","","","Mostly measured","Purely reused","","","","","","","","","","","","","","","","","","","","True","","Other","","","","","","","","","","","","","face-to-face interviews","web-based questionnaires","calculation of usual dietary intakes (NIH SAS algorithms considering intra-individual variation)","inflammatory biomarkers in serum samples","microbiome data from fecal samples","metabolic markers in blood (glucose metabolism, lipoproteins and triglycerides)","","","","","","","","","","","","True","","","","","","","","","I don't know","","True","","","","True","True","","True","","","","moderately interested","not interested","not interested","not interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1010","","","","","","","","","","","","","","","","","","","","","","","True","True","","","True","True","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","23346.7","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","No degree","Technical Staff","Technical Staff","No","Familiar with FAIR","True","True","","","","PTC Creo","Altium Designer","EPLAN","","True","","","True","","","","","True","True","True","","","True","","","True","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","True","True","True","","All","All","All","All","All","All","All","All","","All","All","Some of them","Some of them","Some of them","None","None","Some of them","","Purely simulated","Mostly generated","Yes","","","","","","","","","","","","","","","","","True","","","","","","","","","","","Finite Element Analysis","Computational Fluid Dynamics","Fluid-Structure Interaction","","","","","","","","","","","","","True","True","True","True","True","True","True","","","","True","True","True","True","","","","> 1 TB","","","True","True","True","True","True","True","","True","","","very interested","very interested","not interested","","","very interested","1980-01-01 00:00:00"
+"1021","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","678.26","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Process Engineering","","","","","","","","","","","","More than 10 years","Postdoc","","Yes","Not familiar with FAIR","True","True","","","","Excel (Spreadsheets)","Anonymized","R","","True","","","True","","","","","","","","","","","","","","","True","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","None","None","None","","","","","","","Mostly measured","Mostly generated","Yes","","0.0","","","","","","","","","","","","","True","True","","True","","","Other","Digitalfotografie, Kameras","REM-Messungen","AFM-Messungen","MLA-Messung","chemische Analysen (XRF","XRD","","","","Probenahme","Probenteilung","Zerkleinern, Fest-Flüssig-Trennung, Trocknen","","","","Leistungsaufnahme","Temperatur, Druck im Prozessraum","Massestrom","","","","","True","True","","True","","","","","","","True","","","","","","100 MB - 1000 MB (1 GB)","","True","True","True","True","True","True","","True","True","","","very interested","very interested","very interested","very interested","very interested","very interested","1980-01-01 00:00:00"
+"1032","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","684.84","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Thermodynamics","","","","Less than 1 year","PhD candidate","","No","Not familiar with FAIR","True","True","","","","Python","","","","","","","","","","","","","","","","","","","","","True","True","Source code and scripts","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","Some of them","All","","All","","","","","","Some of them","All","","All","","","","","","Mostly measured","Purely generated","","","0.0","","","","","","","","","","","","","True","True","True","","","","","X-ray imagry","","","SEM","","","Independent programming","","","","","","","","","","","","","","","","","","","True","","","","","","True","","","","True","","","10 GB - 100 GB","","","","","","","","","","","","","","","","","","","1980-01-01 00:00:00"
+"1035","","","","","","","","","","","","","","","","","","","","","","","","","True","","True","True","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1192.85","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","More than 10 years","Research Associate","","Yes","Familiar with FAIR","True","","","","","Anonymized","IGOR","Jupyter","","True","","","True","","","","","","","","","","","","","True","","","","","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","Mostly measured","Purely generated","Yes","","90.0","","True","True","","","","","","","","","Anonymized","","True","","","","","","","","","NEXAFS","RIXS","","","","","","","","","","","","","","","","","True","","","","True","","True","","","","True","","","","True","","","1 GB - 10 GB","","","","","True","","","","","","","","","very interested","moderately interested","not interested","","moderately interested","1980-01-01 00:00:00"
+"1038","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","958.45","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Beschleunigerphysik","","","More than 10 years","Principal Investigator","Principal Investigator","Yes","Familiar with FAIR","","True","","","","MATLAB / Simulink","Excel (Spreadsheets)","Word","","","","","True","","","","","True","True","True","","","","","","","True","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","","","","","","Some of them","Some of them","Some of them","Some of them","","","","","","None","None","Some of them","Some of them","","","","","","Mostly measured","Mostly reused","Yes","","100.0","","","","","","","True","True","","","","Anonymized","","","True","","","","Analytical methods","","","","","","","Strahldynamik","EM-Felder","","","","","","","","Strahlparameter, Strahltransport","Vermessung von Hohlraumresonatoren","","","","","","","True","True","True","","","","","True","True","True","","","","","","I don't know","","","","","","","","","True","","","","moderately interested","very interested","very interested","very interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1060","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","965.27","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","No degree","Student","","Yes","Apply FAIR","","True","True","","","AiiDA","Anonymized","Machine Learning Libraries","","True","True","","True","","","","","","","","","","","","","","True","True","GitLab","","Not sure","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","True","","Some of them","All","All","All","All","","","Some of them","","None","All","All","All","All","","","None","","Purely simulated","Purely generated","Not sure","","","","","","","","","","","","","","","","","True","","","","","","","","","","","density functional theory","machine learning","","","","","","","","","","","","","","True","","True","","","","","","","","True","","","True","True","","","10 GB - 100 GB","","True","","True","","","","","True","","","","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1066","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","True","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","822.54","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","","Röntgenoptik","","","More than 10 years","Principal Investigator","Principal Investigator","Yes","Apply FAIR","","True","","","","Python","IDL","Anonymized","","True","True","True","True","","","","","True","True","True","","","","","","True","True","","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","True","True","","","","","Some of them","Some of them","Some of them","Some of them","Some of them","","","","","None","Some of them","Some of them","Some of them","Some of them","","","","","Mostly measured","Purely generated","Yes","","80.0","","True","True","","","","True","True","","","","Anonymized","True","True","True","","","","","Röntgen-Holografie","Röntgen-Mikroskopie","","Elektronen-Spektroskopie","Röntgen-Spektroskopie","Reflektometrie","Ray-Tracing","","","","","","","","","","","","","","","","","True","","True","","True","","","","True","","","True","True","","","100 GB - 1000 GB (1 TB)","","True","True","True","True","True","True","","True","True","","","very interested","moderately interested","very interested","moderately interested","very interested","very interested","1980-01-01 00:00:00"
+"1079","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","493.04","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Condensed Matter Physics","","","","More than 10 years","Principal Investigator","Principal Investigator","Not sure","Familiar with FAIR","","True","","","","Python","LabVIEW","","True","","","","","","","","","","","","","","","","","","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","All","","","","","","","None","None","None","","","","","","","Mostly measured","","Yes","","80.0","","","","","","","","","","","","Anonymized","","True","","","","","","","","","","","","","","","","","","","","","","","","","","","True","","","","","","True","True","","","","","","True","","","","","","","","True","True","","","","","","","","very interested","moderately interested","moderately interested","moderately interested","moderately interested","moderately interested","1980-01-01 00:00:00"
+"1129","","","","","","","","","","","","","","","","","","","","","","","","True","True","","True","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1054.42","Completed the survey","Anonymized","Anonymized","Matter","Engineering Science","","","","","","","","","","Mechanical Engineering","","","","","","","","","","","","1 to 3 years","Research Associate","","Not sure","Familiar with FAIR","True","True","","","","Anonymized","OriginLab","Excel (Spreadsheets)","","","","","True","","","","Heterogeneous workflows complicate standardized solutions","True","True","","True","","","","","True","","True","","","Yes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","True","True","True","","","","","","","All","All","Some of them","","","","","","","None","Some of them","Some of them","","","","","","","Equally measured and simulated","Mostly generated","Not sure","","0.0","","","","","","","","","","","","","True","","True","","","","Other","Lichtmikroskopie","Laserscanningmikroskop","EBSD","","","","(thermo)mechanische numerische Modelle","","","","","","","","","Sensoren, Thermokameras, Maschinenprotokolle","Zugversuche, Stauchversuche","Härteprüfungen","","","","True","","True","","True","","True","True","","","True","True","","","","","","10 GB - 100 GB","","","","True","","","True","True","","True","","","very interested","very interested","very interested","moderately interested","moderately interested","very interested","1980-01-01 00:00:00"
+"1201","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0","","","","","","","","","","","","","","","","","","","","","","","","","","","1013.21","Completed the survey","Anonymized","Anonymized","Matter","Physics","","","","","","","","","","","","","","","","","","Atomic, Molecular, Optical and Plasma Physics","","","","No degree","Student","","No","Not familiar with FAIR","True","","","","","ROOT framework","Anonymized","","","","","","","","","True","","True","","","","","","","","","","True","","","Yes","No","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Purely measured","Purely reused","","","75.0","","","","","","","","","","","","Anonymized","True","","","","","","","Pixel Detetors","Scintillator pulses","","","","","","","","","","","","","","","","","","","","","","True","","","","True","","","","True","","","","","","","1 GB - 10 GB","","","","","","","","","","","","True","not interested","very interested","very interested","not interested","very interested","moderately interested","1980-01-01 00:00:00"
diff --git a/survey_dashboard/description.html b/survey_dashboard/description.html
deleted file mode 100644
index 97cb8d9..0000000
--- a/survey_dashboard/description.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
- The HMC Survey explorer
-
-
-
-
-
\ No newline at end of file
diff --git a/survey_dashboard/data/germany_map.svg b/survey_dashboard/hmc_layout/assets/germany_map.svg
similarity index 100%
rename from survey_dashboard/data/germany_map.svg
rename to survey_dashboard/hmc_layout/assets/germany_map.svg
diff --git a/survey_dashboard/hmc_layout/assets/institute.svg b/survey_dashboard/hmc_layout/assets/institute.svg
new file mode 100644
index 0000000..9d646cd
--- /dev/null
+++ b/survey_dashboard/hmc_layout/assets/institute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/survey_dashboard/hmc_layout/assets/people.svg b/survey_dashboard/hmc_layout/assets/people.svg
new file mode 100644
index 0000000..d2f2af1
--- /dev/null
+++ b/survey_dashboard/hmc_layout/assets/people.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/survey_dashboard/hmc_layout/assets/quiz_black_48dp.svg b/survey_dashboard/hmc_layout/assets/quiz_black_48dp.svg
new file mode 100644
index 0000000..33e1832
--- /dev/null
+++ b/survey_dashboard/hmc_layout/assets/quiz_black_48dp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/survey_dashboard/hmc_layout/de_template.html b/survey_dashboard/hmc_layout/de_template.html
new file mode 100644
index 0000000..eac3003
--- /dev/null
+++ b/survey_dashboard/hmc_layout/de_template.html
@@ -0,0 +1,2061 @@
+{% extends base %}
+
+{% block postamble %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
+
+ {% block inner_body %}
+
+
+
+
+
+
+
+
+
+
+ {{ app_title }}
+
+
+
+
+
+
+
+
+
+
+
+ Wer sind die Datenstakeholder in Helmholtz? Welche Tools nutzen sie? Welche Hindernisse liegen auf dem Weg zu besseren Metadaten?
+ Dies sind nur einige der Fragen, die wir mit unserem HMC Community Survey 2021 adressiert haben. Auf dieser Seite können Sie die Ergebnisse der Umfrage interaktiv erforschen und einen tieferen Einblick in die Daten erlangen.
+
+
+
+ Filtern Sie die angezeigten Daten unter Globale Datafilter und erforschen Sie
+
+ die Communityprofile unserer Datenstakeholder
+ Methoden, Tools und Software, die für Datengenerierung und -verarbeitung genutzt werden
+ Antworten und ihren Bezug untereinander im Umfrage-Explorer
+
+
+
+
+
+
+ 49
+
+
+ Fragen umfasste die Umfrage insgesamt
+
+
+
+
+
+ 631
+
+
+ Forschende haben an der Umfrage teilgenommen
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% block contents %}
+
+
+ {% for doc in docs %}
+ {{ embed(doc) if doc.elementid }}
+ {% for root in doc.roots %}
+ {{ embed(root) | indent(10) }}
+ {% endfor %}
+ {% endfor %}
+ {{ plot_script | indent(8) }}
+
+
+
+ {{ embed(roots.App) }}
+
+
+
+ {% endblock %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ © 2023 Helmholtz Metadata Collaboration
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% endblock %}
diff --git a/survey_dashboard/hmc_layout/en_template.html b/survey_dashboard/hmc_layout/en_template.html
new file mode 100644
index 0000000..adfb37d
--- /dev/null
+++ b/survey_dashboard/hmc_layout/en_template.html
@@ -0,0 +1,2057 @@
+{% extends base %}
+
+{% block postamble %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
+
+ {% block inner_body %}
+
+
+
+
+
+
+
+
+
+ {{ app_title }}
+
+
+ {{ dashboard_title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Who are the data stakeholders in Helmholtz? What tools do they use? What are the roadblocks to better metadata?
+ These were some of the questions that we investigated with our HMC community survey in 2021. Here you can browse the results interactively and dive deeper into the data!
+
+
+
+ Refine the displayed data with Global Data Filters and explore
+
+ the community profiles of our data stakeholders
+ the methods, tools and software used for data generation and handling
+ responses and how they compare to each other between different quesitons in the Survey Data Explorer
+
+
+
+
+
+
+ 49
+
+
+ questions were included in the survey design
+
+
+
+
+
+ 631
+
+
+ researchers took part in the survey
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% block contents %}
+
+
+ {% for doc in docs %}
+ {{ embed(doc) if doc.elementid }}
+ {% for root in doc.roots %}
+ {{ embed(root) | indent(10) }}
+ {% endfor %}
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+
+ {{ plot_script | indent(8) }}
+
+
+
+ {{ embed(roots.App) }}
+
+
+
+ {% endblock %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ © 2025 Helmholtz Metadata Collaboration
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% endblock %}
diff --git a/survey_dashboard/data/display_specifications/hmc_colordicts.py b/survey_dashboard/hmc_layout/hmc_colordicts.py
similarity index 55%
rename from survey_dashboard/data/display_specifications/hmc_colordicts.py
rename to survey_dashboard/hmc_layout/hmc_colordicts.py
index 79c33b2..21b604e 100644
--- a/survey_dashboard/data/display_specifications/hmc_colordicts.py
+++ b/survey_dashboard/hmc_layout/hmc_colordicts.py
@@ -9,17 +9,13 @@
# For further information on the license, see the LICENSE file #
###############################################################################
"""
-This file contains color palets which are HMC specific
+This file contains color palettes which are HMC specific
@author: s.gerlich
"""
-import matplotlib.pyplot as plt
-import cmasher as cmr
-colors = cmr.take_cmap_colors(HMCRamp, None, cmap_range=(0.2, 0.8), return_fmt='hex')
+from typing import Optional, List, Any
-
-
-# Dictionary of HMC hub colors
+# Dictionary of HMC hub colors
hubPalette = {
"Information":"#A0235A",
"Health":"#D23264",
@@ -43,7 +39,7 @@
"#3F5704"
]
-# List of Hub Info color Palette
+# List of Hub Info color Palette
hubInfoPalette = [
"#005AA0",
"#0A2D6E",
@@ -56,28 +52,28 @@
"#470723"
]
-# create color ramps for continuous data out of color palettes
-# function to create ramp: make_ramp()
-def make_Ramp( ramp_colors ):
- from colour import Color
- from matplotlib.colors import LinearSegmentedColormap
-
- color_ramp = LinearSegmentedColormap.from_list( 'my_list', [ Color( c1 ).rgb for c1 in ramp_colors ] )
- plt.figure( figsize = (15,3))
- plt.imshow( [list(np.arange(0, len( ramp_colors ) , 0.1)) ] , interpolation='nearest', origin='lower', cmap= color_ramp )
- plt.xticks([])
- plt.yticks([])
- return color_ramp
+# Create color ramps for continuous data out of color palettes
+def make_Ramp(ramp_colors: List[str]) -> Optional[Any]:
+ """Create a matplotlib colormap from a list of colors."""
+ try:
+ from colour import Color # type: ignore[import-untyped]
+ from matplotlib.colors import LinearSegmentedColormap # type: ignore[import-untyped]
+ color_ramp = LinearSegmentedColormap.from_list('hmc_colormap', [Color(c1).rgb for c1 in ramp_colors])
+ return color_ramp
+ except ImportError:
+ # Fallback if optional dependencies aren't available
+ return None
-# to be used in matplotlib: cmap
-# equivalent of plotnine: scale_color_cmap()
-# continuous color scale based on HMC color palette
+# Create color ramps (only if dependencies are available)
HMCRamp = make_Ramp(HMCPalette)
-#cmr.view_cmap(HMCRamp)
-
-# continuous color scale based on Hub Info color palette
hubInfoRamp = make_Ramp(hubInfoPalette)
-#cmr.view_cmap(hubInfoRamp)
-
+# Generate HMC color samples for Bokeh (fallback to basic colors if dependencies fail)
+def get_hmc_colors(n_colors: int = 10) -> List[str]:
+ """Get n_colors from the HMC palette, cycling if needed."""
+ if len(HMCPalette) >= n_colors:
+ return HMCPalette[:n_colors]
+ else:
+ # Cycle through colors if we need more than available
+ return [HMCPalette[i % len(HMCPalette)] for i in range(n_colors)]
diff --git a/survey_dashboard/hmc_layout/hmc_custom_layout.py b/survey_dashboard/hmc_layout/hmc_custom_layout.py
new file mode 100644
index 0000000..fbdfacc
--- /dev/null
+++ b/survey_dashboard/hmc_layout/hmc_custom_layout.py
@@ -0,0 +1,252 @@
+hmc_custom_css_accordion ='''
+.bk.card {
+ border: 1px solid rgba(0,0,0,.125);
+ border-radius: 0.25rem;
+}
+.bk.accordion {
+ border: 1px solid rgba(0,0,0,.125);
+}
+.bk.card-header {
+ align-items: center;
+ background-color: rgba(0, 0, 0, 0.03);
+ border-radius: 0.25rem;
+ display: inline-flex;
+ justify-content: start !important;
+ width: 100%;
+}
+.bk.accordion-header {
+ align-items: center;
+ background-color: rgba(0, 0, 0, 0.03);
+ border-radius: 0;
+ display: flex;
+ justify-content: flex-start;
+ width: 100%;
+}
+.bk.card-button {
+ background-color: transparent;
+ margin-left: 0.5em;
+ flex-basis: content;
+ padding: 16px 24px !important;
+ box-sizing: border-box;
+ display: flex !important;
+ align-items: center !important;
+}
+.bk.card-header-row {
+ position: relative !important;
+}
+.bk.card-title {
+ align-items: left;
+ font-size: 1.4em;
+ font-weight: bold;
+ overflow-wrap: break-word;
+}
+.bk.card-header-row > .bk {
+ overflow-wrap: break-word;
+ text-align: left;
+}
+
+/* Fix scrolling issues without breaking Panel layout */
+body {
+ overflow-y: auto;
+ overflow-x: auto;
+}
+
+#app {
+ overflow: visible;
+ width: 100%;
+ max-width: 100%;
+}
+
+/* Ensure Panel accordion sections stack properly and span full width */
+.bk-panel-models-accordion {
+ overflow: visible;
+ width: 100% !important;
+ max-width: 100% !important;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card {
+ position: relative;
+ margin-bottom: 8px;
+ width: 100% !important;
+}
+
+/* Ensure all accordion headers have consistent width */
+.bk-panel-models-accordion .bk-panel-models-card-header {
+ width: 100% !important;
+ min-width: 100% !important;
+ box-sizing: border-box;
+}
+
+/* Add consistent padding to all accordion content */
+.bk-panel-models-accordion .bk-panel-models-card-content {
+ padding: 24px !important;
+ box-sizing: border-box;
+}
+
+/* Ensure accordion button spans full header width */
+.bk-panel-models-accordion .bk-panel-models-card-button {
+ width: 100% !important;
+ text-align: left;
+ padding: 16px 24px !important;
+ box-sizing: border-box;
+ display: flex !important;
+ justify-content: space-between !important;
+ align-items: center !important;
+}
+
+/* Target the actual Panel accordion structure */
+.bk-panel-models-accordion .bk-panel-models-card-header {
+ display: flex !important;
+ justify-content: flex-start !important;
+ align-items: center !important;
+ width: 100% !important;
+ gap: 0 !important;
+}
+
+/* Fix the text and icon positioning in Panel accordion headers */
+.bk-panel-models-accordion .bk-panel-models-card-header > *:first-child {
+ flex: 1 !important;
+ text-align: left !important;
+ order: 1 !important;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card-header > *:last-child {
+ flex-shrink: 0 !important;
+ margin-left: auto !important;
+ order: 2 !important;
+}
+
+/* Alternative approach: target Panel's internal structure */
+.bk-panel-models-accordion .bk-panel-models-card-header .bk-panel-models-markup-html {
+ order: 1 !important;
+ flex: 1 !important;
+ text-align: left !important;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card-header .bk-panel-models-icon {
+ order: 2 !important;
+ margin-left: 0 !important;
+ flex-shrink: 0 !important;
+}
+
+/* Also target the legacy Panel classes */
+.bk-panel-models-accordion .bk-panel-models-card-header .bk-panel-models-markup {
+ order: 1 !important;
+ flex: 1 !important;
+ text-align: left !important;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card-header .bk-panel-models-icon {
+ order: 2 !important;
+ margin-left: auto !important;
+ flex-shrink: 0 !important;
+}
+
+/* Target Panel's actual accordion button structure */
+.bk-panel-models-accordion .bk-panel-models-card-header button {
+ display: flex !important;
+ justify-content: flex-start !important;
+ align-items: center !important;
+ width: 100% !important;
+ text-align: left !important;
+ gap: 0 !important;
+}
+
+/* Ensure the text content is on the left */
+.bk-panel-models-accordion .bk-panel-models-card-header button > *:first-child {
+ order: 1 !important;
+ flex: 1 !important;
+ text-align: left !important;
+}
+
+/* Ensure the icon is on the right */
+.bk-panel-models-accordion .bk-panel-models-card-header button > *:last-child {
+ order: 2 !important;
+ margin-left: 0 !important;
+ flex-shrink: 0 !important;
+}
+
+/* Additional targeting for Panel's internal structure */
+.bk-panel-models-accordion .bk-panel-models-card-header .bk-panel-models-markup-html,
+.bk-panel-models-accordion .bk-panel-models-card-header .bk-panel-models-markup {
+ order: 1 !important;
+ flex: 1 !important;
+ text-align: left !important;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card-header .bk-panel-models-icon,
+.bk-panel-models-accordion .bk-panel-models-card-header .bk-panel-models-markup-icon {
+ order: 2 !important;
+ margin-left: 0 !important;
+ flex-shrink: 0 !important;
+}
+
+/* Ensure all Panel layout containers span full width */
+.bk-panel-models-layout-Column,
+.bk-panel-models-layout-row {
+ width: 100% !important;
+ max-width: 100% !important;
+}
+
+.bk-Row { /* Row is the main container for the layout -- dont remove this */
+padding: 20px;
+}
+
+/* Fix carousel overflow issues */
+.carousel__viewport {
+ overflow: hidden;
+}
+
+/* Ensure proper spacing between accordion sections */
+.bk-panel-models-accordion .bk-panel-models-card + .bk-panel-models-card {
+ margin-top: 8px;
+}
+
+/* Consistent spacing for accordion content */
+.bk-panel-models-accordion .bk-panel-models-card-content > * {
+ margin-bottom: 16px;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card-content > *:last-child {
+ margin-bottom: 0;
+}
+
+/* Make sure the main container spans full viewport */
+.bk-root {
+ width: 100% !important;
+ max-width: 100% !important;
+}
+
+/* Ensure consistent accordion appearance */
+.bk-panel-models-accordion .bk-panel-models-card {
+ border: 1px solid rgba(0, 0, 0, 0.125);
+ border-radius: 0.25rem;
+ overflow: hidden;
+}
+
+/* Smooth transitions for accordion interactions */
+.bk-panel-models-accordion .bk-panel-models-card-content {
+ transition: all 0.3s ease;
+}
+
+/* Remove spacing between text and icon in accordion headers */
+.bk-panel-models-accordion .bk-panel-models-card-header * {
+ margin: 0 !important;
+ padding: 0 !important;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card-header button {
+ padding: 16px 24px !important;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card-header button > *:first-child {
+ margin-right: 8px !important;
+}
+
+.bk-panel-models-accordion .bk-panel-models-card-header button > *:last-child {
+ margin-left: 8px !important;
+}
+'''
+#rgba(0, 0, 0, 0.03);
+#"#005AA0" : rgba(0, 90, 160, 0.53);
+# background-color: rgba(0, 90, 160, 0.53);
diff --git a/survey_dashboard/hmc_layout/static/en_files/623c39184ca97bb437e258ef(1).html b/survey_dashboard/hmc_layout/static/en_files/623c39184ca97bb437e258ef(1).html
new file mode 100644
index 0000000..a4a1eda
--- /dev/null
+++ b/survey_dashboard/hmc_layout/static/en_files/623c39184ca97bb437e258ef(1).html
@@ -0,0 +1,3 @@
+
+
+cables HMC Animation
\ No newline at end of file
diff --git a/survey_dashboard/hmc_layout/static/en_files/623c39184ca97bb437e258ef.html b/survey_dashboard/hmc_layout/static/en_files/623c39184ca97bb437e258ef.html
new file mode 100644
index 0000000..74f9fe0
--- /dev/null
+++ b/survey_dashboard/hmc_layout/static/en_files/623c39184ca97bb437e258ef.html
@@ -0,0 +1,3 @@
+
+
+cables
\ No newline at end of file
diff --git a/survey_dashboard/hmc_layout/static/en_files/Banner.png b/survey_dashboard/hmc_layout/static/en_files/Banner.png
new file mode 100644
index 0000000..e79f97f
Binary files /dev/null and b/survey_dashboard/hmc_layout/static/en_files/Banner.png differ
diff --git a/survey_dashboard/hmc_layout/static/en_files/Banner2.png b/survey_dashboard/hmc_layout/static/en_files/Banner2.png
new file mode 100644
index 0000000..794a4f4
Binary files /dev/null and b/survey_dashboard/hmc_layout/static/en_files/Banner2.png differ
diff --git a/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerIcon.png b/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerIcon.png
new file mode 100644
index 0000000..51d8bf5
Binary files /dev/null and b/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerIcon.png differ
diff --git a/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerIcon16.png b/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerIcon16.png
new file mode 100644
index 0000000..69a7755
Binary files /dev/null and b/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerIcon16.png differ
diff --git a/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerLogoInverted.png b/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerLogoInverted.png
new file mode 100644
index 0000000..5e31f26
Binary files /dev/null and b/survey_dashboard/hmc_layout/static/en_files/SurveyExplorerLogoInverted.png differ
diff --git a/survey_dashboard/hmc_layout/static/en_files/app.css b/survey_dashboard/hmc_layout/static/en_files/app.css
new file mode 100644
index 0000000..716cba9
--- /dev/null
+++ b/survey_dashboard/hmc_layout/static/en_files/app.css
@@ -0,0 +1,2326 @@
+@charset "UTF-8";
+/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/
+*,
+:after,
+:before {
+ border: 0 solid #ebecec;
+ box-sizing: border-box;
+}
+:after,
+:before {
+ --tw-content: "";
+}
+html {
+ -webkit-text-size-adjust: 100%;
+ font-feature-settings: normal;
+ font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
+ Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
+ Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
+ line-height: 1.5;
+ -moz-tab-size: 4;
+ -o-tab-size: 4;
+ tab-size: 4;
+}
+body {
+ line-height: inherit;
+ margin: 0;
+}
+hr {
+ border-top-width: 1px;
+ color: inherit;
+ height: 0;
+}
+abbr:where([title]) {
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-size: inherit;
+ font-weight: inherit;
+}
+a {
+ color: inherit;
+ text-decoration: inherit;
+}
+b,
+strong {
+ font-weight: bolder;
+}
+code,
+kbd,
+pre,
+samp {
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
+ Liberation Mono, Courier New, monospace;
+ font-size: 1em;
+}
+small {
+ font-size: 80%;
+}
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+sub {
+ bottom: -0.25em;
+}
+sup {
+ top: -0.5em;
+}
+table {
+ border-collapse: collapse;
+ border-color: inherit;
+ text-indent: 0;
+}
+button,
+input,
+optgroup,
+select,
+textarea {
+ color: inherit;
+ font-family: inherit;
+ font-size: 100%;
+ font-weight: inherit;
+ line-height: inherit;
+ margin: 0;
+ padding: 0;
+}
+button,
+select {
+ text-transform: none;
+}
+[type="button"],
+[type="reset"],
+[type="submit"],
+button {
+ -webkit-appearance: button;
+ background-color: transparent;
+ background-image: none;
+}
+:-moz-focusring {
+ outline: auto;
+}
+:-moz-ui-invalid {
+ box-shadow: none;
+}
+progress {
+ vertical-align: baseline;
+}
+::-webkit-inner-spin-button,
+::-webkit-outer-spin-button {
+ height: auto;
+}
+[type="search"] {
+ -webkit-appearance: textfield;
+ outline-offset: -2px;
+}
+::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+::-webkit-file-upload-button {
+ -webkit-appearance: button;
+ font: inherit;
+}
+summary {
+ display: list-item;
+}
+blockquote,
+dd,
+dl,
+figure,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+hr,
+p,
+pre {
+ margin: 0;
+}
+fieldset {
+ margin: 0;
+}
+fieldset,
+legend {
+ padding: 0;
+}
+menu,
+ol,
+ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+textarea {
+ resize: vertical;
+}
+input::-moz-placeholder,
+textarea::-moz-placeholder {
+ color: #7b878b;
+ opacity: 1;
+}
+input::placeholder,
+textarea::placeholder {
+ color: #7b878b;
+ opacity: 1;
+}
+[role="button"],
+button {
+ cursor: pointer;
+}
+:disabled {
+ cursor: default;
+}
+audio,
+canvas,
+embed,
+iframe,
+img,
+object,
+svg,
+video {
+ display: block;
+ vertical-align: middle;
+}
+img,
+video {
+ height: auto;
+ max-width: 100%;
+}
+[hidden] {
+ display: none;
+}
+*,
+:after,
+:before {
+ --tw-border-spacing-x: 0;
+ --tw-border-spacing-y: 0;
+ --tw-translate-x: 0;
+ --tw-translate-y: 0;
+ --tw-rotate: 0;
+ --tw-skew-x: 0;
+ --tw-skew-y: 0;
+ --tw-scale-x: 1;
+ --tw-scale-y: 1;
+ --tw-pan-x: ;
+ --tw-pan-y: ;
+ --tw-pinch-zoom: ;
+ --tw-scroll-snap-strictness: proximity;
+ --tw-ordinal: ;
+ --tw-slashed-zero: ;
+ --tw-numeric-figure: ;
+ --tw-numeric-spacing: ;
+ --tw-numeric-fraction: ;
+ --tw-ring-inset: ;
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: rgba(59, 130, 246, 0.5);
+ --tw-ring-offset-shadow: 0 0 #0000;
+ --tw-ring-shadow: 0 0 #0000;
+ --tw-shadow: 0 0 #0000;
+ --tw-shadow-colored: 0 0 #0000;
+ --tw-blur: ;
+ --tw-brightness: ;
+ --tw-contrast: ;
+ --tw-grayscale: ;
+ --tw-hue-rotate: ;
+ --tw-invert: ;
+ --tw-saturate: ;
+ --tw-sepia: ;
+ --tw-drop-shadow: ;
+ --tw-backdrop-blur: ;
+ --tw-backdrop-brightness: ;
+ --tw-backdrop-contrast: ;
+ --tw-backdrop-grayscale: ;
+ --tw-backdrop-hue-rotate: ;
+ --tw-backdrop-invert: ;
+ --tw-backdrop-opacity: ;
+ --tw-backdrop-saturate: ;
+ --tw-backdrop-sepia: ;
+}
+::backdrop {
+ --tw-border-spacing-x: 0;
+ --tw-border-spacing-y: 0;
+ --tw-translate-x: 0;
+ --tw-translate-y: 0;
+ --tw-rotate: 0;
+ --tw-skew-x: 0;
+ --tw-skew-y: 0;
+ --tw-scale-x: 1;
+ --tw-scale-y: 1;
+ --tw-pan-x: ;
+ --tw-pan-y: ;
+ --tw-pinch-zoom: ;
+ --tw-scroll-snap-strictness: proximity;
+ --tw-ordinal: ;
+ --tw-slashed-zero: ;
+ --tw-numeric-figure: ;
+ --tw-numeric-spacing: ;
+ --tw-numeric-fraction: ;
+ --tw-ring-inset: ;
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: rgba(59, 130, 246, 0.5);
+ --tw-ring-offset-shadow: 0 0 #0000;
+ --tw-ring-shadow: 0 0 #0000;
+ --tw-shadow: 0 0 #0000;
+ --tw-shadow-colored: 0 0 #0000;
+ --tw-blur: ;
+ --tw-brightness: ;
+ --tw-contrast: ;
+ --tw-grayscale: ;
+ --tw-hue-rotate: ;
+ --tw-invert: ;
+ --tw-saturate: ;
+ --tw-sepia: ;
+ --tw-drop-shadow: ;
+ --tw-backdrop-blur: ;
+ --tw-backdrop-brightness: ;
+ --tw-backdrop-contrast: ;
+ --tw-backdrop-grayscale: ;
+ --tw-backdrop-hue-rotate: ;
+ --tw-backdrop-invert: ;
+ --tw-backdrop-opacity: ;
+ --tw-backdrop-saturate: ;
+ --tw-backdrop-sepia: ;
+}
+.container {
+ margin-left: auto;
+ margin-right: auto;
+ padding-left: 20px;
+ padding-right: 20px;
+ width: 100%;
+}
+@media (min-width: 640px) {
+ .container {
+ max-width: 640px;
+ padding-left: 20px;
+ padding-right: 20px;
+ }
+}
+@media (min-width: 768px) {
+ .container {
+ max-width: 768px;
+ padding-left: 24px;
+ padding-right: 24px;
+ }
+}
+@media (min-width: 1024px) {
+ .container {
+ max-width: 1024px;
+ }
+}
+@media (min-width: 1280px) {
+ .container {
+ max-width: 1280px;
+ }
+}
+@media (min-width: 1536px) {
+ .container {
+ max-width: 1536px;
+ }
+}
+.pointer-events-none {
+ pointer-events: none;
+}
+.pointer-events-auto {
+ pointer-events: auto;
+}
+.visible {
+ visibility: visible;
+}
+.static {
+ position: static;
+}
+.fixed {
+ position: fixed;
+}
+.absolute {
+ position: absolute;
+}
+.relative {
+ position: relative;
+}
+.sticky {
+ position: sticky;
+}
+.top-0 {
+ top: 0;
+}
+.left-0 {
+ left: 0;
+}
+.top-8 {
+ top: 2rem;
+}
+.right-0 {
+ right: 0;
+}
+.left-1\/2 {
+ left: 50%;
+}
+.top-full {
+ top: 100%;
+}
+.bottom-0 {
+ bottom: 0;
+}
+.top-1\/2 {
+ top: 50%;
+}
+.right-6 {
+ right: 1.5rem;
+}
+.bottom-11 {
+ bottom: 2.75rem;
+}
+.z-40 {
+ z-index: 40;
+}
+.z-10 {
+ z-index: 10;
+}
+.z-20 {
+ z-index: 20;
+}
+.z-30 {
+ z-index: 30;
+}
+.z-50 {
+ z-index: 50;
+}
+.order-2 {
+ order: 2;
+}
+.order-1 {
+ order: 1;
+}
+.col-span-full {
+ grid-column: 1/-1;
+}
+.mx-0\.5 {
+ margin-left: 0.125rem;
+ margin-right: 0.125rem;
+}
+.mx-0 {
+ margin-left: 0;
+ margin-right: 0;
+}
+.mx-2 {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+}
+.mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+}
+.mx-3 {
+ margin-left: 0.75rem;
+ margin-right: 0.75rem;
+}
+.mx-1 {
+ margin-left: 0.25rem;
+ margin-right: 0.25rem;
+}
+.my-10 {
+ margin-bottom: 2.5rem;
+ margin-top: 2.5rem;
+}
+.my-6 {
+ margin-bottom: 1.5rem;
+ margin-top: 1.5rem;
+}
+.my-20 {
+ margin-bottom: 5rem;
+ margin-top: 5rem;
+}
+.mb-12 {
+ margin-bottom: 3rem;
+}
+.mb-8 {
+ margin-bottom: 2rem;
+}
+.mb-4 {
+ margin-bottom: 1rem;
+}
+.mt-0 {
+ margin-top: 0;
+}
+.-ml-1 {
+ margin-left: -0.25rem;
+}
+.mb-1 {
+ margin-bottom: 0.25rem;
+}
+.-mb-2 {
+ margin-bottom: -0.5rem;
+}
+.mt-auto {
+ margin-top: auto;
+}
+.mb-10 {
+ margin-bottom: 2.5rem;
+}
+.mt-8 {
+ margin-top: 2rem;
+}
+.mr-2 {
+ margin-right: 0.5rem;
+}
+.mb-auto {
+ margin-bottom: auto;
+}
+.mb-2 {
+ margin-bottom: 0.5rem;
+}
+.ml-auto {
+ margin-left: auto;
+}
+.mb-3 {
+ margin-bottom: 0.75rem;
+}
+.mr-12 {
+ margin-right: 3rem;
+}
+.mb-16 {
+ margin-bottom: 4rem;
+}
+.mt-2 {
+ margin-top: 0.5rem;
+}
+.mb-6 {
+ margin-bottom: 1.5rem;
+}
+.mb-5 {
+ margin-bottom: 1.25rem;
+}
+.mb-\[60px\] {
+ margin-bottom: 60px;
+}
+.mr-4 {
+ margin-right: 1rem;
+}
+.mb-24 {
+ margin-bottom: 6rem;
+}
+.mb-20 {
+ margin-bottom: 5rem;
+}
+.mt-20 {
+ margin-top: 5rem;
+}
+.-mt-2 {
+ margin-top: -0.5rem;
+}
+.-ml-3 {
+ margin-left: -0.75rem;
+}
+.ml-2 {
+ margin-left: 0.5rem;
+}
+.mt-1 {
+ margin-top: 0.25rem;
+}
+.mr-auto {
+ margin-right: auto;
+}
+.mt-10 {
+ margin-top: 2.5rem;
+}
+.mb-2\.5 {
+ margin-bottom: 0.625rem;
+}
+.mb-\[40px\] {
+ margin-bottom: 40px;
+}
+.mb-0 {
+ margin-bottom: 0;
+}
+.mb-14 {
+ margin-bottom: 3.5rem;
+}
+.mr-3 {
+ margin-right: 0.75rem;
+}
+.mt-0\.5 {
+ margin-top: 0.125rem;
+}
+.box-border {
+ box-sizing: border-box;
+}
+.block {
+ display: block;
+}
+.inline-block {
+ display: inline-block;
+}
+.flex {
+ display: flex;
+}
+.inline-flex {
+ display: inline-flex;
+}
+.table {
+ display: table;
+}
+.grid {
+ display: grid;
+}
+.hidden {
+ display: none;
+}
+.h-full {
+ height: 100%;
+}
+.h-8 {
+ height: 2rem;
+}
+.h-fit {
+ height: -moz-fit-content;
+ height: fit-content;
+}
+.h-32 {
+ height: 8rem;
+}
+.h-4 {
+ height: 1rem;
+}
+.h-16 {
+ height: 4rem;
+}
+.h-\[320px\] {
+ height: 320px;
+}
+.h-px {
+ height: 1px;
+}
+.h-6 {
+ height: 1.5rem;
+}
+.max-h-90 {
+ max-height: 90vh;
+}
+.max-h-\[54px\] {
+ max-height: 54px;
+}
+.max-h-75 {
+ max-height: 75vh;
+}
+.min-h-\[60px\] {
+ min-height: 60px;
+}
+.min-h-\[80px\] {
+ min-height: 80px;
+}
+.w-full {
+ width: 100%;
+}
+.w-\[300px\] {
+ width: 300px;
+}
+.w-10 {
+ width: 2.5rem;
+}
+.w-\[258px\] {
+ width: 258px;
+}
+.w-\[1000px\] {
+ width: 1000px;
+}
+.w-screen {
+ width: 100vw;
+}
+.w-1\/3 {
+ width: 33.333333%;
+}
+.w-1\/2 {
+ width: 50%;
+}
+.w-11\/12 {
+ width: 91.666667%;
+}
+.w-2\/3 {
+ width: 66.666667%;
+}
+.w-3\/4 {
+ width: 75%;
+}
+.w-1\/4 {
+ width: 25%;
+}
+.w-6 {
+ width: 1.5rem;
+}
+.min-w-fit {
+ min-width: -moz-fit-content;
+ min-width: fit-content;
+}
+.max-w-\[700px\] {
+ max-width: 700px;
+}
+.max-w-max {
+ max-width: -moz-max-content;
+ max-width: max-content;
+}
+.max-w-full {
+ max-width: 100%;
+}
+.max-w-\[321px\] {
+ max-width: 321px;
+}
+.max-w-6xl {
+ max-width: 72rem;
+}
+.max-w-screen-lg {
+ max-width: 1024px;
+}
+.max-w-\[692px\] {
+ max-width: 692px;
+}
+.flex-shrink {
+ flex-shrink: 1;
+}
+.flex-shrink-0 {
+ flex-shrink: 0;
+}
+.flex-grow {
+ flex-grow: 1;
+}
+.origin-center {
+ transform-origin: center;
+}
+.origin-left {
+ transform-origin: left;
+}
+.-translate-x-1\/2 {
+ --tw-translate-x: -50%;
+}
+.-translate-x-1\/2,
+.-translate-y-1\/2 {
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+}
+.-translate-y-1\/2 {
+ --tw-translate-y: -50%;
+}
+.translate-y-px {
+ --tw-translate-y: 1px;
+}
+.rotate-180,
+.translate-y-px {
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+}
+.rotate-180 {
+ --tw-rotate: 180deg;
+}
+.rotate-90 {
+ --tw-rotate: 90deg;
+}
+.-rotate-90,
+.rotate-90 {
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+}
+.-rotate-90 {
+ --tw-rotate: -90deg;
+}
+.scale-75 {
+ --tw-scale-x: 0.75;
+ --tw-scale-y: 0.75;
+}
+.scale-50,
+.scale-75 {
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+}
+.scale-50 {
+ --tw-scale-x: 0.5;
+ --tw-scale-y: 0.5;
+}
+.transform {
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+}
+.cursor-pointer {
+ cursor: pointer;
+}
+.grid-flow-row {
+ grid-auto-flow: row;
+}
+.grid-cols-3 {
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+}
+.grid-cols-1 {
+ grid-template-columns: repeat(1, minmax(0, 1fr));
+}
+.grid-cols-12 {
+ grid-template-columns: repeat(12, minmax(0, 1fr));
+}
+.flex-row {
+ flex-direction: row;
+}
+.flex-row-reverse {
+ flex-direction: row-reverse;
+}
+.flex-col {
+ flex-direction: column;
+}
+.flex-wrap {
+ flex-wrap: wrap;
+}
+.items-start {
+ align-items: flex-start;
+}
+.items-end {
+ align-items: flex-end;
+}
+.items-center {
+ align-items: center;
+}
+.justify-end {
+ justify-content: flex-end;
+}
+.justify-center {
+ justify-content: center;
+}
+.justify-between {
+ justify-content: space-between;
+}
+.gap-2 {
+ gap: 0.5rem;
+}
+.gap-\[45px\] {
+ gap: 45px;
+}
+.gap-3 {
+ gap: 0.75rem;
+}
+.gap-4 {
+ gap: 1rem;
+}
+.gap-6 {
+ gap: 1.5rem;
+}
+.gap-2\.5 {
+ gap: 0.625rem;
+}
+.gap-20 {
+ gap: 5rem;
+}
+.gap-5 {
+ gap: 1.25rem;
+}
+.gap-x-\[60px\] {
+ -moz-column-gap: 60px;
+ column-gap: 60px;
+}
+.gap-y-\[70px\] {
+ row-gap: 70px;
+}
+.space-x-1 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
+ margin-right: calc(0.25rem * var(--tw-space-x-reverse));
+}
+.space-x-4 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
+ margin-right: calc(1rem * var(--tw-space-x-reverse));
+}
+.space-x-2 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
+}
+.overflow-hidden {
+ overflow: hidden;
+}
+.overflow-y-auto {
+ overflow-y: auto;
+}
+.overflow-x-hidden {
+ overflow-x: hidden;
+}
+.overflow-y-hidden {
+ overflow-y: hidden;
+}
+.overflow-x-visible {
+ overflow-x: visible;
+}
+.whitespace-nowrap {
+ white-space: nowrap;
+}
+.break-words {
+ overflow-wrap: break-word;
+}
+.rounded-full {
+ border-radius: 9999px;
+}
+.rounded-lg {
+ border-radius: 0.5rem;
+}
+.rounded-md {
+ border-radius: 0.375rem;
+}
+.rounded-\[10px\] {
+ border-radius: 10px;
+}
+.rounded {
+ border-radius: 0.25rem;
+}
+.rounded-r-\[10px\] {
+ border-bottom-right-radius: 10px;
+ border-top-right-radius: 10px;
+}
+.border {
+ border-width: 1px;
+}
+.border-0 {
+ border-width: 0;
+}
+.border-t {
+ border-top-width: 1px;
+}
+.border-b {
+ border-bottom-width: 1px;
+}
+.border-t-4 {
+ border-top-width: 4px;
+}
+.border-b-4 {
+ border-bottom-width: 4px;
+}
+.border-gray-300 {
+ --tw-border-opacity: 1;
+ border-color: rgb(200 212 216 / var(--tw-border-opacity));
+}
+.border-blue {
+ --tw-border-opacity: 1;
+ border-color: rgb(0 40 100 / var(--tw-border-opacity));
+}
+.border-blue-light {
+ --tw-border-opacity: 1;
+ border-color: rgb(20 200 255 / var(--tw-border-opacity));
+}
+.border-gray-200 {
+ --tw-border-opacity: 1;
+ border-color: rgb(235 236 236 / var(--tw-border-opacity));
+}
+.border-green {
+ --tw-border-opacity: 1;
+ border-color: rgb(140 214 0 / var(--tw-border-opacity));
+}
+.border-purple {
+ --tw-border-opacity: 1;
+ border-color: rgb(157 17 96 / var(--tw-border-opacity));
+}
+.border-red {
+ --tw-border-opacity: 1;
+ border-color: rgb(210 50 100 / var(--tw-border-opacity));
+}
+.border-orange {
+ --tw-border-opacity: 1;
+ border-color: rgb(240 120 30 / var(--tw-border-opacity));
+}
+.border-yellow {
+ --tw-border-opacity: 1;
+ border-color: rgb(255 210 40 / var(--tw-border-opacity));
+}
+.border-turquoise {
+ --tw-border-opacity: 1;
+ border-color: rgb(80 200 170 / var(--tw-border-opacity));
+}
+.border-darkgreen {
+ --tw-border-opacity: 1;
+ border-color: rgb(50 100 105 / var(--tw-border-opacity));
+}
+.border-blueviolet {
+ --tw-border-opacity: 1;
+ border-color: rgb(150 120 210 / var(--tw-border-opacity));
+}
+.border-lightblue {
+ --tw-border-opacity: 1;
+ border-color: rgb(20 200 255 / var(--tw-border-opacity));
+}
+.border-violet {
+ --tw-border-opacity: 1;
+ border-color: rgb(94 59 153 / var(--tw-border-opacity));
+}
+.border-gray-400 {
+ --tw-border-opacity: 1;
+ border-color: rgb(123 135 139 / var(--tw-border-opacity));
+}
+.border-gray-500 {
+ --tw-border-opacity: 1;
+ border-color: rgb(88 102 106 / var(--tw-border-opacity));
+}
+.bg-blue,
+.bg-blue-dark {
+ --tw-bg-opacity: 1;
+ background-color: rgb(0 40 100 / var(--tw-bg-opacity));
+}
+.bg-blue-light {
+ --tw-bg-opacity: 1;
+ background-color: rgb(20 200 255 / var(--tw-bg-opacity));
+}
+.bg-gray-100 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(247 247 247 / var(--tw-bg-opacity));
+}
+.bg-gray-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(88 102 106 / var(--tw-bg-opacity));
+}
+.bg-purple {
+ --tw-bg-opacity: 1;
+ background-color: rgb(157 17 96 / var(--tw-bg-opacity));
+}
+.bg-red {
+ --tw-bg-opacity: 1;
+ background-color: rgb(210 50 100 / var(--tw-bg-opacity));
+}
+.bg-orange {
+ --tw-bg-opacity: 1;
+ background-color: rgb(240 120 30 / var(--tw-bg-opacity));
+}
+.bg-yellow {
+ --tw-bg-opacity: 1;
+ background-color: rgb(255 210 40 / var(--tw-bg-opacity));
+}
+.bg-turquoise {
+ --tw-bg-opacity: 1;
+ background-color: rgb(80 200 170 / var(--tw-bg-opacity));
+}
+.bg-darkgreen {
+ --tw-bg-opacity: 1;
+ background-color: rgb(50 100 105 / var(--tw-bg-opacity));
+}
+.bg-green {
+ --tw-bg-opacity: 1;
+ background-color: rgb(140 214 0 / var(--tw-bg-opacity));
+}
+.bg-blueviolet {
+ --tw-bg-opacity: 1;
+ background-color: rgb(150 120 210 / var(--tw-bg-opacity));
+}
+.bg-violet {
+ --tw-bg-opacity: 1;
+ background-color: rgb(94 59 153 / var(--tw-bg-opacity));
+}
+.bg-white {
+ --tw-bg-opacity: 1;
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
+}
+.bg-gray-200 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(235 236 236 / var(--tw-bg-opacity));
+}
+.bg-transparent {
+ background-color: transparent;
+}
+.bg-gray-300 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(200 212 216 / var(--tw-bg-opacity));
+}
+.bg-opacity-20 {
+ --tw-bg-opacity: 0.2;
+}
+.bg-gradient-to-t {
+ background-image: linear-gradient(to top, var(--tw-gradient-stops));
+}
+.from-white {
+ --tw-gradient-from: #fff;
+ --tw-gradient-to: hsla(0, 0%, 100%, 0);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
+}
+.fill-blue {
+ fill: #002864;
+}
+.object-contain {
+ -o-object-fit: contain;
+ object-fit: contain;
+}
+.object-right-top {
+ -o-object-position: right top;
+ object-position: right top;
+}
+.p-4 {
+ padding: 1rem;
+}
+.p-5 {
+ padding: 1.25rem;
+}
+.p-\[50px\] {
+ padding: 50px;
+}
+.p-2 {
+ padding: 0.5rem;
+}
+.p-8 {
+ padding: 2rem;
+}
+.p-6 {
+ padding: 1.5rem;
+}
+.py-2 {
+ padding-bottom: 0.5rem;
+ padding-top: 0.5rem;
+}
+.px-4 {
+ padding-left: 1rem;
+ padding-right: 1rem;
+}
+.px-3 {
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+}
+.py-1 {
+ padding-bottom: 0.25rem;
+ padding-top: 0.25rem;
+}
+.py-3 {
+ padding-bottom: 0.75rem;
+ padding-top: 0.75rem;
+}
+.py-5 {
+ padding-bottom: 1.25rem;
+ padding-top: 1.25rem;
+}
+.px-2 {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+}
+.px-5 {
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+}
+.py-4 {
+ padding-bottom: 1rem;
+ padding-top: 1rem;
+}
+.py-20 {
+ padding-bottom: 5rem;
+ padding-top: 5rem;
+}
+.py-6 {
+ padding-bottom: 1.5rem;
+ padding-top: 1.5rem;
+}
+.pr-4 {
+ padding-right: 1rem;
+}
+.pb-4 {
+ padding-bottom: 1rem;
+}
+.pl-4 {
+ padding-left: 1rem;
+}
+.pb-20 {
+ padding-bottom: 5rem;
+}
+.pt-10 {
+ padding-top: 2.5rem;
+}
+.pt-3 {
+ padding-top: 0.75rem;
+}
+.pt-6 {
+ padding-top: 1.5rem;
+}
+.pt-8 {
+ padding-top: 2rem;
+}
+.pb-0 {
+ padding-bottom: 0;
+}
+.pb-3 {
+ padding-bottom: 0.75rem;
+}
+.pb-6 {
+ padding-bottom: 1.5rem;
+}
+.pb-8 {
+ padding-bottom: 2rem;
+}
+.pb-10 {
+ padding-bottom: 2.5rem;
+}
+.pt-1\.5 {
+ padding-top: 0.375rem;
+}
+.pb-2 {
+ padding-bottom: 0.5rem;
+}
+.pt-1 {
+ padding-top: 0.25rem;
+}
+.pb-\[30px\] {
+ padding-bottom: 30px;
+}
+.pl-3 {
+ padding-left: 0.75rem;
+}
+.pt-2 {
+ padding-top: 0.5rem;
+}
+.pr-6 {
+ padding-right: 1.5rem;
+}
+.pb-3\.5 {
+ padding-bottom: 0.875rem;
+}
+.pl-1 {
+ padding-left: 0.25rem;
+}
+.pb-16 {
+ padding-bottom: 4rem;
+}
+.pr-12 {
+ padding-right: 3rem;
+}
+.pb-12 {
+ padding-bottom: 3rem;
+}
+.pt-4 {
+ padding-top: 1rem;
+}
+.pr-8 {
+ padding-right: 2rem;
+}
+.text-left {
+ text-align: left;
+}
+.text-center {
+ text-align: center;
+}
+.text-right {
+ text-align: right;
+}
+.font-body {
+ font-family: 'HIFIS DIN', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
+}
+.font-display {
+ font-family: 'HIFIS DIN', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
+}
+.text-sm {
+ font-size: 15px;
+ line-height: 22px;
+}
+.text-2xl {
+ font-size: 32px;
+ line-height: 46px;
+}
+.text-xl {
+ font-size: 25px;
+ line-height: 34px;
+}
+.text-lg {
+ font-size: 20px;
+ line-height: 28px;
+}
+.text-base {
+ font-size: 17px;
+ line-height: 24px;
+}
+.text-xs {
+ font-size: 13px;
+ line-height: 16px;
+}
+.font-bold {
+ font-weight: 700;
+}
+.uppercase {
+ text-transform: uppercase;
+}
+.leading-9 {
+ line-height: 2.25rem;
+}
+.leading-8 {
+ line-height: 2rem;
+}
+.leading-7 {
+ line-height: 1.75rem;
+}
+.leading-none {
+ line-height: 1;
+}
+.leading-6 {
+ line-height: 1.5rem;
+}
+.tracking-widest {
+ letter-spacing: 0.1em;
+}
+.text-blue {
+ --tw-text-opacity: 1;
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+}
+.text-white {
+ --tw-text-opacity: 1;
+ color: rgb(255 255 255 / var(--tw-text-opacity));
+}
+.text-blue-dark {
+ --tw-text-opacity: 1;
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+}
+.text-gray-900 {
+ --tw-text-opacity: 1;
+ color: rgb(22 22 22 / var(--tw-text-opacity));
+}
+.text-gray-400 {
+ --tw-text-opacity: 1;
+ color: rgb(123 135 139 / var(--tw-text-opacity));
+}
+.text-gray-500 {
+ --tw-text-opacity: 1;
+ color: rgb(88 102 106 / var(--tw-text-opacity));
+}
+.text-gray-100 {
+ --tw-text-opacity: 1;
+ color: rgb(247 247 247 / var(--tw-text-opacity));
+}
+.text-purple {
+ --tw-text-opacity: 1;
+ color: rgb(157 17 96 / var(--tw-text-opacity));
+}
+.text-red {
+ --tw-text-opacity: 1;
+ color: rgb(210 50 100 / var(--tw-text-opacity));
+}
+.text-orange {
+ --tw-text-opacity: 1;
+ color: rgb(240 120 30 / var(--tw-text-opacity));
+}
+.text-yellow {
+ --tw-text-opacity: 1;
+ color: rgb(255 210 40 / var(--tw-text-opacity));
+}
+.text-turquoise {
+ --tw-text-opacity: 1;
+ color: rgb(80 200 170 / var(--tw-text-opacity));
+}
+.text-darkgreen {
+ --tw-text-opacity: 1;
+ color: rgb(50 100 105 / var(--tw-text-opacity));
+}
+.text-blue-light {
+ --tw-text-opacity: 1;
+ color: rgb(20 200 255 / var(--tw-text-opacity));
+}
+.text-green {
+ --tw-text-opacity: 1;
+ color: rgb(140 214 0 / var(--tw-text-opacity));
+}
+.text-blueviolet {
+ --tw-text-opacity: 1;
+ color: rgb(150 120 210 / var(--tw-text-opacity));
+}
+.text-violet {
+ --tw-text-opacity: 1;
+ color: rgb(94 59 153 / var(--tw-text-opacity));
+}
+.\!text-blue-light {
+ --tw-text-opacity: 1 !important;
+ color: rgb(20 200 255 / var(--tw-text-opacity)) !important;
+}
+.\!text-blue {
+ --tw-text-opacity: 1 !important;
+ color: rgb(0 40 100 / var(--tw-text-opacity)) !important;
+}
+.text-gray-800 {
+ --tw-text-opacity: 1;
+ color: rgb(63 69 71 / var(--tw-text-opacity));
+}
+.antialiased {
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+.opacity-50 {
+ opacity: 0.5;
+}
+.opacity-0 {
+ opacity: 0;
+}
+.opacity-100 {
+ opacity: 1;
+}
+.opacity-75 {
+ opacity: 0.75;
+}
+.opacity-25 {
+ opacity: 0.25;
+}
+.shadow {
+ --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
+ 0 1px 2px -1px var(--tw-shadow-color);
+}
+.shadow,
+.shadow-xl {
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
+ var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
+}
+.shadow-xl {
+ --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
+ 0 8px 10px -6px rgba(0, 0, 0, 0.1);
+ --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
+ 0 8px 10px -6px var(--tw-shadow-color);
+}
+.shadow-md {
+ --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
+ 0 2px 4px -2px rgba(0, 0, 0, 0.1);
+ --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),
+ 0 2px 4px -2px var(--tw-shadow-color);
+}
+.shadow-lg,
+.shadow-md {
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
+ var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
+}
+.shadow-lg {
+ --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
+ 0 4px 6px -4px rgba(0, 0, 0, 0.1);
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
+ 0 4px 6px -4px var(--tw-shadow-color);
+}
+.outline-none {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+}
+.outline {
+ outline-style: solid;
+}
+.grayscale {
+ --tw-grayscale: grayscale(100%);
+}
+.filter,
+.grayscale {
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
+ var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
+ var(--tw-sepia) var(--tw-drop-shadow);
+}
+.transition {
+ transition-duration: 0.15s;
+ transition-property: color, background-color, border-color,
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
+ -webkit-backdrop-filter;
+ transition-property: color, background-color, border-color,
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
+ backdrop-filter;
+ transition-property: color, background-color, border-color,
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
+ backdrop-filter, -webkit-backdrop-filter;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+}
+.transition-transform {
+ transition-duration: 0.15s;
+ transition-property: transform;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+}
+.transition-all {
+ transition-duration: 0.15s;
+ transition-property: all;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+}
+.transition-opacity {
+ transition-duration: 0.15s;
+ transition-property: opacity;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+}
+.duration-200 {
+ transition-duration: 0.2s;
+}
+.duration-300 {
+ transition-duration: 0.3s;
+}
+.duration-150 {
+ transition-duration: 0.15s;
+}
+.duration-500 {
+ transition-duration: 0.5s;
+}
+.ease-out {
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
+}
+.ease-in {
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
+}
+.will-change-transform {
+ will-change: transform;
+}
+/* HIFIS DIN Font Family - Standard */
+@font-face {
+ font-family: 'HIFIS DIN';
+ src: url(./fonts/hifis-din.woff2) format('woff2'),
+ url(./fonts/hifis-din.woff) format('woff');
+ font-weight: normal;
+ font-style: normal;
+ font-display: swap;
+}
+
+@font-face {
+ font-family: 'HIFIS DIN';
+ src: url(./fonts/hifis-din-bold.woff2) format('woff2'),
+ url(./fonts/hifis-din-bold.woff) format('woff');
+ font-weight: bold;
+ font-style: normal;
+ font-display: swap;
+}
+
+@font-face {
+ font-family: 'HIFIS DIN';
+ src: url(./fonts/hifis-din-italic.woff2) format('woff2'),
+ url(./fonts/hifis-din-italic.woff) format('woff');
+ font-weight: normal;
+ font-style: italic;
+ font-display: swap;
+}
+
+/* HIFIS DIN Font Family - Expanded */
+@font-face {
+ font-family: 'HIFIS DIN Expanded';
+ src: url(./fonts/hifis-din-exp.woff2) format('woff2'),
+ url(./fonts/hifis-din-exp.woff) format('woff');
+ font-weight: normal;
+ font-style: normal;
+ font-display: swap;
+}
+
+@font-face {
+ font-family: 'HIFIS DIN Expanded';
+ src: url(./fonts/hifis-din-exp-bold.woff2) format('woff2'),
+ url(./fonts/hifis-din-exp-bold.woff) format('woff');
+ font-weight: bold;
+ font-style: normal;
+ font-display: swap;
+}
+
+@font-face {
+ font-family: 'HIFIS DIN Expanded';
+ src: url(./fonts/hifis-din-exp-italic.woff2) format('woff2'),
+ url(./fonts/hifis-din-exp-italic.woff) format('woff');
+ font-weight: normal;
+ font-style: italic;
+ font-display: swap;
+}
+
+/* HIFIS DIN Font Family - Condensed */
+@font-face {
+ font-family: 'HIFIS DIN Condensed';
+ src: url(./fonts/hifis-din-condensed.woff2) format('woff2'),
+ url(./fonts/hifis-din-condensed.woff) format('woff');
+ font-weight: normal;
+ font-style: normal;
+ font-display: swap;
+}
+
+@font-face {
+ font-family: 'HIFIS DIN Condensed';
+ src: url(./fonts/hifis-din-condensed-bold.woff2) format('woff2'),
+ url(./fonts/hifis-din-condensed-bold.woff) format('woff');
+ font-weight: bold;
+ font-style: normal;
+ font-display: swap;
+}
+.h1,
+h1 {
+ font-size: 32px;
+ line-height: 46px;
+ line-height: 2.25rem;
+ margin-bottom: 3rem;
+ max-width: 700px;
+}
+.h1,
+.h2,
+h1,
+h2 {
+ --tw-text-opacity: 1;
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+}
+.h2,
+h2 {
+ font-size: 25px;
+ line-height: 34px;
+ line-height: 2rem;
+ margin-bottom: 2rem;
+ padding-right: 5rem;
+}
+.h3,
+h3 {
+ --tw-text-opacity: 1;
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+ font-size: 20px;
+ line-height: 28px;
+ line-height: 1.75rem;
+ margin-bottom: 1rem;
+ padding-right: 1rem;
+}
+.h4,
+h4 {
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+}
+.h4,
+h4,
+p {
+ --tw-text-opacity: 1;
+ font-size: 17px;
+ line-height: 24px;
+ margin-bottom: 1rem;
+}
+p {
+ color: rgb(22 22 22 / var(--tw-text-opacity));
+ line-height: 1.75rem;
+}
+p a {
+ --tw-border-opacity: 1;
+ background-repeat: no-repeat;
+ border-bottom-width: 1px;
+ border-color: rgb(20 200 255 / var(--tw-border-opacity));
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+ font-size: 17px;
+ line-height: 24px;
+ padding-bottom: 2px;
+ transition: all 0.3s;
+}
+p a,
+p a:hover {
+ --tw-text-opacity: 1;
+}
+p a:hover {
+ color: rgb(20 200 255 / var(--tw-text-opacity));
+ padding-bottom: 0;
+}
+.contact-wysiwyg p {
+ --tw-text-opacity: 1;
+ color: rgb(123 135 139 / var(--tw-text-opacity));
+ font-size: 15px;
+ line-height: 22px;
+}
+.contact-wysiwyg ul {
+ margin-bottom: 10px;
+}
+.contact-wysiwyg ul li p {
+ display: inline-block;
+ margin-bottom: 10px;
+ padding-left: 16px;
+ position: relative;
+}
+.contact-wysiwyg ul li p:before {
+ --tw-bg-opacity: 1;
+ background-color: rgb(20 200 255 / var(--tw-bg-opacity));
+ border-radius: 4px;
+ content: "";
+ display: block;
+ height: 5px;
+ left: 2px;
+ position: absolute;
+ top: 8px;
+ width: 5px;
+}
+a.hmc-link {
+ --tw-border-opacity: 1;
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 1 3 2.684-3 2.684M1 1l3 2.647-3 2.647' stroke='%2314C8FF'/%3E%3C/svg%3E");
+ background-position: 0;
+ background-repeat: no-repeat;
+ border-bottom-width: 1px;
+ border-color: rgb(20 200 255 / var(--tw-border-opacity));
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+ font-size: 17px;
+ line-height: 24px;
+ max-width: -moz-max-content;
+ max-width: max-content;
+ padding-bottom: 2px;
+ padding-left: 1rem;
+ transition: all 0.3s;
+}
+a.hmc-link,
+a.hmc-link:hover {
+ --tw-text-opacity: 1;
+}
+a.hmc-link:hover {
+ color: rgb(20 200 255 / var(--tw-text-opacity));
+ padding-bottom: 0;
+}
+a.hmc-link_sm {
+ --tw-border-opacity: 1;
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 1 3 2.684-3 2.684M1 1l3 2.647-3 2.647' stroke='%2314C8FF'/%3E%3C/svg%3E");
+ background-position: 0;
+ background-repeat: no-repeat;
+ border-bottom-width: 1px;
+ border-color: rgb(20 200 255 / var(--tw-border-opacity));
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+ font-size: 15px;
+ line-height: 22px;
+ max-width: -moz-max-content;
+ max-width: max-content;
+ padding-bottom: 2px;
+ padding-left: 1rem;
+ transition: all 0.3s;
+}
+a.hmc-link_sm,
+a.hmc-link_sm:hover {
+ --tw-text-opacity: 1;
+}
+a.hmc-link_sm:hover {
+ color: rgb(20 200 255 / var(--tw-text-opacity));
+}
+article ul,
+section ul {
+ margin-bottom: 10px;
+}
+article ul li p,
+section ul li p {
+ display: inline-block;
+ line-height: 1.75rem;
+ margin-bottom: 10px;
+ padding-left: 24px;
+ position: relative;
+}
+article ul li p:before,
+section ul li p:before {
+ --tw-bg-opacity: 1;
+ background-color: rgb(20 200 255 / var(--tw-bg-opacity));
+ border-radius: 4px;
+ content: "";
+ display: block;
+ height: 6px;
+ left: 0;
+ position: absolute;
+ top: 11px;
+ width: 6px;
+}
+.hmc-btn-outline {
+ --tw-border-opacity: 1;
+ --tw-text-opacity: 1;
+ border-color: rgb(0 40 100 / var(--tw-border-opacity));
+ border-radius: 9999px;
+ border-width: 1px;
+ color: rgb(0 40 100 / var(--tw-text-opacity));
+ display: inline-block;
+ font-size: 15px;
+ letter-spacing: 0.05em;
+ line-height: 22px;
+ padding: 0.5rem 1rem;
+ text-transform: uppercase;
+ transition: all 0.3s;
+}
+.hmc-btn-outline:hover {
+ --tw-bg-opacity: 1;
+ --tw-text-opacity: 1;
+ background-color: rgb(0 40 100 / var(--tw-bg-opacity));
+}
+.hmc-btn,
+.hmc-btn-outline:hover {
+ color: rgb(255 255 255 / var(--tw-text-opacity));
+}
+.hmc-btn {
+ background-color: rgb(20 200 255 / var(--tw-bg-opacity));
+ border-color: rgb(20 200 255 / var(--tw-border-opacity));
+ border-radius: 9999px;
+ border-width: 1px;
+ display: inline-block;
+ font-size: 15px;
+ letter-spacing: 0.05em;
+ line-height: 22px;
+ padding: 0.5rem 1rem;
+ transition: all 0.3s;
+}
+.hmc-btn,
+.hmc-btn:hover {
+ --tw-border-opacity: 1;
+ --tw-bg-opacity: 1;
+ --tw-text-opacity: 1;
+}
+.hmc-btn:hover {
+ background-color: rgb(0 40 100 / var(--tw-bg-opacity));
+ border-color: rgb(0 40 100 / var(--tw-border-opacity));
+ color: rgb(255 255 255 / var(--tw-text-opacity));
+}
+.test {
+ color: #000;
+}
+.modal {
+ font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
+ helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
+}
+.modal__overlay {
+ align-items: center;
+ background: rgba(0, 0, 0, 0.6);
+ bottom: 0;
+ display: flex;
+ justify-content: center;
+ left: 0;
+ position: fixed;
+ right: 0;
+ top: 0;
+ z-index: 2001;
+}
+.modal__container {
+ background-color: #fff;
+ border-radius: 4px;
+ box-sizing: border-box;
+ max-height: 100vh;
+ overflow-y: auto;
+ padding: 30px;
+}
+.modal__header {
+ align-items: center;
+ display: flex;
+ justify-content: space-between;
+}
+.modal__title {
+ box-sizing: border-box;
+ color: #00449e;
+ font-size: 1.25rem;
+ font-weight: 600;
+ line-height: 1.25;
+ margin-bottom: 0;
+ margin-top: 0;
+}
+.modal__close {
+ background: transparent;
+ border: 0;
+ min-width: 25px;
+}
+.modal__header .modal__close:before {
+ content: "✕";
+}
+.modal__content {
+ color: rgba(0, 0, 0, 0.8);
+ line-height: 1.5;
+ margin-bottom: 2rem;
+ margin-top: 2rem;
+}
+.modal__btn {
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-appearance: button;
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ background-color: #e6e6e6;
+ border-radius: 0.25rem;
+ border-style: none;
+ border-width: 0;
+ color: rgba(0, 0, 0, 0.8);
+ cursor: pointer;
+ font-size: 0.875rem;
+ line-height: 1.15;
+ margin: 0;
+ overflow: visible;
+ padding: 0.5rem 1rem;
+ text-transform: none;
+ transform: translateZ(0);
+ transition: transform 0.25s ease-out;
+ will-change: transform;
+}
+.modal__btn:focus,
+.modal__btn:hover {
+ transform: scale(1.05);
+}
+.modal__btn-primary {
+ background-color: #00449e;
+ color: #fff;
+}
+@keyframes mmfadeIn {
+ 0% {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+@keyframes mmfadeOut {
+ 0% {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+}
+@keyframes mmslideIn {
+ 0% {
+ transform: translateY(15%);
+ }
+ to {
+ transform: translateY(0);
+ }
+}
+@keyframes mmslideOut {
+ 0% {
+ transform: translateY(0);
+ }
+ to {
+ transform: translateY(-10%);
+ }
+}
+.micromodal-slide {
+ display: none;
+}
+.micromodal-slide.is-open {
+ display: block;
+}
+.micromodal-slide[aria-hidden="false"] .modal__overlay {
+ animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
+}
+.micromodal-slide[aria-hidden="false"] .modal__container {
+ animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
+}
+.micromodal-slide[aria-hidden="true"] .modal__overlay {
+ animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
+}
+.micromodal-slide[aria-hidden="true"] .modal__container {
+ animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
+}
+.micromodal-slide .modal__container,
+.micromodal-slide .modal__overlay {
+ will-change: transform;
+}
+.embla {
+ overflow: hidden;
+}
+.embla__container {
+ display: flex;
+ margin-left: -24px;
+}
+.embla__slide {
+ cursor: grab;
+ flex: 0 0 100%;
+ padding-left: 24px;
+ position: relative;
+}
+@media (min-width: 1024px) {
+ .embla {
+ overflow: hidden;
+ }
+ .embla__container {
+ display: flex;
+ margin-left: -24px;
+ transform: none !important;
+ }
+ .embla__slide {
+ cursor: grab;
+ flex: 0 0 100%;
+ left: 0;
+ opacity: 0;
+ padding-left: 24px;
+ position: absolute;
+ right: 0;
+ top: 0;
+ transition: opacity 1s;
+ }
+ .embla__slide.is-selected {
+ opacity: 1;
+ transition: opacity 1s;
+ transition-delay: 1s;
+ z-index: 1;
+ }
+}
+.embla__viewport:before {
+ content: '{ "loop": false, "align": "start", "slidesToScroll": 1, }';
+ display: none;
+}
+.embla__button {
+ fill: #005799;
+ align-items: center;
+ background-color: #fff;
+ border: 0;
+ border-radius: 100%;
+ cursor: pointer;
+ display: flex;
+ height: 40px;
+ justify-content: center;
+ outline: 0;
+ padding: 0;
+ touch-action: manipulation;
+ transform: translateY(-50%);
+ width: 40px;
+ z-index: 1;
+}
+.embla__button:disabled {
+ cursor: default;
+ opacity: 0.5;
+}
+.embla__button--prev .embla__button__svg {
+ height: 30%;
+ margin-right: 2px;
+ width: 30%;
+}
+.embla__button--next .embla__button__svg {
+ height: 30%;
+ margin-left: 2px;
+ width: 30%;
+}
+.embla__dots {
+ align-items: center;
+ display: flex;
+ height: 100%;
+ justify-content: center;
+ list-style: none;
+}
+@media (min-width: 768px) {
+ .embla__dots {
+ justify-content: flex-end;
+ }
+}
+.embla__dot {
+ align-items: center;
+ background-color: transparent;
+ border: 0;
+ border-radius: 999px;
+ cursor: pointer;
+ display: flex;
+ height: 8px;
+ margin-left: 7.5px;
+ margin-right: 7.5px;
+ outline: 0;
+ padding: 0;
+ position: relative;
+ width: 8px;
+}
+.embla__dot:after {
+ background-color: #fff;
+ border-radius: 999px;
+ content: "";
+ height: 100%;
+ opacity: 0.3;
+ width: 100%;
+}
+.embla__dot.is-selected:after {
+ background-color: #fff;
+ opacity: 1;
+}
+body {
+ --tw-bg-opacity: 1;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ background-color: rgb(0 40 100 / var(--tw-bg-opacity));
+ box-sizing: border-box;
+ font-family: 'HIFIS DIN', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
+}
+@media (min-width: 768px) {
+ .container {
+ padding-left: 3rem;
+ padding-right: 3rem;
+ }
+}
+.multiply {
+ mix-blend-mode: multiply;
+}
+.greyscale-100 {
+ filter: grayscale(100%);
+}
+.bg-gradient {
+ background-image: linear-gradient(
+ 270deg,
+ rgba(0, 147, 202, 0) 1%,
+ currentColor
+ );
+}
+.embed-responsive {
+ height: auto;
+ overflow: hidden;
+ padding-bottom: 56.25%;
+ position: relative;
+}
+.embed-responsive iframe {
+ height: 100%;
+ left: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+.line-clamp {
+ -webkit-line-clamp: 2;
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+}
+.card-text > p {
+ margin-bottom: 6px !important;
+}
+section table th {
+ padding-bottom: 1rem;
+ padding-right: 1rem;
+ vertical-align: top;
+}
+section table td {
+ --tw-border-opacity: 1;
+ border-color: rgb(200 212 216 / var(--tw-border-opacity));
+ border-top-width: 1px;
+ padding-bottom: 0.5rem;
+ padding-right: 1rem;
+ padding-top: 0.5rem;
+ vertical-align: top;
+}
+.placeholder\:text-gray-400::-moz-placeholder {
+ --tw-text-opacity: 1;
+ color: rgb(123 135 139 / var(--tw-text-opacity));
+}
+.placeholder\:text-gray-400::placeholder {
+ --tw-text-opacity: 1;
+ color: rgb(123 135 139 / var(--tw-text-opacity));
+}
+.last\:border-white:last-child {
+ --tw-border-opacity: 1;
+ border-color: rgb(255 255 255 / var(--tw-border-opacity));
+}
+.hover\:bg-gray-300:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(200 212 216 / var(--tw-bg-opacity));
+}
+.hover\:text-blue-light:hover {
+ --tw-text-opacity: 1;
+ color: rgb(20 200 255 / var(--tw-text-opacity));
+}
+.hover\:opacity-100:hover {
+ opacity: 1;
+}
+.focus\:outline-none:focus {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+}
+.focus\:ring:focus {
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
+ var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
+ calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
+ var(--tw-shadow, 0 0 #0000);
+}
+.focus\:ring-blue:focus {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(0 40 100 / var(--tw-ring-opacity));
+}
+.focus\:ring-opacity-30:focus {
+ --tw-ring-opacity: 0.3;
+}
+@media (min-width: 640px) {
+ .sm\:max-h-75 {
+ max-height: 75vh;
+ }
+ .sm\:text-3xl {
+ font-size: 40px;
+ line-height: 54px;
+ }
+}
+@media (min-width: 768px) {
+ .md\:right-12 {
+ right: 3rem;
+ }
+ .md\:m-3 {
+ margin: 0.75rem;
+ }
+ .md\:flex {
+ display: flex;
+ }
+ .md\:hidden {
+ display: none;
+ }
+ .md\:h-\[500px\] {
+ height: 500px;
+ }
+ .md\:w-2\/3 {
+ width: 66.666667%;
+ }
+ .md\:grid-cols-2 {
+ grid-template-columns: repeat(2, minmax(0, 1fr));
+ }
+ .md\:justify-between {
+ justify-content: space-between;
+ }
+ .md\:p-16 {
+ padding: 4rem;
+ }
+}
+@media (min-width: 1024px) {
+ .lg\:order-1 {
+ order: 1;
+ }
+ .lg\:order-2 {
+ order: 2;
+ }
+ .lg\:col-span-7 {
+ grid-column: span 7 / span 7;
+ }
+ .lg\:col-span-4 {
+ grid-column: span 4 / span 4;
+ }
+ .lg\:col-start-9 {
+ grid-column-start: 9;
+ }
+ .lg\:-ml-3 {
+ margin-left: -0.75rem;
+ }
+ .lg\:mb-0 {
+ margin-bottom: 0;
+ }
+ .lg\:flex {
+ display: flex;
+ }
+ .lg\:hidden {
+ display: none;
+ }
+ .lg\:w-min {
+ width: -moz-min-content;
+ width: min-content;
+ }
+ .lg\:w-2\/3 {
+ width: 66.666667%;
+ }
+ .lg\:w-1\/2 {
+ width: 50%;
+ }
+ .lg\:w-1\/3 {
+ width: 33.333333%;
+ }
+ .lg\:w-1\/4 {
+ width: 25%;
+ }
+ .lg\:w-2\/4 {
+ width: 50%;
+ }
+ .lg\:w-full {
+ width: 100%;
+ }
+ .lg\:w-3\/12 {
+ width: 25%;
+ }
+ .lg\:w-9\/12 {
+ width: 75%;
+ }
+ .lg\:w-8\/12 {
+ width: 66.666667%;
+ }
+ .lg\:w-56 {
+ width: 14rem;
+ }
+ .lg\:w-\[223px\] {
+ width: 223px;
+ }
+ .lg\:max-w-\[200px\] {
+ max-width: 200px;
+ }
+ .lg\:scale-90 {
+ --tw-scale-x: 0.9;
+ --tw-scale-y: 0.9;
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+ }
+ .lg\:grid-cols-3 {
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+ }
+ .lg\:grid-cols-4 {
+ grid-template-columns: repeat(4, minmax(0, 1fr));
+ }
+ .lg\:grid-cols-2 {
+ grid-template-columns: repeat(2, minmax(0, 1fr));
+ }
+ .lg\:flex-row {
+ flex-direction: row;
+ }
+ .lg\:items-center {
+ align-items: center;
+ }
+ .lg\:justify-between {
+ justify-content: space-between;
+ }
+ .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
+ margin-right: calc(1rem * var(--tw-space-x-reverse));
+ }
+ .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
+ margin-right: calc(2rem * var(--tw-space-x-reverse));
+ }
+ .lg\:pt-20 {
+ padding-top: 5rem;
+ }
+ .lg\:pt-0 {
+ padding-top: 0;
+ }
+ .lg\:pt-6 {
+ padding-top: 1.5rem;
+ }
+ .lg\:pt-12 {
+ padding-top: 3rem;
+ }
+ .lg\:pt-16 {
+ padding-top: 4rem;
+ }
+ .lg\:pb-0 {
+ padding-bottom: 0;
+ }
+ .lg\:pb-6 {
+ padding-bottom: 1.5rem;
+ }
+ .lg\:pb-12 {
+ padding-bottom: 3rem;
+ }
+ .lg\:pb-16 {
+ padding-bottom: 4rem;
+ }
+ .lg\:pb-20 {
+ padding-bottom: 5rem;
+ }
+ .lg\:pr-20 {
+ padding-right: 5rem;
+ }
+ .lg\:pr-12 {
+ padding-right: 3rem;
+ }
+ .lg\:pr-4 {
+ padding-right: 1rem;
+ }
+ .lg\:pl-4 {
+ padding-left: 1rem;
+ }
+}
+@media (min-width: 1280px) {
+ .xl\:block {
+ display: block;
+ }
+ .xl\:flex {
+ display: flex;
+ }
+ .xl\:hidden {
+ display: none;
+ }
+ .xl\:scale-110 {
+ --tw-scale-x: 1.1;
+ --tw-scale-y: 1.1;
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+ }
+ .xl\:grid-cols-4 {
+ grid-template-columns: repeat(4, minmax(0, 1fr));
+ }
+ .xl\:grid-cols-3 {
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+ }
+ .xl\:items-center {
+ align-items: center;
+ }
+ .xl\:justify-end {
+ justify-content: flex-end;
+ }
+ .xl\:pr-20 {
+ padding-right: 5rem;
+ }
+}
diff --git a/survey_dashboard/hmc_layout/static/en_files/app.js b/survey_dashboard/hmc_layout/static/en_files/app.js
new file mode 100644
index 0000000..0e7f3bc
--- /dev/null
+++ b/survey_dashboard/hmc_layout/static/en_files/app.js
@@ -0,0 +1,2 @@
+/*! For license information please see app.js.LICENSE.txt */
+(()=>{var e,t={669:(e,t,n)=>{e.exports=n(609)},448:(e,t,n)=>{"use strict";var r=n(867),o=n(26),i=n(372),l=n(327),a=n(97),s=n(109),c=n(985),u=n(61),f=n(655),p=n(263);e.exports=function(e){return new Promise((function(t,n){var d,h=e.data,m=e.headers,v=e.responseType;function g(){e.cancelToken&&e.cancelToken.unsubscribe(d),e.signal&&e.signal.removeEventListener("abort",d)}r.isFormData(h)&&delete m["Content-Type"];var y=new XMLHttpRequest;if(e.auth){var _=e.auth.username||"",b=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";m.Authorization="Basic "+btoa(_+":"+b)}var w=a(e.baseURL,e.url);function x(){if(y){var r="getAllResponseHeaders"in y?s(y.getAllResponseHeaders()):null,i={data:v&&"text"!==v&&"json"!==v?y.response:y.responseText,status:y.status,statusText:y.statusText,headers:r,config:e,request:y};o((function(e){t(e),g()}),(function(e){n(e),g()}),i),y=null}}if(y.open(e.method.toUpperCase(),l(w,e.params,e.paramsSerializer),!0),y.timeout=e.timeout,"onloadend"in y?y.onloadend=x:y.onreadystatechange=function(){y&&4===y.readyState&&(0!==y.status||y.responseURL&&0===y.responseURL.indexOf("file:"))&&setTimeout(x)},y.onabort=function(){y&&(n(u("Request aborted",e,"ECONNABORTED",y)),y=null)},y.onerror=function(){n(u("Network Error",e,null,y)),y=null},y.ontimeout=function(){var t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded",r=e.transitional||f.transitional;e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(u(t,e,r.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",y)),y=null},r.isStandardBrowserEnv()){var k=(e.withCredentials||c(w))&&e.xsrfCookieName?i.read(e.xsrfCookieName):void 0;k&&(m[e.xsrfHeaderName]=k)}"setRequestHeader"in y&&r.forEach(m,(function(e,t){void 0===h&&"content-type"===t.toLowerCase()?delete m[t]:y.setRequestHeader(t,e)})),r.isUndefined(e.withCredentials)||(y.withCredentials=!!e.withCredentials),v&&"json"!==v&&(y.responseType=e.responseType),"function"==typeof e.onDownloadProgress&&y.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&y.upload&&y.upload.addEventListener("progress",e.onUploadProgress),(e.cancelToken||e.signal)&&(d=function(e){y&&(n(!e||e&&e.type?new p("canceled"):e),y.abort(),y=null)},e.cancelToken&&e.cancelToken.subscribe(d),e.signal&&(e.signal.aborted?d():e.signal.addEventListener("abort",d))),h||(h=null),y.send(h)}))}},609:(e,t,n)=>{"use strict";var r=n(867),o=n(849),i=n(321),l=n(185);var a=function e(t){var n=new i(t),a=o(i.prototype.request,n);return r.extend(a,i.prototype,n),r.extend(a,n),a.create=function(n){return e(l(t,n))},a}(n(655));a.Axios=i,a.Cancel=n(263),a.CancelToken=n(972),a.isCancel=n(502),a.VERSION=n(288).version,a.all=function(e){return Promise.all(e)},a.spread=n(713),a.isAxiosError=n(268),e.exports=a,e.exports.default=a},263:e=>{"use strict";function t(e){this.message=e}t.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},t.prototype.__CANCEL__=!0,e.exports=t},972:(e,t,n)=>{"use strict";var r=n(263);function o(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var n=this;this.promise.then((function(e){if(n._listeners){var t,r=n._listeners.length;for(t=0;t{"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},321:(e,t,n)=>{"use strict";var r=n(867),o=n(327),i=n(782),l=n(572),a=n(185),s=n(875),c=s.validators;function u(e){this.defaults=e,this.interceptors={request:new i,response:new i}}u.prototype.request=function(e){"string"==typeof e?(e=arguments[1]||{}).url=arguments[0]:e=e||{},(e=a(this.defaults,e)).method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method="get";var t=e.transitional;void 0!==t&&s.assertOptions(t,{silentJSONParsing:c.transitional(c.boolean),forcedJSONParsing:c.transitional(c.boolean),clarifyTimeoutError:c.transitional(c.boolean)},!1);var n=[],r=!0;this.interceptors.request.forEach((function(t){"function"==typeof t.runWhen&&!1===t.runWhen(e)||(r=r&&t.synchronous,n.unshift(t.fulfilled,t.rejected))}));var o,i=[];if(this.interceptors.response.forEach((function(e){i.push(e.fulfilled,e.rejected)})),!r){var u=[l,void 0];for(Array.prototype.unshift.apply(u,n),u=u.concat(i),o=Promise.resolve(e);u.length;)o=o.then(u.shift(),u.shift());return o}for(var f=e;n.length;){var p=n.shift(),d=n.shift();try{f=p(f)}catch(e){d(e);break}}try{o=l(f)}catch(e){return Promise.reject(e)}for(;i.length;)o=o.then(i.shift(),i.shift());return o},u.prototype.getUri=function(e){return e=a(this.defaults,e),o(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(e){u.prototype[e]=function(t,n){return this.request(a(n||{},{method:e,url:t,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(e){u.prototype[e]=function(t,n,r){return this.request(a(r||{},{method:e,url:t,data:n}))}})),e.exports=u},782:(e,t,n)=>{"use strict";var r=n(867);function o(){this.handlers=[]}o.prototype.use=function(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1},o.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},o.prototype.forEach=function(e){r.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=o},97:(e,t,n)=>{"use strict";var r=n(793),o=n(303);e.exports=function(e,t){return e&&!r(t)?o(e,t):t}},61:(e,t,n)=>{"use strict";var r=n(481);e.exports=function(e,t,n,o,i){var l=new Error(e);return r(l,t,n,o,i)}},572:(e,t,n)=>{"use strict";var r=n(867),o=n(527),i=n(502),l=n(655),a=n(263);function s(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new a("canceled")}e.exports=function(e){return s(e),e.headers=e.headers||{},e.data=o.call(e,e.data,e.headers,e.transformRequest),e.headers=r.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]})),(e.adapter||l.adapter)(e).then((function(t){return s(e),t.data=o.call(e,t.data,t.headers,e.transformResponse),t}),(function(t){return i(t)||(s(e),t&&t.response&&(t.response.data=o.call(e,t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},481:e=>{"use strict";e.exports=function(e,t,n,r,o){return e.config=t,n&&(e.code=n),e.request=r,e.response=o,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code,status:this.response&&this.response.status?this.response.status:null}},e}},185:(e,t,n)=>{"use strict";var r=n(867);e.exports=function(e,t){t=t||{};var n={};function o(e,t){return r.isPlainObject(e)&&r.isPlainObject(t)?r.merge(e,t):r.isPlainObject(t)?r.merge({},t):r.isArray(t)?t.slice():t}function i(n){return r.isUndefined(t[n])?r.isUndefined(e[n])?void 0:o(void 0,e[n]):o(e[n],t[n])}function l(e){if(!r.isUndefined(t[e]))return o(void 0,t[e])}function a(n){return r.isUndefined(t[n])?r.isUndefined(e[n])?void 0:o(void 0,e[n]):o(void 0,t[n])}function s(n){return n in t?o(e[n],t[n]):n in e?o(void 0,e[n]):void 0}var c={url:l,method:l,data:l,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:s};return r.forEach(Object.keys(e).concat(Object.keys(t)),(function(e){var t=c[e]||i,o=t(e);r.isUndefined(o)&&t!==s||(n[e]=o)})),n}},26:(e,t,n)=>{"use strict";var r=n(61);e.exports=function(e,t,n){var o=n.config.validateStatus;n.status&&o&&!o(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},527:(e,t,n)=>{"use strict";var r=n(867),o=n(655);e.exports=function(e,t,n){var i=this||o;return r.forEach(n,(function(n){e=n.call(i,e,t)})),e}},655:(e,t,n)=>{"use strict";var r=n(155),o=n(867),i=n(16),l=n(481),a={"Content-Type":"application/x-www-form-urlencoded"};function s(e,t){!o.isUndefined(e)&&o.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var c,u={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==r&&"[object process]"===Object.prototype.toString.call(r))&&(c=n(448)),c),transformRequest:[function(e,t){return i(t,"Accept"),i(t,"Content-Type"),o.isFormData(e)||o.isArrayBuffer(e)||o.isBuffer(e)||o.isStream(e)||o.isFile(e)||o.isBlob(e)?e:o.isArrayBufferView(e)?e.buffer:o.isURLSearchParams(e)?(s(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):o.isObject(e)||t&&"application/json"===t["Content-Type"]?(s(t,"application/json"),function(e,t,n){if(o.isString(e))try{return(t||JSON.parse)(e),o.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(n||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){var t=this.transitional||u.transitional,n=t&&t.silentJSONParsing,r=t&&t.forcedJSONParsing,i=!n&&"json"===this.responseType;if(i||r&&o.isString(e)&&e.length)try{return JSON.parse(e)}catch(e){if(i){if("SyntaxError"===e.name)throw l(e,this,"E_JSON_PARSE");throw e}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};o.forEach(["delete","get","head"],(function(e){u.headers[e]={}})),o.forEach(["post","put","patch"],(function(e){u.headers[e]=o.merge(a)})),e.exports=u},288:e=>{e.exports={version:"0.24.0"}},849:e=>{"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r{"use strict";var r=n(867);function o(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var i;if(n)i=n(t);else if(r.isURLSearchParams(t))i=t.toString();else{var l=[];r.forEach(t,(function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),l.push(o(t)+"="+o(e))})))})),i=l.join("&")}if(i){var a=e.indexOf("#");-1!==a&&(e=e.slice(0,a)),e+=(-1===e.indexOf("?")?"?":"&")+i}return e}},303:e=>{"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},372:(e,t,n)=>{"use strict";var r=n(867);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,o,i,l){var a=[];a.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),r.isString(o)&&a.push("path="+o),r.isString(i)&&a.push("domain="+i),!0===l&&a.push("secure"),document.cookie=a.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},793:e=>{"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},268:e=>{"use strict";e.exports=function(e){return"object"==typeof e&&!0===e.isAxiosError}},985:(e,t,n)=>{"use strict";var r=n(867);e.exports=r.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function o(e){var r=e;return t&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=o(window.location.href),function(t){var n=r.isString(t)?o(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return!0}},16:(e,t,n)=>{"use strict";var r=n(867);e.exports=function(e,t){r.forEach(e,(function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])}))}},109:(e,t,n)=>{"use strict";var r=n(867),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,i,l={};return e?(r.forEach(e.split("\n"),(function(e){if(i=e.indexOf(":"),t=r.trim(e.substr(0,i)).toLowerCase(),n=r.trim(e.substr(i+1)),t){if(l[t]&&o.indexOf(t)>=0)return;l[t]="set-cookie"===t?(l[t]?l[t]:[]).concat([n]):l[t]?l[t]+", "+n:n}})),l):l}},713:e=>{"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},875:(e,t,n)=>{"use strict";var r=n(288).version,o={};["object","boolean","number","function","string","symbol"].forEach((function(e,t){o[e]=function(n){return typeof n===e||"a"+(t<1?"n ":" ")+e}}));var i={};o.transitional=function(e,t,n){function o(e,t){return"[Axios v"+r+"] Transitional option '"+e+"'"+t+(n?". "+n:"")}return function(n,r,l){if(!1===e)throw new Error(o(r," has been removed"+(t?" in "+t:"")));return t&&!i[r]&&(i[r]=!0,console.warn(o(r," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,r,l)}},e.exports={assertOptions:function(e,t,n){if("object"!=typeof e)throw new TypeError("options must be an object");for(var r=Object.keys(e),o=r.length;o-- >0;){var i=r[o],l=t[i];if(l){var a=e[i],s=void 0===a||l(a,i,e);if(!0!==s)throw new TypeError("option "+i+" must be "+s)}else if(!0!==n)throw Error("Unknown option "+i)}},validators:o}},867:(e,t,n)=>{"use strict";var r=n(849),o=Object.prototype.toString;function i(e){return"[object Array]"===o.call(e)}function l(e){return void 0===e}function a(e){return null!==e&&"object"==typeof e}function s(e){if("[object Object]"!==o.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function c(e){return"[object Function]"===o.call(e)}function u(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),i(e))for(var n=0,r=e.length;n{"use strict";var r=n(821);const o={itemsToShow:1,itemsToScroll:1,modelValue:0,transition:300,autoplay:0,snapAlign:"center",wrapAround:!1,pauseAutoplayOnHover:!1,mouseDrag:!0,touchDrag:!0,dir:"ltr",breakpoints:void 0},i={itemsToShow:{default:o.itemsToShow,type:Number},itemsToScroll:{default:o.itemsToScroll,type:Number},wrapAround:{default:o.wrapAround,type:Boolean},snapAlign:{default:o.snapAlign,validator:e=>["start","end","center","center-even","center-odd"].includes(e)},transition:{default:o.transition,type:Number},breakpoints:{default:o.breakpoints,type:Object},autoplay:{default:o.autoplay,type:Number},pauseAutoplayOnHover:{default:o.pauseAutoplayOnHover,type:Boolean},modelValue:{default:void 0,type:Number},mouseDrag:{default:o.mouseDrag,type:Boolean},touchDrag:{default:o.touchDrag,type:Boolean},dir:{default:o.dir,validator:e=>["rtl","ltr"].includes(e)},settings:{default:()=>({}),type:Object}};function l(e,t,n,r){return e.wrapAround?t:Math.min(Math.max(t,r),n)}var a=(0,r.defineComponent)({name:"Carousel",props:i,setup(e,{slots:t,emit:n,expose:a}){var s;const c=(0,r.ref)(null),u=(0,r.ref)([]),f=(0,r.ref)([]),p=(0,r.ref)(0),d=(0,r.ref)(1);let h,m,v=(0,r.ref)({}),g=Object.assign({},o);const y=(0,r.reactive)(Object.assign({},g)),_=(0,r.ref)(null!==(s=y.modelValue)&&void 0!==s?s:0),b=(0,r.ref)(0),w=(0,r.ref)(0),x=(0,r.ref)(0),k=(0,r.ref)(0);function S(){const t=Object.assign(Object.assign({},e),e.settings);v=(0,r.ref)(Object.assign({},t.breakpoints)),g=Object.assign(Object.assign({},t),{settings:void 0,breakpoints:void 0}),C(g)}function E(){const e=Object.keys(v.value).map((e=>Number(e))).sort(((e,t)=>+t-+e));let t=Object.assign({},g);e.some((e=>!!window.matchMedia(`(min-width: ${e}px)`).matches&&(t=Object.assign(Object.assign({},t),v.value[e]),!0))),C(t)}function C(e){for(let t in e)y[t]=e[t]}(0,r.provide)("config",y),(0,r.provide)("slidesBuffer",f),(0,r.provide)("slidesCount",d),(0,r.provide)("currentSlide",_),(0,r.provide)("maxSlide",x),(0,r.provide)("minSlide",k);const T=function(e,t){let n;return function(...r){n&&clearTimeout(n),n=setTimeout((()=>{e(...r),n=null}),t)}}((()=>{v.value&&(E(),L()),N()}),16);function N(){if(!c.value)return;const e=c.value.getBoundingClientRect();p.value=e.width/y.itemsToShow}function L(){d.value=Math.max(u.value.length,1),d.value<=0||(w.value=Math.ceil((d.value-1)/2),x.value=function(e,t){if(e.wrapAround)return t-1;switch(e.snapAlign){case"start":return t-e.itemsToShow;case"end":return t-1;case"center":case"center-odd":case"center-even":return t-Math.ceil(e.itemsToShow/2);default:return 0}}(y,d.value),k.value=function(e){if(e.wrapAround)return 0;switch(e.snapAlign){case"start":default:return 0;case"end":return e.itemsToShow-1;case"center":case"center-odd":return Math.floor((e.itemsToShow-1)/2);case"center-even":return Math.floor((e.itemsToShow-2)/2)}}(y),_.value=l(y,_.value,x.value,k.value))}function O(){const e=[...Array(d.value).keys()];if(y.wrapAround&&y.itemsToShow+1<=d.value){let t=(1!==y.itemsToShow?Math.round((d.value-y.itemsToShow)/2):0)-_.value;if("end"===y.snapAlign?t+=Math.floor(y.itemsToShow-1):"center"!==y.snapAlign&&"center-odd"!==y.snapAlign||t++,t<0)for(let n=t;n<0;n++)e.push(Number(e.shift()));else for(let n=0;n{v.value&&(E(),L()),(0,r.nextTick)((()=>setTimeout(N,16))),$(),window.addEventListener("resize",T,{passive:!0})})),(0,r.onUnmounted)((()=>{m&&clearTimeout(m),h&&clearInterval(h)}));let A=!1;const P={x:0,y:0},I={x:0,y:0},R=(0,r.reactive)({x:0,y:0}),F=(0,r.ref)(!1),M=()=>{F.value=!0},B=()=>{F.value=!1};function j(e){A="touchstart"===e.type,!A&&0!==e.button||W.value||(A||e.preventDefault(),P.x=A?e.touches[0].clientX:e.clientX,P.y=A?e.touches[0].clientY:e.clientY,document.addEventListener(A?"touchmove":"mousemove",V,!0),document.addEventListener(A?"touchend":"mouseup",D,!0))}const V=function(e,t){let n;return function(...r){const o=this;n||(e.apply(o,r),n=!0,setTimeout((()=>n=!1),t))}}((e=>{I.x=A?e.touches[0].clientX:e.clientX,I.y=A?e.touches[0].clientY:e.clientY;const t=I.x-P.x,n=I.y-P.y;R.y=n,R.x=t}),16);function D(){const e="rtl"===y.dir?-1:1,t=.4*Math.sign(R.x),n=Math.round(R.x/p.value+t)*e;let r=l(y,_.value-n,x.value,k.value);if(n&&!A){const e=t=>{t.stopPropagation(),window.removeEventListener("click",e,!0)};window.addEventListener("click",e,!0)}H(r),R.x=0,R.y=0,document.removeEventListener(A?"touchmove":"mousemove",V,!0),document.removeEventListener(A?"touchend":"mouseup",D,!0)}function $(){!y.autoplay||y.autoplay<=0||(h=setInterval((()=>{y.pauseAutoplayOnHover&&F.value||z()}),y.autoplay))}function U(){h&&(clearInterval(h),h=null),$()}const W=(0,r.ref)(!1);function H(e,t=!1){if(_.value===e||W.value)return;U();return e>d.value-1?H(e-d.value):e<0?H(e+d.value):(W.value=!0,b.value=_.value,_.value=e,t||n("update:modelValue",_.value),void(m=setTimeout((()=>{y.wrapAround&&O(),W.value=!1}),y.transition)))}function z(){let e=_.value+y.itemsToScroll;y.wrapAround||(e=Math.min(e,x.value)),H(e)}function G(){let e=_.value-y.itemsToScroll;y.wrapAround||(e=Math.max(e,k.value)),H(e)}const q={slideTo:H,next:z,prev:G};(0,r.provide)("nav",q);const J=(0,r.computed)((()=>function({slidesBuffer:e,currentSlide:t,snapAlign:n,itemsToShow:r,wrapAround:o,slidesCount:i}){let l=e.indexOf(t);if(-1===l&&(l=e.indexOf(Math.ceil(t))),"center"===n||"center-odd"===n?l-=(r-1)/2:"center-even"===n?l-=(r-2)/2:"end"===n&&(l-=r-1),!o){const e=i-r,t=0;l=Math.max(Math.min(l,e),t)}return l}({slidesBuffer:f.value,itemsToShow:y.itemsToShow,snapAlign:y.snapAlign,wrapAround:Boolean(y.wrapAround),currentSlide:_.value,slidesCount:d.value})));(0,r.provide)("slidesToScroll",J);const K=(0,r.computed)((()=>{const e="rtl"===y.dir?-1:1,t=J.value*p.value*e;return{transform:`translateX(${R.x-t}px)`,transition:`${W.value?y.transition:0}ms`}}));function Y(){S()}function Z(){S(),E(),L(),O(),N(),U()}function X(){L(),O()}Object.keys(i).forEach((t=>{["modelValue"].includes(t)||(0,r.watch)((()=>e[t]),Z)})),Y(),(0,r.watchEffect)((()=>{const t=d.value!==u.value.length;void 0!==e.modelValue&&_.value!==e.modelValue&&H(Number(e.modelValue),!0),t&&X()}));const Q={config:y,slidesBuffer:f,slidesCount:d,slideWidth:p,currentSlide:_,maxSlide:x,minSlide:k,middleSlide:w};a({updateBreakpointsConfigs:E,updateSlidesData:L,updateSlideWidth:N,updateSlidesBuffer:O,initCarousel:Y,restartCarousel:Z,updateCarousel:X,slideTo:H,next:z,prev:G,nav:q,data:Q});const ee=t.default||t.slides,te=t.addons,ne=(0,r.reactive)(Q);return()=>{const e=function(e){var t,n,r;return e?"CarouselSlide"===(null===(n=null===(t=e[0])||void 0===t?void 0:t.type)||void 0===n?void 0:n.name)?e:(null===(r=e[0])||void 0===r?void 0:r.children)||[]:[]}(null==ee?void 0:ee(ne)),t=(null==te?void 0:te(ne))||[];u.value=e,e.forEach(((e,t)=>e.props.index=t));const n=(0,r.h)("ol",{class:"carousel__track",style:K.value,onMousedown:y.mouseDrag?(0,r.withModifiers)(j,["capture"]):null,onTouchstart:y.touchDrag?(0,r.withModifiers)(j,["capture"]):null},e),o=(0,r.h)("div",{class:"carousel__viewport"},n);return(0,r.h)("section",{ref:c,class:{carousel:!0,"carousel--rtl":"rtl"===y.dir},dir:y.dir,"aria-label":"Gallery",onMouseenter:M,onMouseleave:B},[o,t])}}});const s={arrowUp:"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z",arrowDown:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z",arrowRight:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z",arrowLeft:"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"},c=e=>{const t=e.name;if(!t||"string"!=typeof t)return;const n=s[t],o=(0,r.h)("path",{d:n}),i=e.title||t,l=(0,r.h)("title",i);return(0,r.h)("svg",{class:"carousel__icon",viewBox:"0 0 24 24",role:"img",ariaLabel:i},[l,o])};c.props={name:String,title:String};const u=(e,{slots:t,attrs:n})=>{const{next:i,prev:l}=t||{},a=(0,r.inject)("config",(0,r.reactive)(Object.assign({},o))),s=(0,r.inject)("maxSlide",(0,r.ref)(1)),u=(0,r.inject)("minSlide",(0,r.ref)(1)),f=(0,r.inject)("currentSlide",(0,r.ref)(1)),p=(0,r.inject)("nav",{}),d="rtl"===a.dir;return[(0,r.h)("button",{type:"button",class:["carousel__prev",!a.wrapAround&&f.value<=u.value&&"carousel__prev--in-active",null==n?void 0:n.class],"aria-label":"Navigate to previous slide",onClick:p.prev},(null==l?void 0:l())||(0,r.h)(c,{name:d?"arrowRight":"arrowLeft"})),(0,r.h)("button",{type:"button",class:["carousel__next",!a.wrapAround&&f.value>=s.value&&"carousel__next--in-active",null==n?void 0:n.class],"aria-label":"Navigate to next slide",onClick:p.next},(null==i?void 0:i())||(0,r.h)(c,{name:d?"arrowLeft":"arrowRight"}))]};var f=(0,r.defineComponent)({name:"CarouselSlide",props:{index:{type:Number,default:1}},setup(e,{slots:t}){const n=(0,r.inject)("config",(0,r.reactive)(Object.assign({},o))),i=(0,r.inject)("slidesBuffer",(0,r.ref)([])),l=(0,r.inject)("currentSlide",(0,r.ref)(0)),a=(0,r.inject)("slidesToScroll",(0,r.ref)(0)),s=(0,r.ref)(e.index);function c(){s.value=i.value.indexOf(e.index)}n.wrapAround&&(c(),(0,r.watch)(i,c));const u=(0,r.computed)((()=>({width:1/n.itemsToShow*100+"%",order:s.value.toString()}))),f=()=>{const t=Math.ceil(a.value),r=Math.floor(a.value+n.itemsToShow);return i.value.slice(t,r).includes(e.index)};return()=>{var o;return(0,r.h)("li",{style:u.value,class:{carousel__slide:!0,"carousel__slide--active":e.index===l.value,"carousel__slide--visible":f(),"carousel__slide--prev":e.index===i.value[Math.ceil(a.value)-1],"carousel__slide--next":e.index===i.value[Math.floor(a.value+n.itemsToShow)]}},null===(o=t.default)||void 0===o?void 0:o.call(t))}}});const p=()=>{const e=(0,r.inject)("maxSlide",(0,r.ref)(1)),t=(0,r.inject)("minSlide",(0,r.ref)(1)),n=(0,r.inject)("currentSlide",(0,r.ref)(1)),o=(0,r.inject)("nav",{});const i=r=>{const o=n.value;return o===r||o>e.value&&r>=e.value||o{return e=n,void o.slideTo(e);var e}}),t=(0,r.h)("li",{class:"carousel__pagination-item",key:n},e);l.push(t)}return(0,r.h)("ol",{class:"carousel__pagination"},l)};var d={key:0,class:"w-full"},h={class:"flex flex-col w-full h-full bg-white shadow md:m-3"},m={key:0},v=["href"],g=["src"],y=["href"],_=["src"],b={class:"flex flex-col items-start w-full h-full p-4"},w={key:0,class:"flex flex-wrap gap-2 mt-0 mb-4 -ml-1"},x=["href"],k={class:"inline-block mb-1 text-sm text-gray-500"},S={class:"-mb-2"},E={key:0},C=["href"],T=["href"];const N={__name:"NewsCarouselNext",props:{slides:{type:Array,required:!0}},setup:function(e){var t=function(e){return e.filter((function(e){return 1==e.visible}))},n={itemsToShow:1,wrapAround:!1,touchDrag:!0,mouseDrag:!0,itemsToScroll:1,transition:400,snapAlign:"start"},o={768:{itemsToShow:2,itemsToScroll:2,snapAlign:"start"},1024:{itemsToShow:3,itemsToScroll:3,snapAlign:"start"},1280:{itemsToShow:4,itemsToScroll:4,snapAlign:"start"}};return function(i,l){return e.slides.length>0?((0,r.openBlock)(),(0,r.createElementBlock)("div",d,[(0,r.createVNode)((0,r.unref)(a),{snapAlign:"start",settings:n,breakpoints:o},{addons:(0,r.withCtx)((function(e){return[e.slidesCount>1?((0,r.openBlock)(),(0,r.createBlock)((0,r.unref)(u),{key:0})):(0,r.createCommentVNode)("",!0),(0,r.createVNode)((0,r.unref)(p))]})),default:(0,r.withCtx)((function(){return[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(e.slides,(function(e){return(0,r.openBlock)(),(0,r.createBlock)((0,r.unref)(f),{key:e},{default:(0,r.withCtx)((function(){return[(0,r.createElementVNode)("div",h,[e.image?((0,r.openBlock)(),(0,r.createElementBlock)("div",m,[e.url?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:1,class:"w-full",href:e.url},[(0,r.createElementVNode)("img",{src:e.image.conversion_urls.md,alt:"",class:"w-full"},null,8,_)],8,y)):((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:0,class:"w-full",href:e.route_url},[(0,r.createElementVNode)("img",{src:e.image.conversion_urls.md,alt:"",class:"w-full"},null,8,g)],8,v))])):(0,r.createCommentVNode)("",!0),(0,r.createElementVNode)("div",b,[t(e.tags).length>0?((0,r.openBlock)(),(0,r.createElementBlock)("div",w,[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(t(e.tags),(function(e){return(0,r.openBlock)(),(0,r.createElementBlock)("div",null,[e.visible?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:0,href:e.route,class:(0,r.normalizeClass)(["inline-flex items-center justify-center px-3 pt-1.5 pb-2 text-sm leading-none rounded-lg bg-opacity-20",e.color?"bg-".concat(e.color," text-").concat(e.color):"bg-blue text-blue"])},(0,r.toDisplayString)(e.title),11,x)):(0,r.createCommentVNode)("",!0)])})),256))])):(0,r.createCommentVNode)("",!0),(0,r.createElementVNode)("span",k,(0,r.toDisplayString)(e.published_at),1),(0,r.createElementVNode)("h3",S,[(0,r.createTextVNode)((0,r.toDisplayString)(e.title.replace(/^(.{60}[^\s]*).*/,"$1"))+" ",1),e.title.length>60?((0,r.openBlock)(),(0,r.createElementBlock)("span",E," …")):(0,r.createCommentVNode)("",!0)]),e.url?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:2,class:"mt-auto hmc-link",href:e.url},(0,r.toDisplayString)(i.$t("app.read-more")),9,T)):((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:1,class:"mt-auto hmc-link",href:e.route_url},(0,r.toDisplayString)(i.$t("app.read-more")),9,C))])])]})),_:2},1024)})),128))]})),_:1})])):(0,r.createCommentVNode)("",!0)}}};var L=n(379),O=n.n(L),A=n(236),P={insert:"head",singleton:!1};O()(A.Z,P);A.Z.locals;const I=N;var R={key:0,class:"w-full"},F={key:0},M=["href"],B=["src"],j=["href"],V=["src"],D={class:"flex flex-col w-full h-full p-4"},$={key:0,class:"flex flex-wrap gap-2 mt-0 mb-4 -ml-1"},U=["href"],W={key:1,class:"flex mb-1 space-x-1"},H={key:0,class:"text-sm text-gray-500"},z={key:1,class:"text-sm text-gray-500"},G={key:2,class:"flex mb-1 space-x-1"},q={key:0,class:"text-sm text-gray-500"},J={key:1,class:"text-sm text-gray-500"},K={class:"-mb-2"},Y={key:0},Z=["href"],X=["href"];const Q={__name:"EventsCarouselNext",props:{slides:{type:Array,required:!0}},setup:function(e){var t=function(e){return e.filter((function(e){return 1==e.visible}))},n={itemsToShow:1,wrapAround:!1,touchDrag:!0,mouseDrag:!0,itemsToScroll:1,transition:400,snapAlign:"start"},o={768:{itemsToShow:2,itemsToScroll:2,snapAlign:"start"},1024:{itemsToShow:3,itemsToScroll:3,snapAlign:"start"},1280:{itemsToShow:4,itemsToScroll:4,snapAlign:"start"}};return function(i,l){return e.slides.length>0?((0,r.openBlock)(),(0,r.createElementBlock)("div",R,[(0,r.createVNode)((0,r.unref)(a),{snapAlign:"start",settings:n,breakpoints:o},{addons:(0,r.withCtx)((function(e){return[e.slidesCount>1?((0,r.openBlock)(),(0,r.createBlock)((0,r.unref)(u),{key:0})):(0,r.createCommentVNode)("",!0),(0,r.createVNode)((0,r.unref)(p))]})),default:(0,r.withCtx)((function(){return[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(e.slides,(function(e){return(0,r.openBlock)(),(0,r.createBlock)((0,r.unref)(f),{key:e},{default:(0,r.withCtx)((function(){return[(0,r.createElementVNode)("div",{class:(0,r.normalizeClass)(["flex flex-col w-full h-full bg-white shadow md:m-3",{"opacity-50":e.in_past}])},[e.image?((0,r.openBlock)(),(0,r.createElementBlock)("div",F,[e.url?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:1,class:"w-full",href:e.url},[(0,r.createElementVNode)("img",{src:e.image.conversion_urls.md,alt:"",class:"w-full"},null,8,V)],8,j)):((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:0,class:"w-full",href:e.route_url},[(0,r.createElementVNode)("img",{src:e.image.conversion_urls.md,alt:"",class:"w-full"},null,8,B)],8,M))])):(0,r.createCommentVNode)("",!0),(0,r.createElementVNode)("div",D,[t(e.tags).length>0?((0,r.openBlock)(),(0,r.createElementBlock)("div",$,[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(t(e.tags),(function(e){return(0,r.openBlock)(),(0,r.createElementBlock)("div",null,[e.visible?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:0,href:e.route,class:(0,r.normalizeClass)(["inline-flex items-center justify-center px-3 pt-1.5 pb-2 text-sm leading-none rounded-lg bg-opacity-20",e.color?"bg-".concat(e.color," text-").concat(e.color):"bg-blue text-blue"])},(0,r.toDisplayString)(e.title),11,U)):(0,r.createCommentVNode)("",!0)])})),256))])):(0,r.createCommentVNode)("",!0),e.starts_at!=e.ends_at?((0,r.openBlock)(),(0,r.createElementBlock)("div",W,[e.starts_at?((0,r.openBlock)(),(0,r.createElementBlock)("span",H,(0,r.toDisplayString)(e.starts_at),1)):(0,r.createCommentVNode)("",!0),e.ends_at?((0,r.openBlock)(),(0,r.createElementBlock)("span",z," - "+(0,r.toDisplayString)(e.ends_at),1)):(0,r.createCommentVNode)("",!0)])):(0,r.createCommentVNode)("",!0),e.starts_at==e.ends_at?((0,r.openBlock)(),(0,r.createElementBlock)("div",G,[e.starts_at?((0,r.openBlock)(),(0,r.createElementBlock)("span",q,(0,r.toDisplayString)(e.starts_at),1)):(0,r.createCommentVNode)("",!0),e.time?((0,r.openBlock)(),(0,r.createElementBlock)("span",J," | "+(0,r.toDisplayString)(e.time),1)):(0,r.createCommentVNode)("",!0)])):(0,r.createCommentVNode)("",!0),(0,r.createElementVNode)("h3",K,[(0,r.createTextVNode)((0,r.toDisplayString)(e.title.replace(/^(.{60}[^\s]*).*/,"$1"))+" ",1),e.title.length>60?((0,r.openBlock)(),(0,r.createElementBlock)("span",Y," …")):(0,r.createCommentVNode)("",!0)]),e.url?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:4,class:"mt-auto hmc-link",href:e.url},(0,r.toDisplayString)(i.$t("app.read-more")),9,X)):((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:3,class:"mt-auto hmc-link",href:e.route_url},(0,r.toDisplayString)(i.$t("app.read-more")),9,Z))])],2)]})),_:2},1024)})),128))]})),_:1})])):(0,r.createCommentVNode)("",!0)}}};var ee=n(563),te={insert:"head",singleton:!1};O()(ee.Z,te);ee.Z.locals;const ne=Q;function re(e){return function(e){if(Array.isArray(e))return oe(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return oe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oe(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function oe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0){var r=a(t.dataobjects),o=s(t.dataobjects),i=c(t.dataobjects),l=u(t.dataobjects);e=function(e){for(var t=new Set,n=0;n0&&(e=e.filter((function(e){var t=e.tags.map((function(e){return e.id}));return f.value.every((function(e){return t.includes(e)}))}))),e}))),a=function(e){return e.filter((function(e){var t;return null===(t=e.keywords)||void 0===t?void 0:t.toLowerCase().includes(n.value.toLocaleLowerCase())}))},s=function(e){return e.filter((function(e){var t;return null===(t=e.title)||void 0===t?void 0:t.toLowerCase().includes(n.value.toLocaleLowerCase())}))},c=function(e){return e.filter((function(e){var t;return null===(t=e.text)||void 0===t?void 0:t.toLowerCase().includes(n.value.toLocaleLowerCase())}))},u=function(e){return e.filter((function(e){var t;return null===(t=e.excerpt)||void 0===t?void 0:t.toLowerCase().includes(n.value.toLocaleLowerCase())}))},f=(0,r.ref)([]);return function(t,i){var a;return(0,r.openBlock)(),(0,r.createElementBlock)(r.Fragment,null,[(0,r.createElementVNode)("div",ie,[(0,r.createElementVNode)("div",le,[(0,r.createElementVNode)("div",ae,[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(e.filtertags,(function(e){return(0,r.openBlock)(),(0,r.createElementBlock)("div",{onClick:function(t){return n=e.id,void(f.value.includes(n)?f.value.splice(f.value.indexOf(n),1):f.value.push(n));var n},class:(0,r.normalizeClass)(["rounded-md px-3 py-1 cursor-pointer mr-2 transition flex items-center text-sm",[{"bg-blue text-white":f.value.includes(e.id),"bg-gray-200 hover:bg-gray-300 text-gray-500":!f.value.includes(e.id)}]])},[(0,r.createTextVNode)((0,r.toDisplayString)(e.title)+" ",1),f.value.includes(e.id)?((0,r.openBlock)(),(0,r.createElementBlock)("span",ce,[((0,r.openBlock)(),(0,r.createElementBlock)("svg",ue,fe))])):(0,r.createCommentVNode)("",!0)],10,se)})),256))])]),(0,r.createElementVNode)("div",pe,[(0,r.withDirectives)((0,r.createElementVNode)("input",{"onUpdate:modelValue":i[0]||(i[0]=function(e){return n.value=e}),type:"text",placeholder:t.$t("app.search"),class:"w-full px-3 py-3 text-sm bg-white rounded-[10px] outline-none placeholder:text-gray-400 focus:ring focus:ring-blue focus:ring-opacity-30"},null,8,de),[[r.vModelText,n.value]]),he])]),(0,r.createElementVNode)("div",null,(0,r.toDisplayString)(null===(a=o.value)||void 0===a?void 0:a.id),1),((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)((0,r.unref)(l),(function(e){return(0,r.openBlock)(),(0,r.createElementBlock)("div",me,[e.image?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:0,class:"max-w-full lg:max-w-[200px] mb-auto",href:e.route_url},[(0,r.createElementVNode)("img",{src:e.image.conversion_urls.md,alt:"",class:"w-full"},null,8,ge)],8,ve)):(0,r.createCommentVNode)("",!0),(0,r.createElementVNode)("div",ye,[(0,r.createElementVNode)("div",_e,[(0,r.createElementVNode)("a",{href:e.route_url},(0,r.toDisplayString)(e.title),9,be)]),(0,r.createElementVNode)("div",null,(0,r.toDisplayString)(e.excerpt),1)]),(0,r.createElementVNode)("div",we,[(0,r.createElementVNode)("a",{class:"hmc-link_sm",href:e.route_url},(0,r.toDisplayString)(t.$t("app.detailsLinkText")),9,xe)])])})),256)),0==(0,r.unref)(l).length?((0,r.openBlock)(),(0,r.createElementBlock)("div",ke,[(0,r.createElementVNode)("p",null,(0,r.toDisplayString)(t.$t("app.no-hits")),1)])):(0,r.createCommentVNode)("",!0)],64)}}};function Ee(e,t,...n){if(e in t){let r=t[e];return"function"==typeof r?r(...n):r}let r=new Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map((e=>`"${e}"`)).join(", ")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,Ee),r}var Ce,Te=((Ce=Te||{})[Ce.None=0]="None",Ce[Ce.RenderStrategy=1]="RenderStrategy",Ce[Ce.Static=2]="Static",Ce),Ne=(e=>(e[e.Unmount=0]="Unmount",e[e.Hidden=1]="Hidden",e))(Ne||{});function Le({visible:e=!0,features:t=0,ourProps:n,theirProps:r,...o}){var i;let l=function(...e){if(0===e.length)return{};if(1===e.length)return e[0];let t={},n={};for(let r of e)for(let e in r)e.startsWith("on")&&"function"==typeof r[e]?(null!=n[e]||(n[e]=[]),n[e].push(r[e])):t[e]=r[e];if(t.disabled||t["aria-disabled"])return Object.assign(t,Object.fromEntries(Object.keys(n).map((e=>[e,void 0]))));for(let e in n)Object.assign(t,{[e](t,...r){let o=n[e];for(let e of o){if(t instanceof Event&&t.defaultPrevented)return;e(t,...r)}}});return t}(r,n),a=Object.assign(o,{props:l});if(e||2&t&&l.static)return Oe(a);if(1&t){return Ee(null==(i=l.unmount)||i?0:1,{0:()=>null,1:()=>Oe({...o,props:{...l,hidden:!0,style:{display:"none"}}})})}return Oe(a)}function Oe({props:e,attrs:t,slots:n,slot:o,name:i}){var l;let{as:a,...s}=Pe(e,["unmount","static"]),c=null==(l=n.default)?void 0:l.call(n,o),u={};if(o){let e=!1,t=[];for(let[n,r]of Object.entries(o))"boolean"==typeof r&&(e=!0),!0===r&&t.push(n);e&&(u["data-headlessui-state"]=t.join(" "))}if("template"===a){if(c=Ae(null!=c?c:[]),Object.keys(s).length>0||Object.keys(t).length>0){let[e,...n]=null!=c?c:[];if(!function(e){return null!=e&&("string"==typeof e.type||"object"==typeof e.type||"function"==typeof e.type)}(e)||n.length>0)throw new Error(['Passing props on "template"!',"",`The current component <${i} /> is rendering a "template".`,"However we need to passthrough the following props:",Object.keys(s).concat(Object.keys(t)).sort(((e,t)=>e.localeCompare(t))).map((e=>` - ${e}`)).join("\n"),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "template".',"Render a single element as the child so that we can forward the props onto that element."].map((e=>` - ${e}`)).join("\n")].join("\n"));return(0,r.cloneVNode)(e,Object.assign({},s,u))}return Array.isArray(c)&&1===c.length?c[0]:c}return(0,r.h)(a,Object.assign({},s,u),{default:()=>c})}function Ae(e){return e.flatMap((e=>e.type===r.Fragment?Ae(e.children):[e]))}function Pe(e,t=[]){let n=Object.assign({},e);for(let e of t)e in n&&delete n[e];return n}let Ie=0;function Re(){return++Ie}var Fe=(e=>(e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.Delete="Delete",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab",e))(Fe||{});function Me(e){var t;return null==e||null==e.value?null:null!=(t=e.value.$el)?t:e.value}const Be="undefined"==typeof window||"undefined"==typeof document;function je(e){if(Be)return null;if(e instanceof Node)return e.ownerDocument;if(null!=e&&e.hasOwnProperty("value")){let t=Me(e);if(t)return t.ownerDocument}return document}let Ve=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map((e=>`${e}:not([tabindex='-1'])`)).join(",");var De=(e=>(e[e.First=1]="First",e[e.Previous=2]="Previous",e[e.Next=4]="Next",e[e.Last=8]="Last",e[e.WrapAround=16]="WrapAround",e[e.NoScroll=32]="NoScroll",e))(De||{}),$e=(e=>(e[e.Error=0]="Error",e[e.Overflow=1]="Overflow",e[e.Success=2]="Success",e[e.Underflow=3]="Underflow",e))($e||{}),Ue=(e=>(e[e.Previous=-1]="Previous",e[e.Next=1]="Next",e))(Ue||{});function We(e=document.body){return null==e?[]:Array.from(e.querySelectorAll(Ve))}var He=(e=>(e[e.Strict=0]="Strict",e[e.Loose=1]="Loose",e))(He||{});function ze(e,t=0){var n;return e!==(null==(n=je(e))?void 0:n.body)&&Ee(t,{0:()=>e.matches(Ve),1(){let t=e;for(;null!==t;){if(t.matches(Ve))return!0;t=t.parentElement}return!1}})}let Ge=["textarea","input"].join(",");function qe(e,t,n=!0,r=null){var o;let i=null!=(o=Array.isArray(e)?e.length>0?e[0].ownerDocument:document:null==e?void 0:e.ownerDocument)?o:document,l=Array.isArray(e)?n?function(e,t=(e=>e)){return e.slice().sort(((e,n)=>{let r=t(e),o=t(n);if(null===r||null===o)return 0;let i=r.compareDocumentPosition(o);return i&Node.DOCUMENT_POSITION_FOLLOWING?-1:i&Node.DOCUMENT_POSITION_PRECEDING?1:0}))}(e):e:We(e);r=null!=r?r:i.activeElement;let a,s=(()=>{if(5&t)return 1;if(10&t)return-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),c=(()=>{if(1&t)return 0;if(2&t)return Math.max(0,l.indexOf(r))-1;if(4&t)return Math.max(0,l.indexOf(r))+1;if(8&t)return l.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),u=32&t?{preventScroll:!0}:{},f=0,p=l.length;do{if(f>=p||f+p<=0)return 0;let e=c+f;if(16&t)e=(e+p)%p;else{if(e<0)return 3;if(e>=p)return 1}a=l[e],null==a||a.focus(u),f+=s}while(a!==i.activeElement);return 6&t&&function(e){var t,n;return null!=(n=null==(t=null==e?void 0:e.matches)?void 0:t.call(e,Ge))&&n}(a)&&a.select(),a.hasAttribute("tabindex")||a.setAttribute("tabindex","0"),2}let Je=Symbol("Context");var Ke=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(Ke||{});function Ye(){return(0,r.inject)(Je,null)}function Ze(e,t){if(e)return e;let n=null!=t?t:"button";return"string"==typeof n&&"button"===n.toLowerCase()?"button":void 0}function Xe(e,t,n){Be||(0,r.watchEffect)((r=>{document.addEventListener(e,t,n),r((()=>document.removeEventListener(e,t,n)))}))}var Qe=(e=>(e[e.None=1]="None",e[e.Focusable=2]="Focusable",e[e.Hidden=4]="Hidden",e))(Qe||{});let et=(0,r.defineComponent)({name:"Hidden",props:{as:{type:[Object,String],default:"div"},features:{type:Number,default:1}},setup:(e,{slots:t,attrs:n})=>()=>{let{features:r,...o}=e;return Le({ourProps:{"aria-hidden":2==(2&r)||void 0,style:{position:"fixed",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0",...4==(4&r)&&2!=(2&r)&&{display:"none"}}},theirProps:o,slot:{},attrs:n,slots:t,name:"Hidden"})}});var tt=(e=>(e[e.Forwards=0]="Forwards",e[e.Backwards=1]="Backwards",e))(tt||{});function nt(){let e=(0,r.ref)(0);return function(e,t,n){Be||(0,r.watchEffect)((r=>{window.addEventListener(e,t,n),r((()=>window.removeEventListener(e,t,n)))}))}("keydown",(t=>{"Tab"===t.key&&(e.value=t.shiftKey?1:0)})),e}var rt=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(rt||{});let ot=Symbol("PopoverContext");function it(e){let t=(0,r.inject)(ot,null);if(null===t){let t=new Error(`<${e} /> is missing a parent <${ct.name} /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,it),t}return t}let lt=Symbol("PopoverGroupContext");function at(){return(0,r.inject)(lt,null)}let st=Symbol("PopoverPanelContext");let ct=(0,r.defineComponent)({name:"Popover",props:{as:{type:[Object,String],default:"div"}},setup(e,{slots:t,attrs:n,expose:o}){var i;let l=`headlessui-popover-button-${Re()}`,a=`headlessui-popover-panel-${Re()}`,s=(0,r.ref)(null);o({el:s,$el:s});let c=(0,r.ref)(1),u=(0,r.ref)(null),f=(0,r.ref)(null),p=(0,r.ref)(null),d=(0,r.ref)(null),h=(0,r.computed)((()=>je(s))),m=(0,r.computed)((()=>{var e,t;if(!Me(u)||!Me(d))return!1;for(let e of document.querySelectorAll("body > *"))if(Number(null==e?void 0:e.contains(Me(u)))^Number(null==e?void 0:e.contains(Me(d))))return!0;let n=We(),r=n.indexOf(Me(u)),o=(r+n.length-1)%n.length,i=(r+1)%n.length,l=n[o],a=n[i];return!(null!=(e=Me(d))&&e.contains(l)||null!=(t=Me(d))&&t.contains(a))})),v={popoverState:c,buttonId:l,panelId:a,panel:d,button:u,isPortalled:m,beforePanelSentinel:f,afterPanelSentinel:p,togglePopover(){c.value=Ee(c.value,{0:1,1:0})},closePopover(){1!==c.value&&(c.value=1)},close(e){v.closePopover();let t=e?e instanceof HTMLElement?e:e.value instanceof HTMLElement?Me(e):Me(v.button):Me(v.button);null==t||t.focus()}};(0,r.provide)(ot,v),function(e){(0,r.provide)(Je,e)}((0,r.computed)((()=>Ee(c.value,{0:Ke.Open,1:Ke.Closed}))));let g={buttonId:l,panelId:a,close(){v.closePopover()}},y=at(),_=null==y?void 0:y.registerPopover;return(0,r.watchEffect)((()=>null==_?void 0:_(g))),function(e,t,n,o){Be||(0,r.watchEffect)((r=>{(e=null!=e?e:window).addEventListener(t,n,o),r((()=>e.removeEventListener(t,n,o)))}))}(null==(i=h.value)?void 0:i.defaultView,"focus",(e=>{var t,n;0===c.value&&(function(){var e,t,n,r;return null!=(r=null==y?void 0:y.isFocusWithinPopoverGroup())?r:(null==(e=h.value)?void 0:e.activeElement)&&((null==(t=Me(u))?void 0:t.contains(h.value.activeElement))||(null==(n=Me(d))?void 0:n.contains(h.value.activeElement)))}()||!u||!d||null!=(t=Me(v.beforePanelSentinel))&&t.contains(e.target)||null!=(n=Me(v.afterPanelSentinel))&&n.contains(e.target)||v.closePopover())}),!0),function(e,t,n=(0,r.computed)((()=>!0))){function o(r,o){if(!n.value||r.defaultPrevented)return;let i=o(r);if(null===i||!i.getRootNode().contains(i))return;let l=function e(t){return"function"==typeof t?e(t()):Array.isArray(t)||t instanceof Set?t:[t]}(e);for(let e of l){if(null===e)continue;let t=e instanceof HTMLElement?e:Me(e);if(null!=t&&t.contains(i))return}return!ze(i,He.Loose)&&-1!==i.tabIndex&&r.preventDefault(),t(r,i)}let i=(0,r.ref)(null);Xe("mousedown",(e=>{var t,r;n.value&&(i.value=(null==(r=null==(t=e.composedPath)?void 0:t.call(e))?void 0:r[0])||e.target)}),!0),Xe("click",(e=>{!i.value||(o(e,(()=>i.value)),i.value=null)}),!0),Xe("blur",(e=>o(e,(()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null))),!0)}([u,d],((e,t)=>{var n;v.closePopover(),ze(t,He.Loose)||(e.preventDefault(),null==(n=Me(u))||n.focus())}),(0,r.computed)((()=>0===c.value))),()=>{let r={open:0===c.value,close:v.close};return Le({theirProps:e,ourProps:{ref:s},slot:r,slots:t,attrs:n,name:"Popover"})}}}),ut=(0,r.defineComponent)({name:"PopoverButton",props:{as:{type:[Object,String],default:"button"},disabled:{type:[Boolean],default:!1}},inheritAttrs:!1,setup(e,{attrs:t,slots:n,expose:o}){let i=it("PopoverButton"),l=(0,r.computed)((()=>je(i.button)));o({el:i.button,$el:i.button});let a=at(),s=null==a?void 0:a.closeOthers,c=(0,r.inject)(st,null),u=null!==c&&c===i.panelId,f=(0,r.ref)(null),p=`headlessui-focus-sentinel-${Re()}`;u||(0,r.watchEffect)((()=>{i.button.value=f.value}));let d=function(e,t){let n=(0,r.ref)(Ze(e.value.type,e.value.as));return(0,r.onMounted)((()=>{n.value=Ze(e.value.type,e.value.as)})),(0,r.watchEffect)((()=>{var e;n.value||!Me(t)||Me(t)instanceof HTMLButtonElement&&(null==(e=Me(t))||!e.hasAttribute("type"))&&(n.value="button")})),n}((0,r.computed)((()=>({as:e.as,type:t.type}))),f);function h(e){var t,n,r,o,a;if(u){if(1===i.popoverState.value)return;switch(e.key){case Fe.Space:case Fe.Enter:e.preventDefault(),null==(n=(t=e.target).click)||n.call(t),i.closePopover(),null==(r=Me(i.button))||r.focus()}}else switch(e.key){case Fe.Space:case Fe.Enter:e.preventDefault(),e.stopPropagation(),1===i.popoverState.value&&(null==s||s(i.buttonId)),i.togglePopover();break;case Fe.Escape:if(0!==i.popoverState.value)return null==s?void 0:s(i.buttonId);if(!Me(i.button)||(null==(o=l.value)?void 0:o.activeElement)&&(null==(a=Me(i.button))||!a.contains(l.value.activeElement)))return;e.preventDefault(),e.stopPropagation(),i.closePopover()}}function m(e){u||e.key===Fe.Space&&e.preventDefault()}function v(t){var n,r;e.disabled||(u?(i.closePopover(),null==(n=Me(i.button))||n.focus()):(t.preventDefault(),t.stopPropagation(),1===i.popoverState.value&&(null==s||s(i.buttonId)),i.togglePopover(),null==(r=Me(i.button))||r.focus()))}function g(e){e.preventDefault(),e.stopPropagation()}return()=>{let o=0===i.popoverState.value,l={open:o},a=u?{ref:f,type:d.value,onKeydown:h,onClick:v}:{ref:f,id:i.buttonId,type:d.value,"aria-expanded":e.disabled?void 0:0===i.popoverState.value,"aria-controls":Me(i.panel)?i.panelId:void 0,disabled:!!e.disabled||void 0,onKeydown:h,onKeyup:m,onClick:v,onMousedown:g},s=nt();return(0,r.h)(r.Fragment,[Le({ourProps:a,theirProps:{...t,...e},slot:l,attrs:t,slots:n,name:"PopoverButton"}),o&&!u&&i.isPortalled.value&&(0,r.h)(et,{id:p,features:Qe.Focusable,as:"button",type:"button",onFocus:function(){let e=Me(i.panel);e&&Ee(s.value,{[tt.Forwards]:()=>qe(e,De.First),[tt.Backwards]:()=>qe(e,De.Last)})}})])}}}),ft=((0,r.defineComponent)({name:"PopoverOverlay",props:{as:{type:[Object,String],default:"div"},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0}},setup(e,{attrs:t,slots:n}){let o=it("PopoverOverlay"),i=`headlessui-popover-overlay-${Re()}`,l=Ye(),a=(0,r.computed)((()=>null!==l?l.value===Ke.Open:0===o.popoverState.value));function s(){o.closePopover()}return()=>{let r={open:0===o.popoverState.value};return Le({ourProps:{id:i,"aria-hidden":!0,onClick:s},theirProps:e,slot:r,attrs:t,slots:n,features:Te.RenderStrategy|Te.Static,visible:a.value,name:"PopoverOverlay"})}}}),(0,r.defineComponent)({name:"PopoverPanel",props:{as:{type:[Object,String],default:"div"},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},focus:{type:Boolean,default:!1}},inheritAttrs:!1,setup(e,{attrs:t,slots:n,expose:o}){let{focus:i}=e,l=it("PopoverPanel"),a=(0,r.computed)((()=>je(l.panel))),s=`headlessui-focus-sentinel-before-${Re()}`,c=`headlessui-focus-sentinel-after-${Re()}`;o({el:l.panel,$el:l.panel}),(0,r.provide)(st,l.panelId),(0,r.watchEffect)((()=>{var e,t;if(!i||0!==l.popoverState.value||!l.panel)return;let n=null==(e=a.value)?void 0:e.activeElement;null!=(t=Me(l.panel))&&t.contains(n)||qe(Me(l.panel),De.First)}));let u=Ye(),f=(0,r.computed)((()=>null!==u?u.value===Ke.Open:0===l.popoverState.value));function p(e){var t,n;if(e.key===Fe.Escape){if(0!==l.popoverState.value||!Me(l.panel)||a.value&&(null==(t=Me(l.panel))||!t.contains(a.value.activeElement)))return;e.preventDefault(),e.stopPropagation(),l.closePopover(),null==(n=Me(l.button))||n.focus()}}function d(e){var t,n,r,o,i;let a=e.relatedTarget;!a||!Me(l.panel)||null!=(t=Me(l.panel))&&t.contains(a)||(l.closePopover(),((null==(r=null==(n=Me(l.beforePanelSentinel))?void 0:n.contains)?void 0:r.call(n,a))||(null==(i=null==(o=Me(l.afterPanelSentinel))?void 0:o.contains)?void 0:i.call(o,a)))&&a.focus({preventScroll:!0}))}let h=nt();function m(){let e=Me(l.panel);e&&Ee(h.value,{[tt.Forwards]:()=>{qe(e,De.Next)},[tt.Backwards]:()=>{var e;null==(e=Me(l.button))||e.focus({preventScroll:!0})}})}function v(){let e=Me(l.panel);e&&Ee(h.value,{[tt.Forwards]:()=>{var e,t;let n=Me(l.button),r=Me(l.panel);if(!n)return;let o=We(),i=o.indexOf(n),a=o.slice(0,i+1),s=[...o.slice(i+1),...a];for(let n of s.slice())if((null==(t=null==(e=null==n?void 0:n.id)?void 0:e.startsWith)?void 0:t.call(e,"headlessui-focus-sentinel-"))||(null==r?void 0:r.contains(n))){let e=s.indexOf(n);-1!==e&&s.splice(e,1)}qe(s,De.First,!1)},[tt.Backwards]:()=>qe(e,De.Previous)})}return()=>{let o={open:0===l.popoverState.value,close:l.close};return Le({ourProps:{ref:l.panel,id:l.panelId,onKeydown:p,onFocusout:i&&0===l.popoverState.value?d:void 0,tabIndex:-1},theirProps:{...t,...Pe(e,["focus"])},attrs:t,slot:o,slots:{...n,default:(...e)=>{var t;return[(0,r.h)(r.Fragment,[f.value&&l.isPortalled.value&&(0,r.h)(et,{id:s,ref:l.beforePanelSentinel,features:Qe.Focusable,as:"button",type:"button",onFocus:m}),null==(t=n.default)?void 0:t.call(n,...e),f.value&&l.isPortalled.value&&(0,r.h)(et,{id:c,ref:l.afterPanelSentinel,features:Qe.Focusable,as:"button",type:"button",onFocus:v})])]}},features:Te.RenderStrategy|Te.Static,visible:f.value,name:"PopoverPanel"})}}}));(0,r.defineComponent)({name:"PopoverGroup",props:{as:{type:[Object,String],default:"div"}},setup(e,{attrs:t,slots:n,expose:o}){let i=(0,r.ref)(null),l=(0,r.ref)([]),a=(0,r.computed)((()=>je(i)));function s(e){let t=l.value.indexOf(e);-1!==t&&l.value.splice(t,1)}return o({el:i,$el:i}),(0,r.provide)(lt,{registerPopover:function(e){return l.value.push(e),()=>{s(e)}},unregisterPopover:s,isFocusWithinPopoverGroup:function(){var e;let t=a.value;if(!t)return!1;let n=t.activeElement;return!(null==(e=Me(i))||!e.contains(n))||l.value.some((e=>{var r,o;return(null==(r=t.getElementById(e.buttonId))?void 0:r.contains(n))||(null==(o=t.getElementById(e.panelId))?void 0:o.contains(n))}))},closeOthers:function(e){for(let t of l.value)t.buttonId!==e&&t.close()}}),()=>Le({ourProps:{ref:i},theirProps:e,slot:{},attrs:t,slots:n,name:"PopoverGroup"})}});var pt={class:"items-center hidden h-full xl:flex"},dt={key:0,class:"relative"},ht=["id"],mt=[(0,r.createElementVNode)("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[(0,r.createElementVNode)("g",{transform:"translate(-766.000000, -50.000000)",fill:"#005799","fill-rule":"nonzero"},[(0,r.createElementVNode)("polygon",{points:"772 50 772.707107 50.7071068 769.353553 54.0606602 766 50.7071068 766.707107 50 767.544606 50.8375328 769.353553 52.6465534"})])],-1)],vt={key:0,class:"flex flex-col px-5 pb-2 shadow-md"},gt=["href"],yt=["onClick"],_t={class:"!text-blue"},bt=["id"],wt=[(0,r.createElementVNode)("path",{d:"m9 6 6 6-6 6",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round"},null,-1)],xt=["id"],kt=["href"],St=["href"],Et={class:"flex items-center"},Ct={class:"overflow-y-auto h-full"},Tt={class:"p-[50px] grid grid-cols-3 gap-x-[60px] gap-y-[70px]"},Nt={class:""},Lt={class:"flex flex-col w-full"},Ot=["href"],At=["onClick"],Pt={class:"!text-blue"},It=["id"],Rt=[(0,r.createElementVNode)("path",{d:"m9 6 6 6-6 6",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round"},null,-1)],Ft=["id"],Mt=["href"],Bt=(0,r.createElementVNode)("div",{class:"sticky bg-gradient-to-t from-white bottom-0 left-0 w-fill h-32 pointer-events-none mr-12"},null,-1);const jt={__name:"MainNavigation",props:{menu:{type:Array,required:!0}},setup:function(e){var t,n=function(e){clearTimeout(t)},o=function(e){t=setTimeout((function(){i()}),500)},i=function(){document.querySelectorAll(".popover-button-level-1").forEach((function(e){"open"==e.getAttribute("data-headlessui-state")&&e.click()}))};return function(l,a){return(0,r.openBlock)(),(0,r.createElementBlock)("div",pt,[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(e.menu,(function(e,l){return(0,r.openBlock)(),(0,r.createBlock)((0,r.unref)(ct),{key:l},{default:(0,r.withCtx)((function(s){var c=s.open;return[JSON.parse(e.children).length>0?((0,r.openBlock)(),(0,r.createElementBlock)("div",dt,[(0,r.createVNode)((0,r.unref)(ut),{as:"div",class:(0,r.normalizeClass)(["popover-button-level-1 px-2 mx-0.5 text-blue hover:text-blue-light min-h-[60px] inline-flex items-center focus:outline-none transition cursor-pointer",{"!text-blue-light":e.is_active}]),onMouseover:a[0]||(a[0]=function(e){return n=e,i(),clearTimeout(t),void("open"!=n.target.getAttribute("data-headlessui-state")&&n.target.click());var n}),onMouseout:a[1]||(a[1]=function(e){t=setTimeout((function(){i()}),500)})},{default:(0,r.withCtx)((function(){return[(0,r.createElementVNode)("div",{id:"main-nav-btn-".concat(l),class:"flex items-center gap-2 uppercase rounded group focus:outline-none pointer-events-none"},[(0,r.createElementVNode)("span",null,(0,r.toDisplayString)(e.title),1),((0,r.openBlock)(),(0,r.createElementBlock)("svg",{width:"7px",height:"4px",viewBox:"0 0 7 4",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",class:(0,r.normalizeClass)(["transition duration-200",{"rotate-180":c}])},mt,2))],8,ht)]})),_:2},1032,["class"]),(0,r.createVNode)(r.TransitionGroup,{name:"panels","enter-active-class":"transition duration-300 ease-out","enter-from-class":"opacity-0","enter-to-class":"opacity-100","leave-active-class":"transition duration-150 ease-in","leave-from-class":"opacity-100","leave-to-class":"opacity-0"},{default:(0,r.withCtx)((function(){return[e.mega_menu?(0,r.createCommentVNode)("",!0):(0,r.withDirectives)(((0,r.openBlock)(),(0,r.createBlock)((0,r.unref)(ft),{key:0,static:"",class:"absolute left-1/2 -translate-x-1/2 top-full z-40 w-[258px] hidden overflow-y-auto shadow-xl transform bg-white border-t-4 xl:block border-blue-light pt-2",onMouseover:a[2]||(a[2]=function(e){return n()}),onMouseout:a[3]||(a[3]=function(e){return o()})},{default:(0,r.withCtx)((function(){return[e.mega_menu?(0,r.createCommentVNode)("",!0):((0,r.openBlock)(),(0,r.createElementBlock)("div",vt,[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(JSON.parse(e.children),(function(e,t){return(0,r.openBlock)(),(0,r.createElementBlock)("div",{key:t,class:"flex flex-col w-full pb-2 border-b border-gray-200 last:border-white"},[0==JSON.parse(e.children).length?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:0,class:(0,r.normalizeClass)(["flex w-full pt-3 text-sm text-left text-blue hover:text-blue-light transition",{"!text-blue-light":e.is_active}]),href:e.route},(0,r.toDisplayString)(e.title),11,gt)):(0,r.createCommentVNode)("",!0),JSON.parse(e.children).length>0?((0,r.openBlock)(),(0,r.createElementBlock)("button",{key:1,onClick:function(e){return function(e,t){var n=document.getElementById("sub-level-two-".concat(e,"-").concat(t)),r=document.getElementById("sub-level-two-indicator-".concat(e,"-").concat(t));if(n.classList.contains("hidden"))return n.classList.replace("hidden","flex"),void r.classList.replace("rotate-90","-rotate-90");n.classList.replace("flex","hidden"),r.classList.replace("-rotate-90","rotate-90")}(l,t)},class:(0,r.normalizeClass)(["flex justify-between w-full pt-2 text-sm text-left text-blue hover:text-blue-light transition",{"!text-blue-light":e.is_active}])},[(0,r.createElementVNode)("div",null,(0,r.toDisplayString)(e.title),1),(0,r.createElementVNode)("div",_t,[((0,r.openBlock)(),(0,r.createElementBlock)("svg",{id:"sub-level-two-indicator-".concat(l,"-").concat(t),width:"24",height:"24","stroke-width":"1.5",class:"transition-transform duration-300 origin-center scale-50 rotate-90",fill:"none",xmlns:"http://www.w3.org/2000/svg"},wt,8,bt))])],10,yt)):(0,r.createCommentVNode)("",!0),JSON.parse(e.children).length>0?((0,r.openBlock)(),(0,r.createElementBlock)("div",{key:2,id:"sub-level-two-".concat(l,"-").concat(t),class:"flex-col hidden w-full gap-3 pt-2"},[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(JSON.parse(e.children),(function(e,t){return(0,r.openBlock)(),(0,r.createElementBlock)("div",{key:t,class:"flex"},[(0,r.createElementVNode)("a",{class:(0,r.normalizeClass)(["flex pl-3 text-sm text-blue hover:text-blue-light transition",{"!text-blue-light":e.is_active}]),href:e.route},(0,r.toDisplayString)(e.title),11,kt)])})),128))],8,xt)):(0,r.createCommentVNode)("",!0)])})),128))]))]})),_:2},1536)),[[r.vShow,c]])]})),_:2},1024)])):((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:1,href:e.route,class:(0,r.normalizeClass)(["relative min-h-[60px] uppercase px-2 mx-2 text-blue hover:text-blue-light inline-flex items-center font-medium rounded focus:outline-none",{"!text-blue-light":e.is_active}])},[(0,r.createElementVNode)("div",Et,(0,r.toDisplayString)(e.title),1)],10,St)),e.mega_menu?((0,r.openBlock)(),(0,r.createBlock)(r.Teleport,{key:2,to:"#app-header"},[(0,r.createVNode)(r.TransitionGroup,{name:"megapanels","enter-active-class":"transition duration-300 ease-out","enter-from-class":"opacity-0","enter-to-class":"opacity-100","leave-active-class":"transition duration-150 ease-in","leave-from-class":"opacity-100","leave-to-class":"opacity-0"},{default:(0,r.withCtx)((function(){return[(0,r.withDirectives)((0,r.createVNode)((0,r.unref)(ft),{static:"",class:(0,r.normalizeClass)(["absolute right-0 pr-6 pt-6 pb-6 z-40 hidden overflow-x-visible transform bg-white border-t-4 shadow-xl xl:block border-blue-light",{"w-[1000px] mega-height":e.mega_menu,"w-[258px] h-fit":!e.mega_menu}]),onMouseover:a[4]||(a[4]=function(e){return n()}),onMouseout:a[5]||(a[5]=function(e){return o()})},{default:(0,r.withCtx)((function(){return[(0,r.createElementVNode)("div",Ct,[(0,r.createElementVNode)("div",Tt,[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(JSON.parse(e.children),(function(e,t){return(0,r.openBlock)(),(0,r.createElementBlock)("div",{key:t},[(0,r.createElementVNode)("div",Nt,[(0,r.createElementVNode)("div",{class:(0,r.normalizeClass)(["text-base flex border-b-4 pb-3.5 text-blue mb-3",{"border-blue":!e.item_color||"blue"==e.item_color,"border-green":"green"==e.item_color,"border-purple":"purple"==e.item_color,"border-red":"red"==e.item_color,"border-orange":"orange"==e.item_color,"border-yellow":"yellow"==e.item_color,"border-turquoise":"turquoise"==e.item_color,"border-darkgreen":"darkgreen"==e.item_color,"border-monochrome":"monochrome"==e.item_color,"border-blueviolet":"blueviolet"==e.item_color,"border-lightblue":"lightblue"==e.item_color,"border-violet":"violet"==e.item_color,"border-gray-400":"gray-400"==e.item_color}])},(0,r.toDisplayString)(e.title),3),(0,r.createElementVNode)("div",Lt,[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(JSON.parse(e.children),(function(e,n){return(0,r.openBlock)(),(0,r.createElementBlock)("div",{key:n,class:"pb-2 border-b border-gray-200"},[0==JSON.parse(e.children).length?((0,r.openBlock)(),(0,r.createElementBlock)("a",{key:0,class:(0,r.normalizeClass)(["flex w-full pt-2 text-sm text-left text-blue hover:text-blue-light transition",{"!text-blue-light":e.is_active}]),href:e.route},(0,r.toDisplayString)(e.title),11,Ot)):(0,r.createCommentVNode)("",!0),JSON.parse(e.children).length>0?((0,r.openBlock)(),(0,r.createElementBlock)("button",{key:1,onClick:function(e){return function(e,t){var n=document.getElementById("sub-level-three-".concat(e,"-").concat(t)),r=document.getElementById("sub-level-three-indicator-".concat(e,"-").concat(t));if(n.classList.contains("hidden"))return n.classList.replace("hidden","flex"),void r.classList.replace("rotate-90","-rotate-90");n.classList.replace("flex","hidden"),r.classList.replace("-rotate-90","rotate-90")}(t,n)},class:(0,r.normalizeClass)(["flex justify-between w-full pt-2 text-sm text-left text-blue hover:text-blue-light transition",{"!text-blue-light":e.is_active}])},[(0,r.createElementVNode)("div",null,(0,r.toDisplayString)(e.title),1),(0,r.createElementVNode)("div",Pt,[((0,r.openBlock)(),(0,r.createElementBlock)("svg",{id:"sub-level-three-indicator-".concat(t,"-").concat(n),width:"24",height:"24","stroke-width":"1.5",class:"transition-transform duration-300 origin-center scale-50 rotate-90",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Rt,8,It))])],10,At)):(0,r.createCommentVNode)("",!0),JSON.parse(e.children).length>0?((0,r.openBlock)(),(0,r.createElementBlock)("div",{key:2,id:"sub-level-three-".concat(t,"-").concat(n),class:"flex-col hidden w-full gap-3 pt-2"},[((0,r.openBlock)(!0),(0,r.createElementBlock)(r.Fragment,null,(0,r.renderList)(JSON.parse(e.children),(function(e,t){return(0,r.openBlock)(),(0,r.createElementBlock)("div",{key:t},[(0,r.createElementVNode)("a",{class:(0,r.normalizeClass)(["flex pl-3 text-sm text-blue hover:text-blue-light transition",{"!text-blue-light":e.is_active}]),href:e.route},(0,r.toDisplayString)(e.title),11,Mt)])})),128))],8,Ft)):(0,r.createCommentVNode)("",!0)])})),128))])])])})),128))])]),Bt]})),_:2},1032,["class"]),[[r.vShow,c]])]})),_:2},1024)])):(0,r.createCommentVNode)("",!0)]})),_:2},1024)})),128))])}}};var Vt=n(284),Dt={insert:"head",singleton:!1};O()(Vt.Z,Dt);Vt.Z.locals;const $t=jt,Ut="undefined"!=typeof window;const Wt="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag,Ht=e=>Wt?Symbol(e):e,zt=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),Gt=e=>"number"==typeof e&&isFinite(e),qt=e=>"[object RegExp]"===cn(e),Jt=e=>un(e)&&0===Object.keys(e).length;function Kt(e,t){"undefined"!=typeof console&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}const Yt=Object.assign;let Zt;const Xt=()=>Zt||(Zt="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==n.g?n.g:{});function Qt(e){return e.replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}const en=Object.prototype.hasOwnProperty;function tn(e,t){return en.call(e,t)}const nn=Array.isArray,rn=e=>"function"==typeof e,on=e=>"string"==typeof e,ln=e=>"boolean"==typeof e,an=e=>null!==e&&"object"==typeof e,sn=Object.prototype.toString,cn=e=>sn.call(e),un=e=>"[object Object]"===cn(e);const fn=1,pn=2,dn=3,hn=4,mn=5,vn=6,gn=7,yn=8,_n=9,bn=10,wn=11,xn=12,kn=13,Sn=14,En=15;function Cn(e,t,n={}){const{domain:r,messages:o,args:i}=n,l=new SyntaxError(String(e));return l.code=e,t&&(l.location=t),l.domain=r,l}function Tn(e){throw e}function Nn(e,t,n){const r={start:e,end:t};return null!=n&&(r.source=n),r}const Ln=" ",On="\n",An=String.fromCharCode(8232),Pn=String.fromCharCode(8233);function In(e){const t=e;let n=0,r=1,o=1,i=0;const l=e=>"\r"===t[e]&&t[e+1]===On,a=e=>t[e]===Pn,s=e=>t[e]===An,c=e=>l(e)||(e=>t[e]===On)(e)||a(e)||s(e),u=e=>l(e)||a(e)||s(e)?On:t[e];function f(){return i=0,c(n)&&(r++,o=0),l(n)&&n++,n++,o++,t[n]}return{index:()=>n,line:()=>r,column:()=>o,peekOffset:()=>i,charAt:u,currentChar:()=>u(n),currentPeek:()=>u(n+i),next:f,peek:function(){return l(n+i)&&i++,i++,t[n+i]},reset:function(){n=0,r=1,o=1,i=0},resetPeek:function(e=0){i=e},skipToPeek:function(){const e=n+i;for(;e!==n;)f();i=0}}}const Rn=void 0;function Fn(e,t={}){const n=!1!==t.location,r=In(e),o=()=>r.index(),i=()=>{return e=r.line(),t=r.column(),n=r.index(),{line:e,column:t,offset:n};var e,t,n},l=i(),a=o(),s={currentType:14,offset:a,startLoc:l,endLoc:l,lastType:14,lastOffset:a,lastStartLoc:l,lastEndLoc:l,braceNest:0,inLinked:!1,text:""},c=()=>s,{onError:u}=t;function f(e,t,n,...r){const o=c();if(t.column+=n,t.offset+=n,u){const n=Cn(e,Nn(o.startLoc,t),{domain:"tokenizer",args:r});u(n)}}function p(e,t,r){e.endLoc=i(),e.currentType=t;const o={type:t};return n&&(o.loc=Nn(e.startLoc,e.endLoc)),null!=r&&(o.value=r),o}const d=e=>p(e,14);function h(e,t){return e.currentChar()===t?(e.next(),t):(f(fn,i(),0,t),"")}function m(e){let t="";for(;e.currentPeek()===Ln||e.currentPeek()===On;)t+=e.currentPeek(),e.peek();return t}function v(e){const t=m(e);return e.skipToPeek(),t}function g(e){if(e===Rn)return!1;const t=e.charCodeAt(0);return t>=97&&t<=122||t>=65&&t<=90||95===t}function y(e,t){const{currentType:n}=t;if(2!==n)return!1;m(e);const r=function(e){if(e===Rn)return!1;const t=e.charCodeAt(0);return t>=48&&t<=57}("-"===e.currentPeek()?e.peek():e.currentPeek());return e.resetPeek(),r}function _(e){m(e);const t="|"===e.currentPeek();return e.resetPeek(),t}function b(e,t=!0){const n=(t=!1,r="",o=!1)=>{const i=e.currentPeek();return"{"===i?"%"!==r&&t:"@"!==i&&i?"%"===i?(e.peek(),n(t,"%",!0)):"|"===i?!("%"!==r&&!o)||!(r===Ln||r===On):i===Ln?(e.peek(),n(!0,Ln,o)):i!==On||(e.peek(),n(!0,On,o)):"%"===r||t},r=n();return t&&e.resetPeek(),r}function w(e,t){const n=e.currentChar();return n===Rn?Rn:t(n)?(e.next(),n):null}function x(e){return w(e,(e=>{const t=e.charCodeAt(0);return t>=97&&t<=122||t>=65&&t<=90||t>=48&&t<=57||95===t||36===t}))}function k(e){return w(e,(e=>{const t=e.charCodeAt(0);return t>=48&&t<=57}))}function S(e){return w(e,(e=>{const t=e.charCodeAt(0);return t>=48&&t<=57||t>=65&&t<=70||t>=97&&t<=102}))}function E(e){let t="",n="";for(;t=k(e);)n+=t;return n}function C(e){let t="";for(;;){const n=e.currentChar();if("{"===n||"}"===n||"@"===n||"|"===n||!n)break;if("%"===n){if(!b(e))break;t+=n,e.next()}else if(n===Ln||n===On)if(b(e))t+=n,e.next();else{if(_(e))break;t+=n,e.next()}else t+=n,e.next()}return t}function T(e){const t=e.currentChar();switch(t){case"\\":case"'":return e.next(),`\\${t}`;case"u":return N(e,t,4);case"U":return N(e,t,6);default:return f(hn,i(),0,t),""}}function N(e,t,n){h(e,t);let r="";for(let o=0;o=1&&f(_n,i(),0),e.next(),n=p(t,2,"{"),v(e),t.braceNest++,n;case"}":return t.braceNest>0&&2===t.currentType&&f(yn,i(),0),e.next(),n=p(t,3,"}"),t.braceNest--,t.braceNest>0&&v(e),t.inLinked&&0===t.braceNest&&(t.inLinked=!1),n;case"@":return t.braceNest>0&&f(gn,i(),0),n=A(e,t)||d(t),t.braceNest=0,n;default:let r=!0,o=!0,l=!0;if(_(e))return t.braceNest>0&&f(gn,i(),0),n=p(t,1,L(e)),t.braceNest=0,t.inLinked=!1,n;if(t.braceNest>0&&(5===t.currentType||6===t.currentType||7===t.currentType))return f(gn,i(),0),t.braceNest=0,P(e,t);if(r=function(e,t){const{currentType:n}=t;if(2!==n)return!1;m(e);const r=g(e.currentPeek());return e.resetPeek(),r}(e,t))return n=p(t,5,function(e){v(e);let t="",n="";for(;t=x(e);)n+=t;return e.currentChar()===Rn&&f(gn,i(),0),n}(e)),v(e),n;if(o=y(e,t))return n=p(t,6,function(e){v(e);let t="";return"-"===e.currentChar()?(e.next(),t+=`-${E(e)}`):t+=E(e),e.currentChar()===Rn&&f(gn,i(),0),t}(e)),v(e),n;if(l=function(e,t){const{currentType:n}=t;if(2!==n)return!1;m(e);const r="'"===e.currentPeek();return e.resetPeek(),r}(e,t))return n=p(t,7,function(e){v(e),h(e,"'");let t="",n="";const r=e=>"'"!==e&&e!==On;for(;t=w(e,r);)n+="\\"===t?T(e):t;const o=e.currentChar();return o===On||o===Rn?(f(dn,i(),0),o===On&&(e.next(),h(e,"'")),n):(h(e,"'"),n)}(e)),v(e),n;if(!r&&!o&&!l)return n=p(t,13,function(e){v(e);let t="",n="";const r=e=>"{"!==e&&"}"!==e&&e!==Ln&&e!==On;for(;t=w(e,r);)n+=t;return n}(e)),f(pn,i(),0,n.value),v(e),n}return n}function A(e,t){const{currentType:n}=t;let r=null;const o=e.currentChar();switch(8!==n&&9!==n&&12!==n&&10!==n||o!==On&&o!==Ln||f(bn,i(),0),o){case"@":return e.next(),r=p(t,8,"@"),t.inLinked=!0,r;case".":return v(e),e.next(),p(t,9,".");case":":return v(e),e.next(),p(t,10,":");default:return _(e)?(r=p(t,1,L(e)),t.braceNest=0,t.inLinked=!1,r):function(e,t){const{currentType:n}=t;if(8!==n)return!1;m(e);const r="."===e.currentPeek();return e.resetPeek(),r}(e,t)||function(e,t){const{currentType:n}=t;if(8!==n&&12!==n)return!1;m(e);const r=":"===e.currentPeek();return e.resetPeek(),r}(e,t)?(v(e),A(e,t)):function(e,t){const{currentType:n}=t;if(9!==n)return!1;m(e);const r=g(e.currentPeek());return e.resetPeek(),r}(e,t)?(v(e),p(t,12,function(e){let t="",n="";for(;t=x(e);)n+=t;return n}(e))):function(e,t){const{currentType:n}=t;if(10!==n)return!1;const r=()=>{const t=e.currentPeek();return"{"===t?g(e.peek()):!("@"===t||"%"===t||"|"===t||":"===t||"."===t||t===Ln||!t)&&(t===On?(e.peek(),r()):g(t))},o=r();return e.resetPeek(),o}(e,t)?(v(e),"{"===o?O(e,t)||r:p(t,11,function(e){const t=(n=!1,r)=>{const o=e.currentChar();return"{"!==o&&"%"!==o&&"@"!==o&&"|"!==o&&o?o===Ln?r:o===On?(r+=o,e.next(),t(n,r)):(r+=o,e.next(),t(!0,r)):r};return t(!1,"")}(e))):(8===n&&f(bn,i(),0),t.braceNest=0,t.inLinked=!1,P(e,t))}}function P(e,t){let n={type:14};if(t.braceNest>0)return O(e,t)||d(t);if(t.inLinked)return A(e,t)||d(t);switch(e.currentChar()){case"{":return O(e,t)||d(t);case"}":return f(vn,i(),0),e.next(),p(t,3,"}");case"@":return A(e,t)||d(t);default:if(_(e))return n=p(t,1,L(e)),t.braceNest=0,t.inLinked=!1,n;const{isModulo:r,hasSpace:o}=function(e){const t=m(e),n="%"===e.currentPeek()&&"{"===e.peek();return e.resetPeek(),{isModulo:n,hasSpace:t.length>0}}(e);if(r)return o?p(t,0,C(e)):p(t,4,function(e){v(e);const t=e.currentChar();return"%"!==t&&f(fn,i(),0,t),e.next(),"%"}(e));if(b(e))return p(t,0,C(e))}return n}return{nextToken:function(){const{currentType:e,offset:t,startLoc:n,endLoc:l}=s;return s.lastType=e,s.lastOffset=t,s.lastStartLoc=n,s.lastEndLoc=l,s.offset=o(),s.startLoc=i(),r.currentChar()===Rn?p(s,14):P(r,s)},currentOffset:o,currentPosition:i,context:c}}const Mn=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function Bn(e,t,n){switch(e){case"\\\\":return"\\";case"\\'":return"'";default:{const e=parseInt(t||n,16);return e<=55295||e>=57344?String.fromCodePoint(e):"�"}}}function jn(e={}){const t=!1!==e.location,{onError:n}=e;function r(e,t,r,o,...i){const l=e.currentPosition();if(l.offset+=o,l.column+=o,n){const e=Cn(t,Nn(r,l),{domain:"parser",args:i});n(e)}}function o(e,n,r){const o={type:e,start:n,end:n};return t&&(o.loc={start:r,end:r}),o}function i(e,n,r,o){e.end=n,o&&(e.type=o),t&&e.loc&&(e.loc.end=r)}function l(e,t){const n=e.context(),r=o(3,n.offset,n.startLoc);return r.value=t,i(r,e.currentOffset(),e.currentPosition()),r}function a(e,t){const n=e.context(),{lastOffset:r,lastStartLoc:l}=n,a=o(5,r,l);return a.index=parseInt(t,10),e.nextToken(),i(a,e.currentOffset(),e.currentPosition()),a}function s(e,t){const n=e.context(),{lastOffset:r,lastStartLoc:l}=n,a=o(4,r,l);return a.key=t,e.nextToken(),i(a,e.currentOffset(),e.currentPosition()),a}function c(e,t){const n=e.context(),{lastOffset:r,lastStartLoc:l}=n,a=o(9,r,l);return a.value=t.replace(Mn,Bn),e.nextToken(),i(a,e.currentOffset(),e.currentPosition()),a}function u(e){const t=e.context(),n=o(6,t.offset,t.startLoc);let l=e.nextToken();if(9===l.type){const t=function(e){const t=e.nextToken(),n=e.context(),{lastOffset:l,lastStartLoc:a}=n,s=o(8,l,a);return 12!==t.type?(r(e,xn,n.lastStartLoc,0),s.value="",i(s,l,a),{nextConsumeToken:t,node:s}):(null==t.value&&r(e,Sn,n.lastStartLoc,0,Vn(t)),s.value=t.value||"",i(s,e.currentOffset(),e.currentPosition()),{node:s})}(e);n.modifier=t.node,l=t.nextConsumeToken||e.nextToken()}switch(10!==l.type&&r(e,Sn,t.lastStartLoc,0,Vn(l)),l=e.nextToken(),2===l.type&&(l=e.nextToken()),l.type){case 11:null==l.value&&r(e,Sn,t.lastStartLoc,0,Vn(l)),n.key=function(e,t){const n=e.context(),r=o(7,n.offset,n.startLoc);return r.value=t,i(r,e.currentOffset(),e.currentPosition()),r}(e,l.value||"");break;case 5:null==l.value&&r(e,Sn,t.lastStartLoc,0,Vn(l)),n.key=s(e,l.value||"");break;case 6:null==l.value&&r(e,Sn,t.lastStartLoc,0,Vn(l)),n.key=a(e,l.value||"");break;case 7:null==l.value&&r(e,Sn,t.lastStartLoc,0,Vn(l)),n.key=c(e,l.value||"");break;default:r(e,kn,t.lastStartLoc,0);const u=e.context(),f=o(7,u.offset,u.startLoc);return f.value="",i(f,u.offset,u.startLoc),n.key=f,i(n,u.offset,u.startLoc),{nextConsumeToken:l,node:n}}return i(n,e.currentOffset(),e.currentPosition()),{node:n}}function f(e){const t=e.context(),n=o(2,1===t.currentType?e.currentOffset():t.offset,1===t.currentType?t.endLoc:t.startLoc);n.items=[];let f=null;do{const o=f||e.nextToken();switch(f=null,o.type){case 0:null==o.value&&r(e,Sn,t.lastStartLoc,0,Vn(o)),n.items.push(l(e,o.value||""));break;case 6:null==o.value&&r(e,Sn,t.lastStartLoc,0,Vn(o)),n.items.push(a(e,o.value||""));break;case 5:null==o.value&&r(e,Sn,t.lastStartLoc,0,Vn(o)),n.items.push(s(e,o.value||""));break;case 7:null==o.value&&r(e,Sn,t.lastStartLoc,0,Vn(o)),n.items.push(c(e,o.value||""));break;case 8:const i=u(e);n.items.push(i.node),f=i.nextConsumeToken||null}}while(14!==t.currentType&&1!==t.currentType);return i(n,1===t.currentType?t.lastOffset:e.currentOffset(),1===t.currentType?t.lastEndLoc:e.currentPosition()),n}function p(e){const t=e.context(),{offset:n,startLoc:l}=t,a=f(e);return 14===t.currentType?a:function(e,t,n,l){const a=e.context();let s=0===l.items.length;const c=o(1,t,n);c.cases=[],c.cases.push(l);do{const t=f(e);s||(s=0===t.items.length),c.cases.push(t)}while(14!==a.currentType);return s&&r(e,wn,n,0),i(c,e.currentOffset(),e.currentPosition()),c}(e,n,l,a)}return{parse:function(n){const l=Fn(n,Yt({},e)),a=l.context(),s=o(0,a.offset,a.startLoc);return t&&s.loc&&(s.loc.source=n),s.body=p(l),14!==a.currentType&&r(l,Sn,a.lastStartLoc,0,n[a.offset]||""),i(s,l.currentOffset(),l.currentPosition()),s}}}function Vn(e){if(14===e.type)return"EOF";const t=(e.value||"").replace(/\r?\n/gu,"\\n");return t.length>10?t.slice(0,9)+"…":t}function Dn(e,t){for(let n=0;nn,helper:e=>(n.helpers.add(e),e)}}(e);n.helper("normalize"),e.body&&$n(e.body,n);const r=n.context();e.helpers=Array.from(r.helpers)}function Wn(e,t){const{helper:n}=e;switch(t.type){case 0:!function(e,t){t.body?Wn(e,t.body):e.push("null")}(e,t);break;case 1:!function(e,t){const{helper:n,needIndent:r}=e;if(t.cases.length>1){e.push(`${n("plural")}([`),e.indent(r());const o=t.cases.length;for(let n=0;n{const n=on(t.mode)?t.mode:"normal",r=on(t.filename)?t.filename:"message.intl",o=!!t.sourceMap,i=null!=t.breakLineCode?t.breakLineCode:"arrow"===n?";":"\n",l=t.needIndent?t.needIndent:"arrow"!==n,a=e.helpers||[],s=function(e,t){const{sourceMap:n,filename:r,breakLineCode:o,needIndent:i}=t,l={source:e.loc.source,filename:r,code:"",column:1,line:1,offset:0,map:void 0,breakLineCode:o,needIndent:i,indentLevel:0};function a(e,t){l.code+=e}function s(e,t=!0){const n=t?o:"";a(i?n+" ".repeat(e):n)}return{context:()=>l,push:a,indent:function(e=!0){const t=++l.indentLevel;e&&s(t)},deindent:function(e=!0){const t=--l.indentLevel;e&&s(t)},newline:function(){s(l.indentLevel)},helper:e=>`_${e}`,needIndent:()=>l.needIndent}}(e,{mode:n,filename:r,sourceMap:o,breakLineCode:i,needIndent:l});s.push("normal"===n?"function __msg__ (ctx) {":"(ctx) => {"),s.indent(l),a.length>0&&(s.push(`const { ${a.map((e=>`${e}: _${e}`)).join(", ")} } = ctx`),s.newline()),s.push("return "),Wn(s,e),s.deindent(l),s.push("}");const{code:c,map:u}=s.context();return{ast:e,code:c,map:u?u.toJSON():void 0}})(r,n)}const zn="i18n:init",Gn="function:translate",qn=[];qn[0]={w:[0],i:[3,0],"[":[4],o:[7]},qn[1]={w:[1],".":[2],"[":[4],o:[7]},qn[2]={w:[2],i:[3,0],0:[3,0]},qn[3]={i:[3,0],0:[3,0],w:[1,1],".":[2,1],"[":[4,1],o:[7,1]},qn[4]={"'":[5,0],'"':[6,0],"[":[4,2],"]":[1,3],o:8,l:[4,0]},qn[5]={"'":[4,0],o:8,l:[5,0]},qn[6]={'"':[4,0],o:8,l:[6,0]};const Jn=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function Kn(e){if(null==e)return"o";switch(e.charCodeAt(0)){case 91:case 93:case 46:case 34:case 39:return e;case 95:case 36:case 45:return"i";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"w"}return"i"}function Yn(e){const t=e.trim();return("0"!==e.charAt(0)||!isNaN(parseInt(e)))&&(n=t,Jn.test(n)?function(e){const t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}const Zn=new Map;function Xn(e,t){return an(e)?e[t]:null}const Qn=e=>e,er=e=>"",tr=e=>0===e.length?"":e.join(""),nr=e=>null==e?"":nn(e)||un(e)&&e.toString===sn?JSON.stringify(e,null,2):String(e);function rr(e,t){return e=Math.abs(e),2===t?e?e>1?1:0:1:e?Math.min(e,2):0}function or(e={}){const t=e.locale,n=function(e){const t=Gt(e.pluralIndex)?e.pluralIndex:-1;return e.named&&(Gt(e.named.count)||Gt(e.named.n))?Gt(e.named.count)?e.named.count:Gt(e.named.n)?e.named.n:t:t}(e),r=an(e.pluralRules)&&on(t)&&rn(e.pluralRules[t])?e.pluralRules[t]:rr,o=an(e.pluralRules)&&on(t)&&rn(e.pluralRules[t])?rr:void 0,i=e.list||[],l=e.named||{};Gt(e.pluralIndex)&&function(e,t){t.count||(t.count=e),t.n||(t.n=e)}(n,l);function a(t){const n=rn(e.messages)?e.messages(t):!!an(e.messages)&&e.messages[t];return n||(e.parent?e.parent.message(t):er)}const s=un(e.processor)&&rn(e.processor.normalize)?e.processor.normalize:tr,c=un(e.processor)&&rn(e.processor.interpolate)?e.processor.interpolate:nr,u={list:e=>i[e],named:e=>l[e],plural:e=>e[r(n,e.length,o)],linked:(t,...n)=>{const[r,o]=n;let i="text",l="";1===n.length?an(r)?(l=r.modifier||l,i=r.type||i):on(r)&&(l=r||l):2===n.length&&(on(r)&&(l=r||l),on(o)&&(i=o||i));let s=a(t)(u);return"vnode"===i&&nn(s)&&l&&(s=s[0]),l?(c=l,e.modifiers?e.modifiers[c]:Qn)(s,i):s;var c},message:a,type:un(e.processor)&&on(e.processor.type)?e.processor.type:"text",interpolate:c,normalize:s};return u}let ir=null;const lr=ar(Gn);function ar(e){return t=>ir&&ir.emit(e,t)}const sr=7;function cr(e,t,n){return[...new Set([n,...nn(t)?t:an(t)?Object.keys(t):on(t)?[t]:[n]])]}function ur(e,t,n){const r=on(n)?n:hr,o=e;o.__localeChainCache||(o.__localeChainCache=new Map);let i=o.__localeChainCache.get(r);if(!i){i=[];let e=[n];for(;nn(e);)e=fr(i,e,t);const l=nn(t)||!un(t)?t:t.default?t.default:null;e=on(l)?[l]:l,nn(e)&&fr(i,e,!1),o.__localeChainCache.set(r,i)}return i}function fr(e,t,n){let r=!0;for(let o=0;o`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`;let vr,gr,yr;let _r=null;const br=e=>{_r=e};let wr=null;const xr=e=>{wr=e};let kr=0;function Sr(e={}){const t=on(e.version)?e.version:"9.2.2",n=on(e.locale)?e.locale:hr,r=nn(e.fallbackLocale)||un(e.fallbackLocale)||on(e.fallbackLocale)||!1===e.fallbackLocale?e.fallbackLocale:n,o=un(e.messages)?e.messages:{[n]:{}},i=un(e.datetimeFormats)?e.datetimeFormats:{[n]:{}},l=un(e.numberFormats)?e.numberFormats:{[n]:{}},a=Yt({},e.modifiers||{},{upper:(e,t)=>"text"===t&&on(e)?e.toUpperCase():"vnode"===t&&an(e)&&"__v_isVNode"in e?e.children.toUpperCase():e,lower:(e,t)=>"text"===t&&on(e)?e.toLowerCase():"vnode"===t&&an(e)&&"__v_isVNode"in e?e.children.toLowerCase():e,capitalize:(e,t)=>"text"===t&&on(e)?mr(e):"vnode"===t&&an(e)&&"__v_isVNode"in e?mr(e.children):e}),s=e.pluralRules||{},c=rn(e.missing)?e.missing:null,u=!ln(e.missingWarn)&&!qt(e.missingWarn)||e.missingWarn,f=!ln(e.fallbackWarn)&&!qt(e.fallbackWarn)||e.fallbackWarn,p=!!e.fallbackFormat,d=!!e.unresolving,h=rn(e.postTranslation)?e.postTranslation:null,m=un(e.processor)?e.processor:null,v=!ln(e.warnHtmlMessage)||e.warnHtmlMessage,g=!!e.escapeParameter,y=rn(e.messageCompiler)?e.messageCompiler:vr,_=rn(e.messageResolver)?e.messageResolver:gr||Xn,b=rn(e.localeFallbacker)?e.localeFallbacker:yr||cr,w=an(e.fallbackContext)?e.fallbackContext:void 0,x=rn(e.onWarn)?e.onWarn:Kt,k=e,S=an(k.__datetimeFormatters)?k.__datetimeFormatters:new Map,E=an(k.__numberFormatters)?k.__numberFormatters:new Map,C=an(k.__meta)?k.__meta:{};kr++;const T={version:t,cid:kr,locale:n,fallbackLocale:r,messages:o,modifiers:a,pluralRules:s,missing:c,missingWarn:u,fallbackWarn:f,fallbackFormat:p,unresolving:d,postTranslation:h,processor:m,warnHtmlMessage:v,escapeParameter:g,messageCompiler:y,messageResolver:_,localeFallbacker:b,fallbackContext:w,onWarn:x,__meta:C};return T.datetimeFormats=i,T.numberFormats=l,T.__datetimeFormatters=S,T.__numberFormatters=E,__INTLIFY_PROD_DEVTOOLS__&&function(e,t,n){ir&&ir.emit(zn,{timestamp:Date.now(),i18n:e,version:t,meta:n})}(T,t,C),T}function Er(e,t,n,r,o){const{missing:i,onWarn:l}=e;if(null!==i){const r=i(e,n,t,o);return on(r)?r:t}return t}function Cr(e,t,n){e.__localeChainCache=new Map,e.localeFallbacker(e,n,t)}const Tr=e=>e;let Nr=Object.create(null);let Lr=En;const Or=()=>++Lr,Ar={INVALID_ARGUMENT:Lr,INVALID_DATE_ARGUMENT:Or(),INVALID_ISO_DATE_ARGUMENT:Or(),__EXTEND_POINT__:Or()};function Pr(e){return Cn(e,null,void 0)}const Ir=()=>"",Rr=e=>rn(e);function Fr(e,...t){const{fallbackFormat:n,postTranslation:r,unresolving:o,messageCompiler:i,fallbackLocale:l,messages:a}=e,[s,c]=jr(...t),u=ln(c.missingWarn)?c.missingWarn:e.missingWarn,f=ln(c.fallbackWarn)?c.fallbackWarn:e.fallbackWarn,p=ln(c.escapeParameter)?c.escapeParameter:e.escapeParameter,d=!!c.resolvedMessage,h=on(c.default)||ln(c.default)?ln(c.default)?i?s:()=>s:c.default:n?i?s:()=>s:"",m=n||""!==h,v=on(c.locale)?c.locale:e.locale;p&&function(e){nn(e.list)?e.list=e.list.map((e=>on(e)?Qt(e):e)):an(e.named)&&Object.keys(e.named).forEach((t=>{on(e.named[t])&&(e.named[t]=Qt(e.named[t]))}))}(c);let[g,y,_]=d?[s,v,a[v]||{}]:Mr(e,s,v,l,f,u),b=g,w=s;if(d||on(b)||Rr(b)||m&&(b=h,w=b),!(d||(on(b)||Rr(b))&&on(y)))return o?-1:s;let x=!1;const k=Rr(b)?b:Br(e,s,y,b,w,(()=>{x=!0}));if(x)return b;const S=function(e,t,n,r){const{modifiers:o,pluralRules:i,messageResolver:l,fallbackLocale:a,fallbackWarn:s,missingWarn:c,fallbackContext:u}=e,f=r=>{let o=l(n,r);if(null==o&&u){const[,,e]=Mr(u,r,t,a,s,c);o=l(e,r)}if(on(o)){let n=!1;const i=Br(e,r,t,o,r,(()=>{n=!0}));return n?Ir:i}return Rr(o)?o:Ir},p={locale:t,modifiers:o,pluralRules:i,messages:f};e.processor&&(p.processor=e.processor);r.list&&(p.list=r.list);r.named&&(p.named=r.named);Gt(r.plural)&&(p.pluralIndex=r.plural);return p}(e,y,_,c),E=function(e,t,n){0;0;return t(n)}(0,k,or(S)),C=r?r(E,s):E;if(__INTLIFY_PROD_DEVTOOLS__){const t={timestamp:Date.now(),key:on(s)?s:Rr(b)?b.key:"",locale:y||(Rr(b)?b.locale:""),format:on(b)?b:Rr(b)?b.source:"",message:C};t.meta=Yt({},e.__meta,_r||{}),lr(t)}return C}function Mr(e,t,n,r,o,i){const{messages:l,onWarn:a,messageResolver:s,localeFallbacker:c}=e,u=c(e,r,n);let f,p={},d=null,h=n,m=null;for(let n=0;nr;return e.locale=n,e.key=t,e}const s=l(r,function(e,t,n,r,o,i){return{warnHtmlMessage:o,onError:e=>{throw i&&i(e),e},onCacheKey:e=>((e,t,n)=>zt({l:e,k:t,s:n}))(t,n,e)}}(0,n,o,0,a,i));return s.locale=n,s.key=t,s.source=r,s}function jr(...e){const[t,n,r]=e,o={};if(!on(t)&&!Gt(t)&&!Rr(t))throw Pr(Ar.INVALID_ARGUMENT);const i=Gt(t)?String(t):(Rr(t),t);return Gt(n)?o.plural=n:on(n)?o.default=n:un(n)&&!Jt(n)?o.named=n:nn(n)&&(o.list=n),Gt(r)?o.plural=r:on(r)?o.default=r:un(r)&&Yt(o,r),[i,o]}const Vr="undefined"!=typeof Intl;Vr&&Intl.DateTimeFormat,Vr&&Intl.NumberFormat;function Dr(e,...t){const{datetimeFormats:n,unresolving:r,fallbackLocale:o,onWarn:i,localeFallbacker:l}=e,{__datetimeFormatters:a}=e;const[s,c,u,f]=Ur(...t),p=(ln(u.missingWarn)?u.missingWarn:e.missingWarn,ln(u.fallbackWarn)?u.fallbackWarn:e.fallbackWarn,!!u.part),d=on(u.locale)?u.locale:e.locale,h=l(e,o,d);if(!on(s)||""===s)return new Intl.DateTimeFormat(d,f).format(c);let m,v={},g=null,y=d,_=null;for(let t=0;t{$r.includes(e)?a[e]=n[e]:i[e]=n[e]})),on(r)?i.locale=r:un(r)&&(a=r),un(o)&&(a=o),[i.key||"",l,i,a]}function Wr(e,t,n){const r=e;for(const e in n){const n=`${t}__${e}`;r.__datetimeFormatters.has(n)&&r.__datetimeFormatters.delete(n)}}function Hr(e,...t){const{numberFormats:n,unresolving:r,fallbackLocale:o,onWarn:i,localeFallbacker:l}=e,{__numberFormatters:a}=e;const[s,c,u,f]=Gr(...t),p=(ln(u.missingWarn)?u.missingWarn:e.missingWarn,ln(u.fallbackWarn)?u.fallbackWarn:e.fallbackWarn,!!u.part),d=on(u.locale)?u.locale:e.locale,h=l(e,o,d);if(!on(s)||""===s)return new Intl.NumberFormat(d,f).format(c);let m,v={},g=null,y=d,_=null;for(let t=0;t{zr.includes(e)?l[e]=n[e]:i[e]=n[e]})),on(r)?i.locale=r:un(r)&&(l=r),un(o)&&(l=o),[i.key||"",a,i,l]}function qr(e,t,n){const r=e;for(const e in n){const n=`${t}__${e}`;r.__numberFormatters.has(n)&&r.__numberFormatters.delete(n)}}"boolean"!=typeof __INTLIFY_PROD_DEVTOOLS__&&(Xt().__INTLIFY_PROD_DEVTOOLS__=!1);let Jr=sr;const Kr=()=>++Jr;Kr(),Kr(),Kr(),Kr(),Kr(),Kr();let Yr=En;const Zr=()=>++Yr,Xr={UNEXPECTED_RETURN_TYPE:Yr,INVALID_ARGUMENT:Zr(),MUST_BE_CALL_SETUP_TOP:Zr(),NOT_INSLALLED:Zr(),NOT_AVAILABLE_IN_LEGACY_MODE:Zr(),REQUIRED_VALUE:Zr(),INVALID_VALUE:Zr(),CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN:Zr(),NOT_INSLALLED_WITH_PROVIDE:Zr(),UNEXPECTED_ERROR:Zr(),NOT_COMPATIBLE_LEGACY_VUE_I18N:Zr(),BRIDGE_SUPPORT_VUE_2_ONLY:Zr(),MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION:Zr(),NOT_AVAILABLE_COMPOSITION_IN_LEGACY:Zr(),__EXTEND_POINT__:Zr()};function Qr(e,...t){return Cn(e,null,void 0)}const eo=Ht("__transrateVNode"),to=Ht("__datetimeParts"),no=Ht("__numberParts"),ro=Ht("__setPluralRules");Ht("__intlifyMeta");const oo=Ht("__injectWithOption");function io(e){if(!an(e))return e;for(const t in e)if(tn(e,t))if(t.includes(".")){const n=t.split("."),r=n.length-1;let o=e;for(let e=0;e{if("locale"in e&&"resource"in e){const{locale:t,resource:n}=e;t?(l[t]=l[t]||{},so(n,l[t])):so(n,l)}else on(e)&&so(JSON.parse(e),l)})),null==o&&i)for(const e in l)tn(l,e)&&io(l[e]);return l}const ao=e=>!an(e)||nn(e);function so(e,t){if(ao(e)||ao(t))throw Qr(Xr.INVALID_VALUE);for(const n in e)tn(e,n)&&(ao(e[n])||ao(t[n])?t[n]=e[n]:so(e[n],t[n]))}function co(e){return e.type}function uo(e,t,n){let r=an(t.messages)?t.messages:{};"__i18nGlobal"in n&&(r=lo(e.locale.value,{messages:r,__i18n:n.__i18nGlobal}));const o=Object.keys(r);if(o.length&&o.forEach((t=>{e.mergeLocaleMessage(t,r[t])})),an(t.datetimeFormats)){const n=Object.keys(t.datetimeFormats);n.length&&n.forEach((n=>{e.mergeDateTimeFormat(n,t.datetimeFormats[n])}))}if(an(t.numberFormats)){const n=Object.keys(t.numberFormats);n.length&&n.forEach((n=>{e.mergeNumberFormat(n,t.numberFormats[n])}))}}function fo(e){return(0,r.createVNode)(r.Text,null,e,0)}const po="__INTLIFY_META__";let ho=0;function mo(e){return(t,n,o,i)=>e(n,o,(0,r.getCurrentInstance)()||void 0,i)}function vo(e={},t){const{__root:n}=e,o=void 0===n;let i=!ln(e.inheritLocale)||e.inheritLocale;const l=(0,r.ref)(n&&i?n.locale.value:on(e.locale)?e.locale:hr),a=(0,r.ref)(n&&i?n.fallbackLocale.value:on(e.fallbackLocale)||nn(e.fallbackLocale)||un(e.fallbackLocale)||!1===e.fallbackLocale?e.fallbackLocale:l.value),s=(0,r.ref)(lo(l.value,e)),c=(0,r.ref)(un(e.datetimeFormats)?e.datetimeFormats:{[l.value]:{}}),u=(0,r.ref)(un(e.numberFormats)?e.numberFormats:{[l.value]:{}});let f=n?n.missingWarn:!ln(e.missingWarn)&&!qt(e.missingWarn)||e.missingWarn,p=n?n.fallbackWarn:!ln(e.fallbackWarn)&&!qt(e.fallbackWarn)||e.fallbackWarn,d=n?n.fallbackRoot:!ln(e.fallbackRoot)||e.fallbackRoot,h=!!e.fallbackFormat,m=rn(e.missing)?e.missing:null,v=rn(e.missing)?mo(e.missing):null,g=rn(e.postTranslation)?e.postTranslation:null,y=n?n.warnHtmlMessage:!ln(e.warnHtmlMessage)||e.warnHtmlMessage,_=!!e.escapeParameter;const b=n?n.modifiers:un(e.modifiers)?e.modifiers:{};let w,x=e.pluralRules||n&&n.pluralRules;w=(()=>{o&&xr(null);const t={version:"9.2.2",locale:l.value,fallbackLocale:a.value,messages:s.value,modifiers:b,pluralRules:x,missing:null===v?void 0:v,missingWarn:f,fallbackWarn:p,fallbackFormat:h,unresolving:!0,postTranslation:null===g?void 0:g,warnHtmlMessage:y,escapeParameter:_,messageResolver:e.messageResolver,__meta:{framework:"vue"}};t.datetimeFormats=c.value,t.numberFormats=u.value,t.__datetimeFormatters=un(w)?w.__datetimeFormatters:void 0,t.__numberFormatters=un(w)?w.__numberFormatters:void 0;const n=Sr(t);return o&&xr(n),n})(),Cr(w,l.value,a.value);const k=(0,r.computed)({get:()=>l.value,set:e=>{l.value=e,w.locale=l.value}}),S=(0,r.computed)({get:()=>a.value,set:e=>{a.value=e,w.fallbackLocale=a.value,Cr(w,l.value,e)}}),E=(0,r.computed)((()=>s.value)),C=(0,r.computed)((()=>c.value)),T=(0,r.computed)((()=>u.value));const N=(e,t,i,f,p,h)=>{let m;if(l.value,a.value,s.value,c.value,u.value,__INTLIFY_PROD_DEVTOOLS__)try{br((()=>{const e=(0,r.getCurrentInstance)();let t=null;return e&&(t=co(e)[po])?{[po]:t}:null})()),o||(w.fallbackContext=n?wr:void 0),m=e(w)}finally{br(null),o||(w.fallbackContext=void 0)}else m=e(w);if(Gt(m)&&-1===m){const[e,r]=t();return n&&d?f(n):p(e)}if(h(m))return m;throw Qr(Xr.UNEXPECTED_RETURN_TYPE)};function L(...e){return N((t=>Reflect.apply(Fr,null,[t,...e])),(()=>jr(...e)),0,(t=>Reflect.apply(t.t,t,[...e])),(e=>e),(e=>on(e)))}const O={normalize:function(e){return e.map((e=>on(e)||Gt(e)||ln(e)?fo(String(e)):e))},interpolate:e=>e,type:"vnode"};function A(e){return s.value[e]||{}}ho++,n&&Ut&&((0,r.watch)(n.locale,(e=>{i&&(l.value=e,w.locale=e,Cr(w,l.value,a.value))})),(0,r.watch)(n.fallbackLocale,(e=>{i&&(a.value=e,w.fallbackLocale=e,Cr(w,l.value,a.value))})));const P={id:ho,locale:k,fallbackLocale:S,get inheritLocale(){return i},set inheritLocale(e){i=e,e&&n&&(l.value=n.locale.value,a.value=n.fallbackLocale.value,Cr(w,l.value,a.value))},get availableLocales(){return Object.keys(s.value).sort()},messages:E,get modifiers(){return b},get pluralRules(){return x||{}},get isGlobal(){return o},get missingWarn(){return f},set missingWarn(e){f=e,w.missingWarn=f},get fallbackWarn(){return p},set fallbackWarn(e){p=e,w.fallbackWarn=p},get fallbackRoot(){return d},set fallbackRoot(e){d=e},get fallbackFormat(){return h},set fallbackFormat(e){h=e,w.fallbackFormat=h},get warnHtmlMessage(){return y},set warnHtmlMessage(e){y=e,w.warnHtmlMessage=e},get escapeParameter(){return _},set escapeParameter(e){_=e,w.escapeParameter=e},t:L,getLocaleMessage:A,setLocaleMessage:function(e,t){s.value[e]=t,w.messages=s.value},mergeLocaleMessage:function(e,t){s.value[e]=s.value[e]||{},so(t,s.value[e]),w.messages=s.value},getPostTranslationHandler:function(){return rn(g)?g:null},setPostTranslationHandler:function(e){g=e,w.postTranslation=e},getMissingHandler:function(){return m},setMissingHandler:function(e){null!==e&&(v=mo(e)),m=e,w.missing=v},[ro]:function(e){x=e,w.pluralRules=x}};return P.datetimeFormats=C,P.numberFormats=T,P.rt=function(...e){const[t,n,r]=e;if(r&&!an(r))throw Qr(Xr.INVALID_ARGUMENT);return L(t,n,Yt({resolvedMessage:!0},r||{}))},P.te=function(e,t){const n=A(on(t)?t:l.value);return null!==w.messageResolver(n,e)},P.tm=function(e){const t=function(e){let t=null;const n=ur(w,a.value,l.value);for(let r=0;rReflect.apply(Dr,null,[t,...e])),(()=>Ur(...e)),0,(t=>Reflect.apply(t.d,t,[...e])),(()=>""),(e=>on(e)))},P.n=function(...e){return N((t=>Reflect.apply(Hr,null,[t,...e])),(()=>Gr(...e)),0,(t=>Reflect.apply(t.n,t,[...e])),(()=>""),(e=>on(e)))},P.getDateTimeFormat=function(e){return c.value[e]||{}},P.setDateTimeFormat=function(e,t){c.value[e]=t,w.datetimeFormats=c.value,Wr(w,e,t)},P.mergeDateTimeFormat=function(e,t){c.value[e]=Yt(c.value[e]||{},t),w.datetimeFormats=c.value,Wr(w,e,t)},P.getNumberFormat=function(e){return u.value[e]||{}},P.setNumberFormat=function(e,t){u.value[e]=t,w.numberFormats=u.value,qr(w,e,t)},P.mergeNumberFormat=function(e,t){u.value[e]=Yt(u.value[e]||{},t),w.numberFormats=u.value,qr(w,e,t)},P[oo]=e.__injectWithOption,P[eo]=function(...e){return N((t=>{let n;const r=t;try{r.processor=O,n=Reflect.apply(Fr,null,[r,...e])}finally{r.processor=null}return n}),(()=>jr(...e)),0,(t=>t[eo](...e)),(e=>[fo(e)]),(e=>nn(e)))},P[to]=function(...e){return N((t=>Reflect.apply(Dr,null,[t,...e])),(()=>Ur(...e)),0,(t=>t[to](...e)),(()=>[]),(e=>on(e)||nn(e)))},P[no]=function(...e){return N((t=>Reflect.apply(Hr,null,[t,...e])),(()=>Gr(...e)),0,(t=>t[no](...e)),(()=>[]),(e=>on(e)||nn(e)))},P}function go(e={},t){{const t=vo(function(e){const t=on(e.locale)?e.locale:hr,n=on(e.fallbackLocale)||nn(e.fallbackLocale)||un(e.fallbackLocale)||!1===e.fallbackLocale?e.fallbackLocale:t,r=rn(e.missing)?e.missing:void 0,o=!ln(e.silentTranslationWarn)&&!qt(e.silentTranslationWarn)||!e.silentTranslationWarn,i=!ln(e.silentFallbackWarn)&&!qt(e.silentFallbackWarn)||!e.silentFallbackWarn,l=!ln(e.fallbackRoot)||e.fallbackRoot,a=!!e.formatFallbackMessages,s=un(e.modifiers)?e.modifiers:{},c=e.pluralizationRules,u=rn(e.postTranslation)?e.postTranslation:void 0,f=!on(e.warnHtmlInMessage)||"off"!==e.warnHtmlInMessage,p=!!e.escapeParameterHtml,d=!ln(e.sync)||e.sync;let h=e.messages;if(un(e.sharedMessages)){const t=e.sharedMessages;h=Object.keys(t).reduce(((e,n)=>{const r=e[n]||(e[n]={});return Yt(r,t[n]),e}),h||{})}const{__i18n:m,__root:v,__injectWithOption:g}=e,y=e.datetimeFormats,_=e.numberFormats;return{locale:t,fallbackLocale:n,messages:h,flatJson:e.flatJson,datetimeFormats:y,numberFormats:_,missing:r,missingWarn:o,fallbackWarn:i,fallbackRoot:l,fallbackFormat:a,modifiers:s,pluralRules:c,postTranslation:u,warnHtmlMessage:f,escapeParameter:p,messageResolver:e.messageResolver,inheritLocale:d,__i18n:m,__root:v,__injectWithOption:g}}(e)),n={id:t.id,get locale(){return t.locale.value},set locale(e){t.locale.value=e},get fallbackLocale(){return t.fallbackLocale.value},set fallbackLocale(e){t.fallbackLocale.value=e},get messages(){return t.messages.value},get datetimeFormats(){return t.datetimeFormats.value},get numberFormats(){return t.numberFormats.value},get availableLocales(){return t.availableLocales},get formatter(){return{interpolate:()=>[]}},set formatter(e){},get missing(){return t.getMissingHandler()},set missing(e){t.setMissingHandler(e)},get silentTranslationWarn(){return ln(t.missingWarn)?!t.missingWarn:t.missingWarn},set silentTranslationWarn(e){t.missingWarn=ln(e)?!e:e},get silentFallbackWarn(){return ln(t.fallbackWarn)?!t.fallbackWarn:t.fallbackWarn},set silentFallbackWarn(e){t.fallbackWarn=ln(e)?!e:e},get modifiers(){return t.modifiers},get formatFallbackMessages(){return t.fallbackFormat},set formatFallbackMessages(e){t.fallbackFormat=e},get postTranslation(){return t.getPostTranslationHandler()},set postTranslation(e){t.setPostTranslationHandler(e)},get sync(){return t.inheritLocale},set sync(e){t.inheritLocale=e},get warnHtmlInMessage(){return t.warnHtmlMessage?"warn":"off"},set warnHtmlInMessage(e){t.warnHtmlMessage="off"!==e},get escapeParameterHtml(){return t.escapeParameter},set escapeParameterHtml(e){t.escapeParameter=e},get preserveDirectiveContent(){return!0},set preserveDirectiveContent(e){},get pluralizationRules(){return t.pluralRules||{}},__composer:t,t(...e){const[n,r,o]=e,i={};let l=null,a=null;if(!on(n))throw Qr(Xr.INVALID_ARGUMENT);const s=n;return on(r)?i.locale=r:nn(r)?l=r:un(r)&&(a=r),nn(o)?l=o:un(o)&&(a=o),Reflect.apply(t.t,t,[s,l||a||{},i])},rt:(...e)=>Reflect.apply(t.rt,t,[...e]),tc(...e){const[n,r,o]=e,i={plural:1};let l=null,a=null;if(!on(n))throw Qr(Xr.INVALID_ARGUMENT);const s=n;return on(r)?i.locale=r:Gt(r)?i.plural=r:nn(r)?l=r:un(r)&&(a=r),on(o)?i.locale=o:nn(o)?l=o:un(o)&&(a=o),Reflect.apply(t.t,t,[s,l||a||{},i])},te:(e,n)=>t.te(e,n),tm:e=>t.tm(e),getLocaleMessage:e=>t.getLocaleMessage(e),setLocaleMessage(e,n){t.setLocaleMessage(e,n)},mergeLocaleMessage(e,n){t.mergeLocaleMessage(e,n)},d:(...e)=>Reflect.apply(t.d,t,[...e]),getDateTimeFormat:e=>t.getDateTimeFormat(e),setDateTimeFormat(e,n){t.setDateTimeFormat(e,n)},mergeDateTimeFormat(e,n){t.mergeDateTimeFormat(e,n)},n:(...e)=>Reflect.apply(t.n,t,[...e]),getNumberFormat:e=>t.getNumberFormat(e),setNumberFormat(e,n){t.setNumberFormat(e,n)},mergeNumberFormat(e,n){t.mergeNumberFormat(e,n)},getChoiceIndex:(e,t)=>-1,__onComponentInstanceCreated(t){const{componentInstanceCreatedListener:r}=e;r&&r(t,n)}};return n}}const yo={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>"parent"===e||"global"===e,default:"parent"},i18n:{type:Object}};function _o(e){return r.Fragment}const bo={name:"i18n-t",props:Yt({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>Gt(e)||!isNaN(e)}},yo),setup(e,t){const{slots:n,attrs:o}=t,i=e.i18n||Lo({useScope:e.scope,__useComponent:!0});return()=>{const l=Object.keys(n).filter((e=>"_"!==e)),a={};e.locale&&(a.locale=e.locale),void 0!==e.plural&&(a.plural=on(e.plural)?+e.plural:e.plural);const s=function({slots:e},t){if(1===t.length&&"default"===t[0])return(e.default?e.default():[]).reduce(((e,t)=>[...e,...nn(t.children)?t.children:[t]]),[]);return t.reduce(((t,n)=>{const r=e[n];return r&&(t[n]=r()),t}),{})}(t,l),c=i[eo](e.keypath,s,a),u=Yt({},o),f=on(e.tag)||an(e.tag)?e.tag:_o();return(0,r.h)(f,u,c)}}};function wo(e,t,n,o){const{slots:i,attrs:l}=t;return()=>{const t={part:!0};let a={};e.locale&&(t.locale=e.locale),on(e.format)?t.key=e.format:an(e.format)&&(on(e.format.key)&&(t.key=e.format.key),a=Object.keys(e.format).reduce(((t,r)=>n.includes(r)?Yt({},t,{[r]:e.format[r]}):t),{}));const s=o(e.value,t,a);let c=[t.key];nn(s)?c=s.map(((e,t)=>{const n=i[e.type],r=n?n({[e.type]:e.value,index:t,parts:s}):[e.value];var o;return nn(o=r)&&!on(o[0])&&(r[0].key=`${e.type}-${t}`),r})):on(s)&&(c=[s]);const u=Yt({},l),f=on(e.tag)||an(e.tag)?e.tag:_o();return(0,r.h)(f,u,c)}}const xo={name:"i18n-n",props:Yt({value:{type:Number,required:!0},format:{type:[String,Object]}},yo),setup(e,t){const n=e.i18n||Lo({useScope:"parent",__useComponent:!0});return wo(e,t,zr,((...e)=>n[no](...e)))}},ko={name:"i18n-d",props:Yt({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},yo),setup(e,t){const n=e.i18n||Lo({useScope:"parent",__useComponent:!0});return wo(e,t,$r,((...e)=>n[to](...e)))}};function So(e){if(on(e))return{path:e};if(un(e)){if(!("path"in e))throw Qr(Xr.REQUIRED_VALUE);return e}throw Qr(Xr.INVALID_VALUE)}function Eo(e){const{path:t,locale:n,args:r,choice:o,plural:i}=e,l={},a=r||{};return on(n)&&(l.locale=n),Gt(o)&&(l.plural=o),Gt(i)&&(l.plural=i),[t,a,l]}function Co(e,t,...n){const o=un(n[0])?n[0]:{},i=!!o.useI18nComponentName;(!ln(o.globalInstall)||o.globalInstall)&&(e.component(i?"i18n":bo.name,bo),e.component(xo.name,xo),e.component(ko.name,ko)),e.directive("t",function(e){const t=t=>{const{instance:n,modifiers:r,value:o}=t;if(!n||!n.$)throw Qr(Xr.UNEXPECTED_ERROR);const i=function(e,t){const n=e;if("composition"===e.mode)return n.__getInstance(t)||e.global;{const r=n.__getInstance(t);return null!=r?r.__composer:e.global.__composer}}(e,n.$),l=So(o);return[Reflect.apply(i.t,i,[...Eo(l)]),i]};return{created:(n,o)=>{const[i,l]=t(o);Ut&&e.global===l&&(n.__i18nWatcher=(0,r.watch)(l.locale,(()=>{o.instance&&o.instance.$forceUpdate()}))),n.__composer=l,n.textContent=i},unmounted:e=>{Ut&&e.__i18nWatcher&&(e.__i18nWatcher(),e.__i18nWatcher=void 0,delete e.__i18nWatcher),e.__composer&&(e.__composer=void 0,delete e.__composer)},beforeUpdate:(e,{value:t})=>{if(e.__composer){const n=e.__composer,r=So(t);e.textContent=Reflect.apply(n.t,n,[...Eo(r)])}},getSSRProps:e=>{const[n]=t(e);return{textContent:n}}}}(t))}function To(e,t){e.locale=t.locale||e.locale,e.fallbackLocale=t.fallbackLocale||e.fallbackLocale,e.missing=t.missing||e.missing,e.silentTranslationWarn=t.silentTranslationWarn||e.silentFallbackWarn,e.silentFallbackWarn=t.silentFallbackWarn||e.silentFallbackWarn,e.formatFallbackMessages=t.formatFallbackMessages||e.formatFallbackMessages,e.postTranslation=t.postTranslation||e.postTranslation,e.warnHtmlInMessage=t.warnHtmlInMessage||e.warnHtmlInMessage,e.escapeParameterHtml=t.escapeParameterHtml||e.escapeParameterHtml,e.sync=t.sync||e.sync,e.__composer[ro](t.pluralizationRules||e.pluralizationRules);const n=lo(e.locale,{messages:t.messages,__i18n:t.__i18n});return Object.keys(n).forEach((t=>e.mergeLocaleMessage(t,n[t]))),t.datetimeFormats&&Object.keys(t.datetimeFormats).forEach((n=>e.mergeDateTimeFormat(n,t.datetimeFormats[n]))),t.numberFormats&&Object.keys(t.numberFormats).forEach((n=>e.mergeNumberFormat(n,t.numberFormats[n]))),e}const No=Ht("global-vue-i18n");function Lo(e={}){const t=(0,r.getCurrentInstance)();if(null==t)throw Qr(Xr.MUST_BE_CALL_SETUP_TOP);if(!t.isCE&&null!=t.appContext.app&&!t.appContext.app.__VUE_I18N_SYMBOL__)throw Qr(Xr.NOT_INSLALLED);const n=function(e){{const t=(0,r.inject)(e.isCE?No:e.appContext.app.__VUE_I18N_SYMBOL__);if(!t)throw Qr(e.isCE?Xr.NOT_INSLALLED_WITH_PROVIDE:Xr.UNEXPECTED_ERROR);return t}}(t),o=function(e){return"composition"===e.mode?e.global:e.global.__composer}(n),i=co(t),l=function(e,t){return Jt(e)?"__i18n"in t?"local":"global":e.useScope?e.useScope:"local"}(e,i);if(__VUE_I18N_LEGACY_API__&&"legacy"===n.mode&&!e.__useComponent){if(!n.allowComposition)throw Qr(Xr.NOT_AVAILABLE_IN_LEGACY_MODE);return function(e,t,n,o={}){const i="local"===t,l=(0,r.shallowRef)(null);if(i&&e.proxy&&!e.proxy.$options.i18n&&!e.proxy.$options.__i18n)throw Qr(Xr.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION);const a=!ln(o.inheritLocale)||o.inheritLocale,s=(0,r.ref)(i&&a?n.locale.value:on(o.locale)?o.locale:hr),c=(0,r.ref)(i&&a?n.fallbackLocale.value:on(o.fallbackLocale)||nn(o.fallbackLocale)||un(o.fallbackLocale)||!1===o.fallbackLocale?o.fallbackLocale:s.value),u=(0,r.ref)(lo(s.value,o)),f=(0,r.ref)(un(o.datetimeFormats)?o.datetimeFormats:{[s.value]:{}}),p=(0,r.ref)(un(o.numberFormats)?o.numberFormats:{[s.value]:{}}),d=i?n.missingWarn:!ln(o.missingWarn)&&!qt(o.missingWarn)||o.missingWarn,h=i?n.fallbackWarn:!ln(o.fallbackWarn)&&!qt(o.fallbackWarn)||o.fallbackWarn,m=i?n.fallbackRoot:!ln(o.fallbackRoot)||o.fallbackRoot,v=!!o.fallbackFormat,g=rn(o.missing)?o.missing:null,y=rn(o.postTranslation)?o.postTranslation:null,_=i?n.warnHtmlMessage:!ln(o.warnHtmlMessage)||o.warnHtmlMessage,b=!!o.escapeParameter,w=i?n.modifiers:un(o.modifiers)?o.modifiers:{},x=o.pluralRules||i&&n.pluralRules;function k(){return[s.value,c.value,u.value,f.value,p.value]}const S=(0,r.computed)({get:()=>l.value?l.value.locale.value:s.value,set:e=>{l.value&&(l.value.locale.value=e),s.value=e}}),E=(0,r.computed)({get:()=>l.value?l.value.fallbackLocale.value:c.value,set:e=>{l.value&&(l.value.fallbackLocale.value=e),c.value=e}}),C=(0,r.computed)((()=>l.value?l.value.messages.value:u.value)),T=(0,r.computed)((()=>f.value)),N=(0,r.computed)((()=>p.value));function L(){return l.value?l.value.getPostTranslationHandler():y}function O(e){l.value&&l.value.setPostTranslationHandler(e)}function A(){return l.value?l.value.getMissingHandler():g}function P(e){l.value&&l.value.setMissingHandler(e)}function I(e){return k(),e()}function R(...e){return l.value?I((()=>Reflect.apply(l.value.t,null,[...e]))):I((()=>""))}function F(...e){return l.value?Reflect.apply(l.value.rt,null,[...e]):""}function M(...e){return l.value?I((()=>Reflect.apply(l.value.d,null,[...e]))):I((()=>""))}function B(...e){return l.value?I((()=>Reflect.apply(l.value.n,null,[...e]))):I((()=>""))}function j(e){return l.value?l.value.tm(e):{}}function V(e,t){return!!l.value&&l.value.te(e,t)}function D(e){return l.value?l.value.getLocaleMessage(e):{}}function $(e,t){l.value&&(l.value.setLocaleMessage(e,t),u.value[e]=t)}function U(e,t){l.value&&l.value.mergeLocaleMessage(e,t)}function W(e){return l.value?l.value.getDateTimeFormat(e):{}}function H(e,t){l.value&&(l.value.setDateTimeFormat(e,t),f.value[e]=t)}function z(e,t){l.value&&l.value.mergeDateTimeFormat(e,t)}function G(e){return l.value?l.value.getNumberFormat(e):{}}function q(e,t){l.value&&(l.value.setNumberFormat(e,t),p.value[e]=t)}function J(e,t){l.value&&l.value.mergeNumberFormat(e,t)}const K={get id(){return l.value?l.value.id:-1},locale:S,fallbackLocale:E,messages:C,datetimeFormats:T,numberFormats:N,get inheritLocale(){return l.value?l.value.inheritLocale:a},set inheritLocale(e){l.value&&(l.value.inheritLocale=e)},get availableLocales(){return l.value?l.value.availableLocales:Object.keys(u.value)},get modifiers(){return l.value?l.value.modifiers:w},get pluralRules(){return l.value?l.value.pluralRules:x},get isGlobal(){return!!l.value&&l.value.isGlobal},get missingWarn(){return l.value?l.value.missingWarn:d},set missingWarn(e){l.value&&(l.value.missingWarn=e)},get fallbackWarn(){return l.value?l.value.fallbackWarn:h},set fallbackWarn(e){l.value&&(l.value.missingWarn=e)},get fallbackRoot(){return l.value?l.value.fallbackRoot:m},set fallbackRoot(e){l.value&&(l.value.fallbackRoot=e)},get fallbackFormat(){return l.value?l.value.fallbackFormat:v},set fallbackFormat(e){l.value&&(l.value.fallbackFormat=e)},get warnHtmlMessage(){return l.value?l.value.warnHtmlMessage:_},set warnHtmlMessage(e){l.value&&(l.value.warnHtmlMessage=e)},get escapeParameter(){return l.value?l.value.escapeParameter:b},set escapeParameter(e){l.value&&(l.value.escapeParameter=e)},t:R,getPostTranslationHandler:L,setPostTranslationHandler:O,getMissingHandler:A,setMissingHandler:P,rt:F,d:M,n:B,tm:j,te:V,getLocaleMessage:D,setLocaleMessage:$,mergeLocaleMessage:U,getDateTimeFormat:W,setDateTimeFormat:H,mergeDateTimeFormat:z,getNumberFormat:G,setNumberFormat:q,mergeNumberFormat:J};function Y(e){e.locale.value=s.value,e.fallbackLocale.value=c.value,Object.keys(u.value).forEach((t=>{e.mergeLocaleMessage(t,u.value[t])})),Object.keys(f.value).forEach((t=>{e.mergeDateTimeFormat(t,f.value[t])})),Object.keys(p.value).forEach((t=>{e.mergeNumberFormat(t,p.value[t])})),e.escapeParameter=b,e.fallbackFormat=v,e.fallbackRoot=m,e.fallbackWarn=h,e.missingWarn=d,e.warnHtmlMessage=_}return(0,r.onBeforeMount)((()=>{if(null==e.proxy||null==e.proxy.$i18n)throw Qr(Xr.NOT_AVAILABLE_COMPOSITION_IN_LEGACY);const n=l.value=e.proxy.$i18n.__composer;"global"===t?(s.value=n.locale.value,c.value=n.fallbackLocale.value,u.value=n.messages.value,f.value=n.datetimeFormats.value,p.value=n.numberFormats.value):i&&Y(n)})),K}(t,l,o,e)}if("global"===l)return uo(o,e,i),o;if("parent"===l){let r=function(e,t,n=!1){let r=null;const o=t.root;let i=t.parent;for(;null!=i;){const t=e;if("composition"===e.mode)r=t.__getInstance(i);else if(__VUE_I18N_LEGACY_API__){const e=t.__getInstance(i);null!=e&&(r=e.__composer,n&&r&&!r[oo]&&(r=null))}if(null!=r)break;if(o===i)break;i=i.parent}return r}(n,t,e.__useComponent);return null==r&&(r=o),r}const a=n;let s=a.__getInstance(t);if(null==s){const n=Yt({},e);"__i18n"in i&&(n.__i18n=i.__i18n),o&&(n.__root=o),s=vo(n),function(e,t,n){(0,r.onMounted)((()=>{0}),t),(0,r.onUnmounted)((()=>{e.__deleteInstance(t)}),t)}(a,t),a.__setInstance(t,s)}return s}const Oo=["locale","fallbackLocale","availableLocales"],Ao=["t","rt","d","n","tm"];var Po,Io,Ro;if(Po=function(e,t={}){{const n=(t.onCacheKey||Tr)(e),r=Nr[n];if(r)return r;let o=!1;const i=t.onError||Tn;t.onError=e=>{o=!0,i(e)};const{code:l}=Hn(e,t),a=new Function(`return ${l}`)();return o?a:Nr[n]=a}},vr=Po,gr=function(e,t){if(!an(e))return null;let n=Zn.get(t);if(n||(n=function(e){const t=[];let n,r,o,i,l,a,s,c=-1,u=0,f=0;const p=[];function d(){const t=e[c+1];if(5===u&&"'"===t||6===u&&'"'===t)return c++,o="\\"+t,p[0](),!0}for(p[0]=()=>{void 0===r?r=o:r+=o},p[1]=()=>{void 0!==r&&(t.push(r),r=void 0)},p[2]=()=>{p[0](),f++},p[3]=()=>{if(f>0)f--,u=4,p[0]();else{if(f=0,void 0===r)return!1;if(r=Yn(r),!1===r)return!1;p[1]()}};null!==u;)if(c++,n=e[c],"\\"!==n||!d()){if(i=Kn(n),s=qn[u],l=s[i]||s.l||8,8===l)return;if(u=l[0],void 0!==l[1]&&(a=p[l[1]],a&&(o=n,!1===a())))return;if(7===u)return t}}(t),n&&Zn.set(t,n)),!n)return null;const r=n.length;let o=e,i=0;for(;igo(e))):o.run((()=>vo(e)));if(null==n)throw Qr(Xr.UNEXPECTED_ERROR);return[o,n]}}(e,n),c=Ht("");{const e={get mode(){return __VUE_I18N_LEGACY_API__&&n?"legacy":"composition"},get allowComposition(){return i},async install(t,...i){t.__VUE_I18N_SYMBOL__=c,t.provide(t.__VUE_I18N_SYMBOL__,e),!n&&o&&function(e,t){const n=Object.create(null);Oo.forEach((e=>{const o=Object.getOwnPropertyDescriptor(t,e);if(!o)throw Qr(Xr.UNEXPECTED_ERROR);const i=(0,r.isRef)(o.value)?{get:()=>o.value.value,set(e){o.value.value=e}}:{get:()=>o.get&&o.get()};Object.defineProperty(n,e,i)})),e.config.globalProperties.$i18n=n,Ao.forEach((n=>{const r=Object.getOwnPropertyDescriptor(t,n);if(!r||!r.value)throw Qr(Xr.UNEXPECTED_ERROR);Object.defineProperty(e.config.globalProperties,`$${n}`,r)}))}(t,e.global),__VUE_I18N_FULL_INSTALL__&&Co(t,e,...i),__VUE_I18N_LEGACY_API__&&n&&t.mixin(function(e,t,n){return{beforeCreate(){const o=(0,r.getCurrentInstance)();if(!o)throw Qr(Xr.UNEXPECTED_ERROR);const i=this.$options;if(i.i18n){const n=i.i18n;i.__i18n&&(n.__i18n=i.__i18n),n.__root=t,this===this.$root?this.$i18n=To(e,n):(n.__injectWithOption=!0,this.$i18n=go(n))}else i.__i18n?this===this.$root?this.$i18n=To(e,i):this.$i18n=go({__i18n:i.__i18n,__injectWithOption:!0,__root:t}):this.$i18n=e;i.__i18nGlobal&&uo(t,i,i),e.__onComponentInstanceCreated(this.$i18n),n.__setInstance(o,this.$i18n),this.$t=(...e)=>this.$i18n.t(...e),this.$rt=(...e)=>this.$i18n.rt(...e),this.$tc=(...e)=>this.$i18n.tc(...e),this.$te=(e,t)=>this.$i18n.te(e,t),this.$d=(...e)=>this.$i18n.d(...e),this.$n=(...e)=>this.$i18n.n(...e),this.$tm=e=>this.$i18n.tm(e)},mounted(){},unmounted(){const e=(0,r.getCurrentInstance)();if(!e)throw Qr(Xr.UNEXPECTED_ERROR);delete this.$t,delete this.$rt,delete this.$tc,delete this.$te,delete this.$d,delete this.$n,delete this.$tm,n.__deleteInstance(e),delete this.$i18n}}}(s,s.__composer,e));const l=t.unmount;t.unmount=()=>{e.dispose(),l()}},get global(){return s},dispose(){a.stop()},__instances:l,__getInstance:function(e){return l.get(e)||null},__setInstance:function(e,t){l.set(e,t)},__deleteInstance:function(e){l.delete(e)}};return e}}({locale:null!==(Ro=window.location.href.split("/")[3])&&void 0!==Ro?Ro:"en",fallbackLocale:"en",messages:Fo});const Bo=Mo;n(333),n(85);var jo=(0,r.createApp)({});jo.component("news-carousel-next",I),jo.component("events-carousel-next",ne),jo.use(Bo),jo.mount("#slider");var Vo=(0,r.createApp)({});Vo.component("list-overview",Se),Vo.use(Bo),Vo.mount("#list-overview-search");var Do=(0,r.createApp)({});Do.component("main-navigation",$t),Do.use(Bo),Do.mount("#main-navigation")},333:(e,t,n)=>{window._=n(486),window.Vue=n(821),window.axios=n(669),window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest"},85:(e,t,n)=>{"use strict";function r(e,t){var n={start:function(){return 0},center:function(e){return r(e)/2},end:r};function r(e){return t-e}return{measure:function(r){return"number"==typeof e?t*Number(e):n[e](r)}}}function o(e){return Math.abs(e)}function i(e){return e?e/o(e):0}function l(e,t){return o(e-t)}function a(e,t){for(var n=[],r=0;rt}function l(e){return r(e)||i(e)}return{length:n,max:t,min:e,constrain:function(n){return l(n)?r(n)?e:t:n},reachedAny:l,reachedMax:i,reachedMin:r,removeOffset:function(e){return n?e-n*Math.ceil((e-t)/n):e}}}function p(e,t,n){var r=f(0,e),i=r.min,l=r.constrain,a=e+1,s=c(t);function c(e){return n?o((a+e)%a):l(e)}function u(){return s}function d(e){return s=c(e),h}var h={add:function(e){return d(u()+e)},clone:function(){return p(e,u(),n)},get:u,set:d,min:i,max:e};return h}function d(){var e=[];var t={add:function(n,r,o,i){return void 0===i&&(i=!1),n.addEventListener(r,o,i),e.push((function(){return n.removeEventListener(r,o,i)})),t},removeAll:function(){return e=e.filter((function(e){return e()})),t}};return t}function h(e){var t=e;function n(e){return t/=e,o}function r(e){return"number"==typeof e?e:e.get()}var o={add:function(e){return t+=r(e),o},divide:n,get:function(){return t},multiply:function(e){return t*=e,o},normalize:function(){return 0!==t&&n(t),o},set:function(e){return t=r(e),o},subtract:function(e){return t-=r(e),o}};return o}function m(e,t,n,r,a,s,c,u,f,p,m,v,g,y,_){var b=e.cross,w=["INPUT","SELECT","TEXTAREA"],x=h(0),k=d(),S=d(),E={mouse:300,touch:400},C={mouse:500,touch:600},T=a?5:16,N=0,L=0,O=!1,A=!1,P=!1,I=!1;function R(e){if(!(I="mousedown"===e.type)||0===e.button){var t,o,i=l(r.get(),c.get())>=2,a=I||!i,u=(t=e.target,o=t.nodeName||"",!(w.indexOf(o)>-1)),f=i||I&&u;O=!0,s.pointerDown(e),x.set(r),r.set(c),p.useBaseMass().useSpeed(80),function(){var e=I?document:n;S.add(e,"touchmove",F).add(e,"touchend",M).add(e,"mousemove",F).add(e,"mouseup",M)}(),N=s.readPoint(e),L=s.readPoint(e,b),g.emit("pointerDown"),a&&(P=!1),f&&e.preventDefault()}}function F(e){if(!A&&!I){if(!e.cancelable)return M(e);var n=s.readPoint(e),o=s.readPoint(e,b),i=l(n,N),a=l(o,L);if(!(A=i>a)&&!P)return M(e)}var c=s.pointerMove(e);!P&&c&&(P=!0),u.start(),r.add(t.apply(c)),e.preventDefault()}function M(e){var n=m.byDistance(0,!1).index!==v.get(),c=s.pointerUp(e)*(a?C:E)[I?"mouse":"touch"],u=function(e,t){var n=v.clone().add(-1*i(e)),r=n.get()===v.min||n.get()===v.max,l=m.byDistance(e,!a).distance;return a||o(e)<20?l:!y&&r?.4*l:_&&t?.5*l:m.byIndex(n.get(),0).distance}(t.apply(c),n),d=function(e,t){if(0===e||0===t)return 0;if(o(e)<=o(t))return 0;var n=l(o(e),o(t));return o(n/e)}(c,u),h=l(r.get(),x.get())>=.5,b=n&&d>.75,w=o(c)<20,k=b?10:T,N=b?1+2.5*d:1;h&&!I&&(P=!0),A=!1,O=!1,S.removeAll(),p.useSpeed(w?9:k).useMass(N),f.distance(u,!a),I=!1,g.emit("pointerUp")}function B(e){P&&e.preventDefault()}return{addActivationEvents:function(){var e=n;k.add(e,"touchmove",(function(){})).add(e,"touchend",(function(){})).add(e,"touchstart",R).add(e,"mousedown",R).add(e,"touchcancel",M).add(e,"contextmenu",M).add(e,"click",B)},clickAllowed:function(){return!P},pointerDown:function(){return O},removeAllEvents:function(){k.removeAll(),S.removeAll()}}}function v(e,t,n){var r,o,l=(r=2,o=Math.pow(10,r),function(e){return Math.round(e*o)/o}),a=h(0),s=h(0),c=h(0),u=0,f=t,p=n;function d(e){return f=e,v}function m(e){return p=e,v}var v={direction:function(){return u},seek:function(t){c.set(t).subtract(e);var n,r,o,l,d=(n=c.get(),(o=0)+(n-(r=0))/(100-r)*(f-o));return u=i(c.get()),c.normalize().multiply(d).subtract(a),(l=c).divide(p),s.add(l),v},settle:function(t){var n=t.get()-e.get(),r=!l(n);return r&&e.set(t),r},update:function(){a.add(s),e.add(a),s.multiply(0)},useBaseMass:function(){return m(n)},useBaseSpeed:function(){return d(t)},useMass:m,useSpeed:d};return v}function g(e,t,n,r){var i=!1;return{constrain:function(l){if(!i&&e.reachedAny(n.get())&&e.reachedAny(t.get())){var a=e.reachedMin(t.get())?"min":"max",s=o(e[a]-t.get()),c=n.get()-t.get(),u=Math.min(s/50,.85);n.subtract(c*u),!l&&o(c)<10&&(n.set(e.constrain(n.get())),r.useSpeed(10).useMass(3))}},toggleActive:function(e){i=!e}}}function y(e,t,n,r,o){var i=f(-t+e,n[0]),l=r.map(i.constrain);return{snapsContained:function(){if(t<=e)return[i.max];if("keepSnaps"===o)return l;var n=function(){var e=l[0],t=c(l),n=l.lastIndexOf(e),r=l.indexOf(t)+1;return f(n,r)}(),r=n.min,a=n.max;return l.slice(r,a)}()}}function _(e,t,n,r,o){var i=f(n.min+t.measure(.1),n.max+t.measure(.1)),l=i.reachedMin,a=i.reachedMax;return{loop:function(t){if(function(e){return 1===e?a(r.get()):-1===e&&l(r.get())}(t)){var n=e*(-1*t);o.forEach((function(e){return e.add(n)}))}}}}function b(e){var t=e.max,n=e.length;return{get:function(e){return(e-t)/-n}}}function w(e,t,n,r,i,l){var s,u,f=e.startEdge,p=e.endEdge,d=i.map((function(e){return r[f]-e[f]})).map(n.measure).map((function(e){return-o(e)})),h=(s=a(d,l).map((function(e){return e[0]})),u=a(i,l).map((function(e){return c(e)[p]-e[0][f]})).map(n.measure).map(o).map(t.measure),s.map((function(e,t){return e+u[t]})));return{snaps:d,snapsAligned:h}}function x(e,t,n,r,i){var l=r.reachedAny,a=r.removeOffset,s=r.constrain;function c(e,t){return o(e)0?e.concat([n]):e}),[])}function m(e,t){var r="start"===t,o=r?-n:n,a=i.findSlideBounds([o]);return e.map((function(e){var t=r?0:-n,o=r?n:0,i=a.filter((function(t){return t.index===e}))[0][r?"end":"start"];return{point:i,getTarget:function(){return l.get()>i?t:o},index:e,location:-1}}))}return{canLoop:function(){return p.every((function(e){var n=e.index;return d(u.filter((function(e){return e!==n})),t)<=0}))},clear:function(){p.forEach((function(t){var n=t.index;a[n].style[e.startEdge]=""}))},loop:function(){p.forEach((function(t){var n=t.getTarget,r=t.location,o=t.index,i=n();i!==r&&(a[o].style[e.startEdge]=i+"%",t.location=i)}))},loopPoints:p}}function S(e,t,n){var r="x"===e.scroll?function(e){return"translate3d("+e+"%,0px,0px)"}:function(e){return"translate3d(0px,"+e+"%,0px)"},o=n.style,i=!1;return{clear:function(){o.transform=""},to:function(e){i||(o.transform=r(t.apply(e.get())))},toggleActive:function(e){i=!e}}}function E(e,t,n,i,l){var a,E=i.align,C=i.axis,T=i.direction,N=i.startIndex,L=i.inViewThreshold,O=i.loop,A=i.speed,P=i.dragFree,I=i.slidesToScroll,R=i.skipSnaps,F=i.containScroll,M=t.getBoundingClientRect(),B=n.map((function(e){return e.getBoundingClientRect()})),j=function(e){var t="rtl"===e?-1:1;return{apply:function(e){return e*t}}}(T),V=function(e,t){var n="y"===e?"y":"x";return{scroll:n,cross:"y"===e?"x":"y",startEdge:"y"===n?"top":"rtl"===t?"right":"left",endEdge:"y"===n?"bottom":"rtl"===t?"left":"right",measureSize:function(e){var t=e.width,r=e.height;return"x"===n?t:r}}}(C,T),D=(a=V.measureSize(M),{measure:function(e){return 0===a?0:e/a*100},totalPercent:100}),$=D.totalPercent,U=r(E,$),W=function(e,t,n,r,i){var l=e.measureSize,a=e.startEdge,s=e.endEdge,f=r.map(l);return{slideSizes:f.map(t.measure),slideSizesWithGaps:r.map((function(e,t,r){var o=t===u(r),l=window.getComputedStyle(c(n)),p=parseFloat(l.getPropertyValue("margin-"+s));return o?f[t]+(i?p:0):r[t+1][a]-e[a]})).map(t.measure).map(o)}}(V,D,n,B,O),H=W.slideSizes,z=W.slideSizesWithGaps,G=w(V,U,D,M,B,I),q=G.snaps,J=G.snapsAligned,K=-c(q)+c(z),Y=y($,K,q,J,F).snapsContained,Z=!O&&""!==F?Y:J,X=function(e,t,n){var r,o;return{limit:(r=t[0],o=c(t),f(n?r-e:o,r))}}(K,Z,O).limit,Q=p(u(Z),N,O),ee=Q.clone(),te=s(n),ne=function(e){var t=0;function n(e,n){return function(){e===!!t&&n()}}function r(){t=window.requestAnimationFrame(e)}return{proceed:n(!0,r),start:n(!1,r),stop:n(!0,(function(){window.cancelAnimationFrame(t),t=0}))}}((function(){O||fe.scrollBounds.constrain(fe.dragHandler.pointerDown()),fe.scrollBody.seek(ie).update();var e=fe.scrollBody.settle(ie);e&&!fe.dragHandler.pointerDown()&&(fe.animation.stop(),l.emit("settle")),e||l.emit("scroll"),O&&(fe.scrollLooper.loop(fe.scrollBody.direction()),fe.slideLooper.loop()),fe.translate.to(oe),fe.animation.proceed()})),re=Z[Q.get()],oe=h(re),ie=h(re),le=v(oe,A,1),ae=x(O,Z,K,X,ie),se=function(e,t,n,r,o,i){function l(r){var l=r.distance,a=r.index!==t.get();l&&(e.start(),o.add(l)),a&&(n.set(t.get()),t.set(r.index),i.emit("select"))}return{distance:function(e,t){l(r.byDistance(e,t))},index:function(e,n){var o=t.clone().set(e);l(r.byIndex(o.get(),n))}}}(ne,Q,ee,ae,ie,l),ce=function(e,t,n,r,o,i,l){var a=o.removeOffset,s=o.constrain,c=Math.min(Math.max(l,.01),.99),u=i?[0,t,-t]:[0],f=p(u,c);function p(t,o){var i=t||u,l=o||0,a=n.map((function(e){return e*l}));return i.reduce((function(t,o){var i=r.map((function(t,r){return{start:t-n[r]+a[r]+o,end:t+e-a[r]+o,index:r}}));return t.concat(i)}),[])}return{check:function(e,t){var n=i?a(e):s(e);return(t||f).reduce((function(e,t){var r=t.index,o=t.start,i=t.end;return-1===e.indexOf(r)&&on?e.concat([r]):e}),[])},findSlideBounds:p}}($,K,H,q,X,O,L),ue=m(V,j,e,ie,P,function(e,t){var n,r;function i(e){return"undefined"!=typeof TouchEvent&&e instanceof TouchEvent}function l(e){return e.timeStamp}function a(t,n){var r="client"+("x"===(n||e.scroll)?"X":"Y");return(i(t)?t.touches[0]:t)[r]}return{isTouchEvent:i,pointerDown:function(e){return n=e,r=e,t.measure(a(e))},pointerMove:function(e){var o=a(e)-a(r),i=l(e)-l(n)>170;return r=e,i&&(n=e),t.measure(o)},pointerUp:function(e){if(!n||!r)return 0;var i=a(r)-a(n),s=l(e)-l(n),c=l(e)-l(r)>170,u=i/s;return s&&!c&&o(u)>.1?t.measure(u):0},readPoint:a}}(V,D),oe,ne,se,le,ae,Q,l,O,R),fe={containerRect:M,slideRects:B,animation:ne,axis:V,direction:j,dragHandler:ue,eventStore:d(),pxToPercent:D,index:Q,indexPrevious:ee,limit:X,location:oe,options:i,scrollBody:le,scrollBounds:g(X,oe,ie,le),scrollLooper:_(K,D,X,oe,[oe,ie]),scrollProgress:b(X),scrollSnaps:Z,scrollTarget:ae,scrollTo:se,slideLooper:k(V,$,K,z,Z,ce,oe,n),slidesInView:ce,slideIndexes:te,target:ie,translate:S(V,j,t)};return fe}n.r(t);var C={align:"center",axis:"x",containScroll:"",direction:"ltr",dragFree:!1,draggable:!0,inViewThreshold:0,loop:!1,skipSnaps:!1,slidesToScroll:1,speed:10,startIndex:0};function T(e,t,n){var r,o,i,l,a,s,c,u,f,p=function(){var e={};function t(t){return e[t]||[]}var n={emit:function(e){return t(e).forEach((function(t){return t(e)})),n},off:function(r,o){return e[r]=t(r).filter((function(e){return e!==o})),n},on:function(r,o){return e[r]=t(r).concat([o]),n}};return n}(),d=(r=function(){if(g){var e=l.axis.measureSize(c.getBoundingClientRect());b!==e&&k(),p.emit("resize")}},o=500,i=0,function(){window.clearTimeout(i),i=window.setTimeout(r,o)||0}),h=k,m=p.on,v=p.off,g=!1,y=Object.assign({},C,T.globalOptions),_=Object.assign({},y),b=0;function w(){var t,n="container"in e&&e.container,r="slides"in e&&e.slides;c="root"in e?e.root:e,u=n||c.children[0],f=r||[].slice.call(u.children),t=getComputedStyle(c,":before").content,a={get:function(){try{return JSON.parse(t.slice(1,-1).replace(/\\/g,""))}catch(e){}return{}}}}function x(e,t){if(w(),y=Object.assign({},y,e),_=Object.assign({},y,a.get()),s=Object.assign([],t),(l=E(c,u,f,_,p)).eventStore.add(window,"resize",d),l.translate.to(l.location),b=l.axis.measureSize(c.getBoundingClientRect()),s.forEach((function(e){return e.init(A)})),_.loop){if(!l.slideLooper.canLoop())return S(),x({loop:!1},t);l.slideLooper.loop()}_.draggable&&u.offsetParent&&f.length&&l.dragHandler.addActivationEvents(),g||(setTimeout((function(){return p.emit("init")}),0),g=!0)}function k(e,t){if(g){var n=O(),r=Object.assign({startIndex:n},e);S(),x(r,t||s),p.emit("reInit")}}function S(){l.dragHandler.removeAllEvents(),l.animation.stop(),l.eventStore.removeAll(),l.translate.clear(),l.slideLooper.clear(),s.forEach((function(e){return e.destroy()}))}function N(e){var t=l[e?"target":"location"].get(),n=_.loop?"removeOffset":"constrain";return l.slidesInView.check(l.limit[n](t))}function L(e,t,n){l.scrollBody.useBaseMass().useSpeed(t?100:_.speed),g&&l.scrollTo.index(e,n||0)}function O(){return l.index.get()}var A={canScrollNext:function(){return l.index.clone().add(1).get()!==O()},canScrollPrev:function(){return l.index.clone().add(-1).get()!==O()},clickAllowed:function(){return l.dragHandler.clickAllowed()},containerNode:function(){return u},internalEngine:function(){return l},destroy:function(){g&&(S(),g=!1,p.emit("destroy"))},off:v,on:m,previousScrollSnap:function(){return l.indexPrevious.get()},reInit:h,rootNode:function(){return c},scrollNext:function(e){L(l.index.clone().add(1).get(),!0===e,-1)},scrollPrev:function(e){L(l.index.clone().add(-1).get(),!0===e,1)},scrollProgress:function(){return l.scrollProgress.get(l.location.get())},scrollSnapList:function(){return l.scrollSnaps.map(l.scrollProgress.get)},scrollTo:L,selectedScrollSnap:O,slideNodes:function(){return f},slidesInView:N,slidesNotInView:function(e){var t=N(e);return l.slideIndexes.filter((function(e){return-1===t.indexOf(e)}))}};return x(t,n),A}T.globalOptions=void 0;const N=T;var L={delay:4e3,playOnInit:!0,stopOnInteraction:!0,stopOnMouseEnter:!1,stopOnLastSnap:!1};function O(e,t){var n,r=Object.assign({},L,O.globalOptions,e),o=r.playOnInit,i=r.stopOnInteraction,l=r.stopOnMouseEnter,a=r.stopOnLastSnap,s=r.delay,c=i?f:d,u=0;function f(){n.off("pointerDown",c),i||n.off("pointerUp",h),d(),u=0}function p(){d(),u=window.setTimeout(m,s)}function d(){u&&window.clearTimeout(u)}function h(){u&&(d(),p())}function m(){var e=n.internalEngine().index;if(a&&e.get()===e.max)return f();n.canScrollNext()?n.scrollNext():n.scrollTo(0),p()}var v={name:"Autoplay",options:r,init:function(e){var r=(n=e).internalEngine().eventStore,a=n.rootNode(),s=t&&t(a)||a;n.on("pointerDown",c),i||n.on("pointerUp",h),l&&(r.add(s,"mouseenter",c),i||r.add(s,"mouseleave",h)),r.add(document,"visibilitychange",(function(){if("hidden"===document.visibilityState)return d();h()})),r.add(window,"pagehide",(function(e){e.persisted&&d()})),o&&p()},destroy:f,play:p,stop:d,reset:h};return v}O.globalOptions=void 0;const A=O;var P=document.querySelector(".embla");if(P){var I=null==P?void 0:P.querySelector(".embla__viewport"),R=null==P?void 0:P.querySelector(".embla__button--prev"),F=null==P?void 0:P.querySelector(".embla__button--next"),M=document.querySelector(".embla__dots"),B=A({delay:1e4,stopOnInteraction:!1},(function(e){return e.parentElement})),j=N(I,{loop:!1,skipSnaps:!1,speed:2},[B]),V=function(e,t){var n=t.scrollSnapList(),r=document.createDocumentFragment(),o=n.map((function(){return document.createElement("button")}));return o.forEach((function(e){return r.appendChild(e)})),null==e||e.appendChild(r),o}(M,j),D=function(e,t){return function(){var n=t.previousScrollSnap(),r=t.selectedScrollSnap();t.slideNodes()[n].classList.remove("is-selected"),t.slideNodes()[r].classList.add("is-selected"),e[n].classList.remove("is-selected"),e[r].classList.add("is-selected")}}(V,j),$=function(e,t,n){return function(){n.canScrollPrev()?null==e||e.removeAttribute("disabled"):null==e||e.setAttribute("disabled","disabled"),n.canScrollNext()?null==t||t.removeAttribute("disabled"):null==t||t.setAttribute("disabled","disabled")}}(R,F,j);!function(e,t,n){null==e||e.addEventListener("click",(function(){n.reset(),t.scrollPrev(),t.slideNodes()[t.previousScrollSnap()].classList.remove("is-selected"),t.slideNodes()[t.selectedScrollSnap()].classList.add("is-selected")}),!1)}(R,j,B),function(e,t,n){null==e||e.addEventListener("click",(function(){n.reset(),t.scrollNext(),t.slideNodes()[t.previousScrollSnap()].classList.remove("is-selected"),t.slideNodes()[t.selectedScrollSnap()].classList.add("is-selected")}),!1)}(F,j,B),function(e,t){e.forEach((function(e,n){e.classList.add("embla__dot"),e.addEventListener("click",(function(){return t.scrollTo(n)}),!1)}))}(V,j);var U=function(e){var t="resize"===e,n=t?"remove":"add";I.classList[n]("embla--is-ready"),t&&j.reInit()};j.on("select",D),j.on("select",$),j.on("init",D),j.on("init",$),j.on("init",U),j.on("resize",U),j.on("reInit",U),j.internalEngine().translate.toggleActive(!1),j.internalEngine().translate.clear()}},563:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var r=n(645),o=n.n(r)()((function(e){return e[1]}));o.push([e.id,".carousel__slide{align-items:center;display:flex;flex-shrink:0;justify-content:center;margin:0;position:relative;scroll-snap-stop:auto}.carousel{margin-left:-.75rem;margin-right:-.75rem;position:relative}.carousel,.carousel *{box-sizing:border-box}.carousel__track{display:flex;margin:0;padding:0;position:relative}.carousel__viewport{overflow:hidden}:root{--vc-clr-primary:#57666a;--vc-clr-secondary:#bfc3c5;--vc-clr-white:#fff;--vc-icn-width:1em;--vc-nav-width:40px;--vc-nav-color:#fff;--vc-nav-background-color:var(--vc-clr-primary);--vc-pgn-width:8px;--vc-pgn-height:8px;--vc-pgn-margin:7px;--vc-pgn-border-radius:0;--vc-pgn-background-color:var(--vc-clr-secondary);--vc-pgn-active-color:var(--vc-clr-primary)}.carousel__next,.carousel__prev{align-items:center;background-color:#fff;border:0;border-radius:100%;color:#005a9a;cursor:pointer;display:none;font-size:calc(var(--vc-nav-width)*2/3);height:var(--vc-nav-width);justify-content:center;padding:0;position:absolute;text-align:center;width:var(--vc-nav-width)}.carousel__prev{right:54px;top:calc(100% - 35px)}.carousel__next{right:0;top:calc(100% - 35px)}.carousel__icon{fill:currentColor;height:var(--vc-icn-width);width:var(--vc-icn-width)}.carousel__pagination{display:flex;flex-wrap:wrap;justify-content:center;list-style:none;margin-left:0;margin-top:30px}@media (min-width:768px){.carousel__pagination{display:flex;justify-content:flex-start;list-style:none;margin-left:8px;margin-top:30px;max-width:300px}.carousel__next,.carousel__prev{display:flex}.carousel__prev{right:66px;top:calc(100% - 35px)}.carousel__next{right:12px;top:calc(100% - 35px)}}.carousel__pagination-button{background-color:var(--vc-pgn-background-color);border:0;border-radius:var(--vc-pgn-height);cursor:pointer;height:var(--vc-pgn-height);margin:var(--vc-pgn-margin);width:var(--vc-pgn-width)}.carousel__pagination-button--active{background-color:var(--vc-pgn-active-color)}",""]);const i=o},284:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var r=n(645),o=n.n(r)()((function(e){return e[1]}));o.push([e.id,".mega-height{height:calc(100vh - 93px)}.scrolled .mega-height{height:calc(100vh - 62px)}",""]);const i=o},236:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var r=n(645),o=n.n(r)()((function(e){return e[1]}));o.push([e.id,".carousel__slide{align-items:center;display:flex;flex-shrink:0;justify-content:center;margin:0;position:relative;scroll-snap-stop:auto}.carousel{position:relative}.carousel,.carousel *{box-sizing:border-box}.carousel__track{display:flex;margin:0;padding:0;position:relative}.carousel__viewport{overflow:hidden}:root{--vc-clr-primary:#57666a;--vc-clr-secondary:#bfc3c5;--vc-clr-white:#fff;--vc-icn-width:1em;--vc-nav-width:40px;--vc-nav-color:#fff;--vc-nav-background-color:var(--vc-clr-primary);--vc-pgn-width:8px;--vc-pgn-height:8px;--vc-pgn-margin:7px;--vc-pgn-border-radius:0;--vc-pgn-background-color:var(--vc-clr-secondary);--vc-pgn-active-color:var(--vc-clr-primary)}.carousel__next,.carousel__prev{align-items:center;background-color:#fff;border:0;border-radius:9px;color:#005a9a;cursor:pointer;display:none;font-size:calc(var(--vc-nav-width)*2/3);height:var(--vc-nav-width);justify-content:center;padding:0;position:absolute;text-align:center;width:var(--vc-nav-width)}.carousel__prev{right:54px;top:calc(100% - 35px)}.carousel__next{right:0;top:calc(100% - 35px)}.carousel__icon{fill:currentColor;height:var(--vc-icn-width);width:var(--vc-icn-width)}.carousel__pagination{display:flex;flex-wrap:wrap;justify-content:center;list-style:none;margin-left:0;margin-top:30px}@media (min-width:768px){.carousel__pagination{display:flex;justify-content:flex-start;list-style:none;margin-left:8px;margin-top:30px;max-width:300px}.carousel__next,.carousel__prev{display:flex}.carousel__prev{right:66px;top:calc(100% - 35px)}.carousel__next{right:12px;top:calc(100% - 35px)}}.carousel__pagination-button{background-color:var(--vc-pgn-background-color);border:0;border-radius:var(--vc-pgn-height);cursor:pointer;height:var(--vc-pgn-height);margin:var(--vc-pgn-margin);width:var(--vc-pgn-width)}.carousel__pagination-button--active{background-color:var(--vc-pgn-active-color)}",""]);const i=o},645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=e(t);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var o={};if(r)for(var i=0;i"']/g,Y=RegExp(J.source),Z=RegExp(K.source),X=/<%-([\s\S]+?)%>/g,Q=/<%([\s\S]+?)%>/g,ee=/<%=([\s\S]+?)%>/g,te=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ne=/^\w*$/,re=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,oe=/[\\^$.*+?()[\]{}|]/g,ie=RegExp(oe.source),le=/^\s+/,ae=/\s/,se=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,ce=/\{\n\/\* \[wrapped with (.+)\] \*/,ue=/,? & /,fe=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,pe=/[()=,{}\[\]\/\s]/,de=/\\(\\)?/g,he=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,me=/\w*$/,ve=/^[-+]0x[0-9a-f]+$/i,ge=/^0b[01]+$/i,ye=/^\[object .+?Constructor\]$/,_e=/^0o[0-7]+$/i,be=/^(?:0|[1-9]\d*)$/,we=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,xe=/($^)/,ke=/['\n\r\u2028\u2029\\]/g,Se="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Ee="\\u2700-\\u27bf",Ce="a-z\\xdf-\\xf6\\xf8-\\xff",Te="A-Z\\xc0-\\xd6\\xd8-\\xde",Ne="\\ufe0e\\ufe0f",Le="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Oe="['’]",Ae="[\\ud800-\\udfff]",Pe="["+Le+"]",Ie="["+Se+"]",Re="\\d+",Fe="[\\u2700-\\u27bf]",Me="["+Ce+"]",Be="[^\\ud800-\\udfff"+Le+Re+Ee+Ce+Te+"]",je="\\ud83c[\\udffb-\\udfff]",Ve="[^\\ud800-\\udfff]",De="(?:\\ud83c[\\udde6-\\uddff]){2}",$e="[\\ud800-\\udbff][\\udc00-\\udfff]",Ue="["+Te+"]",We="(?:"+Me+"|"+Be+")",He="(?:"+Ue+"|"+Be+")",ze="(?:['’](?:d|ll|m|re|s|t|ve))?",Ge="(?:['’](?:D|LL|M|RE|S|T|VE))?",qe="(?:"+Ie+"|"+je+")"+"?",Je="[\\ufe0e\\ufe0f]?",Ke=Je+qe+("(?:\\u200d(?:"+[Ve,De,$e].join("|")+")"+Je+qe+")*"),Ye="(?:"+[Fe,De,$e].join("|")+")"+Ke,Ze="(?:"+[Ve+Ie+"?",Ie,De,$e,Ae].join("|")+")",Xe=RegExp(Oe,"g"),Qe=RegExp(Ie,"g"),et=RegExp(je+"(?="+je+")|"+Ze+Ke,"g"),tt=RegExp([Ue+"?"+Me+"+"+ze+"(?="+[Pe,Ue,"$"].join("|")+")",He+"+"+Ge+"(?="+[Pe,Ue+We,"$"].join("|")+")",Ue+"?"+We+"+"+ze,Ue+"+"+Ge,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Re,Ye].join("|"),"g"),nt=RegExp("[\\u200d\\ud800-\\udfff"+Se+Ne+"]"),rt=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,ot=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],it=-1,lt={};lt[M]=lt[B]=lt[j]=lt[V]=lt[D]=lt[$]=lt[U]=lt[W]=lt[H]=!0,lt[y]=lt[_]=lt[R]=lt[b]=lt[F]=lt[w]=lt[x]=lt[k]=lt[E]=lt[C]=lt[T]=lt[L]=lt[O]=lt[A]=lt[I]=!1;var at={};at[y]=at[_]=at[R]=at[F]=at[b]=at[w]=at[M]=at[B]=at[j]=at[V]=at[D]=at[E]=at[C]=at[T]=at[L]=at[O]=at[A]=at[P]=at[$]=at[U]=at[W]=at[H]=!0,at[x]=at[k]=at[I]=!1;var st={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},ct=parseFloat,ut=parseInt,ft="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,pt="object"==typeof self&&self&&self.Object===Object&&self,dt=ft||pt||Function("return this")(),ht=t&&!t.nodeType&&t,mt=ht&&e&&!e.nodeType&&e,vt=mt&&mt.exports===ht,gt=vt&&ft.process,yt=function(){try{var e=mt&&mt.require&&mt.require("util").types;return e||gt&>.binding&>.binding("util")}catch(e){}}(),_t=yt&&yt.isArrayBuffer,bt=yt&&yt.isDate,wt=yt&&yt.isMap,xt=yt&&yt.isRegExp,kt=yt&&yt.isSet,St=yt&&yt.isTypedArray;function Et(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function Ct(e,t,n,r){for(var o=-1,i=null==e?0:e.length;++o-1}function Pt(e,t,n){for(var r=-1,o=null==e?0:e.length;++r-1;);return n}function tn(e,t){for(var n=e.length;n--&&$t(t,e[n],0)>-1;);return n}function nn(e,t){for(var n=e.length,r=0;n--;)e[n]===t&&++r;return r}var rn=Gt({À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"}),on=Gt({"&":"&","<":"<",">":">",'"':""","'":"'"});function ln(e){return"\\"+st[e]}function an(e){return nt.test(e)}function sn(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function cn(e,t){return function(n){return e(t(n))}}function un(e,t){for(var n=-1,r=e.length,o=0,i=[];++n",""":'"',"'":"'"});var gn=function e(t){var n,r=(t=null==t?dt:gn.defaults(dt.Object(),t,gn.pick(dt,ot))).Array,ae=t.Date,Se=t.Error,Ee=t.Function,Ce=t.Math,Te=t.Object,Ne=t.RegExp,Le=t.String,Oe=t.TypeError,Ae=r.prototype,Pe=Ee.prototype,Ie=Te.prototype,Re=t["__core-js_shared__"],Fe=Pe.toString,Me=Ie.hasOwnProperty,Be=0,je=(n=/[^.]+$/.exec(Re&&Re.keys&&Re.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",Ve=Ie.toString,De=Fe.call(Te),$e=dt._,Ue=Ne("^"+Fe.call(Me).replace(oe,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),We=vt?t.Buffer:o,He=t.Symbol,ze=t.Uint8Array,Ge=We?We.allocUnsafe:o,qe=cn(Te.getPrototypeOf,Te),Je=Te.create,Ke=Ie.propertyIsEnumerable,Ye=Ae.splice,Ze=He?He.isConcatSpreadable:o,et=He?He.iterator:o,nt=He?He.toStringTag:o,st=function(){try{var e=hi(Te,"defineProperty");return e({},"",{}),e}catch(e){}}(),ft=t.clearTimeout!==dt.clearTimeout&&t.clearTimeout,pt=ae&&ae.now!==dt.Date.now&&ae.now,ht=t.setTimeout!==dt.setTimeout&&t.setTimeout,mt=Ce.ceil,gt=Ce.floor,yt=Te.getOwnPropertySymbols,jt=We?We.isBuffer:o,Gt=t.isFinite,yn=Ae.join,_n=cn(Te.keys,Te),bn=Ce.max,wn=Ce.min,xn=ae.now,kn=t.parseInt,Sn=Ce.random,En=Ae.reverse,Cn=hi(t,"DataView"),Tn=hi(t,"Map"),Nn=hi(t,"Promise"),Ln=hi(t,"Set"),On=hi(t,"WeakMap"),An=hi(Te,"create"),Pn=On&&new On,In={},Rn=$i(Cn),Fn=$i(Tn),Mn=$i(Nn),Bn=$i(Ln),jn=$i(On),Vn=He?He.prototype:o,Dn=Vn?Vn.valueOf:o,$n=Vn?Vn.toString:o;function Un(e){if(oa(e)&&!ql(e)&&!(e instanceof Gn)){if(e instanceof zn)return e;if(Me.call(e,"__wrapped__"))return Ui(e)}return new zn(e)}var Wn=function(){function e(){}return function(t){if(!ra(t))return{};if(Je)return Je(t);e.prototype=t;var n=new e;return e.prototype=o,n}}();function Hn(){}function zn(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=o}function Gn(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=v,this.__views__=[]}function qn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function ur(e,t,n,r,i,l){var a,s=1&t,c=2&t,u=4&t;if(n&&(a=i?n(e,r,i,l):n(e)),a!==o)return a;if(!ra(e))return e;var f=ql(e);if(f){if(a=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&Me.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!s)return Po(e,a)}else{var p=gi(e),d=p==k||p==S;if(Zl(e))return Co(e,s);if(p==T||p==y||d&&!i){if(a=c||d?{}:_i(e),!s)return c?function(e,t){return Io(e,vi(e),t)}(e,function(e,t){return e&&Io(t,Fa(t),e)}(a,e)):function(e,t){return Io(e,mi(e),t)}(e,lr(a,e))}else{if(!at[p])return i?e:{};a=function(e,t,n){var r=e.constructor;switch(t){case R:return To(e);case b:case w:return new r(+e);case F:return function(e,t){var n=t?To(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case M:case B:case j:case V:case D:case $:case U:case W:case H:return No(e,n);case E:return new r;case C:case A:return new r(e);case L:return function(e){var t=new e.constructor(e.source,me.exec(e));return t.lastIndex=e.lastIndex,t}(e);case O:return new r;case P:return o=e,Dn?Te(Dn.call(o)):{}}var o}(e,p,s)}}l||(l=new Zn);var h=l.get(e);if(h)return h;l.set(e,a),ca(e)?e.forEach((function(r){a.add(ur(r,t,n,r,e,l))})):ia(e)&&e.forEach((function(r,o){a.set(o,ur(r,t,n,o,e,l))}));var m=f?o:(u?c?ai:li:c?Fa:Ra)(e);return Tt(m||e,(function(r,o){m&&(r=e[o=r]),rr(a,o,ur(r,t,n,o,e,l))})),a}function fr(e,t,n){var r=n.length;if(null==e)return!r;for(e=Te(e);r--;){var i=n[r],l=t[i],a=e[i];if(a===o&&!(i in e)||!l(a))return!1}return!0}function pr(e,t,n){if("function"!=typeof e)throw new Oe(i);return Ri((function(){e.apply(o,n)}),t)}function dr(e,t,n,r){var o=-1,i=At,l=!0,a=e.length,s=[],c=t.length;if(!a)return s;n&&(t=It(t,Zt(n))),r?(i=Pt,l=!1):t.length>=200&&(i=Qt,l=!1,t=new Yn(t));e:for(;++o-1},Jn.prototype.set=function(e,t){var n=this.__data__,r=or(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Kn.prototype.clear=function(){this.size=0,this.__data__={hash:new qn,map:new(Tn||Jn),string:new qn}},Kn.prototype.delete=function(e){var t=pi(this,e).delete(e);return this.size-=t?1:0,t},Kn.prototype.get=function(e){return pi(this,e).get(e)},Kn.prototype.has=function(e){return pi(this,e).has(e)},Kn.prototype.set=function(e,t){var n=pi(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Yn.prototype.add=Yn.prototype.push=function(e){return this.__data__.set(e,l),this},Yn.prototype.has=function(e){return this.__data__.has(e)},Zn.prototype.clear=function(){this.__data__=new Jn,this.size=0},Zn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Zn.prototype.get=function(e){return this.__data__.get(e)},Zn.prototype.has=function(e){return this.__data__.has(e)},Zn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Jn){var r=n.__data__;if(!Tn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Kn(r)}return n.set(e,t),this.size=n.size,this};var hr=Mo(xr),mr=Mo(kr,!0);function vr(e,t){var n=!0;return hr(e,(function(e,r,o){return n=!!t(e,r,o)})),n}function gr(e,t,n){for(var r=-1,i=e.length;++r0&&n(a)?t>1?_r(a,t-1,n,r,o):Rt(o,a):r||(o[o.length]=a)}return o}var br=Bo(),wr=Bo(!0);function xr(e,t){return e&&br(e,t,Ra)}function kr(e,t){return e&&wr(e,t,Ra)}function Sr(e,t){return Ot(t,(function(t){return ea(e[t])}))}function Er(e,t){for(var n=0,r=(t=xo(t,e)).length;null!=e&&nt}function Lr(e,t){return null!=e&&Me.call(e,t)}function Or(e,t){return null!=e&&t in Te(e)}function Ar(e,t,n){for(var i=n?Pt:At,l=e[0].length,a=e.length,s=a,c=r(a),u=1/0,f=[];s--;){var p=e[s];s&&t&&(p=It(p,Zt(t))),u=wn(p.length,u),c[s]=!n&&(t||l>=120&&p.length>=120)?new Yn(s&&p):o}p=e[0];var d=-1,h=c[0];e:for(;++d=a?s:s*("desc"==n[r]?-1:1)}return e.index-t.index}(e,t,n)}))}function qr(e,t,n){for(var r=-1,o=t.length,i={};++r-1;)a!==e&&Ye.call(a,s,1),Ye.call(e,s,1);return e}function Kr(e,t){for(var n=e?t.length:0,r=n-1;n--;){var o=t[n];if(n==r||o!==i){var i=o;wi(o)?Ye.call(e,o,1):ho(e,o)}}return e}function Yr(e,t){return e+gt(Sn()*(t-e+1))}function Zr(e,t){var n="";if(!e||t<1||t>h)return n;do{t%2&&(n+=e),(t=gt(t/2))&&(e+=e)}while(t);return n}function Xr(e,t){return Fi(Li(e,t,ls),e+"")}function Qr(e){return Qn(Wa(e))}function eo(e,t){var n=Wa(e);return ji(n,cr(t,0,n.length))}function to(e,t,n,r){if(!ra(e))return e;for(var i=-1,l=(t=xo(t,e)).length,a=l-1,s=e;null!=s&&++ii?0:i+t),(n=n>i?i:n)<0&&(n+=i),i=t>n?0:n-t>>>0,t>>>=0;for(var l=r(i);++o>>1,l=e[i];null!==l&&!fa(l)&&(n?l<=t:l=200){var c=t?null:Xo(e);if(c)return fn(c);l=!1,o=Qt,s=new Yn}else s=t?[]:a;e:for(;++r=r?e:io(e,t,n)}var Eo=ft||function(e){return dt.clearTimeout(e)};function Co(e,t){if(t)return e.slice();var n=e.length,r=Ge?Ge(n):new e.constructor(n);return e.copy(r),r}function To(e){var t=new e.constructor(e.byteLength);return new ze(t).set(new ze(e)),t}function No(e,t){var n=t?To(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function Lo(e,t){if(e!==t){var n=e!==o,r=null===e,i=e==e,l=fa(e),a=t!==o,s=null===t,c=t==t,u=fa(t);if(!s&&!u&&!l&&e>t||l&&a&&c&&!s&&!u||r&&a&&c||!n&&c||!i)return 1;if(!r&&!l&&!u&&e1?n[i-1]:o,a=i>2?n[2]:o;for(l=e.length>3&&"function"==typeof l?(i--,l):o,a&&xi(n[0],n[1],a)&&(l=i<3?o:l,i=1),t=Te(t);++r-1?i[l?t[a]:a]:o}}function Uo(e){return ii((function(t){var n=t.length,r=n,l=zn.prototype.thru;for(e&&t.reverse();r--;){var a=t[r];if("function"!=typeof a)throw new Oe(i);if(l&&!s&&"wrapper"==ci(a))var s=new zn([],!0)}for(r=s?r:n;++r1&&_.reverse(),d&&us))return!1;var u=l.get(e),f=l.get(t);if(u&&f)return u==t&&f==e;var p=-1,d=!0,h=2&n?new Yn:o;for(l.set(e,t),l.set(t,e);++p-1&&e%1==0&&e1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(se,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return Tt(g,(function(n){var r="_."+n[0];t&n[1]&&!At(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(ce);return t?t[1].split(ue):[]}(r),n)))}function Bi(e){var t=0,n=0;return function(){var r=xn(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(o,arguments)}}function ji(e,t){var n=-1,r=e.length,i=r-1;for(t=t===o?r:t;++n1?e[t-1]:o;return n="function"==typeof n?(e.pop(),n):o,sl(e,n)}));function ml(e){var t=Un(e);return t.__chain__=!0,t}function vl(e,t){return t(e)}var gl=ii((function(e){var t=e.length,n=t?e[0]:0,r=this.__wrapped__,i=function(t){return sr(t,e)};return!(t>1||this.__actions__.length)&&r instanceof Gn&&wi(n)?((r=r.slice(n,+n+(t?1:0))).__actions__.push({func:vl,args:[i],thisArg:o}),new zn(r,this.__chain__).thru((function(e){return t&&!e.length&&e.push(o),e}))):this.thru(i)}));var yl=Ro((function(e,t,n){Me.call(e,n)?++e[n]:ar(e,n,1)}));var _l=$o(Gi),bl=$o(qi);function wl(e,t){return(ql(e)?Tt:hr)(e,fi(t,3))}function xl(e,t){return(ql(e)?Nt:mr)(e,fi(t,3))}var kl=Ro((function(e,t,n){Me.call(e,n)?e[n].push(t):ar(e,n,[t])}));var Sl=Xr((function(e,t,n){var o=-1,i="function"==typeof t,l=Kl(e)?r(e.length):[];return hr(e,(function(e){l[++o]=i?Et(t,e,n):Pr(e,t,n)})),l})),El=Ro((function(e,t,n){ar(e,n,t)}));function Cl(e,t){return(ql(e)?It:$r)(e,fi(t,3))}var Tl=Ro((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var Nl=Xr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&xi(e,t[0],t[1])?t=[]:n>2&&xi(t[0],t[1],t[2])&&(t=[t[0]]),Gr(e,_r(t,1),[])})),Ll=pt||function(){return dt.Date.now()};function Ol(e,t,n){return t=n?o:t,t=e&&null==t?e.length:t,ei(e,f,o,o,o,o,t)}function Al(e,t){var n;if("function"!=typeof t)throw new Oe(i);return e=ga(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=o),n}}var Pl=Xr((function(e,t,n){var r=1;if(n.length){var o=un(n,ui(Pl));r|=c}return ei(e,r,t,n,o)})),Il=Xr((function(e,t,n){var r=3;if(n.length){var o=un(n,ui(Il));r|=c}return ei(t,r,e,n,o)}));function Rl(e,t,n){var r,l,a,s,c,u,f=0,p=!1,d=!1,h=!0;if("function"!=typeof e)throw new Oe(i);function m(t){var n=r,i=l;return r=l=o,f=t,s=e.apply(i,n)}function v(e){return f=e,c=Ri(y,t),p?m(e):s}function g(e){var n=e-u;return u===o||n>=t||n<0||d&&e-f>=a}function y(){var e=Ll();if(g(e))return _(e);c=Ri(y,function(e){var n=t-(e-u);return d?wn(n,a-(e-f)):n}(e))}function _(e){return c=o,h&&r?m(e):(r=l=o,s)}function b(){var e=Ll(),n=g(e);if(r=arguments,l=this,u=e,n){if(c===o)return v(u);if(d)return Eo(c),c=Ri(y,t),m(u)}return c===o&&(c=Ri(y,t)),s}return t=_a(t)||0,ra(n)&&(p=!!n.leading,a=(d="maxWait"in n)?bn(_a(n.maxWait)||0,t):a,h="trailing"in n?!!n.trailing:h),b.cancel=function(){c!==o&&Eo(c),f=0,r=u=l=c=o},b.flush=function(){return c===o?s:_(Ll())},b}var Fl=Xr((function(e,t){return pr(e,1,t)})),Ml=Xr((function(e,t,n){return pr(e,_a(t)||0,n)}));function Bl(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new Oe(i);var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var l=e.apply(this,r);return n.cache=i.set(o,l)||i,l};return n.cache=new(Bl.Cache||Kn),n}function jl(e){if("function"!=typeof e)throw new Oe(i);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Bl.Cache=Kn;var Vl=ko((function(e,t){var n=(t=1==t.length&&ql(t[0])?It(t[0],Zt(fi())):It(_r(t,1),Zt(fi()))).length;return Xr((function(r){for(var o=-1,i=wn(r.length,n);++o=t})),Gl=Ir(function(){return arguments}())?Ir:function(e){return oa(e)&&Me.call(e,"callee")&&!Ke.call(e,"callee")},ql=r.isArray,Jl=_t?Zt(_t):function(e){return oa(e)&&Tr(e)==R};function Kl(e){return null!=e&&na(e.length)&&!ea(e)}function Yl(e){return oa(e)&&Kl(e)}var Zl=jt||_s,Xl=bt?Zt(bt):function(e){return oa(e)&&Tr(e)==w};function Ql(e){if(!oa(e))return!1;var t=Tr(e);return t==x||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!aa(e)}function ea(e){if(!ra(e))return!1;var t=Tr(e);return t==k||t==S||"[object AsyncFunction]"==t||"[object Proxy]"==t}function ta(e){return"number"==typeof e&&e==ga(e)}function na(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=h}function ra(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function oa(e){return null!=e&&"object"==typeof e}var ia=wt?Zt(wt):function(e){return oa(e)&&gi(e)==E};function la(e){return"number"==typeof e||oa(e)&&Tr(e)==C}function aa(e){if(!oa(e)||Tr(e)!=T)return!1;var t=qe(e);if(null===t)return!0;var n=Me.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&Fe.call(n)==De}var sa=xt?Zt(xt):function(e){return oa(e)&&Tr(e)==L};var ca=kt?Zt(kt):function(e){return oa(e)&&gi(e)==O};function ua(e){return"string"==typeof e||!ql(e)&&oa(e)&&Tr(e)==A}function fa(e){return"symbol"==typeof e||oa(e)&&Tr(e)==P}var pa=St?Zt(St):function(e){return oa(e)&&na(e.length)&&!!lt[Tr(e)]};var da=Ko(Dr),ha=Ko((function(e,t){return e<=t}));function ma(e){if(!e)return[];if(Kl(e))return ua(e)?hn(e):Po(e);if(et&&e[et])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[et]());var t=gi(e);return(t==E?sn:t==O?fn:Wa)(e)}function va(e){return e?(e=_a(e))===d||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function ga(e){var t=va(e),n=t%1;return t==t?n?t-n:t:0}function ya(e){return e?cr(ga(e),0,v):0}function _a(e){if("number"==typeof e)return e;if(fa(e))return m;if(ra(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=ra(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Yt(e);var n=ge.test(e);return n||_e.test(e)?ut(e.slice(2),n?2:8):ve.test(e)?m:+e}function ba(e){return Io(e,Fa(e))}function wa(e){return null==e?"":fo(e)}var xa=Fo((function(e,t){if(Ci(t)||Kl(t))Io(t,Ra(t),e);else for(var n in t)Me.call(t,n)&&rr(e,n,t[n])})),ka=Fo((function(e,t){Io(t,Fa(t),e)})),Sa=Fo((function(e,t,n,r){Io(t,Fa(t),e,r)})),Ea=Fo((function(e,t,n,r){Io(t,Ra(t),e,r)})),Ca=ii(sr);var Ta=Xr((function(e,t){e=Te(e);var n=-1,r=t.length,i=r>2?t[2]:o;for(i&&xi(t[0],t[1],i)&&(r=1);++n1),t})),Io(e,ai(e),n),r&&(n=ur(n,7,ri));for(var o=t.length;o--;)ho(n,t[o]);return n}));var Va=ii((function(e,t){return null==e?{}:function(e,t){return qr(e,t,(function(t,n){return Oa(e,n)}))}(e,t)}));function Da(e,t){if(null==e)return{};var n=It(ai(e),(function(e){return[e]}));return t=fi(t),qr(e,n,(function(e,n){return t(e,n[0])}))}var $a=Qo(Ra),Ua=Qo(Fa);function Wa(e){return null==e?[]:Xt(e,Ra(e))}var Ha=Vo((function(e,t,n){return t=t.toLowerCase(),e+(n?za(t):t)}));function za(e){return Qa(wa(e).toLowerCase())}function Ga(e){return(e=wa(e))&&e.replace(we,rn).replace(Qe,"")}var qa=Vo((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Ja=Vo((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),Ka=jo("toLowerCase");var Ya=Vo((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var Za=Vo((function(e,t,n){return e+(n?" ":"")+Qa(t)}));var Xa=Vo((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Qa=jo("toUpperCase");function es(e,t,n){return e=wa(e),(t=n?o:t)===o?function(e){return rt.test(e)}(e)?function(e){return e.match(tt)||[]}(e):function(e){return e.match(fe)||[]}(e):e.match(t)||[]}var ts=Xr((function(e,t){try{return Et(e,o,t)}catch(e){return Ql(e)?e:new Se(e)}})),ns=ii((function(e,t){return Tt(t,(function(t){t=Di(t),ar(e,t,Pl(e[t],e))})),e}));function rs(e){return function(){return e}}var os=Uo(),is=Uo(!0);function ls(e){return e}function as(e){return Br("function"==typeof e?e:ur(e,1))}var ss=Xr((function(e,t){return function(n){return Pr(n,e,t)}})),cs=Xr((function(e,t){return function(n){return Pr(e,n,t)}}));function us(e,t,n){var r=Ra(t),o=Sr(t,r);null!=n||ra(t)&&(o.length||!r.length)||(n=t,t=e,e=this,o=Sr(t,Ra(t)));var i=!(ra(n)&&"chain"in n&&!n.chain),l=ea(e);return Tt(o,(function(n){var r=t[n];e[n]=r,l&&(e.prototype[n]=function(){var t=this.__chain__;if(i||t){var n=e(this.__wrapped__),o=n.__actions__=Po(this.__actions__);return o.push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,Rt([this.value()],arguments))})})),e}function fs(){}var ps=Go(It),ds=Go(Lt),hs=Go(Bt);function ms(e){return ki(e)?zt(Di(e)):function(e){return function(t){return Er(t,e)}}(e)}var vs=Jo(),gs=Jo(!0);function ys(){return[]}function _s(){return!1}var bs=zo((function(e,t){return e+t}),0),ws=Zo("ceil"),xs=zo((function(e,t){return e/t}),1),ks=Zo("floor");var Ss,Es=zo((function(e,t){return e*t}),1),Cs=Zo("round"),Ts=zo((function(e,t){return e-t}),0);return Un.after=function(e,t){if("function"!=typeof t)throw new Oe(i);return e=ga(e),function(){if(--e<1)return t.apply(this,arguments)}},Un.ary=Ol,Un.assign=xa,Un.assignIn=ka,Un.assignInWith=Sa,Un.assignWith=Ea,Un.at=Ca,Un.before=Al,Un.bind=Pl,Un.bindAll=ns,Un.bindKey=Il,Un.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return ql(e)?e:[e]},Un.chain=ml,Un.chunk=function(e,t,n){t=(n?xi(e,t,n):t===o)?1:bn(ga(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var l=0,a=0,s=r(mt(i/t));li?0:i+n),(r=r===o||r>i?i:ga(r))<0&&(r+=i),r=n>r?0:ya(r);n>>0)?(e=wa(e))&&("string"==typeof t||null!=t&&!sa(t))&&!(t=fo(t))&&an(e)?So(hn(e),0,n):e.split(t,n):[]},Un.spread=function(e,t){if("function"!=typeof e)throw new Oe(i);return t=null==t?0:bn(ga(t),0),Xr((function(n){var r=n[t],o=So(n,0,t);return r&&Rt(o,r),Et(e,this,o)}))},Un.tail=function(e){var t=null==e?0:e.length;return t?io(e,1,t):[]},Un.take=function(e,t,n){return e&&e.length?io(e,0,(t=n||t===o?1:ga(t))<0?0:t):[]},Un.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?io(e,(t=r-(t=n||t===o?1:ga(t)))<0?0:t,r):[]},Un.takeRightWhile=function(e,t){return e&&e.length?vo(e,fi(t,3),!1,!0):[]},Un.takeWhile=function(e,t){return e&&e.length?vo(e,fi(t,3)):[]},Un.tap=function(e,t){return t(e),e},Un.throttle=function(e,t,n){var r=!0,o=!0;if("function"!=typeof e)throw new Oe(i);return ra(n)&&(r="leading"in n?!!n.leading:r,o="trailing"in n?!!n.trailing:o),Rl(e,t,{leading:r,maxWait:t,trailing:o})},Un.thru=vl,Un.toArray=ma,Un.toPairs=$a,Un.toPairsIn=Ua,Un.toPath=function(e){return ql(e)?It(e,Di):fa(e)?[e]:Po(Vi(wa(e)))},Un.toPlainObject=ba,Un.transform=function(e,t,n){var r=ql(e),o=r||Zl(e)||pa(e);if(t=fi(t,4),null==n){var i=e&&e.constructor;n=o?r?new i:[]:ra(e)&&ea(i)?Wn(qe(e)):{}}return(o?Tt:xr)(e,(function(e,r,o){return t(n,e,r,o)})),n},Un.unary=function(e){return Ol(e,1)},Un.union=ol,Un.unionBy=il,Un.unionWith=ll,Un.uniq=function(e){return e&&e.length?po(e):[]},Un.uniqBy=function(e,t){return e&&e.length?po(e,fi(t,2)):[]},Un.uniqWith=function(e,t){return t="function"==typeof t?t:o,e&&e.length?po(e,o,t):[]},Un.unset=function(e,t){return null==e||ho(e,t)},Un.unzip=al,Un.unzipWith=sl,Un.update=function(e,t,n){return null==e?e:mo(e,t,wo(n))},Un.updateWith=function(e,t,n,r){return r="function"==typeof r?r:o,null==e?e:mo(e,t,wo(n),r)},Un.values=Wa,Un.valuesIn=function(e){return null==e?[]:Xt(e,Fa(e))},Un.without=cl,Un.words=es,Un.wrap=function(e,t){return Dl(wo(t),e)},Un.xor=ul,Un.xorBy=fl,Un.xorWith=pl,Un.zip=dl,Un.zipObject=function(e,t){return _o(e||[],t||[],rr)},Un.zipObjectDeep=function(e,t){return _o(e||[],t||[],to)},Un.zipWith=hl,Un.entries=$a,Un.entriesIn=Ua,Un.extend=ka,Un.extendWith=Sa,us(Un,Un),Un.add=bs,Un.attempt=ts,Un.camelCase=Ha,Un.capitalize=za,Un.ceil=ws,Un.clamp=function(e,t,n){return n===o&&(n=t,t=o),n!==o&&(n=(n=_a(n))==n?n:0),t!==o&&(t=(t=_a(t))==t?t:0),cr(_a(e),t,n)},Un.clone=function(e){return ur(e,4)},Un.cloneDeep=function(e){return ur(e,5)},Un.cloneDeepWith=function(e,t){return ur(e,5,t="function"==typeof t?t:o)},Un.cloneWith=function(e,t){return ur(e,4,t="function"==typeof t?t:o)},Un.conformsTo=function(e,t){return null==t||fr(e,t,Ra(t))},Un.deburr=Ga,Un.defaultTo=function(e,t){return null==e||e!=e?t:e},Un.divide=xs,Un.endsWith=function(e,t,n){e=wa(e),t=fo(t);var r=e.length,i=n=n===o?r:cr(ga(n),0,r);return(n-=t.length)>=0&&e.slice(n,i)==t},Un.eq=Wl,Un.escape=function(e){return(e=wa(e))&&Z.test(e)?e.replace(K,on):e},Un.escapeRegExp=function(e){return(e=wa(e))&&ie.test(e)?e.replace(oe,"\\$&"):e},Un.every=function(e,t,n){var r=ql(e)?Lt:vr;return n&&xi(e,t,n)&&(t=o),r(e,fi(t,3))},Un.find=_l,Un.findIndex=Gi,Un.findKey=function(e,t){return Vt(e,fi(t,3),xr)},Un.findLast=bl,Un.findLastIndex=qi,Un.findLastKey=function(e,t){return Vt(e,fi(t,3),kr)},Un.floor=ks,Un.forEach=wl,Un.forEachRight=xl,Un.forIn=function(e,t){return null==e?e:br(e,fi(t,3),Fa)},Un.forInRight=function(e,t){return null==e?e:wr(e,fi(t,3),Fa)},Un.forOwn=function(e,t){return e&&xr(e,fi(t,3))},Un.forOwnRight=function(e,t){return e&&kr(e,fi(t,3))},Un.get=La,Un.gt=Hl,Un.gte=zl,Un.has=function(e,t){return null!=e&&yi(e,t,Lr)},Un.hasIn=Oa,Un.head=Ki,Un.identity=ls,Un.includes=function(e,t,n,r){e=Kl(e)?e:Wa(e),n=n&&!r?ga(n):0;var o=e.length;return n<0&&(n=bn(o+n,0)),ua(e)?n<=o&&e.indexOf(t,n)>-1:!!o&&$t(e,t,n)>-1},Un.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var o=null==n?0:ga(n);return o<0&&(o=bn(r+o,0)),$t(e,t,o)},Un.inRange=function(e,t,n){return t=va(t),n===o?(n=t,t=0):n=va(n),function(e,t,n){return e>=wn(t,n)&&e=-9007199254740991&&e<=h},Un.isSet=ca,Un.isString=ua,Un.isSymbol=fa,Un.isTypedArray=pa,Un.isUndefined=function(e){return e===o},Un.isWeakMap=function(e){return oa(e)&&gi(e)==I},Un.isWeakSet=function(e){return oa(e)&&"[object WeakSet]"==Tr(e)},Un.join=function(e,t){return null==e?"":yn.call(e,t)},Un.kebabCase=qa,Un.last=Qi,Un.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=r;return n!==o&&(i=(i=ga(n))<0?bn(r+i,0):wn(i,r-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,i):Dt(e,Wt,i,!0)},Un.lowerCase=Ja,Un.lowerFirst=Ka,Un.lt=da,Un.lte=ha,Un.max=function(e){return e&&e.length?gr(e,ls,Nr):o},Un.maxBy=function(e,t){return e&&e.length?gr(e,fi(t,2),Nr):o},Un.mean=function(e){return Ht(e,ls)},Un.meanBy=function(e,t){return Ht(e,fi(t,2))},Un.min=function(e){return e&&e.length?gr(e,ls,Dr):o},Un.minBy=function(e,t){return e&&e.length?gr(e,fi(t,2),Dr):o},Un.stubArray=ys,Un.stubFalse=_s,Un.stubObject=function(){return{}},Un.stubString=function(){return""},Un.stubTrue=function(){return!0},Un.multiply=Es,Un.nth=function(e,t){return e&&e.length?zr(e,ga(t)):o},Un.noConflict=function(){return dt._===this&&(dt._=$e),this},Un.noop=fs,Un.now=Ll,Un.pad=function(e,t,n){e=wa(e);var r=(t=ga(t))?dn(e):0;if(!t||r>=t)return e;var o=(t-r)/2;return qo(gt(o),n)+e+qo(mt(o),n)},Un.padEnd=function(e,t,n){e=wa(e);var r=(t=ga(t))?dn(e):0;return t&&rt){var r=e;e=t,t=r}if(n||e%1||t%1){var i=Sn();return wn(e+i*(t-e+ct("1e-"+((i+"").length-1))),t)}return Yr(e,t)},Un.reduce=function(e,t,n){var r=ql(e)?Ft:qt,o=arguments.length<3;return r(e,fi(t,4),n,o,hr)},Un.reduceRight=function(e,t,n){var r=ql(e)?Mt:qt,o=arguments.length<3;return r(e,fi(t,4),n,o,mr)},Un.repeat=function(e,t,n){return t=(n?xi(e,t,n):t===o)?1:ga(t),Zr(wa(e),t)},Un.replace=function(){var e=arguments,t=wa(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Un.result=function(e,t,n){var r=-1,i=(t=xo(t,e)).length;for(i||(i=1,e=o);++rh)return[];var n=v,r=wn(e,v);t=fi(t),e-=v;for(var o=Kt(r,t);++n=l)return e;var s=n-dn(r);if(s<1)return r;var c=a?So(a,0,s).join(""):e.slice(0,s);if(i===o)return c+r;if(a&&(s+=c.length-s),sa(i)){if(e.slice(s).search(i)){var u,f=c;for(i.global||(i=Ne(i.source,wa(me.exec(i))+"g")),i.lastIndex=0;u=i.exec(f);)var p=u.index;c=c.slice(0,p===o?s:p)}}else if(e.indexOf(fo(i),s)!=s){var d=c.lastIndexOf(i);d>-1&&(c=c.slice(0,d))}return c+r},Un.unescape=function(e){return(e=wa(e))&&Y.test(e)?e.replace(J,vn):e},Un.uniqueId=function(e){var t=++Be;return wa(e)+t},Un.upperCase=Xa,Un.upperFirst=Qa,Un.each=wl,Un.eachRight=xl,Un.first=Ki,us(Un,(Ss={},xr(Un,(function(e,t){Me.call(Un.prototype,t)||(Ss[t]=e)})),Ss),{chain:!1}),Un.VERSION="4.17.21",Tt(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){Un[e].placeholder=Un})),Tt(["drop","take"],(function(e,t){Gn.prototype[e]=function(n){n=n===o?1:bn(ga(n),0);var r=this.__filtered__&&!t?new Gn(this):this.clone();return r.__filtered__?r.__takeCount__=wn(n,r.__takeCount__):r.__views__.push({size:wn(n,v),type:e+(r.__dir__<0?"Right":"")}),r},Gn.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),Tt(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;Gn.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:fi(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),Tt(["head","last"],(function(e,t){var n="take"+(t?"Right":"");Gn.prototype[e]=function(){return this[n](1).value()[0]}})),Tt(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");Gn.prototype[e]=function(){return this.__filtered__?new Gn(this):this[n](1)}})),Gn.prototype.compact=function(){return this.filter(ls)},Gn.prototype.find=function(e){return this.filter(e).head()},Gn.prototype.findLast=function(e){return this.reverse().find(e)},Gn.prototype.invokeMap=Xr((function(e,t){return"function"==typeof e?new Gn(this):this.map((function(n){return Pr(n,e,t)}))})),Gn.prototype.reject=function(e){return this.filter(jl(fi(e)))},Gn.prototype.slice=function(e,t){e=ga(e);var n=this;return n.__filtered__&&(e>0||t<0)?new Gn(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),t!==o&&(n=(t=ga(t))<0?n.dropRight(-t):n.take(t-e)),n)},Gn.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Gn.prototype.toArray=function(){return this.take(v)},xr(Gn.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),r=/^(?:head|last)$/.test(t),i=Un[r?"take"+("last"==t?"Right":""):t],l=r||/^find/.test(t);i&&(Un.prototype[t]=function(){var t=this.__wrapped__,a=r?[1]:arguments,s=t instanceof Gn,c=a[0],u=s||ql(t),f=function(e){var t=i.apply(Un,Rt([e],a));return r&&p?t[0]:t};u&&n&&"function"==typeof c&&1!=c.length&&(s=u=!1);var p=this.__chain__,d=!!this.__actions__.length,h=l&&!p,m=s&&!d;if(!l&&u){t=m?t:new Gn(this);var v=e.apply(t,a);return v.__actions__.push({func:vl,args:[f],thisArg:o}),new zn(v,p)}return h&&m?e.apply(this,a):(v=this.thru(f),h?r?v.value()[0]:v.value():v)})})),Tt(["pop","push","shift","sort","splice","unshift"],(function(e){var t=Ae[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);Un.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var o=this.value();return t.apply(ql(o)?o:[],e)}return this[n]((function(n){return t.apply(ql(n)?n:[],e)}))}})),xr(Gn.prototype,(function(e,t){var n=Un[t];if(n){var r=n.name+"";Me.call(In,r)||(In[r]=[]),In[r].push({name:t,func:n})}})),In[Wo(o,2).name]=[{name:"wrapper",func:o}],Gn.prototype.clone=function(){var e=new Gn(this.__wrapped__);return e.__actions__=Po(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Po(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Po(this.__views__),e},Gn.prototype.reverse=function(){if(this.__filtered__){var e=new Gn(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Gn.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=ql(e),r=t<0,o=n?e.length:0,i=function(e,t,n){var r=-1,o=n.length;for(;++r=this.__values__.length;return{done:e,value:e?o:this.__values__[this.__index__++]}},Un.prototype.plant=function(e){for(var t,n=this;n instanceof Hn;){var r=Ui(n);r.__index__=0,r.__values__=o,t?i.__wrapped__=r:t=r;var i=r;n=n.__wrapped__}return i.__wrapped__=e,t},Un.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Gn){var t=e;return this.__actions__.length&&(t=new Gn(this)),(t=t.reverse()).__actions__.push({func:vl,args:[rl],thisArg:o}),new zn(t,this.__chain__)}return this.thru(rl)},Un.prototype.toJSON=Un.prototype.valueOf=Un.prototype.value=function(){return go(this.__wrapped__,this.__actions__)},Un.prototype.first=Un.prototype.head,et&&(Un.prototype[et]=function(){return this}),Un}();dt._=gn,(r=function(){return gn}.call(t,n,t,e))===o||(e.exports=r)}.call(this)},423:()=>{},155:e=>{var t,n,r=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function l(e){if(t===setTimeout)return setTimeout(e,0);if((t===o||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(n){try{return t.call(null,e,0)}catch(n){return t.call(this,e,0)}}}!function(){try{t="function"==typeof setTimeout?setTimeout:o}catch(e){t=o}try{n="function"==typeof clearTimeout?clearTimeout:i}catch(e){n=i}}();var a,s=[],c=!1,u=-1;function f(){c&&a&&(c=!1,a.length?s=a.concat(s):u=-1,s.length&&p())}function p(){if(!c){var e=l(f);c=!0;for(var t=s.length;t;){for(a=s,s=[];++u1)for(var n=1;n{"use strict";var r,o=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},i=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),l=[];function a(e){for(var t=-1,n=0;n{"use strict";n.r(t),n.d(t,{BaseTransition:()=>sr,Comment:()=>Zo,EffectScope:()=>se,Fragment:()=>Ko,KeepAlive:()=>br,ReactiveEffect:()=>xe,Static:()=>Xo,Suspense:()=>Wn,Teleport:()=>qo,Text:()=>Yo,Transition:()=>Vl,TransitionGroup:()=>ra,VueElement:()=>Pl,callWithAsyncErrorHandling:()=>tn,callWithErrorHandling:()=>en,camelize:()=>Z,capitalize:()=>ee,cloneVNode:()=>_i,compatUtils:()=>hl,compile:()=>Tf,computed:()=>Ji,createApp:()=>Fa,createBlock:()=>si,createCommentVNode:()=>xi,createElementBlock:()=>ai,createElementVNode:()=>mi,createHydrationRenderer:()=>Vo,createPropsRestProxy:()=>rl,createRenderer:()=>jo,createSSRApp:()=>Ma,createSlots:()=>Yr,createStaticVNode:()=>wi,createTextVNode:()=>bi,createVNode:()=>vi,customRef:()=>qt,defineAsyncComponent:()=>gr,defineComponent:()=>mr,defineCustomElement:()=>Ll,defineEmits:()=>Yi,defineExpose:()=>Zi,defineProps:()=>Ki,defineSSRCustomElement:()=>Ol,devtools:()=>xn,effect:()=>Se,effectScope:()=>ce,getCurrentInstance:()=>Pi,getCurrentScope:()=>fe,getTransitionRawChildren:()=>hr,guardReactiveProps:()=>yi,h:()=>il,handleError:()=>nn,hydrate:()=>Ra,initCustomFormatter:()=>sl,initDirectivesForSSR:()=>Va,inject:()=>Yn,isMemoSame:()=>ul,isProxy:()=>Ot,isReactive:()=>Tt,isReadonly:()=>Nt,isRef:()=>Bt,isRuntimeOnly:()=>Ui,isShallow:()=>Lt,isVNode:()=>ci,markRaw:()=>Pt,mergeDefaults:()=>nl,mergeProps:()=>Ci,nextTick:()=>dn,normalizeClass:()=>f,normalizeProps:()=>p,normalizeStyle:()=>l,onActivated:()=>xr,onBeforeMount:()=>Or,onBeforeUnmount:()=>Rr,onBeforeUpdate:()=>Pr,onDeactivated:()=>kr,onErrorCaptured:()=>Vr,onMounted:()=>Ar,onRenderTracked:()=>jr,onRenderTriggered:()=>Br,onScopeDispose:()=>pe,onServerPrefetch:()=>Mr,onUnmounted:()=>Fr,onUpdated:()=>Ir,openBlock:()=>ti,popScopeId:()=>In,provide:()=>Kn,proxyRefs:()=>zt,pushScopeId:()=>Pn,queuePostFlushCb:()=>vn,reactive:()=>xt,readonly:()=>St,ref:()=>jt,registerRuntimeCompiler:()=>$i,render:()=>Ia,renderList:()=>Kr,renderSlot:()=>Zr,resolveComponent:()=>Wr,resolveDirective:()=>Gr,resolveDynamicComponent:()=>zr,resolveFilter:()=>dl,resolveTransitionHooks:()=>ur,setBlockTracking:()=>ii,setDevtoolsHook:()=>En,setTransitionHooks:()=>dr,shallowReactive:()=>kt,shallowReadonly:()=>Et,shallowRef:()=>Vt,ssrContextKey:()=>ll,ssrUtils:()=>pl,stop:()=>Ee,toDisplayString:()=>w,toHandlerKey:()=>te,toHandlers:()=>Qr,toRaw:()=>At,toRef:()=>Yt,toRefs:()=>Jt,transformVNodeArgs:()=>fi,triggerRef:()=>Ut,unref:()=>Wt,useAttrs:()=>el,useCssModule:()=>Il,useCssVars:()=>Rl,useSSRContext:()=>al,useSlots:()=>Qi,useTransitionState:()=>lr,vModelCheckbox:()=>fa,vModelDynamic:()=>ya,vModelRadio:()=>da,vModelSelect:()=>ha,vModelText:()=>ua,vShow:()=>Ca,version:()=>fl,warn:()=>Qt,watch:()=>tr,watchEffect:()=>Zn,watchPostEffect:()=>Xn,watchSyncEffect:()=>Qn,withAsyncContext:()=>ol,withCtx:()=>Fn,withDefaults:()=>Xi,withDirectives:()=>Dr,withKeys:()=>Ea,withMemo:()=>cl,withModifiers:()=>ka,withScopeId:()=>Rn});var r={};function o(e,t){const n=Object.create(null),r=e.split(",");for(let e=0;e!!n[e.toLowerCase()]:e=>!!n[e]}n.r(r),n.d(r,{BaseTransition:()=>sr,Comment:()=>Zo,EffectScope:()=>se,Fragment:()=>Ko,KeepAlive:()=>br,ReactiveEffect:()=>xe,Static:()=>Xo,Suspense:()=>Wn,Teleport:()=>qo,Text:()=>Yo,Transition:()=>Vl,TransitionGroup:()=>ra,VueElement:()=>Pl,callWithAsyncErrorHandling:()=>tn,callWithErrorHandling:()=>en,camelize:()=>Z,capitalize:()=>ee,cloneVNode:()=>_i,compatUtils:()=>hl,computed:()=>Ji,createApp:()=>Fa,createBlock:()=>si,createCommentVNode:()=>xi,createElementBlock:()=>ai,createElementVNode:()=>mi,createHydrationRenderer:()=>Vo,createPropsRestProxy:()=>rl,createRenderer:()=>jo,createSSRApp:()=>Ma,createSlots:()=>Yr,createStaticVNode:()=>wi,createTextVNode:()=>bi,createVNode:()=>vi,customRef:()=>qt,defineAsyncComponent:()=>gr,defineComponent:()=>mr,defineCustomElement:()=>Ll,defineEmits:()=>Yi,defineExpose:()=>Zi,defineProps:()=>Ki,defineSSRCustomElement:()=>Ol,devtools:()=>xn,effect:()=>Se,effectScope:()=>ce,getCurrentInstance:()=>Pi,getCurrentScope:()=>fe,getTransitionRawChildren:()=>hr,guardReactiveProps:()=>yi,h:()=>il,handleError:()=>nn,hydrate:()=>Ra,initCustomFormatter:()=>sl,initDirectivesForSSR:()=>Va,inject:()=>Yn,isMemoSame:()=>ul,isProxy:()=>Ot,isReactive:()=>Tt,isReadonly:()=>Nt,isRef:()=>Bt,isRuntimeOnly:()=>Ui,isShallow:()=>Lt,isVNode:()=>ci,markRaw:()=>Pt,mergeDefaults:()=>nl,mergeProps:()=>Ci,nextTick:()=>dn,normalizeClass:()=>f,normalizeProps:()=>p,normalizeStyle:()=>l,onActivated:()=>xr,onBeforeMount:()=>Or,onBeforeUnmount:()=>Rr,onBeforeUpdate:()=>Pr,onDeactivated:()=>kr,onErrorCaptured:()=>Vr,onMounted:()=>Ar,onRenderTracked:()=>jr,onRenderTriggered:()=>Br,onScopeDispose:()=>pe,onServerPrefetch:()=>Mr,onUnmounted:()=>Fr,onUpdated:()=>Ir,openBlock:()=>ti,popScopeId:()=>In,provide:()=>Kn,proxyRefs:()=>zt,pushScopeId:()=>Pn,queuePostFlushCb:()=>vn,reactive:()=>xt,readonly:()=>St,ref:()=>jt,registerRuntimeCompiler:()=>$i,render:()=>Ia,renderList:()=>Kr,renderSlot:()=>Zr,resolveComponent:()=>Wr,resolveDirective:()=>Gr,resolveDynamicComponent:()=>zr,resolveFilter:()=>dl,resolveTransitionHooks:()=>ur,setBlockTracking:()=>ii,setDevtoolsHook:()=>En,setTransitionHooks:()=>dr,shallowReactive:()=>kt,shallowReadonly:()=>Et,shallowRef:()=>Vt,ssrContextKey:()=>ll,ssrUtils:()=>pl,stop:()=>Ee,toDisplayString:()=>w,toHandlerKey:()=>te,toHandlers:()=>Qr,toRaw:()=>At,toRef:()=>Yt,toRefs:()=>Jt,transformVNodeArgs:()=>fi,triggerRef:()=>Ut,unref:()=>Wt,useAttrs:()=>el,useCssModule:()=>Il,useCssVars:()=>Rl,useSSRContext:()=>al,useSlots:()=>Qi,useTransitionState:()=>lr,vModelCheckbox:()=>fa,vModelDynamic:()=>ya,vModelRadio:()=>da,vModelSelect:()=>ha,vModelText:()=>ua,vShow:()=>Ca,version:()=>fl,warn:()=>Qt,watch:()=>tr,watchEffect:()=>Zn,watchPostEffect:()=>Xn,watchSyncEffect:()=>Qn,withAsyncContext:()=>ol,withCtx:()=>Fn,withDefaults:()=>Xi,withDirectives:()=>Dr,withKeys:()=>Ea,withMemo:()=>cl,withModifiers:()=>ka,withScopeId:()=>Rn});const i=o("Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt");function l(e){if(R(e)){const t={};for(let n=0;n{if(e){const n=e.split(s);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function f(e){let t="";if(V(e))t=e;else if(R(e))for(let n=0;n_(e,t)))}const w=e=>V(e)?e:null==e?"":R(e)||$(e)&&(e.toString===W||!j(e.toString))?JSON.stringify(e,x,2):String(e),x=(e,t)=>t&&t.__v_isRef?x(e,t.value):F(t)?{[`Map(${t.size})`]:[...t.entries()].reduce(((e,[t,n])=>(e[`${t} =>`]=n,e)),{})}:M(t)?{[`Set(${t.size})`]:[...t.values()]}:!$(t)||R(t)||z(t)?t:String(t),k={},S=[],E=()=>{},C=()=>!1,T=/^on[^a-z]/,N=e=>T.test(e),L=e=>e.startsWith("onUpdate:"),O=Object.assign,A=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},P=Object.prototype.hasOwnProperty,I=(e,t)=>P.call(e,t),R=Array.isArray,F=e=>"[object Map]"===H(e),M=e=>"[object Set]"===H(e),B=e=>"[object Date]"===H(e),j=e=>"function"==typeof e,V=e=>"string"==typeof e,D=e=>"symbol"==typeof e,$=e=>null!==e&&"object"==typeof e,U=e=>$(e)&&j(e.then)&&j(e.catch),W=Object.prototype.toString,H=e=>W.call(e),z=e=>"[object Object]"===H(e),G=e=>V(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,q=o(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),J=o("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),K=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Y=/-(\w)/g,Z=K((e=>e.replace(Y,((e,t)=>t?t.toUpperCase():"")))),X=/\B([A-Z])/g,Q=K((e=>e.replace(X,"-$1").toLowerCase())),ee=K((e=>e.charAt(0).toUpperCase()+e.slice(1))),te=K((e=>e?`on${ee(e)}`:"")),ne=(e,t)=>!Object.is(e,t),re=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},ie=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let le;let ae;class se{constructor(e=!1){this.detached=e,this.active=!0,this.effects=[],this.cleanups=[],this.parent=ae,!e&&ae&&(this.index=(ae.scopes||(ae.scopes=[])).push(this)-1)}run(e){if(this.active){const t=ae;try{return ae=this,e()}finally{ae=t}}else 0}on(){ae=this}off(){ae=this.parent}stop(e){if(this.active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},he=e=>(e.w&ye)>0,me=e=>(e.n&ye)>0,ve=new WeakMap;let ge=0,ye=1;let _e;const be=Symbol(""),we=Symbol("");class xe{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,ue(this,n)}run(){if(!this.active)return this.fn();let e=_e,t=Ce;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=_e,_e=this,Ce=!0,ye=1<<++ge,ge<=30?(({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let r=0;r{("length"===n||n>=e)&&a.push(t)}))}else switch(void 0!==n&&a.push(l.get(n)),t){case"add":R(e)?G(n)&&a.push(l.get("length")):(a.push(l.get(be)),F(e)&&a.push(l.get(we)));break;case"delete":R(e)||(a.push(l.get(be)),F(e)&&a.push(l.get(we)));break;case"set":F(e)&&a.push(l.get(be))}if(1===a.length)a[0]&&Ie(a[0]);else{const e=[];for(const t of a)t&&e.push(...t);Ie(de(e))}}function Ie(e,t){const n=R(e)?e:[...e];for(const e of n)e.computed&&Re(e,t);for(const e of n)e.computed||Re(e,t)}function Re(e,t){(e!==_e||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const Fe=o("__proto__,__v_isRef,__isVue"),Me=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(D)),Be=We(),je=We(!1,!0),Ve=We(!0),De=We(!0,!0),$e=Ue();function Ue(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=At(this);for(let e=0,t=this.length;e{e[t]=function(...e){Ne();const n=At(this)[t].apply(this,e);return Le(),n}})),e}function We(e=!1,t=!1){return function(n,r,o){if("__v_isReactive"===r)return!e;if("__v_isReadonly"===r)return e;if("__v_isShallow"===r)return t;if("__v_raw"===r&&o===(e?t?bt:_t:t?yt:gt).get(n))return n;const i=R(n);if(!e&&i&&I($e,r))return Reflect.get($e,r,o);const l=Reflect.get(n,r,o);return(D(r)?Me.has(r):Fe(r))?l:(e||Oe(n,0,r),t?l:Bt(l)?i&&G(r)?l:l.value:$(l)?e?St(l):xt(l):l)}}function He(e=!1){return function(t,n,r,o){let i=t[n];if(Nt(i)&&Bt(i)&&!Bt(r))return!1;if(!e&&(Lt(r)||Nt(r)||(i=At(i),r=At(r)),!R(t)&&Bt(i)&&!Bt(r)))return i.value=r,!0;const l=R(t)&&G(n)?Number(n)!0,deleteProperty:(e,t)=>!0},qe=O({},ze,{get:je,set:He(!0)}),Je=O({},Ge,{get:De}),Ke=e=>e,Ye=e=>Reflect.getPrototypeOf(e);function Ze(e,t,n=!1,r=!1){const o=At(e=e.__v_raw),i=At(t);n||(t!==i&&Oe(o,0,t),Oe(o,0,i));const{has:l}=Ye(o),a=r?Ke:n?Rt:It;return l.call(o,t)?a(e.get(t)):l.call(o,i)?a(e.get(i)):void(e!==o&&e.get(t))}function Xe(e,t=!1){const n=this.__v_raw,r=At(n),o=At(e);return t||(e!==o&&Oe(r,0,e),Oe(r,0,o)),e===o?n.has(e):n.has(e)||n.has(o)}function Qe(e,t=!1){return e=e.__v_raw,!t&&Oe(At(e),0,be),Reflect.get(e,"size",e)}function et(e){e=At(e);const t=At(this);return Ye(t).has.call(t,e)||(t.add(e),Pe(t,"add",e,e)),this}function tt(e,t){t=At(t);const n=At(this),{has:r,get:o}=Ye(n);let i=r.call(n,e);i||(e=At(e),i=r.call(n,e));const l=o.call(n,e);return n.set(e,t),i?ne(t,l)&&Pe(n,"set",e,t):Pe(n,"add",e,t),this}function nt(e){const t=At(this),{has:n,get:r}=Ye(t);let o=n.call(t,e);o||(e=At(e),o=n.call(t,e));r&&r.call(t,e);const i=t.delete(e);return o&&Pe(t,"delete",e,void 0),i}function rt(){const e=At(this),t=0!==e.size,n=e.clear();return t&&Pe(e,"clear",void 0,void 0),n}function ot(e,t){return function(n,r){const o=this,i=o.__v_raw,l=At(i),a=t?Ke:e?Rt:It;return!e&&Oe(l,0,be),i.forEach(((e,t)=>n.call(r,a(e),a(t),o)))}}function it(e,t,n){return function(...r){const o=this.__v_raw,i=At(o),l=F(i),a="entries"===e||e===Symbol.iterator&&l,s="keys"===e&&l,c=o[e](...r),u=n?Ke:t?Rt:It;return!t&&Oe(i,0,s?we:be),{next(){const{value:e,done:t}=c.next();return t?{value:e,done:t}:{value:a?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function lt(e){return function(...t){return"delete"!==e&&this}}function at(){const e={get(e){return Ze(this,e)},get size(){return Qe(this)},has:Xe,add:et,set:tt,delete:nt,clear:rt,forEach:ot(!1,!1)},t={get(e){return Ze(this,e,!1,!0)},get size(){return Qe(this)},has:Xe,add:et,set:tt,delete:nt,clear:rt,forEach:ot(!1,!0)},n={get(e){return Ze(this,e,!0)},get size(){return Qe(this,!0)},has(e){return Xe.call(this,e,!0)},add:lt("add"),set:lt("set"),delete:lt("delete"),clear:lt("clear"),forEach:ot(!0,!1)},r={get(e){return Ze(this,e,!0,!0)},get size(){return Qe(this,!0)},has(e){return Xe.call(this,e,!0)},add:lt("add"),set:lt("set"),delete:lt("delete"),clear:lt("clear"),forEach:ot(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((o=>{e[o]=it(o,!1,!1),n[o]=it(o,!0,!1),t[o]=it(o,!1,!0),r[o]=it(o,!0,!0)})),[e,n,t,r]}const[st,ct,ut,ft]=at();function pt(e,t){const n=t?e?ft:ut:e?ct:st;return(t,r,o)=>"__v_isReactive"===r?!e:"__v_isReadonly"===r?e:"__v_raw"===r?t:Reflect.get(I(n,r)&&r in t?n:t,r,o)}const dt={get:pt(!1,!1)},ht={get:pt(!1,!0)},mt={get:pt(!0,!1)},vt={get:pt(!0,!0)};const gt=new WeakMap,yt=new WeakMap,_t=new WeakMap,bt=new WeakMap;function wt(e){return e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}((e=>H(e).slice(8,-1))(e))}function xt(e){return Nt(e)?e:Ct(e,!1,ze,dt,gt)}function kt(e){return Ct(e,!1,qe,ht,yt)}function St(e){return Ct(e,!0,Ge,mt,_t)}function Et(e){return Ct(e,!0,Je,vt,bt)}function Ct(e,t,n,r,o){if(!$(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const i=o.get(e);if(i)return i;const l=wt(e);if(0===l)return e;const a=new Proxy(e,2===l?r:n);return o.set(e,a),a}function Tt(e){return Nt(e)?Tt(e.__v_raw):!(!e||!e.__v_isReactive)}function Nt(e){return!(!e||!e.__v_isReadonly)}function Lt(e){return!(!e||!e.__v_isShallow)}function Ot(e){return Tt(e)||Nt(e)}function At(e){const t=e&&e.__v_raw;return t?At(t):e}function Pt(e){return oe(e,"__v_skip",!0),e}const It=e=>$(e)?xt(e):e,Rt=e=>$(e)?St(e):e;function Ft(e){Ce&&_e&&Ae((e=At(e)).dep||(e.dep=de()))}function Mt(e,t){(e=At(e)).dep&&Ie(e.dep)}function Bt(e){return!(!e||!0!==e.__v_isRef)}function jt(e){return Dt(e,!1)}function Vt(e){return Dt(e,!0)}function Dt(e,t){return Bt(e)?e:new $t(e,t)}class $t{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:At(e),this._value=t?e:It(e)}get value(){return Ft(this),this._value}set value(e){const t=this.__v_isShallow||Lt(e)||Nt(e);e=t?e:At(e),ne(e,this._rawValue)&&(this._rawValue=e,this._value=t?e:It(e),Mt(this))}}function Ut(e){Mt(e)}function Wt(e){return Bt(e)?e.value:e}const Ht={get:(e,t,n)=>Wt(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const o=e[t];return Bt(o)&&!Bt(n)?(o.value=n,!0):Reflect.set(e,t,n,r)}};function zt(e){return Tt(e)?e:new Proxy(e,Ht)}class Gt{constructor(e){this.dep=void 0,this.__v_isRef=!0;const{get:t,set:n}=e((()=>Ft(this)),(()=>Mt(this)));this._get=t,this._set=n}get value(){return this._get()}set value(e){this._set(e)}}function qt(e){return new Gt(e)}function Jt(e){const t=R(e)?new Array(e.length):{};for(const n in e)t[n]=Yt(e,n);return t}class Kt{constructor(e,t,n){this._object=e,this._key=t,this._defaultValue=n,this.__v_isRef=!0}get value(){const e=this._object[this._key];return void 0===e?this._defaultValue:e}set value(e){this._object[this._key]=e}}function Yt(e,t,n){const r=e[t];return Bt(r)?r:new Kt(e,t,n)}var Zt;class Xt{constructor(e,t,n,r){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this[Zt]=!1,this._dirty=!0,this.effect=new xe(e,(()=>{this._dirty||(this._dirty=!0,Mt(this))})),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=n}get value(){const e=At(this);return Ft(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}Zt="__v_isReadonly";function Qt(e,...t){}function en(e,t,n,r){let o;try{o=r?e(...r):e()}catch(e){nn(e,t,n)}return o}function tn(e,t,n,r){if(j(e)){const o=en(e,t,n,r);return o&&U(o)&&o.catch((e=>{nn(e,t,n)})),o}const o=[];for(let i=0;i>>1;_n(ln[r])_n(e)-_n(t))),un=0;unnull==e.id?1/0:e.id,bn=(e,t)=>{const n=_n(e)-_n(t);if(0===n){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function wn(e){on=!1,rn=!0,ln.sort(bn);try{for(an=0;anxn.emit(e,...t))),kn=[];else if("undefined"!=typeof window&&window.HTMLElement&&!(null===(r=null===(n=window.navigator)||void 0===n?void 0:n.userAgent)||void 0===r?void 0:r.includes("jsdom"))){(t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push((e=>{En(e,t)})),setTimeout((()=>{xn||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Sn=!0,kn=[])}),3e3)}else Sn=!0,kn=[]}function Cn(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||k;let o=n;const i=t.startsWith("update:"),l=i&&t.slice(7);if(l&&l in r){const e=`${"modelValue"===l?"model":l}Modifiers`,{number:t,trim:i}=r[e]||k;i&&(o=n.map((e=>V(e)?e.trim():e))),t&&(o=n.map(ie))}let a;let s=r[a=te(t)]||r[a=te(Z(t))];!s&&i&&(s=r[a=te(Q(t))]),s&&tn(s,e,6,o);const c=r[a+"Once"];if(c){if(e.emitted){if(e.emitted[a])return}else e.emitted={};e.emitted[a]=!0,tn(c,e,6,o)}}function Tn(e,t,n=!1){const r=t.emitsCache,o=r.get(e);if(void 0!==o)return o;const i=e.emits;let l={},a=!1;if(!j(e)){const r=e=>{const n=Tn(e,t,!0);n&&(a=!0,O(l,n))};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}return i||a?(R(i)?i.forEach((e=>l[e]=null)):O(l,i),$(e)&&r.set(e,l),l):($(e)&&r.set(e,null),null)}function Nn(e,t){return!(!e||!N(t))&&(t=t.slice(2).replace(/Once$/,""),I(e,t[0].toLowerCase()+t.slice(1))||I(e,Q(t))||I(e,t))}let Ln=null,On=null;function An(e){const t=Ln;return Ln=e,On=e&&e.type.__scopeId||null,t}function Pn(e){On=e}function In(){On=null}const Rn=e=>Fn;function Fn(e,t=Ln,n){if(!t)return e;if(e._n)return e;const r=(...n)=>{r._d&&ii(-1);const o=An(t);let i;try{i=e(...n)}finally{An(o),r._d&&ii(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function Mn(e){const{type:t,vnode:n,proxy:r,withProxy:o,props:i,propsOptions:[l],slots:a,attrs:s,emit:c,render:u,renderCache:f,data:p,setupState:d,ctx:h,inheritAttrs:m}=e;let v,g;const y=An(e);try{if(4&n.shapeFlag){const e=o||r;v=ki(u.call(e,e,f,i,d,p,h)),g=s}else{const e=t;0,v=ki(e.length>1?e(i,{attrs:s,slots:a,emit:c}):e(i,null)),g=t.props?s:jn(s)}}catch(t){Qo.length=0,nn(t,e,1),v=vi(Zo)}let _=v;if(g&&!1!==m){const e=Object.keys(g),{shapeFlag:t}=_;e.length&&7&t&&(l&&e.some(L)&&(g=Vn(g,l)),_=_i(_,g))}return n.dirs&&(_=_i(_),_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),v=_,An(y),v}function Bn(e){let t;for(let n=0;n{let t;for(const n in e)("class"===n||"style"===n||N(n))&&((t||(t={}))[n]=e[n]);return t},Vn=(e,t)=>{const n={};for(const r in e)L(r)&&r.slice(9)in t||(n[r]=e[r]);return n};function Dn(e,t,n){const r=Object.keys(t);if(r.length!==Object.keys(e).length)return!0;for(let o=0;oe.__isSuspense,Wn={name:"Suspense",__isSuspense:!0,process(e,t,n,r,o,i,l,a,s,c){null==e?function(e,t,n,r,o,i,l,a,s){const{p:c,o:{createElement:u}}=s,f=u("div"),p=e.suspense=zn(e,o,r,t,f,n,i,l,a,s);c(null,p.pendingBranch=e.ssContent,f,null,r,p,i,l),p.deps>0?(Hn(e,"onPending"),Hn(e,"onFallback"),c(null,e.ssFallback,t,n,r,null,i,l),Jn(p,e.ssFallback)):p.resolve()}(t,n,r,o,i,l,a,s,c):function(e,t,n,r,o,i,l,a,{p:s,um:c,o:{createElement:u}}){const f=t.suspense=e.suspense;f.vnode=t,t.el=e.el;const p=t.ssContent,d=t.ssFallback,{activeBranch:h,pendingBranch:m,isInFallback:v,isHydrating:g}=f;if(m)f.pendingBranch=p,ui(p,m)?(s(m,p,f.hiddenContainer,null,o,f,i,l,a),f.deps<=0?f.resolve():v&&(s(h,d,n,r,o,null,i,l,a),Jn(f,d))):(f.pendingId++,g?(f.isHydrating=!1,f.activeBranch=m):c(m,o,f),f.deps=0,f.effects.length=0,f.hiddenContainer=u("div"),v?(s(null,p,f.hiddenContainer,null,o,f,i,l,a),f.deps<=0?f.resolve():(s(h,d,n,r,o,null,i,l,a),Jn(f,d))):h&&ui(p,h)?(s(h,p,n,r,o,f,i,l,a),f.resolve(!0)):(s(null,p,f.hiddenContainer,null,o,f,i,l,a),f.deps<=0&&f.resolve()));else if(h&&ui(p,h))s(h,p,n,r,o,f,i,l,a),Jn(f,p);else if(Hn(t,"onPending"),f.pendingBranch=p,f.pendingId++,s(null,p,f.hiddenContainer,null,o,f,i,l,a),f.deps<=0)f.resolve();else{const{timeout:e,pendingId:t}=f;e>0?setTimeout((()=>{f.pendingId===t&&f.fallback(d)}),e):0===e&&f.fallback(d)}}(e,t,n,r,o,l,a,s,c)},hydrate:function(e,t,n,r,o,i,l,a,s){const c=t.suspense=zn(t,r,n,e.parentNode,document.createElement("div"),null,o,i,l,a,!0),u=s(e,c.pendingBranch=t.ssContent,n,c,i,l);0===c.deps&&c.resolve();return u},create:zn,normalize:function(e){const{shapeFlag:t,children:n}=e,r=32&t;e.ssContent=Gn(r?n.default:n),e.ssFallback=r?Gn(n.fallback):vi(Zo)}};function Hn(e,t){const n=e.props&&e.props[t];j(n)&&n()}function zn(e,t,n,r,o,i,l,a,s,c,u=!1){const{p:f,m:p,um:d,n:h,o:{parentNode:m,remove:v}}=c,g=ie(e.props&&e.props.timeout),y={vnode:e,parent:t,parentComponent:n,isSVG:l,container:r,hiddenContainer:o,anchor:i,deps:0,pendingId:0,timeout:"number"==typeof g?g:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:u,isUnmounted:!1,effects:[],resolve(e=!1){const{vnode:t,activeBranch:n,pendingBranch:r,pendingId:o,effects:i,parentComponent:l,container:a}=y;if(y.isHydrating)y.isHydrating=!1;else if(!e){const e=n&&r.transition&&"out-in"===r.transition.mode;e&&(n.transition.afterLeave=()=>{o===y.pendingId&&p(r,a,t,0)});let{anchor:t}=y;n&&(t=h(n),d(n,l,y,!0)),e||p(r,a,t,0)}Jn(y,r),y.pendingBranch=null,y.isInFallback=!1;let s=y.parent,c=!1;for(;s;){if(s.pendingBranch){s.effects.push(...i),c=!0;break}s=s.parent}c||vn(i),y.effects=[],Hn(t,"onResolve")},fallback(e){if(!y.pendingBranch)return;const{vnode:t,activeBranch:n,parentComponent:r,container:o,isSVG:i}=y;Hn(t,"onFallback");const l=h(n),c=()=>{y.isInFallback&&(f(null,e,o,l,r,null,i,a,s),Jn(y,e))},u=e.transition&&"out-in"===e.transition.mode;u&&(n.transition.afterLeave=c),y.isInFallback=!0,d(n,r,null,!0),u||c()},move(e,t,n){y.activeBranch&&p(y.activeBranch,e,t,n),y.container=e},next:()=>y.activeBranch&&h(y.activeBranch),registerDep(e,t){const n=!!y.pendingBranch;n&&y.deps++;const r=e.vnode.el;e.asyncDep.catch((t=>{nn(t,e,0)})).then((o=>{if(e.isUnmounted||y.isUnmounted||y.pendingId!==e.suspenseId)return;e.asyncResolved=!0;const{vnode:i}=e;Di(e,o,!1),r&&(i.el=r);const a=!r&&e.subTree.el;t(e,i,m(r||e.subTree.el),r?null:h(e.subTree),y,l,s),a&&v(a),$n(e,i.el),n&&0==--y.deps&&y.resolve()}))},unmount(e,t){y.isUnmounted=!0,y.activeBranch&&d(y.activeBranch,n,e,t),y.pendingBranch&&d(y.pendingBranch,n,e,t)}};return y}function Gn(e){let t;if(j(e)){const n=oi&&e._c;n&&(e._d=!1,ti()),e=e(),n&&(e._d=!0,t=ei,ni())}if(R(e)){const t=Bn(e);0,e=t}return e=ki(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter((t=>t!==e))),e}function qn(e,t){t&&t.pendingBranch?R(e)?t.effects.push(...e):t.effects.push(e):vn(e)}function Jn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e,o=n.el=t.el;r&&r.subTree===n&&(r.vnode.el=o,$n(r,o))}function Kn(e,t){if(Ai){let n=Ai.provides;const r=Ai.parent&&Ai.parent.provides;r===n&&(n=Ai.provides=Object.create(r)),n[e]=t}else 0}function Yn(e,t,n=!1){const r=Ai||Ln;if(r){const o=null==r.parent?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides;if(o&&e in o)return o[e];if(arguments.length>1)return n&&j(t)?t.call(r.proxy):t}else 0}function Zn(e,t){return nr(e,null,t)}function Xn(e,t){return nr(e,null,{flush:"post"})}function Qn(e,t){return nr(e,null,{flush:"sync"})}const er={};function tr(e,t,n){return nr(e,t,n)}function nr(e,t,{immediate:n,deep:r,flush:o,onTrack:i,onTrigger:l}=k){const a=Ai;let s,c,u=!1,f=!1;if(Bt(e)?(s=()=>e.value,u=Lt(e)):Tt(e)?(s=()=>e,r=!0):R(e)?(f=!0,u=e.some((e=>Tt(e)||Lt(e))),s=()=>e.map((e=>Bt(e)?e.value:Tt(e)?ir(e):j(e)?en(e,a,2):void 0))):s=j(e)?t?()=>en(e,a,2):()=>{if(!a||!a.isUnmounted)return c&&c(),tn(e,a,3,[d])}:E,t&&r){const e=s;s=()=>ir(e())}let p,d=e=>{c=g.onStop=()=>{en(e,a,4)}};if(ji){if(d=E,t?n&&tn(t,a,3,[s(),f?[]:void 0,d]):s(),"sync"!==o)return E;{const e=al();p=e.__watcherHandles||(e.__watcherHandles=[])}}let h=f?new Array(e.length).fill(er):er;const m=()=>{if(g.active)if(t){const e=g.run();(r||u||(f?e.some(((e,t)=>ne(e,h[t]))):ne(e,h)))&&(c&&c(),tn(t,a,3,[e,h===er?void 0:f&&h[0]===er?[]:h,d]),h=e)}else g.run()};let v;m.allowRecurse=!!t,"sync"===o?v=m:"post"===o?v=()=>Bo(m,a&&a.suspense):(m.pre=!0,a&&(m.id=a.uid),v=()=>hn(m));const g=new xe(s,v);t?n?m():h=g.run():"post"===o?Bo(g.run.bind(g),a&&a.suspense):g.run();const y=()=>{g.stop(),a&&a.scope&&A(a.scope.effects,g)};return p&&p.push(y),y}function rr(e,t,n){const r=this.proxy,o=V(e)?e.includes(".")?or(r,e):()=>r[e]:e.bind(r,r);let i;j(t)?i=t:(i=t.handler,n=t);const l=Ai;Ii(this);const a=nr(o,i.bind(r),n);return l?Ii(l):Ri(),a}function or(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{ir(e,t)}));else if(z(e))for(const n in e)ir(e[n],t);return e}function lr(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Ar((()=>{e.isMounted=!0})),Rr((()=>{e.isUnmounting=!0})),e}const ar=[Function,Array],sr={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:ar,onEnter:ar,onAfterEnter:ar,onEnterCancelled:ar,onBeforeLeave:ar,onLeave:ar,onAfterLeave:ar,onLeaveCancelled:ar,onBeforeAppear:ar,onAppear:ar,onAfterAppear:ar,onAppearCancelled:ar},setup(e,{slots:t}){const n=Pi(),r=lr();let o;return()=>{const i=t.default&&hr(t.default(),!0);if(!i||!i.length)return;let l=i[0];if(i.length>1){let e=!1;for(const t of i)if(t.type!==Zo){0,l=t,e=!0;break}}const a=At(e),{mode:s}=a;if(r.isLeaving)return fr(l);const c=pr(l);if(!c)return fr(l);const u=ur(c,a,r,n);dr(c,u);const f=n.subTree,p=f&&pr(f);let d=!1;const{getTransitionKey:h}=c.type;if(h){const e=h();void 0===o?o=e:e!==o&&(o=e,d=!0)}if(p&&p.type!==Zo&&(!ui(c,p)||d)){const e=ur(p,a,r,n);if(dr(p,e),"out-in"===s)return r.isLeaving=!0,e.afterLeave=()=>{r.isLeaving=!1,!1!==n.update.active&&n.update()},fr(l);"in-out"===s&&c.type!==Zo&&(e.delayLeave=(e,t,n)=>{cr(r,p)[String(p.key)]=p,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=n})}return l}}};function cr(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function ur(e,t,n,r){const{appear:o,mode:i,persisted:l=!1,onBeforeEnter:a,onEnter:s,onAfterEnter:c,onEnterCancelled:u,onBeforeLeave:f,onLeave:p,onAfterLeave:d,onLeaveCancelled:h,onBeforeAppear:m,onAppear:v,onAfterAppear:g,onAppearCancelled:y}=t,_=String(e.key),b=cr(n,e),w=(e,t)=>{e&&tn(e,r,9,t)},x=(e,t)=>{const n=t[1];w(e,t),R(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},k={mode:i,persisted:l,beforeEnter(t){let r=a;if(!n.isMounted){if(!o)return;r=m||a}t._leaveCb&&t._leaveCb(!0);const i=b[_];i&&ui(e,i)&&i.el._leaveCb&&i.el._leaveCb(),w(r,[t])},enter(e){let t=s,r=c,i=u;if(!n.isMounted){if(!o)return;t=v||s,r=g||c,i=y||u}let l=!1;const a=e._enterCb=t=>{l||(l=!0,w(t?i:r,[e]),k.delayedLeave&&k.delayedLeave(),e._enterCb=void 0)};t?x(t,[e,a]):a()},leave(t,r){const o=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return r();w(f,[t]);let i=!1;const l=t._leaveCb=n=>{i||(i=!0,r(),w(n?h:d,[t]),t._leaveCb=void 0,b[o]===e&&delete b[o])};b[o]=e,p?x(p,[t,l]):l()},clone:e=>ur(e,t,n,r)};return k}function fr(e){if(_r(e))return(e=_i(e)).children=null,e}function pr(e){return _r(e)?e.children?e.children[0]:void 0:e}function dr(e,t){6&e.shapeFlag&&e.component?dr(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function hr(e,t=!1,n){let r=[],o=0;for(let i=0;i1)for(let e=0;e!!e.type.__asyncLoader;function gr(e){j(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:o=200,timeout:i,suspensible:l=!0,onError:a}=e;let s,c=null,u=0;const f=()=>{let e;return c||(e=c=t().catch((e=>{if(e=e instanceof Error?e:new Error(String(e)),a)return new Promise(((t,n)=>{a(e,(()=>t((u++,c=null,f()))),(()=>n(e)),u+1)}));throw e})).then((t=>e!==c&&c?c:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),s=t,t))))};return mr({name:"AsyncComponentWrapper",__asyncLoader:f,get __asyncResolved(){return s},setup(){const e=Ai;if(s)return()=>yr(s,e);const t=t=>{c=null,nn(t,e,13,!r)};if(l&&e.suspense||ji)return f().then((t=>()=>yr(t,e))).catch((e=>(t(e),()=>r?vi(r,{error:e}):null)));const a=jt(!1),u=jt(),p=jt(!!o);return o&&setTimeout((()=>{p.value=!1}),o),null!=i&&setTimeout((()=>{if(!a.value&&!u.value){const e=new Error(`Async component timed out after ${i}ms.`);t(e),u.value=e}}),i),f().then((()=>{a.value=!0,e.parent&&_r(e.parent.vnode)&&hn(e.parent.update)})).catch((e=>{t(e),u.value=e})),()=>a.value&&s?yr(s,e):u.value&&r?vi(r,{error:u.value}):n&&!p.value?vi(n):void 0}})}function yr(e,t){const{ref:n,props:r,children:o,ce:i}=t.vnode,l=vi(e,r,o);return l.ref=n,l.ce=i,delete t.vnode.ce,l}const _r=e=>e.type.__isKeepAlive,br={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Pi(),r=n.ctx;if(!r.renderer)return()=>{const e=t.default&&t.default();return e&&1===e.length?e[0]:e};const o=new Map,i=new Set;let l=null;const a=n.suspense,{renderer:{p:s,m:c,um:u,o:{createElement:f}}}=r,p=f("div");function d(e){Cr(e),u(e,n,a,!0)}function h(e){o.forEach(((t,n)=>{const r=Gi(t.type);!r||e&&e(r)||m(n)}))}function m(e){const t=o.get(e);l&&t.type===l.type?l&&Cr(l):d(t),o.delete(e),i.delete(e)}r.activate=(e,t,n,r,o)=>{const i=e.component;c(e,t,n,0,a),s(i.vnode,e,t,n,i,a,r,e.slotScopeIds,o),Bo((()=>{i.isDeactivated=!1,i.a&&re(i.a);const t=e.props&&e.props.onVnodeMounted;t&&Ti(t,i.parent,e)}),a)},r.deactivate=e=>{const t=e.component;c(e,p,null,1,a),Bo((()=>{t.da&&re(t.da);const n=e.props&&e.props.onVnodeUnmounted;n&&Ti(n,t.parent,e),t.isDeactivated=!0}),a)},tr((()=>[e.include,e.exclude]),(([e,t])=>{e&&h((t=>wr(e,t))),t&&h((e=>!wr(t,e)))}),{flush:"post",deep:!0});let v=null;const g=()=>{null!=v&&o.set(v,Tr(n.subTree))};return Ar(g),Ir(g),Rr((()=>{o.forEach((e=>{const{subTree:t,suspense:r}=n,o=Tr(t);if(e.type!==o.type)d(e);else{Cr(o);const e=o.component.da;e&&Bo(e,r)}}))})),()=>{if(v=null,!t.default)return null;const n=t.default(),r=n[0];if(n.length>1)return l=null,n;if(!(ci(r)&&(4&r.shapeFlag||128&r.shapeFlag)))return l=null,r;let a=Tr(r);const s=a.type,c=Gi(vr(a)?a.type.__asyncResolved||{}:s),{include:u,exclude:f,max:p}=e;if(u&&(!c||!wr(u,c))||f&&c&&wr(f,c))return l=a,r;const d=null==a.key?s:a.key,h=o.get(d);return a.el&&(a=_i(a),128&r.shapeFlag&&(r.ssContent=a)),v=d,h?(a.el=h.el,a.component=h.component,a.transition&&dr(a,a.transition),a.shapeFlag|=512,i.delete(d),i.add(d)):(i.add(d),p&&i.size>parseInt(p,10)&&m(i.values().next().value)),a.shapeFlag|=256,l=a,Un(r.type)?r:a}}};function wr(e,t){return R(e)?e.some((e=>wr(e,t))):V(e)?e.split(",").includes(t):!!e.test&&e.test(t)}function xr(e,t){Sr(e,"a",t)}function kr(e,t){Sr(e,"da",t)}function Sr(e,t,n=Ai){const r=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(Nr(t,r,n),n){let e=n.parent;for(;e&&e.parent;)_r(e.parent.vnode)&&Er(r,t,n,e),e=e.parent}}function Er(e,t,n,r){const o=Nr(t,e,r,!0);Fr((()=>{A(r[t],o)}),n)}function Cr(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Tr(e){return 128&e.shapeFlag?e.ssContent:e}function Nr(e,t,n=Ai,r=!1){if(n){const o=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...r)=>{if(n.isUnmounted)return;Ne(),Ii(n);const o=tn(t,n,e,r);return Ri(),Le(),o});return r?o.unshift(i):o.push(i),i}}const Lr=e=>(t,n=Ai)=>(!ji||"sp"===e)&&Nr(e,((...e)=>t(...e)),n),Or=Lr("bm"),Ar=Lr("m"),Pr=Lr("bu"),Ir=Lr("u"),Rr=Lr("bum"),Fr=Lr("um"),Mr=Lr("sp"),Br=Lr("rtg"),jr=Lr("rtc");function Vr(e,t=Ai){Nr("ec",e,t)}function Dr(e,t){const n=Ln;if(null===n)return e;const r=zi(n)||n.proxy,o=e.dirs||(e.dirs=[]);for(let e=0;et(e,n,void 0,i&&i[n])));else{const n=Object.keys(e);o=new Array(n.length);for(let r=0,l=n.length;r{const t=r.fn(...e);return t&&(t.key=r.key),t}:r.fn)}return e}function Zr(e,t,n={},r,o){if(Ln.isCE||Ln.parent&&vr(Ln.parent)&&Ln.parent.isCE)return"default"!==t&&(n.name=t),vi("slot",n,r&&r());let i=e[t];i&&i._c&&(i._d=!1),ti();const l=i&&Xr(i(n)),a=si(Ko,{key:n.key||l&&l.key||`_${t}`},l||(r?r():[]),l&&1===e._?64:-2);return!o&&a.scopeId&&(a.slotScopeIds=[a.scopeId+"-s"]),i&&i._c&&(i._d=!0),a}function Xr(e){return e.some((e=>!ci(e)||e.type!==Zo&&!(e.type===Ko&&!Xr(e.children))))?e:null}function Qr(e,t){const n={};for(const r in e)n[t&&/[A-Z]/.test(r)?`on:${r}`:te(r)]=e[r];return n}const eo=e=>e?Fi(e)?zi(e)||e.proxy:eo(e.parent):null,to=O(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>eo(e.parent),$root:e=>eo(e.root),$emit:e=>e.emit,$options:e=>co(e),$forceUpdate:e=>e.f||(e.f=()=>hn(e.update)),$nextTick:e=>e.n||(e.n=dn.bind(e.proxy)),$watch:e=>rr.bind(e)}),no=(e,t)=>e!==k&&!e.__isScriptSetup&&I(e,t),ro={get({_:e},t){const{ctx:n,setupState:r,data:o,props:i,accessCache:l,type:a,appContext:s}=e;let c;if("$"!==t[0]){const a=l[t];if(void 0!==a)switch(a){case 1:return r[t];case 2:return o[t];case 4:return n[t];case 3:return i[t]}else{if(no(r,t))return l[t]=1,r[t];if(o!==k&&I(o,t))return l[t]=2,o[t];if((c=e.propsOptions[0])&&I(c,t))return l[t]=3,i[t];if(n!==k&&I(n,t))return l[t]=4,n[t];io&&(l[t]=0)}}const u=to[t];let f,p;return u?("$attrs"===t&&Oe(e,0,t),u(e)):(f=a.__cssModules)&&(f=f[t])?f:n!==k&&I(n,t)?(l[t]=4,n[t]):(p=s.config.globalProperties,I(p,t)?p[t]:void 0)},set({_:e},t,n){const{data:r,setupState:o,ctx:i}=e;return no(o,t)?(o[t]=n,!0):r!==k&&I(r,t)?(r[t]=n,!0):!I(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(i[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:o,propsOptions:i}},l){let a;return!!n[l]||e!==k&&I(e,l)||no(t,l)||(a=i[0])&&I(a,l)||I(r,l)||I(to,l)||I(o.config.globalProperties,l)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:I(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};const oo=O({},ro,{get(e,t){if(t!==Symbol.unscopables)return ro.get(e,t,e)},has:(e,t)=>"_"!==t[0]&&!i(t)});let io=!0;function lo(e){const t=co(e),n=e.proxy,r=e.ctx;io=!1,t.beforeCreate&&ao(t.beforeCreate,e,"bc");const{data:o,computed:i,methods:l,watch:a,provide:s,inject:c,created:u,beforeMount:f,mounted:p,beforeUpdate:d,updated:h,activated:m,deactivated:v,beforeDestroy:g,beforeUnmount:y,destroyed:_,unmounted:b,render:w,renderTracked:x,renderTriggered:k,errorCaptured:S,serverPrefetch:C,expose:T,inheritAttrs:N,components:L,directives:O,filters:A}=t;if(c&&function(e,t,n=E,r=!1){R(e)&&(e=ho(e));for(const n in e){const o=e[n];let i;i=$(o)?"default"in o?Yn(o.from||n,o.default,!0):Yn(o.from||n):Yn(o),Bt(i)&&r?Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e}):t[n]=i}}(c,r,null,e.appContext.config.unwrapInjectedRef),l)for(const e in l){const t=l[e];j(t)&&(r[e]=t.bind(n))}if(o){0;const t=o.call(n,n);0,$(t)&&(e.data=xt(t))}if(io=!0,i)for(const e in i){const t=i[e],o=j(t)?t.bind(n,n):j(t.get)?t.get.bind(n,n):E;0;const l=!j(t)&&j(t.set)?t.set.bind(n):E,a=Ji({get:o,set:l});Object.defineProperty(r,e,{enumerable:!0,configurable:!0,get:()=>a.value,set:e=>a.value=e})}if(a)for(const e in a)so(a[e],r,n,e);if(s){const e=j(s)?s.call(n):s;Reflect.ownKeys(e).forEach((t=>{Kn(t,e[t])}))}function P(e,t){R(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(u&&ao(u,e,"c"),P(Or,f),P(Ar,p),P(Pr,d),P(Ir,h),P(xr,m),P(kr,v),P(Vr,S),P(jr,x),P(Br,k),P(Rr,y),P(Fr,b),P(Mr,C),R(T))if(T.length){const t=e.exposed||(e.exposed={});T.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});w&&e.render===E&&(e.render=w),null!=N&&(e.inheritAttrs=N),L&&(e.components=L),O&&(e.directives=O)}function ao(e,t,n){tn(R(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function so(e,t,n,r){const o=r.includes(".")?or(n,r):()=>n[r];if(V(e)){const n=t[e];j(n)&&tr(o,n)}else if(j(e))tr(o,e.bind(n));else if($(e))if(R(e))e.forEach((e=>so(e,t,n,r)));else{const r=j(e.handler)?e.handler.bind(n):t[e.handler];j(r)&&tr(o,r,e)}else 0}function co(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:o,optionsCache:i,config:{optionMergeStrategies:l}}=e.appContext,a=i.get(t);let s;return a?s=a:o.length||n||r?(s={},o.length&&o.forEach((e=>uo(s,e,l,!0))),uo(s,t,l)):s=t,$(t)&&i.set(t,s),s}function uo(e,t,n,r=!1){const{mixins:o,extends:i}=t;i&&uo(e,i,n,!0),o&&o.forEach((t=>uo(e,t,n,!0)));for(const o in t)if(r&&"expose"===o);else{const r=fo[o]||n&&n[o];e[o]=r?r(e[o],t[o]):t[o]}return e}const fo={data:po,props:vo,emits:vo,methods:vo,computed:vo,beforeCreate:mo,created:mo,beforeMount:mo,mounted:mo,beforeUpdate:mo,updated:mo,beforeDestroy:mo,beforeUnmount:mo,destroyed:mo,unmounted:mo,activated:mo,deactivated:mo,errorCaptured:mo,serverPrefetch:mo,components:vo,directives:vo,watch:function(e,t){if(!e)return t;if(!t)return e;const n=O(Object.create(null),e);for(const r in t)n[r]=mo(e[r],t[r]);return n},provide:po,inject:function(e,t){return vo(ho(e),ho(t))}};function po(e,t){return t?e?function(){return O(j(e)?e.call(this,this):e,j(t)?t.call(this,this):t)}:t:e}function ho(e){if(R(e)){const t={};for(let n=0;n{s=!0;const[n,r]=_o(e,t,!0);O(l,n),r&&a.push(...r)};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}if(!i&&!s)return $(e)&&r.set(e,S),S;if(R(i))for(let e=0;e-1,r[1]=n<0||e-1||I(r,"default"))&&a.push(t)}}}}const c=[l,a];return $(e)&&r.set(e,c),c}function bo(e){return"$"!==e[0]}function wo(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:null===e?"null":""}function xo(e,t){return wo(e)===wo(t)}function ko(e,t){return R(t)?t.findIndex((t=>xo(t,e))):j(t)&&xo(t,e)?0:-1}const So=e=>"_"===e[0]||"$stable"===e,Eo=e=>R(e)?e.map(ki):[ki(e)],Co=(e,t,n)=>{if(t._n)return t;const r=Fn(((...e)=>Eo(t(...e))),n);return r._c=!1,r},To=(e,t,n)=>{const r=e._ctx;for(const n in e){if(So(n))continue;const o=e[n];if(j(o))t[n]=Co(0,o,r);else if(null!=o){0;const e=Eo(o);t[n]=()=>e}}},No=(e,t)=>{const n=Eo(t);e.slots.default=()=>n};function Lo(){return{app:null,config:{isNativeTag:C,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Oo=0;function Ao(e,t){return function(n,r=null){j(n)||(n=Object.assign({},n)),null==r||$(r)||(r=null);const o=Lo(),i=new Set;let l=!1;const a=o.app={_uid:Oo++,_component:n,_props:r,_container:null,_context:o,_instance:null,version:fl,get config(){return o.config},set config(e){0},use:(e,...t)=>(i.has(e)||(e&&j(e.install)?(i.add(e),e.install(a,...t)):j(e)&&(i.add(e),e(a,...t))),a),mixin:e=>(o.mixins.includes(e)||o.mixins.push(e),a),component:(e,t)=>t?(o.components[e]=t,a):o.components[e],directive:(e,t)=>t?(o.directives[e]=t,a):o.directives[e],mount(i,s,c){if(!l){0;const u=vi(n,r);return u.appContext=o,s&&t?t(u,i):e(u,i,c),l=!0,a._container=i,i.__vue_app__=a,zi(u.component)||u.component.proxy}},unmount(){l&&(e(null,a._container),delete a._container.__vue_app__)},provide:(e,t)=>(o.provides[e]=t,a)};return a}}function Po(e,t,n,r,o=!1){if(R(e))return void e.forEach(((e,i)=>Po(e,t&&(R(t)?t[i]:t),n,r,o)));if(vr(r)&&!o)return;const i=4&r.shapeFlag?zi(r.component)||r.component.proxy:r.el,l=o?null:i,{i:a,r:s}=e;const c=t&&t.r,u=a.refs===k?a.refs={}:a.refs,f=a.setupState;if(null!=c&&c!==s&&(V(c)?(u[c]=null,I(f,c)&&(f[c]=null)):Bt(c)&&(c.value=null)),j(s))en(s,a,12,[l,u]);else{const t=V(s),r=Bt(s);if(t||r){const a=()=>{if(e.f){const n=t?I(f,s)?f[s]:u[s]:s.value;o?R(n)&&A(n,i):R(n)?n.includes(i)||n.push(i):t?(u[s]=[i],I(f,s)&&(f[s]=u[s])):(s.value=[i],e.k&&(u[e.k]=s.value))}else t?(u[s]=l,I(f,s)&&(f[s]=l)):r&&(s.value=l,e.k&&(u[e.k]=l))};l?(a.id=-1,Bo(a,n)):a()}else 0}}let Io=!1;const Ro=e=>/svg/.test(e.namespaceURI)&&"foreignObject"!==e.tagName,Fo=e=>8===e.nodeType;function Mo(e){const{mt:t,p:n,o:{patchProp:r,createText:o,nextSibling:i,parentNode:l,remove:a,insert:s,createComment:c}}=e,u=(n,r,a,c,v,g=!1)=>{const y=Fo(n)&&"["===n.data,_=()=>h(n,r,a,c,v,y),{type:b,ref:w,shapeFlag:x,patchFlag:k}=r;let S=n.nodeType;r.el=n,-2===k&&(g=!1,r.dynamicChildren=null);let E=null;switch(b){case Yo:3!==S?""===r.children?(s(r.el=o(""),l(n),n),E=n):E=_():(n.data!==r.children&&(Io=!0,n.data=r.children),E=i(n));break;case Zo:E=8!==S||y?_():i(n);break;case Xo:if(y&&(S=(n=i(n)).nodeType),1===S||3===S){E=n;const e=!r.children.length;for(let t=0;t{l=l||!!t.dynamicChildren;const{type:s,props:c,patchFlag:u,shapeFlag:f,dirs:d}=t,h="input"===s&&d||"option"===s;if(h||-1!==u){if(d&&$r(t,null,n,"created"),c)if(h||!l||48&u)for(const t in c)(h&&t.endsWith("value")||N(t)&&!q(t))&&r(e,t,null,c[t],!1,void 0,n);else c.onClick&&r(e,"onClick",null,c.onClick,!1,void 0,n);let s;if((s=c&&c.onVnodeBeforeMount)&&Ti(s,n,t),d&&$r(t,null,n,"beforeMount"),((s=c&&c.onVnodeMounted)||d)&&qn((()=>{s&&Ti(s,n,t),d&&$r(t,null,n,"mounted")}),o),16&f&&(!c||!c.innerHTML&&!c.textContent)){let r=p(e.firstChild,t,e,n,o,i,l);for(;r;){Io=!0;const e=r;r=r.nextSibling,a(e)}}else 8&f&&e.textContent!==t.children&&(Io=!0,e.textContent=t.children)}return e.nextSibling},p=(e,t,r,o,i,l,a)=>{a=a||!!t.dynamicChildren;const s=t.children,c=s.length;for(let t=0;t{const{slotScopeIds:u}=t;u&&(o=o?o.concat(u):u);const f=l(e),d=p(i(e),t,f,n,r,o,a);return d&&Fo(d)&&"]"===d.data?i(t.anchor=d):(Io=!0,s(t.anchor=c("]"),f,d),d)},h=(e,t,r,o,s,c)=>{if(Io=!0,t.el=null,c){const t=m(e);for(;;){const n=i(e);if(!n||n===t)break;a(n)}}const u=i(e),f=l(e);return a(e),n(null,t,f,u,r,o,Ro(f),s),u},m=e=>{let t=0;for(;e;)if((e=i(e))&&Fo(e)&&("["===e.data&&t++,"]"===e.data)){if(0===t)return i(e);t--}return e};return[(e,t)=>{if(!t.hasChildNodes())return n(null,e,t),yn(),void(t._vnode=e);Io=!1,u(t.firstChild,e,null,null,null),yn(),t._vnode=e,Io&&console.error("Hydration completed but contains mismatches.")},u]}const Bo=qn;function jo(e){return Do(e)}function Vo(e){return Do(e,Mo)}function Do(e,t){(le||(le="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==n.g?n.g:{})).__VUE__=!0;const{insert:r,remove:o,patchProp:i,createElement:l,createText:a,createComment:s,setText:c,setElementText:u,parentNode:f,nextSibling:p,setScopeId:d=E,insertStaticContent:h}=e,m=(e,t,n,r=null,o=null,i=null,l=!1,a=null,s=!!t.dynamicChildren)=>{if(e===t)return;e&&!ui(e,t)&&(r=J(e),U(e,o,i,!0),e=null),-2===t.patchFlag&&(s=!1,t.dynamicChildren=null);const{type:c,ref:u,shapeFlag:f}=t;switch(c){case Yo:v(e,t,n,r);break;case Zo:g(e,t,n,r);break;case Xo:null==e&&y(t,n,r,l);break;case Ko:A(e,t,n,r,o,i,l,a,s);break;default:1&f?b(e,t,n,r,o,i,l,a,s):6&f?P(e,t,n,r,o,i,l,a,s):(64&f||128&f)&&c.process(e,t,n,r,o,i,l,a,s,Y)}null!=u&&o&&Po(u,e&&e.ref,i,t||e,!t)},v=(e,t,n,o)=>{if(null==e)r(t.el=a(t.children),n,o);else{const n=t.el=e.el;t.children!==e.children&&c(n,t.children)}},g=(e,t,n,o)=>{null==e?r(t.el=s(t.children||""),n,o):t.el=e.el},y=(e,t,n,r)=>{[e.el,e.anchor]=h(e.children,t,n,r,e.el,e.anchor)},_=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=p(e),o(e),e=n;o(t)},b=(e,t,n,r,o,i,l,a,s)=>{l=l||"svg"===t.type,null==e?w(t,n,r,o,i,l,a,s):T(e,t,o,i,l,a,s)},w=(e,t,n,o,a,s,c,f)=>{let p,d;const{type:h,props:m,shapeFlag:v,transition:g,dirs:y}=e;if(p=e.el=l(e.type,s,m&&m.is,m),8&v?u(p,e.children):16&v&&C(e.children,p,null,o,a,s&&"foreignObject"!==h,c,f),y&&$r(e,null,o,"created"),m){for(const t in m)"value"===t||q(t)||i(p,t,null,m[t],s,e.children,o,a,G);"value"in m&&i(p,"value",null,m.value),(d=m.onVnodeBeforeMount)&&Ti(d,o,e)}x(p,e,e.scopeId,c,o),y&&$r(e,null,o,"beforeMount");const _=(!a||a&&!a.pendingBranch)&&g&&!g.persisted;_&&g.beforeEnter(p),r(p,t,n),((d=m&&m.onVnodeMounted)||_||y)&&Bo((()=>{d&&Ti(d,o,e),_&&g.enter(p),y&&$r(e,null,o,"mounted")}),a)},x=(e,t,n,r,o)=>{if(n&&d(e,n),r)for(let t=0;t{for(let c=s;c{const s=t.el=e.el;let{patchFlag:c,dynamicChildren:f,dirs:p}=t;c|=16&e.patchFlag;const d=e.props||k,h=t.props||k;let m;n&&$o(n,!1),(m=h.onVnodeBeforeUpdate)&&Ti(m,n,t,e),p&&$r(t,e,n,"beforeUpdate"),n&&$o(n,!0);const v=o&&"foreignObject"!==t.type;if(f?N(e.dynamicChildren,f,s,n,r,v,l):a||j(e,t,s,null,n,r,v,l,!1),c>0){if(16&c)L(s,t,d,h,n,r,o);else if(2&c&&d.class!==h.class&&i(s,"class",null,h.class,o),4&c&&i(s,"style",d.style,h.style,o),8&c){const l=t.dynamicProps;for(let t=0;t{m&&Ti(m,n,t,e),p&&$r(t,e,n,"updated")}),r)},N=(e,t,n,r,o,i,l)=>{for(let a=0;a{if(n!==r){if(n!==k)for(const s in n)q(s)||s in r||i(e,s,n[s],null,a,t.children,o,l,G);for(const s in r){if(q(s))continue;const c=r[s],u=n[s];c!==u&&"value"!==s&&i(e,s,u,c,a,t.children,o,l,G)}"value"in r&&i(e,"value",n.value,r.value)}},A=(e,t,n,o,i,l,s,c,u)=>{const f=t.el=e?e.el:a(""),p=t.anchor=e?e.anchor:a("");let{patchFlag:d,dynamicChildren:h,slotScopeIds:m}=t;m&&(c=c?c.concat(m):m),null==e?(r(f,n,o),r(p,n,o),C(t.children,n,p,i,l,s,c,u)):d>0&&64&d&&h&&e.dynamicChildren?(N(e.dynamicChildren,h,n,i,l,s,c),(null!=t.key||i&&t===i.subTree)&&Uo(e,t,!0)):j(e,t,n,p,i,l,s,c,u)},P=(e,t,n,r,o,i,l,a,s)=>{t.slotScopeIds=a,null==e?512&t.shapeFlag?o.ctx.activate(t,n,r,l,s):R(t,n,r,o,i,l,s):F(e,t,s)},R=(e,t,n,r,o,i,l)=>{const a=e.component=Oi(e,r,o);if(_r(e)&&(a.ctx.renderer=Y),Vi(a),a.asyncDep){if(o&&o.registerDep(a,M),!e.el){const e=a.subTree=vi(Zo);g(null,e,t,n)}}else M(a,e,t,n,o,i,l)},F=(e,t,n)=>{const r=t.component=e.component;if(function(e,t,n){const{props:r,children:o,component:i}=e,{props:l,children:a,patchFlag:s}=t,c=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&s>=0))return!(!o&&!a||a&&a.$stable)||r!==l&&(r?!l||Dn(r,l,c):!!l);if(1024&s)return!0;if(16&s)return r?Dn(r,l,c):!!l;if(8&s){const e=t.dynamicProps;for(let t=0;tan&&ln.splice(t,1)}(r.update),r.update()}else t.el=e.el,r.vnode=t},M=(e,t,n,r,o,i,l)=>{const a=e.effect=new xe((()=>{if(e.isMounted){let t,{next:n,bu:r,u:a,parent:s,vnode:c}=e,u=n;0,$o(e,!1),n?(n.el=c.el,B(e,n,l)):n=c,r&&re(r),(t=n.props&&n.props.onVnodeBeforeUpdate)&&Ti(t,s,n,c),$o(e,!0);const p=Mn(e);0;const d=e.subTree;e.subTree=p,m(d,p,f(d.el),J(d),e,o,i),n.el=p.el,null===u&&$n(e,p.el),a&&Bo(a,o),(t=n.props&&n.props.onVnodeUpdated)&&Bo((()=>Ti(t,s,n,c)),o)}else{let l;const{el:a,props:s}=t,{bm:c,m:u,parent:f}=e,p=vr(t);if($o(e,!1),c&&re(c),!p&&(l=s&&s.onVnodeBeforeMount)&&Ti(l,f,t),$o(e,!0),a&&ee){const n=()=>{e.subTree=Mn(e),ee(a,e.subTree,e,o,null)};p?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{0;const l=e.subTree=Mn(e);0,m(null,l,n,r,e,o,i),t.el=l.el}if(u&&Bo(u,o),!p&&(l=s&&s.onVnodeMounted)){const e=t;Bo((()=>Ti(l,f,e)),o)}(256&t.shapeFlag||f&&vr(f.vnode)&&256&f.vnode.shapeFlag)&&e.a&&Bo(e.a,o),e.isMounted=!0,t=n=r=null}}),(()=>hn(s)),e.scope),s=e.update=()=>a.run();s.id=e.uid,$o(e,!0),s()},B=(e,t,n)=>{t.component=e;const r=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,r){const{props:o,attrs:i,vnode:{patchFlag:l}}=e,a=At(o),[s]=e.propsOptions;let c=!1;if(!(r||l>0)||16&l){let r;go(e,t,o,i)&&(c=!0);for(const i in a)t&&(I(t,i)||(r=Q(i))!==i&&I(t,r))||(s?!n||void 0===n[i]&&void 0===n[r]||(o[i]=yo(s,a,i,void 0,e,!0)):delete o[i]);if(i!==a)for(const e in i)t&&I(t,e)||(delete i[e],c=!0)}else if(8&l){const n=e.vnode.dynamicProps;for(let r=0;r{const{vnode:r,slots:o}=e;let i=!0,l=k;if(32&r.shapeFlag){const e=t._;e?n&&1===e?i=!1:(O(o,t),n||1!==e||delete o._):(i=!t.$stable,To(t,o)),l=t}else t&&(No(e,t),l={default:1});if(i)for(const e in o)So(e)||e in l||delete o[e]})(e,t.children,n),Ne(),gn(),Le()},j=(e,t,n,r,o,i,l,a,s=!1)=>{const c=e&&e.children,f=e?e.shapeFlag:0,p=t.children,{patchFlag:d,shapeFlag:h}=t;if(d>0){if(128&d)return void D(c,p,n,r,o,i,l,a,s);if(256&d)return void V(c,p,n,r,o,i,l,a,s)}8&h?(16&f&&G(c,o,i),p!==c&&u(n,p)):16&f?16&h?D(c,p,n,r,o,i,l,a,s):G(c,o,i,!0):(8&f&&u(n,""),16&h&&C(p,n,r,o,i,l,a,s))},V=(e,t,n,r,o,i,l,a,s)=>{t=t||S;const c=(e=e||S).length,u=t.length,f=Math.min(c,u);let p;for(p=0;pu?G(e,o,i,!0,!1,f):C(t,n,r,o,i,l,a,s,f)},D=(e,t,n,r,o,i,l,a,s)=>{let c=0;const u=t.length;let f=e.length-1,p=u-1;for(;c<=f&&c<=p;){const r=e[c],u=t[c]=s?Si(t[c]):ki(t[c]);if(!ui(r,u))break;m(r,u,n,null,o,i,l,a,s),c++}for(;c<=f&&c<=p;){const r=e[f],c=t[p]=s?Si(t[p]):ki(t[p]);if(!ui(r,c))break;m(r,c,n,null,o,i,l,a,s),f--,p--}if(c>f){if(c<=p){const e=p+1,f=ep)for(;c<=f;)U(e[c],o,i,!0),c++;else{const d=c,h=c,v=new Map;for(c=h;c<=p;c++){const e=t[c]=s?Si(t[c]):ki(t[c]);null!=e.key&&v.set(e.key,c)}let g,y=0;const _=p-h+1;let b=!1,w=0;const x=new Array(_);for(c=0;c<_;c++)x[c]=0;for(c=d;c<=f;c++){const r=e[c];if(y>=_){U(r,o,i,!0);continue}let u;if(null!=r.key)u=v.get(r.key);else for(g=h;g<=p;g++)if(0===x[g-h]&&ui(r,t[g])){u=g;break}void 0===u?U(r,o,i,!0):(x[u-h]=c+1,u>=w?w=u:b=!0,m(r,t[u],n,null,o,i,l,a,s),y++)}const k=b?function(e){const t=e.slice(),n=[0];let r,o,i,l,a;const s=e.length;for(r=0;r>1,e[n[a]]0&&(t[r]=n[i-1]),n[i]=r)}}i=n.length,l=n[i-1];for(;i-- >0;)n[i]=l,l=t[l];return n}(x):S;for(g=k.length-1,c=_-1;c>=0;c--){const e=h+c,f=t[e],p=e+1{const{el:l,type:a,transition:s,children:c,shapeFlag:u}=e;if(6&u)return void $(e.component.subTree,t,n,o);if(128&u)return void e.suspense.move(t,n,o);if(64&u)return void a.move(e,t,n,Y);if(a===Ko){r(l,t,n);for(let e=0;e{let i;for(;e&&e!==t;)i=p(e),r(e,n,o),e=i;r(t,n,o)})(e,t,n);if(2!==o&&1&u&&s)if(0===o)s.beforeEnter(l),r(l,t,n),Bo((()=>s.enter(l)),i);else{const{leave:e,delayLeave:o,afterLeave:i}=s,a=()=>r(l,t,n),c=()=>{e(l,(()=>{a(),i&&i()}))};o?o(l,a,c):c()}else r(l,t,n)},U=(e,t,n,r=!1,o=!1)=>{const{type:i,props:l,ref:a,children:s,dynamicChildren:c,shapeFlag:u,patchFlag:f,dirs:p}=e;if(null!=a&&Po(a,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const d=1&u&&p,h=!vr(e);let m;if(h&&(m=l&&l.onVnodeBeforeUnmount)&&Ti(m,t,e),6&u)z(e.component,n,r);else{if(128&u)return void e.suspense.unmount(n,r);d&&$r(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,o,Y,r):c&&(i!==Ko||f>0&&64&f)?G(c,t,n,!1,!0):(i===Ko&&384&f||!o&&16&u)&&G(s,t,n),r&&W(e)}(h&&(m=l&&l.onVnodeUnmounted)||d)&&Bo((()=>{m&&Ti(m,t,e),d&&$r(e,null,t,"unmounted")}),n)},W=e=>{const{type:t,el:n,anchor:r,transition:i}=e;if(t===Ko)return void H(n,r);if(t===Xo)return void _(e);const l=()=>{o(n),i&&!i.persisted&&i.afterLeave&&i.afterLeave()};if(1&e.shapeFlag&&i&&!i.persisted){const{leave:t,delayLeave:r}=i,o=()=>t(n,l);r?r(e.el,l,o):o()}else l()},H=(e,t)=>{let n;for(;e!==t;)n=p(e),o(e),e=n;o(t)},z=(e,t,n)=>{const{bum:r,scope:o,update:i,subTree:l,um:a}=e;r&&re(r),o.stop(),i&&(i.active=!1,U(l,e,t,n)),a&&Bo(a,t),Bo((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},G=(e,t,n,r=!1,o=!1,i=0)=>{for(let l=i;l6&e.shapeFlag?J(e.component.subTree):128&e.shapeFlag?e.suspense.next():p(e.anchor||e.el),K=(e,t,n)=>{null==e?t._vnode&&U(t._vnode,null,null,!0):m(t._vnode||null,e,t,null,null,null,n),gn(),yn(),t._vnode=e},Y={p:m,um:U,m:$,r:W,mt:R,mc:C,pc:j,pbc:N,n:J,o:e};let X,ee;return t&&([X,ee]=t(Y)),{render:K,hydrate:X,createApp:Ao(K,X)}}function $o({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Uo(e,t,n=!1){const r=e.children,o=t.children;if(R(r)&&R(o))for(let e=0;ee&&(e.disabled||""===e.disabled),Ho=e=>"undefined"!=typeof SVGElement&&e instanceof SVGElement,zo=(e,t)=>{const n=e&&e.to;if(V(n)){if(t){const e=t(n);return e}return null}return n};function Go(e,t,n,{o:{insert:r},m:o},i=2){0===i&&r(e.targetAnchor,t,n);const{el:l,anchor:a,shapeFlag:s,children:c,props:u}=e,f=2===i;if(f&&r(l,t,n),(!f||Wo(u))&&16&s)for(let e=0;e{16&y&&u(_,e,t,o,i,l,a,s)};g?v(n,c):f&&v(f,p)}else{t.el=e.el;const r=t.anchor=e.anchor,u=t.target=e.target,d=t.targetAnchor=e.targetAnchor,m=Wo(e.props),v=m?n:u,y=m?r:d;if(l=l||Ho(u),b?(p(e.dynamicChildren,b,v,o,i,l,a),Uo(e,t,!0)):s||f(e,t,v,y,o,i,l,a,!1),g)m||Go(t,n,r,c,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const e=t.target=zo(t.props,h);e&&Go(t,e,null,c,0)}else m&&Go(t,u,d,c,1)}Jo(t)},remove(e,t,n,r,{um:o,o:{remove:i}},l){const{shapeFlag:a,children:s,anchor:c,targetAnchor:u,target:f,props:p}=e;if(f&&i(u),(l||!Wo(p))&&(i(c),16&a))for(let e=0;e0?ei||S:null,ni(),oi>0&&ei&&ei.push(e),e}function ai(e,t,n,r,o,i){return li(mi(e,t,n,r,o,i,!0))}function si(e,t,n,r,o){return li(vi(e,t,n,r,o,!0))}function ci(e){return!!e&&!0===e.__v_isVNode}function ui(e,t){return e.type===t.type&&e.key===t.key}function fi(e){ri=e}const pi="__vInternal",di=({key:e})=>null!=e?e:null,hi=({ref:e,ref_key:t,ref_for:n})=>null!=e?V(e)||Bt(e)||j(e)?{i:Ln,r:e,k:t,f:!!n}:e:null;function mi(e,t=null,n=null,r=0,o=null,i=(e===Ko?0:1),l=!1,a=!1){const s={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&di(t),ref:t&&hi(t),scopeId:On,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:r,dynamicProps:o,dynamicChildren:null,appContext:null,ctx:Ln};return a?(Ei(s,n),128&i&&e.normalize(s)):n&&(s.shapeFlag|=V(n)?8:16),oi>0&&!l&&ei&&(s.patchFlag>0||6&i)&&32!==s.patchFlag&&ei.push(s),s}const vi=gi;function gi(e,t=null,n=null,r=0,o=null,i=!1){if(e&&e!==Hr||(e=Zo),ci(e)){const r=_i(e,t,!0);return n&&Ei(r,n),oi>0&&!i&&ei&&(6&r.shapeFlag?ei[ei.indexOf(e)]=r:ei.push(r)),r.patchFlag|=-2,r}if(qi(e)&&(e=e.__vccOpts),t){t=yi(t);let{class:e,style:n}=t;e&&!V(e)&&(t.class=f(e)),$(n)&&(Ot(n)&&!R(n)&&(n=O({},n)),t.style=l(n))}return mi(e,t,n,r,o,V(e)?1:Un(e)?128:(e=>e.__isTeleport)(e)?64:$(e)?4:j(e)?2:0,i,!0)}function yi(e){return e?Ot(e)||pi in e?O({},e):e:null}function _i(e,t,n=!1){const{props:r,ref:o,patchFlag:i,children:l}=e,a=t?Ci(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&di(a),ref:t&&t.ref?n&&o?R(o)?o.concat(hi(t)):[o,hi(t)]:hi(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ko?-1===i?16:16|i:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&_i(e.ssContent),ssFallback:e.ssFallback&&_i(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx}}function bi(e=" ",t=0){return vi(Yo,null,e,t)}function wi(e,t){const n=vi(Xo,null,e);return n.staticCount=t,n}function xi(e="",t=!1){return t?(ti(),si(Zo,null,e)):vi(Zo,null,e)}function ki(e){return null==e||"boolean"==typeof e?vi(Zo):R(e)?vi(Ko,null,e.slice()):"object"==typeof e?Si(e):vi(Yo,null,String(e))}function Si(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:_i(e)}function Ei(e,t){let n=0;const{shapeFlag:r}=e;if(null==t)t=null;else if(R(t))n=16;else if("object"==typeof t){if(65&r){const n=t.default;return void(n&&(n._c&&(n._d=!1),Ei(e,n()),n._c&&(n._d=!0)))}{n=32;const r=t._;r||pi in t?3===r&&Ln&&(1===Ln.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=Ln}}else j(t)?(t={default:t,_ctx:Ln},n=32):(t=String(t),64&r?(n=16,t=[bi(t)]):n=8);e.children=t,e.shapeFlag|=n}function Ci(...e){const t={};for(let n=0;nAi||Ln,Ii=e=>{Ai=e,e.scope.on()},Ri=()=>{Ai&&Ai.scope.off(),Ai=null};function Fi(e){return 4&e.vnode.shapeFlag}let Mi,Bi,ji=!1;function Vi(e,t=!1){ji=t;const{props:n,children:r}=e.vnode,o=Fi(e);!function(e,t,n,r=!1){const o={},i={};oe(i,pi,1),e.propsDefaults=Object.create(null),go(e,t,o,i);for(const t in e.propsOptions[0])t in o||(o[t]=void 0);n?e.props=r?o:kt(o):e.type.props?e.props=o:e.props=i,e.attrs=i}(e,n,o,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=At(t),oe(t,"_",n)):To(t,e.slots={})}else e.slots={},t&&No(e,t);oe(e.slots,pi,1)})(e,r);const i=o?function(e,t){const n=e.type;0;e.accessCache=Object.create(null),e.proxy=Pt(new Proxy(e.ctx,ro)),!1;const{setup:r}=n;if(r){const n=e.setupContext=r.length>1?Hi(e):null;Ii(e),Ne();const o=en(r,e,0,[e.props,n]);if(Le(),Ri(),U(o)){if(o.then(Ri,Ri),t)return o.then((n=>{Di(e,n,t)})).catch((t=>{nn(t,e,0)}));e.asyncDep=o}else Di(e,o,t)}else Wi(e,t)}(e,t):void 0;return ji=!1,i}function Di(e,t,n){j(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:$(t)&&(e.setupState=zt(t)),Wi(e,n)}function $i(e){Mi=e,Bi=e=>{e.render._rc&&(e.withProxy=new Proxy(e.ctx,oo))}}const Ui=()=>!Mi;function Wi(e,t,n){const r=e.type;if(!e.render){if(!t&&Mi&&!r.render){const t=r.template||co(e).template;if(t){0;const{isCustomElement:n,compilerOptions:o}=e.appContext.config,{delimiters:i,compilerOptions:l}=r,a=O(O({isCustomElement:n,delimiters:i},o),l);r.render=Mi(t,a)}}e.render=r.render||E,Bi&&Bi(e)}Ii(e),Ne(),lo(e),Le(),Ri()}function Hi(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(Oe(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}function zi(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(zt(Pt(e.exposed)),{get:(t,n)=>n in t?t[n]:n in to?to[n](e):void 0,has:(e,t)=>t in e||t in to}))}function Gi(e,t=!0){return j(e)?e.displayName||e.name:e.name||t&&e.__name}function qi(e){return j(e)&&"__vccOpts"in e}const Ji=(e,t)=>function(e,t,n=!1){let r,o;const i=j(e);return i?(r=e,o=E):(r=e.get,o=e.set),new Xt(r,o,i||!o,n)}(e,0,ji);function Ki(){return null}function Yi(){return null}function Zi(e){0}function Xi(e,t){return null}function Qi(){return tl().slots}function el(){return tl().attrs}function tl(){const e=Pi();return e.setupContext||(e.setupContext=Hi(e))}function nl(e,t){const n=R(e)?e.reduce(((e,t)=>(e[t]={},e)),{}):e;for(const e in t){const r=n[e];r?R(r)||j(r)?n[e]={type:r,default:t[e]}:r.default=t[e]:null===r&&(n[e]={default:t[e]})}return n}function rl(e,t){const n={};for(const r in e)t.includes(r)||Object.defineProperty(n,r,{enumerable:!0,get:()=>e[r]});return n}function ol(e){const t=Pi();let n=e();return Ri(),U(n)&&(n=n.catch((e=>{throw Ii(t),e}))),[n,()=>Ii(t)]}function il(e,t,n){const r=arguments.length;return 2===r?$(t)&&!R(t)?ci(t)?vi(e,null,[t]):vi(e,t):vi(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):3===r&&ci(n)&&(n=[n]),vi(e,t,n))}const ll=Symbol(""),al=()=>{{const e=Yn(ll);return e}};function sl(){return void 0}function cl(e,t,n,r){const o=n[r];if(o&&ul(o,e))return o;const i=t();return i.memo=e.slice(),n[r]=i}function ul(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let e=0;e0&&ei&&ei.push(e),!0}const fl="3.2.45",pl={createComponentInstance:Oi,setupComponent:Vi,renderComponentRoot:Mn,setCurrentRenderingInstance:An,isVNode:ci,normalizeVNode:ki},dl=null,hl=null,ml="undefined"!=typeof document?document:null,vl=ml&&ml.createElement("template"),gl={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const o=t?ml.createElementNS("http://www.w3.org/2000/svg",e):ml.createElement(e,n?{is:n}:void 0);return"select"===e&&r&&null!=r.multiple&&o.setAttribute("multiple",r.multiple),o},createText:e=>ml.createTextNode(e),createComment:e=>ml.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>ml.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,o,i){const l=n?n.previousSibling:t.lastChild;if(o&&(o===i||o.nextSibling))for(;t.insertBefore(o.cloneNode(!0),n),o!==i&&(o=o.nextSibling););else{vl.innerHTML=r?`${e} `:e;const o=vl.content;if(r){const e=o.firstChild;for(;e.firstChild;)o.appendChild(e.firstChild);o.removeChild(e)}t.insertBefore(o,n)}return[l?l.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};const yl=/\s*!important$/;function _l(e,t,n){if(R(n))n.forEach((n=>_l(e,t,n)));else if(null==n&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=function(e,t){const n=wl[t];if(n)return n;let r=Z(t);if("filter"!==r&&r in e)return wl[t]=r;r=ee(r);for(let n=0;n{if(e._vts){if(e._vts<=n.attached)return}else e._vts=Date.now();tn(function(e,t){if(R(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>t=>!t._stopped&&e&&e(t)))}return t}(e,n.value),t,5,[e])};return n.value=e,n.attached=(()=>Cl||(Tl.then((()=>Cl=0)),Cl=Date.now()))(),n}(r,o);kl(e,n,l,a)}else l&&(!function(e,t,n,r){e.removeEventListener(t,n,r)}(e,n,l,a),i[t]=void 0)}}const El=/(?:Once|Passive|Capture)$/;let Cl=0;const Tl=Promise.resolve();const Nl=/^on[a-z]/;function Ll(e,t){const n=mr(e);class r extends Pl{constructor(e){super(n,e,t)}}return r.def=n,r}const Ol=e=>Ll(e,Ra),Al="undefined"!=typeof HTMLElement?HTMLElement:class{};class Pl extends Al{constructor(e,t={},n){super(),this._def=e,this._props=t,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&n?n(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,dn((()=>{this._connected||(Ia(null,this.shadowRoot),this._instance=null)}))}_resolveDef(){this._resolved=!0;for(let e=0;e{for(const t of e)this._setAttr(t.attributeName)})).observe(this,{attributes:!0});const e=(e,t=!1)=>{const{props:n,styles:r}=e;let o;if(n&&!R(n))for(const e in n){const t=n[e];(t===Number||t&&t.type===Number)&&(e in this._props&&(this._props[e]=ie(this._props[e])),(o||(o=Object.create(null)))[Z(e)]=!0)}this._numberProps=o,t&&this._resolveProps(e),this._applyStyles(r),this._update()},t=this._def.__asyncLoader;t?t().then((t=>e(t,!0))):e(this._def)}_resolveProps(e){const{props:t}=e,n=R(t)?t:Object.keys(t||{});for(const e of Object.keys(this))"_"!==e[0]&&n.includes(e)&&this._setProp(e,this[e],!0,!1);for(const e of n.map(Z))Object.defineProperty(this,e,{get(){return this._getProp(e)},set(t){this._setProp(e,t)}})}_setAttr(e){let t=this.getAttribute(e);const n=Z(e);this._numberProps&&this._numberProps[n]&&(t=ie(t)),this._setProp(n,t,!1)}_getProp(e){return this._props[e]}_setProp(e,t,n=!0,r=!0){t!==this._props[e]&&(this._props[e]=t,r&&this._instance&&this._update(),n&&(!0===t?this.setAttribute(Q(e),""):"string"==typeof t||"number"==typeof t?this.setAttribute(Q(e),t+""):t||this.removeAttribute(Q(e))))}_update(){Ia(this._createVNode(),this.shadowRoot)}_createVNode(){const e=vi(this._def,O({},this._props));return this._instance||(e.ce=e=>{this._instance=e,e.isCE=!0;const t=(e,t)=>{this.dispatchEvent(new CustomEvent(e,{detail:t}))};e.emit=(e,...n)=>{t(e,n),Q(e)!==e&&t(Q(e),n)};let n=this;for(;n=n&&(n.parentNode||n.host);)if(n instanceof Pl){e.parent=n._instance,e.provides=n._instance.provides;break}}),e}_applyStyles(e){e&&e.forEach((e=>{const t=document.createElement("style");t.textContent=e,this.shadowRoot.appendChild(t)}))}}function Il(e="$style"){{const t=Pi();if(!t)return k;const n=t.type.__cssModules;if(!n)return k;const r=n[e];return r||k}}function Rl(e){const t=Pi();if(!t)return;const n=t.ut=(n=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach((e=>Ml(e,n)))},r=()=>{const r=e(t.proxy);Fl(t.subTree,r),n(r)};Xn(r),Ar((()=>{const e=new MutationObserver(r);e.observe(t.subTree.el.parentNode,{childList:!0}),Fr((()=>e.disconnect()))}))}function Fl(e,t){if(128&e.shapeFlag){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push((()=>{Fl(n.activeBranch,t)}))}for(;e.component;)e=e.component.subTree;if(1&e.shapeFlag&&e.el)Ml(e.el,t);else if(e.type===Ko)e.children.forEach((e=>Fl(e,t)));else if(e.type===Xo){let{el:n,anchor:r}=e;for(;n&&(Ml(n,t),n!==r);)n=n.nextSibling}}function Ml(e,t){if(1===e.nodeType){const n=e.style;for(const e in t)n.setProperty(`--${e}`,t[e])}}const Bl="transition",jl="animation",Vl=(e,{slots:t})=>il(sr,Hl(e),t);Vl.displayName="Transition";const Dl={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},$l=Vl.props=O({},sr.props,Dl),Ul=(e,t=[])=>{R(e)?e.forEach((e=>e(...t))):e&&e(...t)},Wl=e=>!!e&&(R(e)?e.some((e=>e.length>1)):e.length>1);function Hl(e){const t={};for(const n in e)n in Dl||(t[n]=e[n]);if(!1===e.css)return t;const{name:n="v",type:r,duration:o,enterFromClass:i=`${n}-enter-from`,enterActiveClass:l=`${n}-enter-active`,enterToClass:a=`${n}-enter-to`,appearFromClass:s=i,appearActiveClass:c=l,appearToClass:u=a,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:p=`${n}-leave-active`,leaveToClass:d=`${n}-leave-to`}=e,h=function(e){if(null==e)return null;if($(e))return[zl(e.enter),zl(e.leave)];{const t=zl(e);return[t,t]}}(o),m=h&&h[0],v=h&&h[1],{onBeforeEnter:g,onEnter:y,onEnterCancelled:_,onLeave:b,onLeaveCancelled:w,onBeforeAppear:x=g,onAppear:k=y,onAppearCancelled:S=_}=t,E=(e,t,n)=>{ql(e,t?u:a),ql(e,t?c:l),n&&n()},C=(e,t)=>{e._isLeaving=!1,ql(e,f),ql(e,d),ql(e,p),t&&t()},T=e=>(t,n)=>{const o=e?k:y,l=()=>E(t,e,n);Ul(o,[t,l]),Jl((()=>{ql(t,e?s:i),Gl(t,e?u:a),Wl(o)||Yl(t,r,m,l)}))};return O(t,{onBeforeEnter(e){Ul(g,[e]),Gl(e,i),Gl(e,l)},onBeforeAppear(e){Ul(x,[e]),Gl(e,s),Gl(e,c)},onEnter:T(!1),onAppear:T(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>C(e,t);Gl(e,f),ea(),Gl(e,p),Jl((()=>{e._isLeaving&&(ql(e,f),Gl(e,d),Wl(b)||Yl(e,r,v,n))})),Ul(b,[e,n])},onEnterCancelled(e){E(e,!1),Ul(_,[e])},onAppearCancelled(e){E(e,!0),Ul(S,[e])},onLeaveCancelled(e){C(e),Ul(w,[e])}})}function zl(e){return ie(e)}function Gl(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function ql(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function Jl(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let Kl=0;function Yl(e,t,n,r){const o=e._endId=++Kl,i=()=>{o===e._endId&&r()};if(n)return setTimeout(i,n);const{type:l,timeout:a,propCount:s}=Zl(e,t);if(!l)return r();const c=l+"end";let u=0;const f=()=>{e.removeEventListener(c,p),i()},p=t=>{t.target===e&&++u>=s&&f()};setTimeout((()=>{u(n[e]||"").split(", "),o=r("transitionDelay"),i=r("transitionDuration"),l=Xl(o,i),a=r("animationDelay"),s=r("animationDuration"),c=Xl(a,s);let u=null,f=0,p=0;t===Bl?l>0&&(u=Bl,f=l,p=i.length):t===jl?c>0&&(u=jl,f=c,p=s.length):(f=Math.max(l,c),u=f>0?l>c?Bl:jl:null,p=u?u===Bl?i.length:s.length:0);return{type:u,timeout:f,propCount:p,hasTransform:u===Bl&&/\b(transform|all)(,|$)/.test(r("transitionProperty").toString())}}function Xl(e,t){for(;e.lengthQl(t)+Ql(e[n]))))}function Ql(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function ea(){return document.body.offsetHeight}const ta=new WeakMap,na=new WeakMap,ra={name:"TransitionGroup",props:O({},$l,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=Pi(),r=lr();let o,i;return Ir((()=>{if(!o.length)return;const t=e.moveClass||`${e.name||"v"}-move`;if(!function(e,t,n){const r=e.cloneNode();e._vtc&&e._vtc.forEach((e=>{e.split(/\s+/).forEach((e=>e&&r.classList.remove(e)))}));n.split(/\s+/).forEach((e=>e&&r.classList.add(e))),r.style.display="none";const o=1===t.nodeType?t:t.parentNode;o.appendChild(r);const{hasTransform:i}=Zl(r);return o.removeChild(r),i}(o[0].el,n.vnode.el,t))return;o.forEach(oa),o.forEach(ia);const r=o.filter(la);ea(),r.forEach((e=>{const n=e.el,r=n.style;Gl(n,t),r.transform=r.webkitTransform=r.transitionDuration="";const o=n._moveCb=e=>{e&&e.target!==n||e&&!/transform$/.test(e.propertyName)||(n.removeEventListener("transitionend",o),n._moveCb=null,ql(n,t))};n.addEventListener("transitionend",o)}))})),()=>{const l=At(e),a=Hl(l);let s=l.tag||Ko;o=i,i=t.default?hr(t.default()):[];for(let e=0;e{const t=e.props["onUpdate:modelValue"]||!1;return R(t)?e=>re(t,e):t};function sa(e){e.target.composing=!0}function ca(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const ua={created(e,{modifiers:{lazy:t,trim:n,number:r}},o){e._assign=aa(o);const i=r||o.props&&"number"===o.props.type;kl(e,t?"change":"input",(t=>{if(t.target.composing)return;let r=e.value;n&&(r=r.trim()),i&&(r=ie(r)),e._assign(r)})),n&&kl(e,"change",(()=>{e.value=e.value.trim()})),t||(kl(e,"compositionstart",sa),kl(e,"compositionend",ca),kl(e,"change",ca))},mounted(e,{value:t}){e.value=null==t?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:o}},i){if(e._assign=aa(i),e.composing)return;if(document.activeElement===e&&"range"!==e.type){if(n)return;if(r&&e.value.trim()===t)return;if((o||"number"===e.type)&&ie(e.value)===t)return}const l=null==t?"":t;e.value!==l&&(e.value=l)}},fa={deep:!0,created(e,t,n){e._assign=aa(n),kl(e,"change",(()=>{const t=e._modelValue,n=va(e),r=e.checked,o=e._assign;if(R(t)){const e=b(t,n),i=-1!==e;if(r&&!i)o(t.concat(n));else if(!r&&i){const n=[...t];n.splice(e,1),o(n)}}else if(M(t)){const e=new Set(t);r?e.add(n):e.delete(n),o(e)}else o(ga(e,r))}))},mounted:pa,beforeUpdate(e,t,n){e._assign=aa(n),pa(e,t,n)}};function pa(e,{value:t,oldValue:n},r){e._modelValue=t,R(t)?e.checked=b(t,r.props.value)>-1:M(t)?e.checked=t.has(r.props.value):t!==n&&(e.checked=_(t,ga(e,!0)))}const da={created(e,{value:t},n){e.checked=_(t,n.props.value),e._assign=aa(n),kl(e,"change",(()=>{e._assign(va(e))}))},beforeUpdate(e,{value:t,oldValue:n},r){e._assign=aa(r),t!==n&&(e.checked=_(t,r.props.value))}},ha={deep:!0,created(e,{value:t,modifiers:{number:n}},r){const o=M(t);kl(e,"change",(()=>{const t=Array.prototype.filter.call(e.options,(e=>e.selected)).map((e=>n?ie(va(e)):va(e)));e._assign(e.multiple?o?new Set(t):t:t[0])})),e._assign=aa(r)},mounted(e,{value:t}){ma(e,t)},beforeUpdate(e,t,n){e._assign=aa(n)},updated(e,{value:t}){ma(e,t)}};function ma(e,t){const n=e.multiple;if(!n||R(t)||M(t)){for(let r=0,o=e.options.length;r-1:o.selected=t.has(i);else if(_(va(o),t))return void(e.selectedIndex!==r&&(e.selectedIndex=r))}n||-1===e.selectedIndex||(e.selectedIndex=-1)}}function va(e){return"_value"in e?e._value:e.value}function ga(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const ya={created(e,t,n){ba(e,t,n,null,"created")},mounted(e,t,n){ba(e,t,n,null,"mounted")},beforeUpdate(e,t,n,r){ba(e,t,n,r,"beforeUpdate")},updated(e,t,n,r){ba(e,t,n,r,"updated")}};function _a(e,t){switch(e){case"SELECT":return ha;case"TEXTAREA":return ua;default:switch(t){case"checkbox":return fa;case"radio":return da;default:return ua}}}function ba(e,t,n,r,o){const i=_a(e.tagName,n.props&&n.props.type)[o];i&&i(e,t,n,r)}const wa=["ctrl","shift","alt","meta"],xa={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>wa.some((n=>e[`${n}Key`]&&!t.includes(n)))},ka=(e,t)=>(n,...r)=>{for(let e=0;en=>{if(!("key"in n))return;const r=Q(n.key);return t.some((e=>e===r||Sa[e]===r))?e(n):void 0},Ca={beforeMount(e,{value:t},{transition:n}){e._vod="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):Ta(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),Ta(e,!0),r.enter(e)):r.leave(e,(()=>{Ta(e,!1)})):Ta(e,t))},beforeUnmount(e,{value:t}){Ta(e,t)}};function Ta(e,t){e.style.display=t?e._vod:"none"}const Na=O({patchProp:(e,t,n,r,o=!1,i,l,a,s)=>{"class"===t?function(e,t,n){const r=e._vtc;r&&(t=(t?[t,...r]:[...r]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,r,o):"style"===t?function(e,t,n){const r=e.style,o=V(n);if(n&&!o){for(const e in n)_l(r,e,n[e]);if(t&&!V(t))for(const e in t)null==n[e]&&_l(r,e,"")}else{const i=r.display;o?t!==n&&(r.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(r.display=i)}}(e,n,r):N(t)?L(t)||Sl(e,t,0,r,l):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,r){if(r)return"innerHTML"===t||"textContent"===t||!!(t in e&&Nl.test(t)&&j(n));if("spellcheck"===t||"draggable"===t||"translate"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if(Nl.test(t)&&V(n))return!1;return t in e}(e,t,r,o))?function(e,t,n,r,o,i,l){if("innerHTML"===t||"textContent"===t)return r&&l(r,o,i),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const r=null==n?"":n;return e.value===r&&"OPTION"!==e.tagName||(e.value=r),void(null==n&&e.removeAttribute(t))}let a=!1;if(""===n||null==n){const r=typeof e[t];"boolean"===r?n=y(n):null==n&&"string"===r?(n="",a=!0):"number"===r&&(n=0,a=!0)}try{e[t]=n}catch(e){}a&&e.removeAttribute(t)}(e,t,r,i,l,a,s):("true-value"===t?e._trueValue=r:"false-value"===t&&(e._falseValue=r),function(e,t,n,r,o){if(r&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(xl,t.slice(6,t.length)):e.setAttributeNS(xl,t,n);else{const r=g(t);null==n||r&&!y(n)?e.removeAttribute(t):e.setAttribute(t,r?"":n)}}(e,t,r,o))}},gl);let La,Oa=!1;function Aa(){return La||(La=jo(Na))}function Pa(){return La=Oa?La:Vo(Na),Oa=!0,La}const Ia=(...e)=>{Aa().render(...e)},Ra=(...e)=>{Pa().hydrate(...e)},Fa=(...e)=>{const t=Aa().createApp(...e);const{mount:n}=t;return t.mount=e=>{const r=Ba(e);if(!r)return;const o=t._component;j(o)||o.render||o.template||(o.template=r.innerHTML),r.innerHTML="";const i=n(r,!1,r instanceof SVGElement);return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t},Ma=(...e)=>{const t=Pa().createApp(...e);const{mount:n}=t;return t.mount=e=>{const t=Ba(e);if(t)return n(t,!0,t instanceof SVGElement)},t};function Ba(e){if(V(e)){return document.querySelector(e)}return e}let ja=!1;const Va=()=>{ja||(ja=!0,ua.getSSRProps=({value:e})=>({value:e}),da.getSSRProps=({value:e},t)=>{if(t.props&&_(t.props.value,e))return{checked:!0}},fa.getSSRProps=({value:e},t)=>{if(R(e)){if(t.props&&b(e,t.props.value)>-1)return{checked:!0}}else if(M(e)){if(t.props&&e.has(t.props.value))return{checked:!0}}else if(e)return{checked:!0}},ya.getSSRProps=(e,t)=>{if("string"!=typeof t.type)return;const n=_a(t.type.toUpperCase(),t.props&&t.props.type);return n.getSSRProps?n.getSSRProps(e,t):void 0},Ca.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}})};function Da(e){throw e}function $a(e){}function Ua(e,t,n,r){const o=new SyntaxError(String(e));return o.code=e,o.loc=t,o}const Wa=Symbol(""),Ha=Symbol(""),za=Symbol(""),Ga=Symbol(""),qa=Symbol(""),Ja=Symbol(""),Ka=Symbol(""),Ya=Symbol(""),Za=Symbol(""),Xa=Symbol(""),Qa=Symbol(""),es=Symbol(""),ts=Symbol(""),ns=Symbol(""),rs=Symbol(""),os=Symbol(""),is=Symbol(""),ls=Symbol(""),as=Symbol(""),ss=Symbol(""),cs=Symbol(""),us=Symbol(""),fs=Symbol(""),ps=Symbol(""),ds=Symbol(""),hs=Symbol(""),ms=Symbol(""),vs=Symbol(""),gs=Symbol(""),ys=Symbol(""),_s=Symbol(""),bs=Symbol(""),ws=Symbol(""),xs=Symbol(""),ks=Symbol(""),Ss=Symbol(""),Es=Symbol(""),Cs=Symbol(""),Ts=Symbol(""),Ns={[Wa]:"Fragment",[Ha]:"Teleport",[za]:"Suspense",[Ga]:"KeepAlive",[qa]:"BaseTransition",[Ja]:"openBlock",[Ka]:"createBlock",[Ya]:"createElementBlock",[Za]:"createVNode",[Xa]:"createElementVNode",[Qa]:"createCommentVNode",[es]:"createTextVNode",[ts]:"createStaticVNode",[ns]:"resolveComponent",[rs]:"resolveDynamicComponent",[os]:"resolveDirective",[is]:"resolveFilter",[ls]:"withDirectives",[as]:"renderList",[ss]:"renderSlot",[cs]:"createSlots",[us]:"toDisplayString",[fs]:"mergeProps",[ps]:"normalizeClass",[ds]:"normalizeStyle",[hs]:"normalizeProps",[ms]:"guardReactiveProps",[vs]:"toHandlers",[gs]:"camelize",[ys]:"capitalize",[_s]:"toHandlerKey",[bs]:"setBlockTracking",[ws]:"pushScopeId",[xs]:"popScopeId",[ks]:"withCtx",[Ss]:"unref",[Es]:"isRef",[Cs]:"withMemo",[Ts]:"isMemoSame"};const Ls={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function Os(e,t,n,r,o,i,l,a=!1,s=!1,c=!1,u=Ls){return e&&(a?(e.helper(Ja),e.helper(ic(e.inSSR,c))):e.helper(oc(e.inSSR,c)),l&&e.helper(ls)),{type:13,tag:t,props:n,children:r,patchFlag:o,dynamicProps:i,directives:l,isBlock:a,disableTracking:s,isComponent:c,loc:u}}function As(e,t=Ls){return{type:17,loc:t,elements:e}}function Ps(e,t=Ls){return{type:15,loc:t,properties:e}}function Is(e,t){return{type:16,loc:Ls,key:V(e)?Rs(e,!0):e,value:t}}function Rs(e,t=!1,n=Ls,r=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:r}}function Fs(e,t=Ls){return{type:8,loc:t,children:e}}function Ms(e,t=[],n=Ls){return{type:14,loc:n,callee:e,arguments:t}}function Bs(e,t,n=!1,r=!1,o=Ls){return{type:18,params:e,returns:t,newline:n,isSlot:r,loc:o}}function js(e,t,n,r=!0){return{type:19,test:e,consequent:t,alternate:n,newline:r,loc:Ls}}const Vs=e=>4===e.type&&e.isStatic,Ds=(e,t)=>e===t||e===Q(t);function $s(e){return Ds(e,"Teleport")?Ha:Ds(e,"Suspense")?za:Ds(e,"KeepAlive")?Ga:Ds(e,"BaseTransition")?qa:void 0}const Us=/^\d|[^\$\w]/,Ws=e=>!Us.test(e),Hs=/[A-Za-z_$\xA0-\uFFFF]/,zs=/[\.\?\w$\xA0-\uFFFF]/,Gs=/\s+[.[]\s*|\s*[.[]\s+/g,qs=e=>{e=e.trim().replace(Gs,(e=>e.trim()));let t=0,n=[],r=0,o=0,i=null;for(let l=0;l4===e.key.type&&e.key.content===r))}return n}function uc(e,t){return`_${t}_${e.replace(/[^\w]/g,((t,n)=>"-"===t?"_":e.charCodeAt(n).toString()))}`}function fc(e,{helper:t,removeHelper:n,inSSR:r}){e.isBlock||(e.isBlock=!0,n(oc(r,e.isComponent)),t(Ja),t(ic(r,e.isComponent)))}function pc(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,r=n&&n[e];return"MODE"===e?r||3:r}function dc(e,t){const n=pc("MODE",t),r=pc(e,t);return 3===n?!0===r:!1!==r}function hc(e,t,n,...r){return dc(e,t)}const mc=/&(gt|lt|amp|apos|quot);/g,vc={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},gc={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:C,isPreTag:C,isCustomElement:C,decodeEntities:e=>e.replace(mc,((e,t)=>vc[t])),onError:Da,onWarn:$a,comments:!1};function yc(e,t={}){const n=function(e,t){const n=O({},gc);let r;for(r in t)n[r]=void 0===t[r]?gc[r]:t[r];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),r=Pc(n);return function(e,t=Ls){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}(_c(n,0,[]),Ic(n,r))}function _c(e,t,n){const r=Rc(n),o=r?r.ns:0,i=[];for(;!Dc(e,t,n);){const l=e.source;let a;if(0===t||1===t)if(!e.inVPre&&Fc(l,e.options.delimiters[0]))a=Lc(e,t);else if(0===t&&"<"===l[0])if(1===l.length)Vc(e,5,1);else if("!"===l[1])Fc(l,"\x3c!--")?a=xc(e):Fc(l,""===l[2]){Vc(e,14,2),Mc(e,3);continue}if(/[a-z]/i.test(l[2])){Vc(e,23),Cc(e,1,r);continue}Vc(e,12,2),a=kc(e)}else/[a-z]/i.test(l[1])?(a=Sc(e,n),dc("COMPILER_NATIVE_TEMPLATE",e)&&a&&"template"===a.tag&&!a.props.some((e=>7===e.type&&Ec(e.name)))&&(a=a.children)):"?"===l[1]?(Vc(e,21,1),a=kc(e)):Vc(e,12,1);if(a||(a=Oc(e,t)),R(a))for(let e=0;e/.exec(e.source);if(r){r.index<=3&&Vc(e,0),r[1]&&Vc(e,10),n=e.source.slice(4,r.index);const t=e.source.slice(0,r.index);let o=1,i=0;for(;-1!==(i=t.indexOf("\x3c!--",o));)Mc(e,i-o+1),i+4");return-1===o?(r=e.source.slice(n),Mc(e,e.source.length)):(r=e.source.slice(n,o),Mc(e,o+1)),{type:3,content:r,loc:Ic(e,t)}}function Sc(e,t){const n=e.inPre,r=e.inVPre,o=Rc(t),i=Cc(e,0,o),l=e.inPre&&!n,a=e.inVPre&&!r;if(i.isSelfClosing||e.options.isVoidTag(i.tag))return l&&(e.inPre=!1),a&&(e.inVPre=!1),i;t.push(i);const s=e.options.getTextMode(i,o),c=_c(e,s,t);t.pop();{const t=i.props.find((e=>6===e.type&&"inline-template"===e.name));if(t&&hc("COMPILER_INLINE_TEMPLATE",e,t.loc)){const n=Ic(e,i.loc.end);t.value={type:2,content:n.source,loc:n}}}if(i.children=c,$c(e.source,i.tag))Cc(e,1,o);else if(Vc(e,24,0,i.loc.start),0===e.source.length&&"script"===i.tag.toLowerCase()){const t=c[0];t&&Fc(t.loc.source,"\x3c!--")&&Vc(e,8)}return i.loc=Ic(e,i.loc.start),l&&(e.inPre=!1),a&&(e.inVPre=!1),i}const Ec=o("if,else,else-if,for,slot");function Cc(e,t,n){const r=Pc(e),o=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),i=o[1],l=e.options.getNamespace(i,n);Mc(e,o[0].length),Bc(e);const a=Pc(e),s=e.source;e.options.isPreTag(i)&&(e.inPre=!0);let c=Tc(e,t);0===t&&!e.inVPre&&c.some((e=>7===e.type&&"pre"===e.name))&&(e.inVPre=!0,O(e,a),e.source=s,c=Tc(e,t).filter((e=>"v-pre"!==e.name)));let u=!1;if(0===e.source.length?Vc(e,9):(u=Fc(e.source,"/>"),1===t&&u&&Vc(e,4),Mc(e,u?2:1)),1===t)return;let f=0;return e.inVPre||("slot"===i?f=2:"template"===i?c.some((e=>7===e.type&&Ec(e.name)))&&(f=3):function(e,t,n){const r=n.options;if(r.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||$s(e)||r.isBuiltInComponent&&r.isBuiltInComponent(e)||r.isNativeTag&&!r.isNativeTag(e))return!0;for(let e=0;e0&&!Fc(e.source,">")&&!Fc(e.source,"/>");){if(Fc(e.source,"/")){Vc(e,22),Mc(e,1),Bc(e);continue}1===t&&Vc(e,3);const o=Nc(e,r);6===o.type&&o.value&&"class"===o.name&&(o.value.content=o.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(o),/^[^\t\r\n\f />]/.test(e.source)&&Vc(e,15),Bc(e)}return n}function Nc(e,t){const n=Pc(e),r=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(r)&&Vc(e,2),t.add(r),"="===r[0]&&Vc(e,19);{const t=/["'<]/g;let n;for(;n=t.exec(r);)Vc(e,17,n.index)}let o;Mc(e,r.length),/^[\t\r\n\f ]*=/.test(e.source)&&(Bc(e),Mc(e,1),Bc(e),o=function(e){const t=Pc(e);let n;const r=e.source[0],o='"'===r||"'"===r;if(o){Mc(e,1);const t=e.source.indexOf(r);-1===t?n=Ac(e,e.source.length,4):(n=Ac(e,t,4),Mc(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const r=/["'<=`]/g;let o;for(;o=r.exec(t[0]);)Vc(e,18,o.index);n=Ac(e,t[0].length,4)}return{content:n,isQuoted:o,loc:Ic(e,t)}}(e),o||Vc(e,13));const i=Ic(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(r)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(r);let l,a=Fc(r,"."),s=t[1]||(a||Fc(r,":")?"bind":Fc(r,"@")?"on":"slot");if(t[2]){const o="slot"===s,i=r.lastIndexOf(t[2]),a=Ic(e,jc(e,n,i),jc(e,n,i+t[2].length+(o&&t[3]||"").length));let c=t[2],u=!0;c.startsWith("[")?(u=!1,c.endsWith("]")?c=c.slice(1,c.length-1):(Vc(e,27),c=c.slice(1))):o&&(c+=t[3]||""),l={type:4,content:c,isStatic:u,constType:u?3:0,loc:a}}if(o&&o.isQuoted){const e=o.loc;e.start.offset++,e.start.column++,e.end=Ks(e.start,o.content),e.source=e.source.slice(1,-1)}const c=t[3]?t[3].slice(1).split("."):[];return a&&c.push("prop"),"bind"===s&&l&&c.includes("sync")&&hc("COMPILER_V_BIND_SYNC",e,0,l.loc.source)&&(s="model",c.splice(c.indexOf("sync"),1)),{type:7,name:s,exp:o&&{type:4,content:o.content,isStatic:!1,constType:0,loc:o.loc},arg:l,modifiers:c,loc:i}}return!e.inVPre&&Fc(r,"v-")&&Vc(e,26),{type:6,name:r,value:o&&{type:2,content:o.content,loc:o.loc},loc:i}}function Lc(e,t){const[n,r]=e.options.delimiters,o=e.source.indexOf(r,n.length);if(-1===o)return void Vc(e,25);const i=Pc(e);Mc(e,n.length);const l=Pc(e),a=Pc(e),s=o-n.length,c=e.source.slice(0,s),u=Ac(e,s,t),f=u.trim(),p=u.indexOf(f);p>0&&Ys(l,c,p);return Ys(a,c,s-(u.length-f.length-p)),Mc(e,r.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:f,loc:Ic(e,l,a)},loc:Ic(e,i)}}function Oc(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let r=e.source.length;for(let t=0;to&&(r=o)}const o=Pc(e);return{type:2,content:Ac(e,r,t),loc:Ic(e,o)}}function Ac(e,t,n){const r=e.source.slice(0,t);return Mc(e,t),2!==n&&3!==n&&r.includes("&")?e.options.decodeEntities(r,4===n):r}function Pc(e){const{column:t,line:n,offset:r}=e;return{column:t,line:n,offset:r}}function Ic(e,t,n){return{start:t,end:n=n||Pc(e),source:e.originalSource.slice(t.offset,n.offset)}}function Rc(e){return e[e.length-1]}function Fc(e,t){return e.startsWith(t)}function Mc(e,t){const{source:n}=e;Ys(e,n,t),e.source=n.slice(t)}function Bc(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&Mc(e,t[0].length)}function jc(e,t,n){return Ks(t,e.originalSource.slice(t.offset,n),n)}function Vc(e,t,n,r=Pc(e)){n&&(r.offset+=n,r.column+=n),e.options.onError(Ua(t,{start:r,end:r,source:""}))}function Dc(e,t,n){const r=e.source;switch(t){case 0:if(Fc(r,""))for(let e=n.length-1;e>=0;--e)if($c(r,n[e].tag))return!0;break;case 1:case 2:{const e=Rc(n);if(e&&$c(r,e.tag))return!0;break}case 3:if(Fc(r,"]]>"))return!0}return!r}function $c(e,t){return Fc(e,"")&&e.slice(2,2+t.length).toLowerCase()===t.toLowerCase()&&/[\t\r\n\f />]/.test(e[2+t.length]||">")}function Uc(e,t){Hc(e,t,Wc(e,e.children[0]))}function Wc(e,t){const{children:n}=e;return 1===n.length&&1===t.type&&!rc(t)}function Hc(e,t,n=!1){const{children:r}=e,o=r.length;let i=0;for(let e=0;e0){if(e>=2){o.codegenNode.patchFlag="-1",o.codegenNode=t.hoist(o.codegenNode),i++;continue}}else{const e=o.codegenNode;if(13===e.type){const n=Yc(e);if((!n||512===n||1===n)&&Jc(o,t)>=2){const n=Kc(o);n&&(e.props=t.hoist(n))}e.dynamicProps&&(e.dynamicProps=t.hoist(e.dynamicProps))}}}if(1===o.type){const e=1===o.tagType;e&&t.scopes.vSlot++,Hc(o,t),e&&t.scopes.vSlot--}else if(11===o.type)Hc(o,t,1===o.children.length);else if(9===o.type)for(let e=0;e1)for(let o=0;o`_${Ns[S.helper(e)]}`,replaceNode(e){S.parent.children[S.childIndex]=S.currentNode=e},removeNode(e){const t=S.parent.children,n=e?t.indexOf(e):S.currentNode?S.childIndex:-1;e&&e!==S.currentNode?S.childIndex>n&&(S.childIndex--,S.onNodeRemoved()):(S.currentNode=null,S.onNodeRemoved()),S.parent.children.splice(n,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){V(e)&&(e=Rs(e)),S.hoists.push(e);const t=Rs(`_hoisted_${S.hoists.length}`,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>function(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:Ls}}(S.cached++,e,t)};return S.filters=new Set,S}function Xc(e,t){const n=Zc(e,t);Qc(e,n),t.hoistStatic&&Uc(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:r}=e;if(1===r.length){const n=r[0];if(Wc(e,n)&&n.codegenNode){const r=n.codegenNode;13===r.type&&fc(r,t),e.codegenNode=r}else e.codegenNode=n}else if(r.length>1){let r=64;0,e.codegenNode=Os(t,n(Wa),void 0,e.children,r+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function Qc(e,t){t.currentNode=e;const{nodeTransforms:n}=t,r=[];for(let o=0;o{n--};for(;nt===e:t=>e.test(t);return(e,r)=>{if(1===e.type){const{props:o}=e;if(3===e.tagType&&o.some(tc))return;const i=[];for(let l=0;l`${Ns[e]}: _${Ns[e]}`;function ru(e,t={}){const n=function(e,{mode:t="function",prefixIdentifiers:n="module"===t,sourceMap:r=!1,filename:o="template.vue.html",scopeId:i=null,optimizeImports:l=!1,runtimeGlobalName:a="Vue",runtimeModuleName:s="vue",ssrRuntimeModuleName:c="vue/server-renderer",ssr:u=!1,isTS:f=!1,inSSR:p=!1}){const d={mode:t,prefixIdentifiers:n,sourceMap:r,filename:o,scopeId:i,optimizeImports:l,runtimeGlobalName:a,runtimeModuleName:s,ssrRuntimeModuleName:c,ssr:u,isTS:f,inSSR:p,source:e.loc.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper:e=>`_${Ns[e]}`,push(e,t){d.code+=e},indent(){h(++d.indentLevel)},deindent(e=!1){e?--d.indentLevel:h(--d.indentLevel)},newline(){h(d.indentLevel)}};function h(e){d.push("\n"+" ".repeat(e))}return d}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:r,push:o,prefixIdentifiers:i,indent:l,deindent:a,newline:s,scopeId:c,ssr:u}=n,f=e.helpers.length>0,p=!i&&"module"!==r;!function(e,t){const{ssr:n,prefixIdentifiers:r,push:o,newline:i,runtimeModuleName:l,runtimeGlobalName:a,ssrRuntimeModuleName:s}=t,c=a;if(e.helpers.length>0&&(o(`const _Vue = ${c}\n`),e.hoists.length)){o(`const { ${[Za,Xa,Qa,es,ts].filter((t=>e.helpers.includes(t))).map(nu).join(", ")} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:r,helper:o,scopeId:i,mode:l}=t;r();for(let o=0;o0)&&s()),e.directives.length&&(ou(e.directives,"directive",n),e.temps>0&&s()),e.filters&&e.filters.length&&(s(),ou(e.filters,"filter",n),s()),e.temps>0){o("let ");for(let t=0;t0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(o("\n"),s()),u||o("return "),e.codegenNode?au(e.codegenNode,n):o("null"),p&&(a(),o("}")),a(),o("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function ou(e,t,{helper:n,push:r,newline:o,isTS:i}){const l=n("filter"===t?is:"component"===t?ns:os);for(let n=0;n3||!1;t.push("["),n&&t.indent(),lu(e,t,n),n&&t.deindent(),t.push("]")}function lu(e,t,n=!1,r=!0){const{push:o,newline:i}=t;for(let l=0;le||"null"))}([i,l,a,s,c]),t),n(")"),f&&n(")");u&&(n(", "),au(u,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:r,pure:o}=t,i=V(e.callee)?e.callee:r(e.callee);o&&n(tu);n(i+"(",e),lu(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:r,deindent:o,newline:i}=t,{properties:l}=e;if(!l.length)return void n("{}",e);const a=l.length>1||!1;n(a?"{":"{ "),a&&r();for(let e=0;e "),(s||a)&&(n("{"),r());l?(s&&n("return "),R(l)?iu(l,t):au(l,t)):a&&au(a,t);(s||a)&&(o(),n("}"));c&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:r,alternate:o,newline:i}=e,{push:l,indent:a,deindent:s,newline:c}=t;if(4===n.type){const e=!Ws(n.content);e&&l("("),su(n,t),e&&l(")")}else l("("),au(n,t),l(")");i&&a(),t.indentLevel++,i||l(" "),l("? "),au(r,t),t.indentLevel--,i&&c(),i||l(" "),l(": ");const u=19===o.type;u||t.indentLevel++;au(o,t),u||t.indentLevel--;i&&s(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:r,indent:o,deindent:i,newline:l}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(o(),n(`${r(bs)}(-1),`),l());n(`_cache[${e.index}] = `),au(e.value,t),e.isVNode&&(n(","),l(),n(`${r(bs)}(1),`),l(),n(`_cache[${e.index}]`),i());n(")")}(e,t);break;case 21:lu(e.body,t,!0,!1)}}function su(e,t){const{content:n,isStatic:r}=e;t.push(r?JSON.stringify(n):n,e)}function cu(e,t){for(let n=0;nfunction(e,t,n,r){if(!("else"===t.name||t.exp&&t.exp.content.trim())){const r=t.exp?t.exp.loc:e.loc;n.onError(Ua(28,t.loc)),t.exp=Rs("true",!1,r)}0;if("if"===t.name){const o=pu(e,t),i={type:9,loc:e.loc,branches:[o]};if(n.replaceNode(i),r)return r(i,o,!0)}else{const o=n.parent.children;let i=o.indexOf(e);for(;i-- >=-1;){const l=o[i];if(l&&3===l.type)n.removeNode(l);else{if(!l||2!==l.type||l.content.trim().length){if(l&&9===l.type){"else-if"===t.name&&void 0===l.branches[l.branches.length-1].condition&&n.onError(Ua(30,e.loc)),n.removeNode();const o=pu(e,t);0,l.branches.push(o);const i=r&&r(l,o,!1);Qc(o,n),i&&i(),n.currentNode=null}else n.onError(Ua(30,e.loc));break}n.removeNode(l)}}}}(e,t,n,((e,t,r)=>{const o=n.parent.children;let i=o.indexOf(e),l=0;for(;i-- >=0;){const e=o[i];e&&9===e.type&&(l+=e.branches.length)}return()=>{if(r)e.codegenNode=du(t,l,n);else{const r=function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode);r.alternate=du(t,l+e.branches.length-1,n)}}}))));function pu(e,t){const n=3===e.tagType;return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:n&&!Zs(e,"for")?e.children:[e],userKey:Xs(e,"key"),isTemplateIf:n}}function du(e,t,n){return e.condition?js(e.condition,hu(e,t,n),Ms(n.helper(Qa),['""',"true"])):hu(e,t,n)}function hu(e,t,n){const{helper:r}=n,o=Is("key",Rs(`${t}`,!1,Ls,2)),{children:i}=e,l=i[0];if(1!==i.length||1!==l.type){if(1===i.length&&11===l.type){const e=l.codegenNode;return sc(e,o,n),e}{let t=64;return Os(n,r(Wa),Ps([o]),i,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=l.codegenNode,t=14===(a=e).type&&a.callee===Cs?a.arguments[1].returns:a;return 13===t.type&&fc(t,n),sc(t,o,n),e}var a}const mu=eu("for",((e,t,n)=>{const{helper:r,removeHelper:o}=n;return function(e,t,n,r){if(!t.exp)return void n.onError(Ua(31,t.loc));const o=_u(t.exp,n);if(!o)return void n.onError(Ua(32,t.loc));const{addIdentifiers:i,removeIdentifiers:l,scopes:a}=n,{source:s,value:c,key:u,index:f}=o,p={type:11,loc:t.loc,source:s,valueAlias:c,keyAlias:u,objectIndexAlias:f,parseResult:o,children:nc(e)?e.children:[e]};n.replaceNode(p),a.vFor++;const d=r&&r(p);return()=>{a.vFor--,d&&d()}}(e,t,n,(t=>{const i=Ms(r(as),[t.source]),l=nc(e),a=Zs(e,"memo"),s=Xs(e,"key"),c=s&&(6===s.type?Rs(s.value.content,!0):s.exp),u=s?Is("key",c):null,f=4===t.source.type&&t.source.constType>0,p=f?64:s?128:256;return t.codegenNode=Os(n,r(Wa),void 0,i,p+"",void 0,void 0,!0,!f,!1,e.loc),()=>{let s;const{children:p}=t;const d=1!==p.length||1!==p[0].type,h=rc(e)?e:l&&1===e.children.length&&rc(e.children[0])?e.children[0]:null;if(h?(s=h.codegenNode,l&&u&&sc(s,u,n)):d?s=Os(n,r(Wa),u?Ps([u]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(s=p[0].codegenNode,l&&u&&sc(s,u,n),s.isBlock!==!f&&(s.isBlock?(o(Ja),o(ic(n.inSSR,s.isComponent))):o(oc(n.inSSR,s.isComponent))),s.isBlock=!f,s.isBlock?(r(Ja),r(ic(n.inSSR,s.isComponent))):r(oc(n.inSSR,s.isComponent))),a){const e=Bs(wu(t.parseResult,[Rs("_cached")]));e.body={type:21,body:[Fs(["const _memo = (",a.exp,")"]),Fs(["if (_cached",...c?[" && _cached.key === ",c]:[],` && ${n.helperString(Ts)}(_cached, _memo)) return _cached`]),Fs(["const _item = ",s]),Rs("_item.memo = _memo"),Rs("return _item")],loc:Ls},i.arguments.push(e,Rs("_cache"),Rs(String(n.cached++)))}else i.arguments.push(Bs(wu(t.parseResult),s,!0))}}))}));const vu=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,gu=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,yu=/^\(|\)$/g;function _u(e,t){const n=e.loc,r=e.content,o=r.match(vu);if(!o)return;const[,i,l]=o,a={source:bu(n,l.trim(),r.indexOf(l,i.length)),value:void 0,key:void 0,index:void 0};let s=i.trim().replace(yu,"").trim();const c=i.indexOf(s),u=s.match(gu);if(u){s=s.replace(gu,"").trim();const e=u[1].trim();let t;if(e&&(t=r.indexOf(e,c+s.length),a.key=bu(n,e,t)),u[2]){const o=u[2].trim();o&&(a.index=bu(n,o,r.indexOf(o,a.key?t+e.length:c+s.length)))}}return s&&(a.value=bu(n,s,c)),a}function bu(e,t,n){return Rs(t,!1,Js(e,n,t.length))}function wu({value:e,key:t,index:n},r=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map(((e,t)=>e||Rs("_".repeat(t+1),!1)))}([e,t,n,...r])}const xu=Rs("undefined",!1),ku=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=Zs(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},Su=(e,t,n)=>Bs(e,t,!1,!0,t.length?t[0].loc:n);function Eu(e,t,n=Su){t.helper(ks);const{children:r,loc:o}=e,i=[],l=[];let a=t.scopes.vSlot>0||t.scopes.vFor>0;const s=Zs(e,"slot",!0);if(s){const{arg:e,exp:t}=s;e&&!Vs(e)&&(a=!0),i.push(Is(e||Rs("default",!0),n(t,r,o)))}let c=!1,u=!1;const f=[],p=new Set;let d=0;for(let e=0;e{const i=n(e,r,o);return t.compatConfig&&(i.isNonScopedSlot=!0),Is("default",i)};c?f.length&&f.some((e=>Nu(e)))&&(u?t.onError(Ua(39,f[0].loc)):i.push(e(void 0,f))):i.push(e(void 0,r))}const h=a?2:Tu(e.children)?3:1;let m=Ps(i.concat(Is("_",Rs(h+"",!1))),o);return l.length&&(m=Ms(t.helper(cs),[m,As(l)])),{slots:m,hasDynamicSlots:a}}function Cu(e,t,n){const r=[Is("name",e),Is("fn",t)];return null!=n&&r.push(Is("key",Rs(String(n),!0))),Ps(r)}function Tu(e){for(let t=0;tfunction(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:r}=e,o=1===e.tagType;let i=o?function(e,t,n=!1){let{tag:r}=e;const o=Ru(r),i=Xs(e,"is");if(i)if(o||dc("COMPILER_IS_ON_ELEMENT",t)){const e=6===i.type?i.value&&Rs(i.value.content,!0):i.exp;if(e)return Ms(t.helper(rs),[e])}else 6===i.type&&i.value.content.startsWith("vue:")&&(r=i.value.content.slice(4));const l=!o&&Zs(e,"is");if(l&&l.exp)return Ms(t.helper(rs),[l.exp]);const a=$s(r)||t.isBuiltInComponent(r);if(a)return n||t.helper(a),a;return t.helper(ns),t.components.add(r),uc(r,"component")}(e,t):`"${n}"`;const l=$(i)&&i.callee===rs;let a,s,c,u,f,p,d=0,h=l||i===Ha||i===za||!o&&("svg"===n||"foreignObject"===n);if(r.length>0){const n=Au(e,t,void 0,o,l);a=n.props,d=n.patchFlag,f=n.dynamicPropNames;const r=n.directives;p=r&&r.length?As(r.map((e=>function(e,t){const n=[],r=Lu.get(e);r?n.push(t.helperString(r)):(t.helper(os),t.directives.add(e.name),n.push(uc(e.name,"directive")));const{loc:o}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=Rs("true",!1,o);n.push(Ps(e.modifiers.map((e=>Is(e,t))),o))}return As(n,e.loc)}(e,t)))):void 0,n.shouldUseBlock&&(h=!0)}if(e.children.length>0){i===Ga&&(h=!0,d|=1024);if(o&&i!==Ha&&i!==Ga){const{slots:n,hasDynamicSlots:r}=Eu(e,t);s=n,r&&(d|=1024)}else if(1===e.children.length&&i!==Ha){const n=e.children[0],r=n.type,o=5===r||8===r;o&&0===zc(n,t)&&(d|=1),s=o||2===r?n:e.children}else s=e.children}0!==d&&(c=String(d),f&&f.length&&(u=function(e){let t="[";for(let n=0,r=e.length;n0;let d=!1,h=0,m=!1,v=!1,g=!1,y=!1,_=!1,b=!1;const w=[],x=e=>{c.length&&(u.push(Ps(Pu(c),a)),c=[]),e&&u.push(e)},k=({key:e,value:n})=>{if(Vs(e)){const i=e.content,l=N(i);if(!l||r&&!o||"onclick"===i.toLowerCase()||"onUpdate:modelValue"===i||q(i)||(y=!0),l&&q(i)&&(b=!0),20===n.type||(4===n.type||8===n.type)&&zc(n,t)>0)return;"ref"===i?m=!0:"class"===i?v=!0:"style"===i?g=!0:"key"===i||w.includes(i)||w.push(i),!r||"class"!==i&&"style"!==i||w.includes(i)||w.push(i)}else _=!0};for(let o=0;o0&&c.push(Is(Rs("ref_for",!0),Rs("true")))),"is"===n&&(Ru(l)||r&&r.content.startsWith("vue:")||dc("COMPILER_IS_ON_ELEMENT",t)))continue;c.push(Is(Rs(n,!0,Js(e,0,n.length)),Rs(r?r.content:"",o,r?r.loc:e)))}else{const{name:n,arg:o,exp:h,loc:m}=s,v="bind"===n,g="on"===n;if("slot"===n){r||t.onError(Ua(40,m));continue}if("once"===n||"memo"===n)continue;if("is"===n||v&&Qs(o,"is")&&(Ru(l)||dc("COMPILER_IS_ON_ELEMENT",t)))continue;if(g&&i)continue;if((v&&Qs(o,"key")||g&&p&&Qs(o,"vue:before-update"))&&(d=!0),v&&Qs(o,"ref")&&t.scopes.vFor>0&&c.push(Is(Rs("ref_for",!0),Rs("true"))),!o&&(v||g)){if(_=!0,h)if(v){if(x(),dc("COMPILER_V_BIND_OBJECT_ORDER",t)){u.unshift(h);continue}u.push(h)}else x({type:14,loc:m,callee:t.helper(vs),arguments:r?[h]:[h,"true"]});else t.onError(Ua(v?34:35,m));continue}const y=t.directiveTransforms[n];if(y){const{props:n,needRuntime:r}=y(s,e,t);!i&&n.forEach(k),g&&o&&!Vs(o)?x(Ps(n,a)):c.push(...n),r&&(f.push(s),D(r)&&Lu.set(s,r))}else J(n)||(f.push(s),p&&(d=!0))}}let S;if(u.length?(x(),S=u.length>1?Ms(t.helper(fs),u,a):u[0]):c.length&&(S=Ps(Pu(c),a)),_?h|=16:(v&&!r&&(h|=2),g&&!r&&(h|=4),w.length&&(h|=8),y&&(h|=32)),d||0!==h&&32!==h||!(m||b||f.length>0)||(h|=512),!t.inSSR&&S)switch(S.type){case 15:let e=-1,n=-1,r=!1;for(let t=0;t{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))})((e=>e.replace(Fu,((e,t)=>t?t.toUpperCase():"")))),Bu=(e,t)=>{if(rc(e)){const{children:n,loc:r}=e,{slotName:o,slotProps:i}=function(e,t){let n,r='"default"';const o=[];for(let t=0;t0){const{props:r,directives:i}=Au(e,t,o,!1,!1);n=r,i.length&&t.onError(Ua(36,i[0].loc))}return{slotName:r,slotProps:n}}(e,t),l=[t.prefixIdentifiers?"_ctx.$slots":"$slots",o,"{}","undefined","true"];let a=2;i&&(l[2]=i,a=3),n.length&&(l[3]=Bs([],n,!1,!1,r),a=4),t.scopeId&&!t.slotted&&(a=5),l.splice(a),e.codegenNode=Ms(t.helper(ss),l,r)}};const ju=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*(:[^=]+)?=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,Vu=(e,t,n,r)=>{const{loc:o,modifiers:i,arg:l}=e;let a;if(e.exp||i.length||n.onError(Ua(35,o)),4===l.type)if(l.isStatic){let e=l.content;e.startsWith("vue:")&&(e=`vnode-${e.slice(4)}`);a=Rs(0!==t.tagType||e.startsWith("vnode")||!/[A-Z]/.test(e)?te(Z(e)):`on:${e}`,!0,l.loc)}else a=Fs([`${n.helperString(_s)}(`,l,")"]);else a=l,a.children.unshift(`${n.helperString(_s)}(`),a.children.push(")");let s=e.exp;s&&!s.content.trim()&&(s=void 0);let c=n.cacheHandlers&&!s&&!n.inVOnce;if(s){const e=qs(s.content),t=!(e||ju.test(s.content)),n=s.content.includes(";");0,(t||c&&e)&&(s=Fs([`${t?"$event":"(...args)"} => ${n?"{":"("}`,s,n?"}":")"]))}let u={props:[Is(a,s||Rs("() => {}",!1,o))]};return r&&(u=r(u)),c&&(u.props[0].value=n.cache(u.props[0].value)),u.props.forEach((e=>e.key.isHandlerKey=!0)),u},Du=(e,t,n)=>{const{exp:r,modifiers:o,loc:i}=e,l=e.arg;return 4!==l.type?(l.children.unshift("("),l.children.push(') || ""')):l.isStatic||(l.content=`${l.content} || ""`),o.includes("camel")&&(4===l.type?l.isStatic?l.content=Z(l.content):l.content=`${n.helperString(gs)}(${l.content})`:(l.children.unshift(`${n.helperString(gs)}(`),l.children.push(")"))),n.inSSR||(o.includes("prop")&&$u(l,"."),o.includes("attr")&&$u(l,"^")),!r||4===r.type&&!r.content.trim()?(n.onError(Ua(34,i)),{props:[Is(l,Rs("",!0,i))]}):{props:[Is(l,r)]}},$u=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},Uu=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let r,o=!1;for(let e=0;e7===e.type&&!t.directiveTransforms[e.name]))||"template"===e.tag)))for(let e=0;e{if(1===e.type&&Zs(e,"once",!0)){if(Wu.has(e)||t.inVOnce)return;return Wu.add(e),t.inVOnce=!0,t.helper(bs),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},zu=(e,t,n)=>{const{exp:r,arg:o}=e;if(!r)return n.onError(Ua(41,e.loc)),Gu();const i=r.loc.source,l=4===r.type?r.content:i,a=n.bindingMetadata[i];if("props"===a||"props-aliased"===a)return n.onError(Ua(44,r.loc)),Gu();if(!l.trim()||!qs(l))return n.onError(Ua(42,r.loc)),Gu();const s=o||Rs("modelValue",!0),c=o?Vs(o)?`onUpdate:${o.content}`:Fs(['"onUpdate:" + ',o]):"onUpdate:modelValue";let u;u=Fs([`${n.isTS?"($event: any)":"$event"} => ((`,r,") = $event)"]);const f=[Is(s,e.exp),Is(c,u)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map((e=>(Ws(e)?e:JSON.stringify(e))+": true")).join(", "),n=o?Vs(o)?`${o.content}Modifiers`:Fs([o,' + "Modifiers"']):"modelModifiers";f.push(Is(n,Rs(`{ ${t} }`,!1,e.loc,2)))}return Gu(f)};function Gu(e=[]){return{props:e}}const qu=/[\w).+\-_$\]]/,Ju=(e,t)=>{dc("COMPILER_FILTER",t)&&(5===e.type&&Ku(e.content,t),1===e.type&&e.props.forEach((e=>{7===e.type&&"for"!==e.name&&e.exp&&Ku(e.exp,t)})))};function Ku(e,t){if(4===e.type)Yu(e,t);else for(let n=0;n=0&&(e=n.charAt(t)," "===e);t--);e&&qu.test(e)||(u=!0)}}else void 0===l?(h=i+1,l=n.slice(0,i).trim()):v();function v(){m.push(n.slice(h,i).trim()),h=i+1}if(void 0===l?l=n.slice(0,i).trim():0!==h&&v(),m.length){for(i=0;i{if(1===e.type){const n=Zs(e,"memo");if(!n||Xu.has(e))return;return Xu.add(e),()=>{const r=e.codegenNode||t.currentNode.codegenNode;r&&13===r.type&&(1!==e.tagType&&fc(r,t),e.codegenNode=Ms(t.helper(Cs),[n.exp,Bs(void 0,r),"_cache",String(t.cached++)]))}}};function ef(e,t={}){const n=t.onError||Da,r="module"===t.mode;!0===t.prefixIdentifiers?n(Ua(47)):r&&n(Ua(48));t.cacheHandlers&&n(Ua(49)),t.scopeId&&!r&&n(Ua(50));const o=V(e)?yc(e,t):e,[i,l]=[[Hu,fu,Qu,mu,Ju,Bu,Ou,ku,Uu],{on:Vu,bind:Du,model:zu}];return Xc(o,O({},t,{prefixIdentifiers:false,nodeTransforms:[...i,...t.nodeTransforms||[]],directiveTransforms:O({},l,t.directiveTransforms||{})})),ru(o,O({},t,{prefixIdentifiers:false}))}const tf=Symbol(""),nf=Symbol(""),rf=Symbol(""),of=Symbol(""),lf=Symbol(""),af=Symbol(""),sf=Symbol(""),cf=Symbol(""),uf=Symbol(""),ff=Symbol("");var pf;let df;pf={[tf]:"vModelRadio",[nf]:"vModelCheckbox",[rf]:"vModelText",[of]:"vModelSelect",[lf]:"vModelDynamic",[af]:"withModifiers",[sf]:"withKeys",[cf]:"vShow",[uf]:"Transition",[ff]:"TransitionGroup"},Object.getOwnPropertySymbols(pf).forEach((e=>{Ns[e]=pf[e]}));const hf=o("style,iframe,script,noscript",!0),mf={isVoidTag:m,isNativeTag:e=>d(e)||h(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return df||(df=document.createElement("div")),t?(df.innerHTML=`